/* ============================================================
   Tiju58 — Redesign
   Bold & Confident · Deep Wine · Cream · Warm Gold · Coral
============================================================ */

:root {
  /* Palette — warm dark brown base, cream foreground */
  --bg:       #231d18;       /* warm dark brown (user spec) */
  --bg-soft:  #2F2922;       /* lighter brown for hairline contrast */
  --surface:  #1A1410;       /* darker brown for cards */
  --ink:      #F4E8D0;       /* warm cream — primary text */
  --ink-2:    #E5D6B6;       /* slightly darker cream */
  --muted:    #B59E80;       /* warm muted gold */
  --rule:     rgba(244,232,208,.28);   /* hairline on brown */

  /* Inverse — cream sections breaking up the brown */
  --inv-bg:    #F4E8D0;
  --inv-ink:   #1A130E;
  --inv-ink2:  #231d18;
  --inv-muted: #8B7A6A;
  --inv-rule:  rgba(35,29,24,.16);

  /* Accents */
  --accent: #E8B547;   /* warm gold */
  --hot:    #FF7B5C;   /* warm coral */
  --good:   #6FCE9A;
  --warn:   #FFB58A;

  /* Type */
  --f-display: "Bricolage Grotesque", ui-serif, Georgia, serif;
  --f-body:    "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Scale */
  --hairline: .5px solid var(--rule);
  --pad-x: clamp(20px, 4vw, 64px);
  --col-max: 1320px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

img { display: block; max-width: 100%; }

::selection { background: var(--accent); color: #fff; }

/* ─────────  Reusable atoms ───────── */

.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.mono.dark  { color: rgba(35,29,24,.65); }
.tnum { font-variant-numeric: tabular-nums; }

.section {
  padding: clamp(64px, 8vw, 120px) var(--pad-x);
  border-top: var(--hairline);
}
.section-inner {
  max-width: var(--col-max);
  margin: 0 auto;
  width: 100%;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .eyebrow-row { display: flex; align-items: center; gap: 10px; }
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.section-head .lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--muted);
  max-width: 52ch;
  margin: 0;
  text-wrap: pretty;
}

.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.dot.hot { background: var(--hot); }
.dot.good { background: var(--good); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(30,122,79,.5); }
  50%     { box-shadow: 0 0 0 6px rgba(30,122,79,0); }
}

/* ─────────  NAV ───────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x);
  background: #0D0A08;
  border-bottom: 1px solid rgba(244,232,208,.08);
}
.logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 6px;
}
.logo .mark {
  background: var(--ink);
  color: var(--bg);
  padding: 2px 8px 4px;
  border-radius: 6px;
  font-size: 20px;
}
.logo .sub {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-left: 4px;
  align-self: center;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
}
.nav-links a { color: var(--ink-2); transition: opacity .15s; }
.nav-links a:hover { opacity: .6; }
.nav-links a.btn { transition: transform .15s ease, background .15s ease, color .15s ease; }
.nav-links a.btn:hover { opacity: 1; }
.nav-links a.btn-primary { color: var(--bg); }
.nav-links a.btn-primary:hover { color: var(--bg); }
.nav-links a.btn-secondary { color: var(--ink); }
.nav-links a.btn-secondary:hover { color: var(--bg); }

/* ─────────  Buttons ───────── */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 15px;
  cursor: default;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ─────────  HERO ───────── */

