*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #040e1c;
  --navy-mid:     #0a1e35;
  --navy-light:   #1a2235;
  --off-white:    #f4f4f2;
  --white:        #ffffff;
  --text-dark:    #111827;
  --text-mid:     #4b5563;
  --text-muted:   rgba(255,255,255,0.65);
  --border:       #e5e7eb;
  --tag-color:    #6b7280;
  --gold:         #c9a84c;
  --gold-light:   #dbb95a;

  --ff-serif:     'Playfair Display', Georgia, serif;
  --ff-sans:      'Merriweather Sans', sans-serif;
  --ff-ui:        'DM Sans', sans-serif;

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --page-padding: clamp(20px, 5vw, 80px);
  --max-width:    1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ─── CONTAINERS ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-padding);
}

.label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tag-color);
  margin-bottom: 12px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-solid-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-solid-white:hover { background: #e2e8f0; transform: scale(1.03); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
.btn-solid-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-solid-dark:hover { background: var(--navy-mid); transform: scale(1.03); }
.btn-gold-lg {
  background: var(--gold);
  color: #0a0f1a;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 40px;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold-lg:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px var(--page-padding);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Added by scroll-hide JS */
.nav--hidden { transform: translateY(-100%); }
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  justify-self: start;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  justify-self: center;
}
.nav-links a { font-family: var(--ff-ui); font-size: 0.875rem; color: #374151; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { justify-self: end; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav { grid-template-columns: 1fr auto; }
}

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  min-height: 62vh;
  min-height: 62svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px var(--page-padding) 56px;
  color: var(--white);
}

.hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease both;
}

.hero p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 480px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero .btn-group {
  justify-content: center;
  animation: fadeUp 0.8s 0.28s ease both;
}

/* ─── QUALIFICATION GATE ─── */
.qualification {
  background: var(--navy-light);
  padding: 80px var(--page-padding);
  color: var(--white);
}
.qualification-inner {
  max-width: 860px;
  margin-inline: auto;
}
.qualification h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
  text-align: center;
}
.qualification-intro {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.qual-col h3 {
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.qual-col.yes h3 { color: #86efac; }
.qual-col.no h3  { color: #fca5a5; }
.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.qual-icon { flex-shrink: 0; font-size: 0.85rem; margin-top: 2px; }
.qual-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
@media (max-width: 640px) { .qual-grid { grid-template-columns: 1fr; } }

/* ─── PROBLEMS ─── */
.problems { background: var(--off-white); padding: 80px var(--page-padding); }
.problems-intro { text-align: center; margin-bottom: 64px; }
.problems-intro h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 16px;
}
.problems-intro p {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.75;
}
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin-inline: auto;
}
.problem-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px 16px;
  margin-bottom: 36px;
}
.problem-item:last-of-type { margin-bottom: 0; }
.problem-icon { font-size: 1.3rem; padding-top: 4px; }
.problem-item h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  align-self: center;
}
.problem-item p { grid-column: 2; font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }
.problem-stat {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border-left: 3px solid var(--gold);
  padding: 6px 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  color: #92660f;
  font-style: italic;
  margin-top: 8px;
  grid-column: 2;
  line-height: 1.5;
}
.problems-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4; }
.problems-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
@media (max-width: 900px) {
  .problems-grid { grid-template-columns: 1fr; }
  .problems-image { aspect-ratio: 16/9; }
}

/* ─── SECTION HEADERS ─── */
.section-header { margin-bottom: 56px; text-align: center; }
.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-header p { font-size: 0.9rem; color: var(--text-mid); max-width: 460px; margin-inline: auto; line-height: 1.75; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.55); }
.section-header .label { color: var(--gold); }

/* ─── CORE STACK ─── */
.core-stack {
  background: var(--navy);
  padding: 96px var(--page-padding);
  color: var(--white);
}

.stack-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 40px) clamp(16px, 4vw, 36px);
  margin-bottom: 16px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.25s;
}
.stack-item:hover { border-color: rgba(201,168,76,0.3); }

.stack-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.stack-number {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.stack-item h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.stack-value { text-align: right; flex-shrink: 0; }
.stack-value-label {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 3px;
}
.stack-value-amount {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.2);
}

.stack-item > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 720px;
}
.stack-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}
.stack-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}
.stack-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.stack-total-bar {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-md);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.stack-total-bar span {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.stack-total-bar strong {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--gold);
}