.hero {
  padding: clamp(48px, 6vw, 96px) var(--pad-x) clamp(48px, 6vw, 96px);
  border-top: none;
}
.hero-inner {
  max-width: var(--col-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--surface);
  border: var(--hairline);
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  text-wrap: balance;
  color: #D2AA38;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #D2AA38;
  font-family: "Bricolage Grotesque", serif;
}
.hero h1 .ul {
  position: relative;
  display: inline-block;
  color: #D2AA38;
}
.hero .lede {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 48ch;
  margin: 0 0 36px;
  color: var(--ink-2);
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* big image placeholder */
.placeholder {
  position: relative;
  border-radius: var(--radius);
  border: var(--hairline);
  background:
    repeating-linear-gradient(135deg,
      var(--surface) 0 14px,
      var(--bg-soft) 14px 28px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  min-height: 240px;
}
.placeholder .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--inv-ink);
  background: var(--inv-bg);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--inv-rule);
}
.placeholder.dark {
  background:
    repeating-linear-gradient(135deg,
      var(--inv-bg) 0 14px,
      #E5D6B6 14px 28px);
}
.placeholder.dark .label {
  background: var(--inv-bg);
  color: var(--inv-muted);
  border-color: var(--inv-rule);
}

.hero-portrait {
  height: 360px;
  border-radius: var(--radius);
  position: relative;
  overflow: visible;
}

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  margin-top: 56px;
  max-width: var(--col-max);
  margin-left: auto; margin-right: auto;
}
.stat {
  padding: 22px 24px;
  border-right: var(--hairline);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .num .accent { color: var(--accent); }
.stat .lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* Marquee */
.marquee {
  margin-top: 64px;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  padding: 16px 0;
  overflow: hidden;
  display: flex;
  gap: 56px;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: scroll 40s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-2);
}
.marquee-item .glyph {
  font-family: var(--f-mono);
  color: var(--hot);
  font-size: 18px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────  WEBINAR ───────── */

.webinar-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  border: var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.webinar-left {
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column;
  border-right: var(--hairline);
}
.webinar-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--good);
  margin-bottom: 24px;
}
.webinar-left h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.webinar-left p.desc {
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 42ch;
}
.webinar-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: var(--hairline);
  margin-top: auto;
}
.webinar-meta-cell {
  padding: 18px 0;
  border-right: var(--hairline);
  padding-right: 16px;
}
.webinar-meta-cell:last-child { border-right: none; padding-right: 0; padding-left: 16px; }
.webinar-meta-cell .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.webinar-meta-cell .v {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}

.webinar-right {
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column;
  background: var(--bg);
}
.seats-bar {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px;
}
.seats-bar .row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.seats-bar .row .val {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.seats-bar .row .val .total { color: var(--muted); font-weight: 400; }
.seats-bar .track {
  height: 6px;
  background: rgba(244,232,208,.10);
  border-radius: 999px;
  overflow: hidden;
}
.seats-bar .fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width .4s ease;
}

.field {
  display: flex; flex-direction: column;
  margin-bottom: 14px;
  position: relative;
}
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  font-family: var(--f-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: rgba(244,232,208,.06);
  border-radius: 10px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .7; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--ink);
  background: rgba(244,232,208,.12);
  box-shadow: 0 0 0 3px rgba(232,181,71,.25);
}
.field.error input, .field.error textarea, .field.error select {
  border-color: var(--hot);
  background: rgba(255,123,92,.10);
}
.field.error label { color: var(--hot); }
.field.valid input, .field.valid textarea, .field.valid select {
  border-color: var(--good);
}
.field .msg {
  font-family: var(--f-body);
  font-size: 12.5px;
  color: var(--hot);
  margin-top: 6px;
  display: flex; align-items: center; gap: 6px;
}
.field .msg.good { color: var(--good); }
.field .check {
  position: absolute;
  right: 12px; top: 38px;
  font-size: 14px;
  color: var(--good);
}

.submit-row { display: flex; align-items: center; gap: 14px; margin-top: 8px; }

/* ─────────  TESTIMONIALS ───────── */

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  background: var(--surface);
  border: var(--hairline);
  border-radius: var(--radius);
  padding: 0;
  display: flex; flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.t-card .t-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  filter: saturate(.85) contrast(1.02);
}
.t-card .t-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.t-card.feature {
  background: var(--ink);
  color: var(--bg);
  grid-column: span 1;
}
.t-card.feature .t-photo {
  background-color: var(--ink);
}
.t-card .stars {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--hot);
}
.t-card blockquote {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: pretty;
}
.t-card.feature blockquote { font-size: clamp(20px, 1.7vw, 26px); }
.t-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
  border: var(--hairline);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
}
.t-card.feature .avatar {
  background: repeating-linear-gradient(135deg, var(--inv-bg) 0 6px, #E5D6B6 6px 12px);
  border-color: var(--inv-rule);
  color: var(--inv-muted);
}
.t-card .who .name {
  font-weight: 600;
  font-size: 14.5px;
}
.t-card .who .role {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.t-card.feature .who .role { color: var(--inv-muted); }

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: var(--hairline);
  padding-top: 24px;
}
.trust-cell {
  padding: 4px 16px;
  border-right: var(--hairline);
}
.trust-cell:first-child { padding-left: 0; }
.trust-cell:last-child { border-right: none; }
.trust-cell .v {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-cell .v .accent { color: var(--hot); }
.trust-cell .l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ─────────  FAQ ───────── */

.faq-section { background: var(--ink); color: var(--bg); }
.faq-section .section-head h2 { color: var(--bg); }
.faq-section .section-head .lede { color: var(--inv-muted); }
.faq-section .mono { color: var(--inv-muted); }

.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--inv-rule);
}
.faq-item {
  border-bottom: 1px solid var(--inv-rule);
  cursor: default;
}
.faq-q {
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  align-items: center;
  padding: 26px 0;
  gap: 16px;
}
.faq-q .n {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--inv-muted);
  letter-spacing: .1em;
}
.faq-q .q {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-wrap: balance;
}
.faq-q .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--inv-ink2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform .25s, background .15s, border-color .15s;
  justify-self: end;
}
.faq-item.open .icon {
  transform: rotate(45deg);
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div {
  overflow: hidden;
  padding-left: 72px;
  padding-right: 60px;
}
.faq-a p {
  color: var(--inv-ink2);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 60ch;
}

/* ─────────  CONTACT ───────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.contact-left .channels {
  display: flex; flex-direction: column; gap: 0;
  border-top: var(--hairline);
  margin-top: 32px;
}
.channel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 0;
  border-bottom: var(--hairline);
  gap: 16px;
}
.channel .name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.channel .handle {
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-top: 2px;
}
.channel .arrow-pill {
  font-family: var(--f-mono);
  font-size: 12px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .15s, color .15s;
}
.channel:hover .arrow-pill { background: var(--ink); color: var(--bg); }

/* Contact form on cream — inverse */
.contact-form {
  background: var(--inv-bg);
  color: var(--inv-ink);
  border: 1px solid var(--inv-rule);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
}
.contact-form label { color: var(--inv-muted); }
.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select {
  background: rgba(35,29,24,.04);
  color: var(--inv-ink);
  border-color: var(--inv-rule);
}
.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder { color: var(--inv-muted); opacity: .8; }
.contact-form .field input:focus,
.contact-form .field textarea:focus,
.contact-form .field select:focus {
  border-color: var(--inv-ink);
  background: rgba(35,29,24,.06);
  box-shadow: 0 0 0 3px rgba(232,181,71,.30);
}
.contact-form .field.error input,
.contact-form .field.error textarea {
  border-color: var(--hot);
  background: rgba(255,123,92,.10);
}
.contact-form .topic {
  color: var(--inv-ink);
  border-color: var(--inv-rule);
}
.contact-form .topic:hover { border-color: var(--inv-ink); }
.contact-form .topic.active { background: var(--inv-ink); color: var(--inv-bg); border-color: var(--inv-ink); }
.contact-form .response-time { color: var(--inv-muted); }
.contact-form .btn-primary { background: var(--inv-ink); color: var(--inv-bg); border-color: var(--inv-ink); }
.contact-form .btn-primary:hover { background: var(--accent); color: var(--inv-ink); }
.contact-form .btn-secondary { background: transparent; color: var(--inv-ink); border-color: var(--inv-ink); }
.contact-form .btn-secondary:hover { background: var(--inv-ink); color: var(--inv-bg); }
.contact-form .field.valid input, .contact-form .field.valid textarea, .contact-form .field.valid select { border-color: #2E7A52; }
.contact-form .field .msg.good { color: #2E7A52; }
.contact-form .field .check { color: #2E7A52; }
.contact-form .toast { background: #2E7A52; color: var(--inv-bg); }
.contact-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.topic-row { display: flex; gap: 8px; flex-wrap: wrap; }
.topic {
  font-family: var(--f-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: default;
  transition: all .15s;
}
.topic:hover { border-color: var(--ink); }
.topic.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.response-time {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
}

.toast {
  background: var(--good);
  color: var(--bg);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 16px;
  display: flex; align-items: center; gap: 10px;
  animation: slideUp .3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ─────────  NEWSLETTER ───────── */

.newsletter {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.newsletter h2 em {
  color: var(--hot);
  font-style: italic;
  font-weight: 500;
}
.newsletter .ns-lede {
  color: var(--inv-muted);
  font-size: 15px;
  margin: 16px 0 0;
  max-width: 40ch;
}
.ns-form {
  display: flex;
  gap: 10px;
  background: rgba(35,29,24,.06);
  border: 1px solid var(--inv-rule);
  padding: 8px;
  border-radius: 999px;
}
.ns-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--bg);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 10px 16px;
}
.ns-form input::placeholder { color: var(--inv-muted); }
.ns-form button {
  background: var(--bg);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 500;
  font-size: 14.5px;
  cursor: default;
  transition: background .15s, color .15s;
}
.ns-form button:hover { background: var(--hot); color: var(--bg); }
.ns-meta {
  display: flex; gap: 18px;
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--inv-muted);
}

/* ─────────  FOOTER ───────── */

footer {
  padding: 80px var(--pad-x) 32px;
  border-top: var(--hairline);
  background: var(--bg);
}
.footer-inner {
  max-width: var(--col-max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: var(--hairline);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  color: var(--muted);
  max-width: 36ch;
  font-size: 14.5px;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-col a {
  font-size: 14.5px;
  color: var(--ink-2);
  transition: color .15s;
}
.footer-col a:hover { color: var(--accent); }

/* Giant footer wordmark */
.footer-mark {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  margin: 56px 0 32px;
  color: var(--ink);
  text-align: left;
  text-wrap: nowrap;
  overflow: hidden;
}
.footer-mark .accent { color: #D2AA38; }
.footer-mark .blue { color: var(--accent); font-style: italic; font-weight: 500; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: var(--hairline);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom .links a:hover { color: var(--ink); }

/* ─────────  RESPONSIVE ───────── */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: var(--hairline); }
  .webinar-grid { grid-template-columns: 1fr; }
  .webinar-left { border-right: none; border-bottom: var(--hairline); }
  .t-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .newsletter { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .trust-cell:nth-child(2) { border-right: none; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: var(--hairline); }
  .stat:last-child { border-bottom: none; }
  .contact-form .row-2 { grid-template-columns: 1fr; }
  .faq-q { grid-template-columns: 32px 1fr 28px; }
  .faq-a > div { padding-left: 0; padding-right: 0; }
}

/* ────────────────────────────────────────────
   V2 additions
──────────────────────────────────────────── */

/* Hero floating emoji decorations */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-emoji {
  position: absolute;
  font-size: 38px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
  animation: floaty 6s ease-in-out infinite;
}
.float-emoji.f1 { top: 14%;  left: -8px;   font-size: 44px; animation-delay: 0s; }
.float-emoji.f2 { bottom: 18%; right: -6px; font-size: 40px; animation-delay: -2s; }
.float-emoji.f3 { top: 50%;  right: 18%;  font-size: 30px; animation-delay: -4s; }
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-10px) rotate(4deg); }
}

/* Testimonials rating strip */
.t-rating-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  margin-bottom: 28px;
  border: var(--hairline);
  border-radius: 999px;
  background: var(--surface);
  width: fit-content;
}
.t-rating-strip .stars-big {
  font-family: var(--f-mono);
  font-size: 20px;
  letter-spacing: .2em;
  color: #D2AA38;
}

/* Booking — reserve head + sold out + note lines */
.reserve-head {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.soldout-tag {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--hot);
  color: var(--bg);
  padding: 5px 10px;
  border-radius: 4px;
}
.redirect-note, .zoom-note {
  font-size: 12.5px;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.45;
}
.zoom-note { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--rule); }

/* Contact — response pill + channel cells */
.response-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--surface);
  border: var(--hairline);
  border-radius: 999px;
  margin-bottom: 28px;
  font-size: 13.5px;
}
.response-pill strong {
  font-family: var(--f-display);
  font-weight: 600;
  color: #D2AA38;
}
.response-pill .mono { font-size: 10.5px; }

/* New channel layout with glyph */
.channel {
  grid-template-columns: 44px 1fr auto !important;
}
.channel-glyph {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  font-style: italic;
}
.channel-body .name { font-family: var(--f-display); font-size: 19px; font-weight: 500; }
.channel-body .handle { font-family: var(--f-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 2px; }
.channel:hover .channel-glyph { background: var(--accent); color: var(--ink); }

/* Section head h2 italic accent */
.section-head h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

/* Footer subscribe + social list */
.footer-subscribe .sub-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.5;
}
.footer-subscribe .ns-form {
  background: rgba(244,232,208,.05);
  border: 1px solid var(--rule);
  padding: 5px;
}
.footer-subscribe .ns-form input {
  color: var(--ink);
  font-size: 13.5px;
  padding: 8px 12px;
}
.footer-subscribe .ns-form input::placeholder { color: var(--muted); }
.footer-subscribe .ns-form button {
  background: var(--accent);
  color: var(--ink);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
}
.footer-subscribe .ns-form button:hover { background: #D2AA38; }
.footer-subscribe .privacy-line {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.footer-subscribe .privacy-line a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(232,181,71,.4); text-underline-offset: 3px; }
.footer-subscribe .privacy-line a:hover { text-decoration-color: var(--accent); }

.social-list a { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.social-list .handle-sm {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.follow-line {
  font-size: 12.5px;
  color: var(--muted);
  margin: 18px 0 0;
  line-height: 1.5;
}

/* Smaller responsive */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-subscribe { grid-column: span 2; }
  .t-card .t-photo { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .footer-subscribe { grid-column: auto; }
  .channel { grid-template-columns: 40px 1fr auto !important; }
  .channel-glyph { width: 40px; height: 40px; }
  .response-pill { flex-wrap: wrap; }
}

/* ════════════════════════════════════════════
   FREE PREVIEW DEMO
═════════════════════════════════════════════ */

.preview-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: start;
}

.preview-player {
  border: var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.player-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(232,181,71,.18), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(255,123,92,.16), transparent 65%),
    repeating-linear-gradient(135deg, #1a1410 0 14px, #221c16 14px 28px);
  display: flex; align-items: center; justify-content: center;
}
.player-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(35,29,24,.6);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244,232,208,.16);
}
.player-asl {
  position: absolute;
  right: 16px; bottom: 16px;
  width: 130px; height: 96px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  transition: opacity .2s, transform .2s;
}
.player-asl .asl-label {
  position: absolute;
  top: 6px; left: 8px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .14em;
  background: var(--accent);
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 3px;
}
.player-asl.off { opacity: 0; transform: scale(.92); }
.asl-instructor { line-height: 1; }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--ink);
  font-size: 32px;
  cursor: default;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.35), 0 0 0 0 rgba(232,181,71,.5);
  transition: transform .2s, box-shadow .3s;
  font-family: var(--f-display);
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.06); }
.play-btn.playing {
  background: var(--ink);
  color: var(--accent);
  box-shadow: 0 18px 40px rgba(0,0,0,.35), 0 0 0 18px rgba(232,181,71,.08);
}