@media (max-width: 640px) { .stack-item { padding: 24px 14px; } }

/* ─── BONUSES ─── */
.bonuses { background: var(--off-white); padding: 96px var(--page-padding); }
.bonus-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }

.bonus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.bonus-row:first-child { border-top: 1px solid var(--border); border-radius: var(--radius-md) var(--radius-md) 0 0; overflow: hidden; }
.bonus-row:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); overflow: hidden; }
.bonus-row.urgent { background: #fffbeb; }

/* Full-bleed photo panels — no padding, images fill the cell */
.bonus-row-visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.bonus-row-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.bonus-row.urgent .bonus-row-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(120, 53, 15, 0.35);
  pointer-events: none;
}

.bonus-row-content {
  padding: 40px 48px;
}
.bonus-row-content .bonus-tag { margin-bottom: 16px; }

.bonus-row-content h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.bonus-objection {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 18px;
}
.bonus-row.urgent .bonus-objection { background: #fef3c7; border-left-color: #f59e0b; }
.bonus-objection-label {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  white-space: nowrap;
}
.bonus-row.urgent .bonus-objection-label { color: #b45309; }
.bonus-objection-text {
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.5;
}

.bonus-row-content > p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.bonus-row-value {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.bonus-row-value strong {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.bonus-row.reverse .bonus-row-visual { order: 2; }
.bonus-row.reverse .bonus-row-content { order: 1; }

@media (max-width: 768px) {
  .bonus-row { grid-template-columns: 1fr; }
  .bonus-row-visual { min-height: 200px; order: 1 !important; position: relative; }
  .bonus-row-content { order: 2 !important; padding: 28px 24px; }
  .bonus-objection { flex-direction: column; gap: 6px; }
}

.bonus-total-bar {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.bonus-total-bar span { font-family: var(--ff-ui); font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.bonus-total-bar strong { font-family: var(--ff-serif); font-size: 1.6rem; color: var(--gold); }

/* ─── FAST ACTION + TIMELINE MOBILE ─── */
@media (max-width: 768px) {
  .fast-action-inner { padding: 40px 20px; }
  .sprint-list li { padding: 16px 14px; flex-direction: column; gap: 8px; }
  .sprint-list li::before { margin-top: 0; }
  .problems-image { display: none; }
  .timeline-table,
  .timeline-table tbody,
  .timeline-table tr,
  .timeline-table td { display: block; width: 100%; }
  .timeline-table tr { padding: 20px 0; border-bottom: 1px solid var(--border); }
  .timeline-table td { padding: 0; border: none; }
  .timeline-table td:first-child { margin-bottom: 8px; font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .btn-gold-full .btn-form-arrow { display: none; }
}

/* ─── FAST ACTION BONUS ─── */
.fast-action { background: var(--navy); padding: clamp(64px, 8vw, 96px) var(--page-padding); }
.fast-action-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  background: rgba(201,168,76,0.05);
}
.fast-action-inner .label { color: var(--gold); display: inline-block; margin-bottom: 16px; }
.fast-action-inner h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.fast-action-inner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 8px;
}
.sprint-list {
  list-style: none;
  padding: 0;
  margin: 28px auto;
  max-width: 620px;
  text-align: left;
}
.sprint-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.sprint-list li::before {
  content: "→";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sprint-list li strong { color: rgba(255,255,255,0.88); font-weight: 600; }
.sprint-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.fast-action-value {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

/* ─── VALUE STACK SUMMARY ─── */
.value-stack { background: var(--off-white); padding: 80px var(--page-padding); }
.value-stack-inner { max-width: 680px; margin-inline: auto; }
.value-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-mid);
  gap: 16px;
}
.value-line:first-child { border-top: 1px solid var(--border); }
.value-line span:last-child {
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.value-line.total {
  padding: 20px 0;
  border-bottom: 2px solid var(--text-dark);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.value-line.total span:last-child { font-size: 1.3rem; }

/* ─── PRICE REVEAL MOMENT ─── */
.price-reveal {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(201,168,76,0.4);
}
.price-reveal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  gap: 16px;
  flex-wrap: wrap;
}
.price-reveal-row:last-child { border-bottom: none; }
.price-reveal-label {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.price-reveal-value {
  font-family: var(--ff-serif);
  font-weight: 700;
  white-space: nowrap;
}
.price-reveal-row.total-val { background: #fdfaf3; }
.price-reveal-row.total-val .price-reveal-label { color: var(--text-dark); font-size: 0.8rem; }
.price-reveal-row.total-val .price-reveal-value { font-size: 1.5rem; color: var(--text-dark); }

.price-reveal-row.investment-val { background: var(--navy); }
.price-reveal-row.investment-val .price-reveal-label { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.price-reveal-row.investment-val .price-reveal-value { font-size: 2.4rem; color: var(--gold); line-height: 1; }

.value-ratio {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.6;
}
.value-ratio strong { color: var(--text-dark); font-style: normal; }

/* ─── GUARANTEE ─── */
.guarantee { background: var(--white); padding: 96px var(--page-padding); }
.guarantee-inner { max-width: var(--max-width); margin-inline: auto; }
.guarantee-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}
.guarantee-header {
  background: rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 40px 52px;
  text-align: center;
}
.guarantee-shield { font-size: 2.8rem; display: block; margin-bottom: 14px; }
.guarantee-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.guarantee-header p { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 480px; margin-inline: auto; line-height: 1.75; }
.guarantee-phases { display: grid; grid-template-columns: 1fr 1fr; }
.guarantee-phase { padding: 40px 44px; border-right: 1px solid rgba(255,255,255,0.06); }
.guarantee-phase:last-child { border-right: none; }
.phase-label {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.guarantee-phase h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.guarantee-phase p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.guarantee-phase p strong { color: var(--white); }
.guarantee-conditions {
  padding: 36px 44px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.guarantee-conditions h4 {
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.condition-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
}
.condition-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.guarantee-scenarios {
  padding: 36px 44px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.scenario-label {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.scenario.best .scenario-label { color: #86efac; }
.scenario.worst .scenario-label { color: #fca5a5; }
.scenario p { font-size: 0.875rem; color: rgba(255,255,255,0.62); line-height: 1.75; }
.scenario p strong { color: var(--white); }
@media (max-width: 768px) {
  .guarantee-phases { grid-template-columns: 1fr; }
  .guarantee-phase { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 32px 28px; }
  .guarantee-conditions, .guarantee-scenarios { padding: 28px; }
  .guarantee-scenarios { grid-template-columns: 1fr; }
  .guarantee-header { padding: 28px; }
}

/* ─── TIMELINE ─── */
.timeline { background: var(--off-white); padding: 96px var(--page-padding); }
.timeline-table {
  width: 100%;
  max-width: 740px;
  margin-inline: auto;
  border-collapse: collapse;
}
.timeline-table tr { border-bottom: 1px solid var(--border); }
.timeline-table td { padding: 16px 12px; font-size: 0.875rem; vertical-align: top; line-height: 1.6; }
.timeline-table td:first-child { width: 200px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.timeline-table td:last-child { color: var(--text-mid); }

/* ─── FAQ ─── */
.faq { background: var(--off-white); padding: 96px var(--page-padding); }
.faq .section-header { text-align: center; margin-bottom: 48px; }
.faq .section-header h2 { color: var(--text-dark); }
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  padding: 22px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::after { content: '+'; font-size: 1.2rem; font-weight: 300; color: var(--text-mid); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; padding-bottom: 22px; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--navy); color: var(--white); padding: 96px var(--page-padding); text-align: center; }
.cta-band .label { color: rgba(255,255,255,0.35); }
.cta-band h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 14px;
}
.cta-band p { font-size: 0.9rem; color: var(--text-muted); max-width: 440px; margin-inline: auto; line-height: 1.75; }
.cta-band .btn-group { justify-content: center; }
.cta-band .note { margin-top: 24px; font-size: 0.75rem; color: rgba(255,255,255,0.3); max-width: 560px; margin-inline: auto; line-height: 1.65; }

/* ─── CONTACT ─── */
.contact { background: var(--off-white); padding: 96px var(--page-padding); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  max-width: var(--max-width);
  margin-inline: auto;
}
.contact-info h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 8px 0 16px;
}
.contact-info > p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }
.contact-mini-stack { margin-top: 28px; }
.contact-mini-stack h4 {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.contact-mini-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 10px;
}
.contact-mini-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  text-transform: uppercase;
}
.contact-field input,
.contact-field textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  padding: 12px 14px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #9ca3af; }
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--navy); }
.contact-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.contact-select {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.contact-select:focus { border-color: var(--navy); }
.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-consent input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--navy);
  margin-top: 2px; flex-shrink: 0; cursor: pointer;
}
.contact-consent a { color: var(--navy); text-decoration: underline; }
.btn-gold-full {
  background: var(--gold);
  color: #0a0f1a;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.btn-gold-full:hover { background: var(--gold-light); transform: translateY(-1px); }
@media (max-width: 640px) { .btn-gold-full .btn-form-arrow { display: none; } }
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  padding: 48px var(--page-padding) 28px;
}
/* Ensure the logo anchor is block-level so it aligns flush to grid row top */
.footer-logo { display: block; }
.footer-logo img { height: 38px; width: auto; display: block; margin-bottom: 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 0 32px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
/* Give the three link columns the same top offset as the logo image height so
   their h4 labels sit on the same optical baseline as the logo */
.footer-col {
  padding-top: 6px;
}
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-brand p { font-size: 0.8rem; line-height: 1.7; max-width: 260px; margin-top: 18px; }
.footer-brand address { font-style: normal; font-size: 0.8rem; line-height: 1.9; margin-top: 14px; }
.footer-col h4 {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: var(--ff-ui);
  font-size: 0.73rem;
  color: rgba(255,255,255,0.22);
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ─── FOUNDER / DAMAGING ADMISSION SECTION ─── */
.founder {
  background: var(--navy);
  padding: 96px var(--page-padding);
  color: var(--white);
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
  max-width: var(--max-width);
  margin-inline: auto;
}

/* ─── RESPONSIVE VIDEO WRAPPER ─── */
.founder-video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
}
.founder-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

.founder-content .label { color: var(--gold); }
.founder-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 8px 0 24px;
}

/* Founder Admission block — Removed */

/* Performance proof image block —Removed */


.founder-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}
.founder-body p strong { color: var(--white); }
.founder-body p:last-child { margin-bottom: 0; }

.founder-advantages {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.founder-advantage-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 6px 14px;
  align-items: start;
}
.founder-advantage-icon { font-size: 1rem; color: var(--gold); padding-top: 2px; }
.founder-advantage-item h4 {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  align-self: center;
  line-height: 1.2;
}
.founder-advantage-item p {
  grid-column: 2;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── TRUST BADGES ─── */
.trust-badges {
  background: var(--white);
  padding: 24px var(--page-padding);
  border-bottom: 1px solid var(--border);
}
.trust-badges-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--off-white);
}
/* SVG circle-check icon */
.trust-badge-icon {
  width: 16px;
  height: 16px;
  color: #16a34a;
  flex-shrink: 0;
}
/* Mobile: pyramid stack — label centred on top, badges centred column, divider gone */
@media (max-width: 640px) {
  .trust-badges-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .trust-label {
    text-align: center;
    width: 100%;
    margin-bottom: 4px;
  }
  .trust-divider {
    display: none;
  }
  .trust-badge {
    width: fit-content;
  }
}

/* ─── REASON WHY BLOCK ─── */
.reason-why {
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 20px;
}
.reason-why-label {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.reason-why p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }
.reason-why p strong { color: var(--text-dark); }

/* ─── STICKY MOBILE CTA ─── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 14px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--gold);
  color: #0a0f1a;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-sticky-cta a:hover { background: var(--gold-light); }
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ─── APPLICATION FORM FRAMING ─── */
.application-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.application-header span {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.application-header p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ─── FORM VALIDATION ERROR STATES ─── */
.contact-field input.field-error,
.contact-field .contact-select.field-error { border-color: #ef4444; }
.field-error-msg {
  font-family: var(--ff-ui);
  font-size: 0.69rem;
  color: #ef4444;
  margin-top: 4px;
  display: none;
  line-height: 1.4;
}
.field-error-msg.visible { display: block; }

/* ─── PAYMENT SPLIT (Performance Pricing) ─── */
.payment-split {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.payment-step {
  flex: 1;
  padding: 40px 44px;
}
.payment-step:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.payment-step-label {
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.payment-step-amount {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.payment-step-name {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
}
.payment-step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin: 0;
}
.payment-step-divider {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.payment-step-divider svg {
  color: var(--gold);
  opacity: 0.5;
}
.payment-step-divider span {
  font-family: var(--ff-ui);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .payment-split { flex-direction: column; }
  .payment-step { padding: 28px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .payment-step:last-child { border-bottom: none; }
  .payment-step-divider { flex-direction: row; padding: 14px 28px; border-right: none; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .payment-step-divider span { writing-mode: initial; transform: none; }
}

/* ─── PRICE REVEAL — BALANCE VARIANT ─── */
.price-reveal-row.balance-val { background: var(--navy-light); }
.price-reveal-row.balance-val .price-reveal-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.price-reveal-row.balance-val .price-reveal-value { font-size: 2rem; color: var(--gold); line-height: 1; }
.price-reveal-row.balance-val .price-reveal-sub {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-left: 10px;
  font-style: italic;
  font-weight: 400;
}

/* ─── HERO VSL BRIDGE ─── */
.hero-vsl-bridge {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  animation: fadeUp 0.8s 0.28s ease both;
}
.hero-vsl-bridge span {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.hero-vsl-bridge svg {
  color: rgba(255, 255, 255, 0.28);
  animation: bridgeBounce 1.8s infinite ease-in-out;
}
@keyframes bridgeBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ─── VSL SECTION ─── */
.vsl-section {
  width: 100%;
  background: var(--navy);
  padding-bottom: 80px;
}
/*
  overflow:hidden has been moved OFF .vsl-frame-outer and onto .vsl-ratio below.
  Reason: .vsl-frame-outer is the positioning parent (position:relative) for the
  absolutely-placed .vsl-unmute-btn and .vsl-controls overlays. When overflow:hidden
  is on that same element, some browsers/hosting environments clip those children out
  of view, causing them to fall into document flow below the video. Keeping
  overflow:hidden only on .vsl-ratio (which wraps the iframe) achieves the same
  rounded-corner clip on the video without ever touching the control overlays.
*/
.vsl-frame-outer {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  /* overflow:hidden intentionally removed — see comment above */
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-light);
  position: relative;
}
/*
  overflow:hidden + border-radius here clips the iframe to the same rounded corners
  that were previously achieved on .vsl-frame-outer. Because .vsl-ratio only contains
  the iframe (not the overlay buttons), clipping here is safe.
*/
.vsl-ratio {
  padding: 56.25% 0 0 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.vsl-unmute-btn {
  position: absolute;
  /*
    bottom: 68px = 48px controls bar height + 20px gap above it.
    This keeps the pill clear of the controls bar so clicking it
    never accidentally triggers a play/pause or fullscreen action.
  */
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  padding: 10px 22px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 20;
  white-space: nowrap;
  letter-spacing: 0.02em;
  /*
    No 'opacity' in the transition list — the button hides via
    display:none on click, which is instant and leaves no overlap
    with the custom controls bar revealed beneath it.
  */
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  animation: vslBtnPulse 2.5s 2s ease-in-out both;
}
.vsl-unmute-btn:hover {
  background: rgba(0, 0, 0, 0.88);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateX(-50%) translateY(-2px);
}
.vsl-mute-icon {
  color: var(--gold);
  flex-shrink: 0;
}
@keyframes vslBtnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
  50%       { box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.22); }
}

/* ─── CUSTOM VSL CONTROLS BAR ─── */
/*
  HOW THIS REPLACES VIMEO'S NATIVE UI
  ─────────────────────────────────────
  .vsl-frame-outer (position:relative) acts as the stacking
  context. This bar is absolutely pinned to its bottom edge
  at z-index:15 — above the iframe (z-index auto) but below
  the unmute pill (z-index:20).

  Native Vimeo chrome was stripped entirely via URL params on
  the iframe src: controls=0, title=0, byline=0, portrait=0.
  (See the HTML comment block above the iframe for full detail.)
*/
.vsl-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  /* Dark gradient fades up from the bottom edge of the frame */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.08) 100%);
  z-index: 15;
}

/* Play/Pause and Fullscreen icon buttons */
.vsl-ctrl-btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  line-height: 0;           /* prevents SVG baseline gap */
  transition: color 0.15s, background 0.15s;
}
.vsl-ctrl-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile: shrink controls slightly on narrow viewports */
@media (max-width: 480px) {
  .vsl-controls { padding: 0 8px; gap: 6px; }
  .vsl-ctrl-btn { padding: 4px; }
}

/* ─── BONUS TAG ─── */
.bonus-tag {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tag-color);
  margin-bottom: 16px;
}
.bonus-row.urgent .bonus-tag { color: #b45309; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { transform: scale(1.04); opacity: 0.7; }
  to   { transform: scale(1);    opacity: 1; }
}