.player-controls {
  padding: 16px 20px 18px;
  border-top: var(--hairline);
  background: var(--surface);
}
.scrubber {
  height: 4px;
  background: rgba(244,232,208,.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.scrub-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width .4s ease;
}
.player-row {
  display: flex; align-items: center; gap: 12px;
}
.player-row .time {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-2);
}
.player-row .muted-time { color: var(--muted); margin-left: auto; }
.toggles { display: flex; gap: 6px; margin-left: 8px; }
.toggle {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-2);
  cursor: default;
  transition: all .15s;
}
.toggle:hover { border-color: var(--ink-2); }
.toggle.on {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.caption-strip {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(0,0,0,.35);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  text-align: center;
  font-style: italic;
  border: 1px solid rgba(244,232,208,.08);
}

.preview-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  border: var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
}
.preview-info-head .mono { margin-bottom: 10px; }
.preview-info-head h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  line-height: 1.15;
  text-wrap: balance;
}
.preview-info-head p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
.preview-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.preview-checks li {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 14px;
  color: var(--ink);
}
.preview-checks .chk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.preview-cta { display: flex; flex-direction: column; gap: 8px; }
.preview-cta .btn-ghost {
  color: var(--ink-2);
  font-size: 13px;
  padding: 8px 0;
  justify-content: flex-start;
  border-radius: 0;
}
.preview-cta .btn-ghost:hover { background: transparent; color: var(--accent); }

@media (max-width: 880px) {
  .preview-grid { grid-template-columns: 1fr; }
  .player-asl { width: 100px; height: 76px; font-size: 36px; }
  .play-btn { width: 68px; height: 68px; font-size: 26px; }
}

/* ════════════════════════════════════════════
   PREMIUM COURSES
═════════════════════════════════════════════ */

.course-filterbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.filter {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-2);
  cursor: default;
  transition: all .15s;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.active {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.filter-count {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.course-card {
  background: var(--surface);
  border: var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.course-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,232,208,.4);
}

.course-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.course-glyph {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(244,232,208,.92);
  mix-blend-mode: normal;
}
.course-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: 5px 10px;
  border-radius: 4px;
}
.course-cc {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  background: rgba(0,0,0,.5);
  color: var(--ink);
  padding: 4px 9px;
  border-radius: 4px;
  border: 1px solid rgba(244,232,208,.18);
}

/* Distinct thumbnail palettes per card */
.course-card.pal-a .course-thumb { background:
  radial-gradient(circle at 30% 30%, #4A3819, #2A1F0F),
  linear-gradient(135deg, #5A4220, #2A1F0F); }
.course-card.pal-b .course-thumb { background:
  radial-gradient(circle at 70% 30%, #6B2A1F, #3A140C); }
.course-card.pal-c .course-thumb { background:
  radial-gradient(circle at 30% 70%, #3B3F50, #1E2230); }
.course-card.pal-d .course-thumb { background:
  radial-gradient(circle at 60% 40%, #4A3A1E, #2C200E); }
.course-card.pal-e .course-thumb { background:
  radial-gradient(circle at 50% 50%, #2E4438, #15241C); }
.course-card.pal-f .course-thumb { background:
  radial-gradient(circle at 30% 30%, #44262E, #20111A); }

.course-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.course-body h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
.course-by {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -4px;
}
.course-by strong { color: var(--ink-2); font-weight: 500; }
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 12.5px;
  color: var(--ink-2);
  margin-top: 4px;
}
.course-meta .g {
  color: var(--accent);
  margin-right: 4px;
}
.course-foot {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: var(--hairline);
}
.price .now {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.price .was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 8px;
}
.course-enroll {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  transition: background .15s, color .15s;
}
.course-enroll:hover { background: var(--accent); color: var(--ink); }

.premium-foot {
  margin-top: 36px;
  padding: 20px 24px;
  border: var(--hairline);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  flex-wrap: wrap;
}
.premium-incl {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink);
}
.premium-incl li::before { content: ""; }

@media (max-width: 980px) {
  .course-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .course-grid { grid-template-columns: 1fr; }
  .filter-count { margin-left: 0; flex-basis: 100%; }
}

/* ============================================================
   OUR STORY · COMPANY INTRO VIDEO SECTION
============================================================ */

.section--intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 12% -10%, rgba(232,181,71,.10), transparent 60%),
    radial-gradient(900px 500px at 90% 110%, rgba(255,123,92,.10), transparent 65%),
    var(--bg);
}

.intro-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.intro-bg-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}
.intro-bg-glow--gold  { background: var(--accent); top: -120px; left: -120px; }
.intro-bg-glow--coral { background: var(--hot);    bottom: -160px; right: -120px; opacity: .28; }
.intro-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(244,232,208,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244,232,208,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 40%, transparent 100%);
}

.section--intro .section-inner { position: relative; z-index: 1; }

.section-head--center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
  display: block;
}
.section-head--center h2 { margin: 14px 0 12px; }
.section-head--center .lede { margin: 0 auto; }
.eyebrow-row--center { justify-content: center; display: inline-flex; }

/* ── Grid layout ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* ── Centered single-column stage (video + CTAs only) ── */
.intro-stage {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}
.intro-stage .intro-video-card { width: 100%; }
.intro-ctas--center {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Cinema spotlight — soft halo glow behind the video */
.intro-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  height: 70%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side, rgba(232,181,71,.30), transparent 70%),
    radial-gradient(closest-side, rgba(255,123,92,.22), transparent 75%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

/* ── Video card ── */
.intro-video-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: 10px;
  background:
    linear-gradient(160deg, rgba(232,181,71,.22), rgba(255,123,92,.18) 55%, rgba(244,232,208,.06));
  box-shadow:
    0 50px 120px -30px rgba(0,0,0,.7),
    0 24px 50px -20px rgba(232,181,71,.18),
    0 0 0 1px rgba(244,232,208,.10) inset;
  isolation: isolate;
}
.intro-video-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232,181,71,.65), rgba(255,123,92,.55), rgba(244,232,208,.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.intro-video-chip {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(26,20,16,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244,232,208,.18);
  box-shadow: 0 8px 24px -10px rgba(0,0,0,.5);
}
.intro-video-chip .mono { color: var(--ink-2); font-size: 10.5px; }
.intro-video-chip .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 0 0 rgba(255,123,92,.6);
  animation: introPulse 1.8s ease-out infinite;
}
@keyframes introPulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,123,92,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255,123,92,0);   }
  100% { box-shadow: 0 0 0 0   rgba(255,123,92,0);   }
}

.intro-video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #0c0907;
  box-shadow:
    0 22px 60px -20px rgba(0,0,0,.7),
    0 0 0 1px rgba(0,0,0,.4) inset;
}
.intro-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.intro-video-mark {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: rgba(26,20,16,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244,232,208,.18);
}
.intro-video-mark .mark-mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  background: var(--accent);
  color: #1a130e;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 700;
}
.intro-video-mark .mark-name {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .01em;
  color: var(--ink);
}

/* ── Info side ── */
.intro-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 6px 4px;
}
.intro-info-eyebrow { color: var(--accent); }
.intro-info h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
}

.intro-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.intro-points li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 14px 14px 12px;
  border-radius: 14px;
  background: rgba(244,232,208,.04);
  border: 1px solid rgba(244,232,208,.08);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.intro-points li:hover {
  background: rgba(244,232,208,.07);
  border-color: rgba(232,181,71,.35);
  transform: translateY(-1px);
}
.intro-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--accent), var(--hot));
  color: #1a130e;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  box-shadow: 0 6px 18px -8px rgba(232,181,71,.7);
}
.intro-points strong {
  display: block;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: .005em;
}
.intro-points p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

/* ── Stats row ── */
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(232,181,71,.10), rgba(255,123,92,.06));
  border: 1px solid rgba(244,232,208,.10);
}
.intro-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.intro-stat b {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  font-weight: 600;
}
.intro-stat .mono { font-size: 10.5px; }

/* ── CTAs ── */
.intro-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.intro-sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.yt-glyph {
  width: 20px;
  height: 20px;
  fill: #ff0033;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-head--center { margin-bottom: 36px; }
  .intro-video-chip,
  .intro-video-mark { transform: scale(.92); }
}
@media (max-width: 620px) {
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .intro-stat:nth-child(3) { grid-column: 1 / -1; }
  .intro-points li { grid-template-columns: 36px 1fr; }
  .intro-num { width: 34px; height: 34px; font-size: 12px; }
  .intro-video-card { padding: 6px; border-radius: 18px; }
  .intro-video-frame { border-radius: 12px; }
  .intro-video-chip { top: 14px; left: 14px; padding: 6px 10px; }
  .intro-video-mark { right: 14px; bottom: 14px; }
  .intro-stage { gap: 24px; }
}


/* ============================================================
   NAVBAR — Free English NEW pill
============================================================ */
.nav-fe { position: relative; }
.nav-new-tag {
    display: inline-block;
    margin-left: 6px;
    vertical-align: 2px;
    font-family: var(--f-mono);
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: .14em;
    background: var(--hot);
    color: var(--bg);
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
    line-height: 1;
}
.nav-fe.current { color: var(--accent); }
.mobile-nav .nav-fe .nav-new-tag { margin-left: 8px; }

/* Premium English pill (₹199) */
.nav-pe { position: relative; }
.nav-pe.current { color: var(--accent); }
.nav-pe-tag {
    display: inline-block;
    margin-left: 6px;
    vertical-align: 2px;
    font-family: var(--f-mono);
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: .14em;
    background: var(--accent);
    color: var(--bg);
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
    line-height: 1;
}
.mobile-nav .nav-pe .nav-pe-tag { margin-left: 8px; }