/* ============================================================
   AyE Lab · /spots Hot Site
   Light & airy · dark accents · premium editorial
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* surfaces — airy violet-warm whites */
  --bg:        #FAF8FC;
  --bg-warm:   #FBF8F4;
  --surface:   #FFFFFF;
  --surface-2: #F4F1FA;

  /* ink — near-black with a violet tint, used as the "dark accent" */
  --ink:       #161220;
  --ink-soft:  #4A4459;
  --ink-faint: #908AA0;

  /* hairlines */
  --line:      #ECE7F4;
  --line-2:    #E1DBEE;

  /* brand */
  --violet:    #593FE0;
  --indigo:    #4657F2;
  --teal:      #1ECBE1;
  --aurora:    #9A6BFF;
  --yellow:    #FFD857;
  --coral:     #F72585;
  --gold:      #C9973A;
  --gold-deep: #A87A24;

  /* gradients */
  --grad-brand: linear-gradient(115deg, #593FE0 0%, #4657F2 48%, #1ECBE1 100%);
  --grad-aurora: linear-gradient(135deg, #9A6BFF 0%, #593FE0 40%, #4657F2 75%, #1ECBE1 100%);
  --grad-gold: linear-gradient(120deg, #C9973A 0%, #E8C46A 50%, #C9973A 100%);

  /* type */
  --f-head: "Poppins", system-ui, sans-serif;
  --f-quote: "Playfair Display", Georgia, serif;
  --f-body: "DM Sans", system-ui, sans-serif;

  /* layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(52px, 7vw, 96px);
  --radius: 22px;
  --radius-lg: 32px;

  /* shadow */
  --shadow-sm: 0 2px 8px rgba(22,18,32,.05), 0 1px 2px rgba(22,18,32,.04);
  --shadow-md: 0 18px 50px -22px rgba(54,40,120,.30), 0 6px 18px -10px rgba(22,18,32,.10);
  --shadow-lg: 0 40px 90px -36px rgba(54,40,120,.42), 0 12px 30px -16px rgba(22,18,32,.14);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
[id] { scroll-margin-top: 72px; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 880px; }

/* ---------- Top nav (sticky) ---------- */
.topnav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topnav-in { display: flex; align-items: center; gap: 18px; min-height: 60px; }
.topnav-brand { display: inline-flex; align-items: center; gap: 9px; margin-right: auto; }
.tn-icon { height: 28px; width: 28px; object-fit: contain; flex: none; }
.tn-logo { font-family: var(--f-head); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; color: #5B3FF8; }
.tn-name { font-family: var(--f-head); font-weight: 600; font-size: .82rem; letter-spacing: .01em; color: var(--ink-faint); }
.topnav-links { display: flex; align-items: center; gap: 22px; }
.topnav-links a {
  font-family: var(--f-head); font-weight: 600; font-size: .9rem; color: var(--ink-soft);
  position: relative; padding: 6px 2px; transition: color .2s;
}
.topnav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--violet); transition: right .25s;
}
.topnav-links a:hover { color: var(--violet); }
.topnav-links a:hover::after { right: 0; }
.topnav-cta { flex: none; }
.topnav .topnav-cta { padding: .52em 1em; font-size: .84rem; border-radius: 10px; }
.tn-contato { display: none; }
@media (max-width: 640px) {
  .topnav-in { gap: 10px; min-height: 54px; }
  .tn-name { display: none; }
  .topnav-links { gap: 14px; }
  .topnav-links a { font-size: .82rem; }
  .topnav .topnav-cta { display: none; }
  .tn-contato { display: inline !important; color: #22b35e !important; font-weight: 700 !important; }
  .tn-contato::after { background: #22b35e !important; }
}
@media (max-width: 460px) {
  .topnav-links { gap: 12px; }
  .topnav-links a { font-size: .8rem; padding: 6px 0; }
}

.section { padding-block: var(--section-y); position: relative; }
.section--snug-top { padding-top: clamp(20px, 3.5vw, 44px); }

.eyebrow {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(.68rem, 1.5vw, .8rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  display: inline-block;
  opacity: .55;
}
.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

h1, h2, h3 { font-family: var(--f-head); font-weight: 900; letter-spacing: -.03em; line-height: 1.02; }
h2 { font-weight: 800; font-size: clamp(2rem, 4.6vw, 3.35rem); letter-spacing: -.025em; line-height: 1.06; }
h3 { font-weight: 700; letter-spacing: -.02em; }

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--ink-soft);
  line-height: 1.62;
  text-wrap: pretty;
}

.quote {
  font-family: var(--f-quote);
  font-style: italic;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -.01em;
  text-wrap: balance;
}

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.gold-text {
  background: linear-gradient(100deg, #B98624, #E2BC5E 55%, #B98624);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  letter-spacing: -.01em;
  padding: 1.02em 1.5em;
  border-radius: 14px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .2s;
  will-change: transform;
  line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary {
  color: #fff;
  background: var(--grad-brand);
  background-size: 160% 160%;
  box-shadow: 0 16px 34px -14px rgba(70,52,200,.6);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px -16px rgba(70,52,200,.7);
  background-position: 100% 50%;
}

.btn--gold {
  color: #2A1E06;
  background: linear-gradient(120deg, #E8C46A, #C9973A 60%, #E8C46A);
  background-size: 180% 180%;
  box-shadow: 0 16px 34px -14px rgba(201,151,58,.55);
}
.btn--gold:hover { transform: translateY(-2px); background-position: 100% 50%; box-shadow: 0 22px 48px -16px rgba(201,151,58,.7); }

.btn--ghost {
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--violet); color: var(--violet); }

.btn--lg { padding: 1.15em 1.8em; font-size: clamp(1rem, 1.6vw, 1.15rem); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Hero (shared) + 3 treatments
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero[hidden] { display: none; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(.7rem, 1.5vw, .82rem);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep);
  padding: .55em 1em .55em .85em;
  border: 1px solid rgba(201,151,58,.32);
  border-radius: 100px;
  background: rgba(201,151,58,.07);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,151,58,.18); }

.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  line-height: 1.0;
}
.hero h1 .ln { display: block; }

.hero .quote {
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  color: var(--ink);
}
.hero .quote .accent { color: var(--violet); font-style: italic; }

.hero-body { max-width: 33em; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.scarcity-mini {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .02em;
  color: var(--ink-soft);
}
.dots { display: inline-flex; gap: 5px; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); display: inline-block; }
.dots i.taken { background: var(--gold); box-shadow: 0 0 0 3px rgba(201,151,58,.16); }

/* decorative aurora blobs (parallax) */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .5; pointer-events: none; z-index: 0;
}
.blob--violet { background: radial-gradient(circle, rgba(89,63,224,.55), transparent 70%); }
.blob--teal   { background: radial-gradient(circle, rgba(30,203,225,.5), transparent 70%); }
.blob--aurora { background: radial-gradient(circle, rgba(154,107,255,.5), transparent 70%); }

/* ---- Hero A · editorial split ---- */
.heroA { padding-top: clamp(40px, 8vw, 88px); padding-bottom: clamp(28px, 5vw, 60px); }
.heroA .grid {
  display: grid; gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 1fr;
  align-items: center; position: relative; z-index: 2;
}
.heroA .col-text { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 30px); }
.heroA .portrait {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; background: var(--surface-2);
}
.heroA .portrait img { width: 100%; height: 100%; object-fit: cover; }
.heroA .portrait .frame-glow {
  position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4);
  background: linear-gradient(180deg, transparent 46%, rgba(22,18,32,.52));
}
.heroA .portrait .tag {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; align-items: flex-start; gap: 12px;
  color: #fff;
}
.heroA .portrait .tag .rabbit { flex: none; color: #fff; opacity: .95; margin-top: 1px; }
.heroA .portrait .tag .rabbit svg { width: 30px; height: 30px; }
.heroA .portrait .tag .tag-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.heroA .portrait .tag b { display: block; font-family: var(--f-head); font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; line-height: 1.2; }
.heroA .portrait .tag span { display: block; font-size: .8rem; opacity: .9; line-height: 1.3; }

/* ---- Hero B · cinematic gradient panel ---- */
.heroB { padding-top: clamp(28px, 5vw, 56px); }
.heroB .panel {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; padding: clamp(40px, 7vw, 92px) clamp(28px, 6vw, 80px);
  color: #fff;
  background: var(--grad-aurora);
  background-size: 200% 200%;
  animation: auroraShift 18s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.heroB .panel::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 85% 15%, rgba(255,216,87,.22), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(30,203,225,.3), transparent 60%);
  mix-blend-mode: screen; z-index: -1;
}
.heroB .panel .grid { display: grid; gap: clamp(28px,4vw,52px); grid-template-columns: 1fr; align-items: end; }
.heroB .hero-eyebrow { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.1); }
.heroB .hero-eyebrow .dot { background: var(--yellow); box-shadow: 0 0 0 4px rgba(255,216,87,.25); }
.heroB h1 { color: #fff; }
.heroB .quote { color: rgba(255,255,255,.95); }
.heroB .quote .accent { color: var(--yellow); }
.heroB .lead { color: rgba(255,255,255,.86); }
.heroB .btn--ghost { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); color:#fff; }
.heroB .btn--ghost:hover { background: rgba(255,255,255,.2); color: #fff; border-color: #fff; }
.heroB .scarcity-mini { color: rgba(255,255,255,.9); }
.heroB .dots i { background: rgba(255,255,255,.3); }
.heroB .dots i.taken { background: var(--yellow); box-shadow: 0 0 0 3px rgba(255,216,87,.25); }
.heroB .portrait-b {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.5); border: 2px solid rgba(255,255,255,.4);
}
.heroB .portrait-b img { width: 100%; height: 100%; object-fit: cover; }

@keyframes auroraShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---- Hero C · "open the door" centered ---- */
.heroC { text-align: center; padding-top: clamp(48px, 9vw, 110px); }
.heroC .inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: clamp(22px,3.5vw,34px); }
.heroC .rabbit-badge {
  width: 78px; height: 78px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.heroC .rabbit-badge img { width: 46px; height: 46px; }
.heroC h1 { max-width: 16ch; }
.heroC .quote { max-width: 24ch; }
.heroC .hero-body { text-align: center; margin-inline: auto; }
.heroC .hero-ctas { justify-content: center; }
.heroC .door {
  margin-top: 8px; position: relative; width: min(420px, 80vw); aspect-ratio: 16/10;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--grad-aurora); background-size: 200% 200%;
  animation: auroraShift 16s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center; overflow: hidden;
}
.heroC .door::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 50% 120%, rgba(255,255,255,.35), transparent 60%);
}
.heroC .door img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .85; }

/* ============================================================
   Embed sections (Instagram phone frames)
   ============================================================ */
.embed-row { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 1fr; align-items: center; }
.embed-row.reverse .embed-copy { order: -1; }

.embed-copy { display: flex; flex-direction: column; gap: 18px; }
.embed-copy .line { font-family: var(--f-head); font-weight: 700; font-size: clamp(1.25rem, 2.4vw, 1.75rem); letter-spacing: -.02em; line-height: 1.18; text-wrap: balance; color: var(--ink); }
.embed-copy .line .soft { color: var(--ink-faint); }

/* phone frame */
.phone {
  --pw: min(300px, 78vw);
  width: var(--pw); margin-inline: auto;
  aspect-ratio: 9/16; border-radius: 38px;
  background: #0E0B16; padding: 9px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(22,18,32,.06);
  position: relative;
}
.phone .screen {
  width: 100%; height: 100%; border-radius: 30px; overflow: hidden;
  position: relative; background: var(--grad-aurora); background-size: 200% 200%;
  animation: auroraShift 20s ease-in-out infinite;
  display: grid; place-items: center;
}
.phone .screen::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 40%, rgba(255,255,255,.18), transparent 65%),
              linear-gradient(180deg, rgba(14,11,22,0) 40%, rgba(14,11,22,.55));
}
.phone .notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 92px; height: 7px; border-radius: 10px; background: rgba(255,255,255,.5); z-index: 4; }
.phone .ig-top { position: absolute; top: 22px; left: 16px; right: 16px; display: flex; align-items: center; gap: 9px; z-index: 4; color: #fff; }
.phone .ig-top .av { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.85); padding: 2px; }
.phone .ig-top .av img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.phone .ig-top b { font-family: var(--f-head); font-weight: 700; font-size: .82rem; }
.phone .ig-top .ig-glyph { margin-left: auto; width: 22px; height: 22px; opacity: .95; }
.phone .play {
  width: 72px; height: 72px; border-radius: 50%; z-index: 4;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.6);
  display: grid; place-items: center; transition: transform .3s, background .3s;
}
.phone:hover .play { transform: scale(1.08); background: rgba(255,255,255,.3); }
.phone .play svg { width: 26px; height: 26px; margin-left: 4px; fill: #fff; }
.phone .cap { position: absolute; bottom: 20px; left: 18px; right: 18px; z-index: 4; color: #fff; }
.phone .cap b { font-family: var(--f-head); font-weight: 700; font-size: .9rem; }
.phone .cap span { display: block; font-size: .78rem; opacity: .82; margin-top: 3px; }

/* annotation note (dev handoff) */
.note {
  margin-top: 14px; font-family: var(--f-body); font-size: .72rem;
  color: var(--ink-faint); display: flex; align-items: flex-start; gap: 7px;
  padding: 9px 12px; border: 1px dashed var(--line-2); border-radius: 12px;
  background: var(--surface); max-width: var(--pw); margin-inline: auto;
}
.note code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .68rem; color: var(--violet); word-break: break-all; line-height: 1.45; }
.note .pin { flex: none; font-size: .8rem; }

/* ============================================================
   Level Lab
   ============================================================ */
.lab-head { text-align: center; max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.lab-head h2 { text-wrap: balance; }

.level-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: clamp(34px, 5vw, 52px); position: relative; z-index: 2;
}
.level-tab {
  font-family: var(--f-head); font-weight: 800; letter-spacing: .02em;
  font-size: clamp(1rem, 2vw, 1.18rem);
  padding: .75em 1.25em; border-radius: 13px;
  color: var(--ink-soft); background: var(--surface);
  border: 1.5px solid var(--line-2); box-shadow: var(--shadow-sm);
  transition: transform .2s, color .2s, border-color .2s, box-shadow .25s, background .25s;
}
.level-tab .lv-sub { display: block; font-size: .58em; font-weight: 700; letter-spacing: .1em; color: var(--ink-faint); margin-top: 2px; text-transform: uppercase; }
.level-tab:hover { transform: translateY(-2px); border-color: var(--aurora); color: var(--violet); }
.level-tab[aria-selected="true"] {
  color: #fff; background: var(--grad-brand); border-color: transparent;
  box-shadow: 0 14px 30px -14px rgba(70,52,200,.55);
}
.level-tab[aria-selected="true"] .lv-sub { color: rgba(255,255,255,.78); }

.level-stage { margin-top: clamp(30px, 4vw, 46px); position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: clamp(18px, 3vw, 30px); }
.level-card {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  animation: cardIn .5s cubic-bezier(.2,.8,.2,1);
}
@keyframes cardIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.level-card .poster {
  position: relative; min-height: 220px; aspect-ratio: 16/10;
  background: var(--grad-aurora); background-size: 200% 200%;
  animation: auroraShift 22s ease-in-out infinite;
  display: grid; place-items: center; overflow: hidden;
}
.level-card .poster::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 70% at 50% 30%, rgba(255,255,255,.16), transparent 60%),
              linear-gradient(180deg, transparent 50%, rgba(14,11,22,.4));
}
.level-card .poster .big-badge {
  font-family: var(--f-head); font-weight: 900; letter-spacing: -.04em;
  font-size: clamp(4rem, 12vw, 7.5rem); color: #fff; position: relative; z-index: 2;
  text-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.level-card .poster .ghost-badge {
  position: absolute; right: -2%; bottom: -16%; z-index: 1;
  font-family: var(--f-head); font-weight: 900; font-size: clamp(9rem, 28vw, 18rem);
  color: rgba(255,255,255,.1); letter-spacing: -.05em; pointer-events: none;
}
.level-card .body { padding: clamp(26px, 4vw, 42px); display: flex; flex-direction: column; gap: 20px; }
.level-card .body .meta { display: flex; align-items: center; gap: 10px; }
.level-card .body .chip { font-family: var(--f-head); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--violet); background: var(--surface-2); padding: .45em .9em; border-radius: 100px; }
.level-card .body .chip.warn { color: var(--gold-deep); background: rgba(201,151,58,.12); }
.level-card .body .cap { font-family: var(--f-quote); font-style: italic; font-size: clamp(1.35rem, 2.6vw, 1.85rem); line-height: 1.3; color: var(--ink); text-wrap: balance; }
.level-card .body .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 4px; }
.level-card .body .more {
  font-family: var(--f-head); font-weight: 700; font-size: .9rem; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .4em; transition: color .2s, gap .2s;
}
.level-card .body .more:hover { color: var(--violet); gap: .65em; }
.level-card .body .more::before { content: "+"; font-weight: 800; }
.level-card .body .urlnote { font-family: ui-monospace, Menlo, monospace; font-size: .66rem; color: var(--ink-faint); word-break: break-all; padding-top: 6px; border-top: 1px dashed var(--line-2); }
.level-card .body .urlnote b { color: var(--ink-soft); font-family: var(--f-head); letter-spacing: .04em; }

/* ============================================================
   Topics
   ============================================================ */
.topics-head { max-width: 760px; display: flex; flex-direction: column; gap: 18px; }
.topics-grid {
  display: grid; gap: 14px; margin-top: clamp(34px, 5vw, 54px);
  grid-template-columns: 1fr;
}
.topic {
  position: relative; padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column; gap: 14px; min-height: 178px;
}
.topic::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--grad-brand); transform: scaleY(0); transform-origin: top;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.topic:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.topic:hover::before { transform: scaleY(1); }
.topic .num { font-family: var(--f-head); font-weight: 800; font-size: .8rem; color: var(--ink-faint); letter-spacing: .04em; }
.topic .ttl { font-family: var(--f-head); font-weight: 800; font-size: 1.08rem; letter-spacing: -.01em; color: var(--ink); }
.topic .desc { font-size: .96rem; color: var(--ink-soft); line-height: 1.5; margin-top: auto; text-wrap: pretty; }
.topic .corner {
  position: absolute; right: 18px; top: 18px; width: 30px; height: 30px; opacity: .12;
  background: var(--violet); border-radius: 8px; transition: opacity .3s, transform .3s;
}
.topic:nth-child(3n+2) .corner { background: var(--teal); }
.topic:nth-child(3n) .corner { background: var(--coral); }
.topic:hover .corner { opacity: .9; transform: rotate(12deg) scale(1.05); }

/* ============================================================
   What a spot includes
   ============================================================ */
.spot-head { display: flex; flex-direction: column; gap: 16px; max-width: 640px; }
.features {
  display: grid; gap: 12px; margin-top: clamp(32px, 4vw, 50px);
  grid-template-columns: 1fr;
}
.feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: clamp(18px, 2.6vw, 24px);
  border-radius: 18px; background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.feature .ic {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--violet);
}
.feature:nth-child(4n+2) .ic { color: var(--teal); }
.feature:nth-child(4n+3) .ic { color: var(--coral); }
.feature:nth-child(4n) .ic { color: var(--gold-deep); }
.feature .ic svg { width: 22px; height: 22px; stroke-width: 2; }
.feature .txt b { display: block; font-family: var(--f-head); font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; color: var(--ink); margin-bottom: 3px; }
.feature .txt span { font-size: .92rem; color: var(--ink-soft); }

/* ============================================================
   The close
   ============================================================ */
.close-sec { position: relative; overflow: hidden; }
.close-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.close-inner h2 { max-width: 18ch; text-wrap: balance; }
.close-inner .sub { max-width: 40ch; }

.scarcity-band {
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 6px;
  padding: .7em 1.2em; border-radius: 100px;
  background: rgba(201,151,58,.09); border: 1px solid rgba(201,151,58,.3);
}
.scarcity-band .count { font-family: var(--f-head); font-weight: 900; color: var(--gold-deep); font-size: 1rem; }
.scarcity-band .dots i { background: rgba(201,151,58,.28); }
.scarcity-band .dots i.taken { background: var(--gold); box-shadow: 0 0 0 3px rgba(201,151,58,.2); }

.price-grid {
  display: grid; gap: 18px; margin-top: clamp(30px, 4vw, 44px); width: 100%;
  grid-template-columns: 1fr; max-width: 880px;
}
.price-card {
  text-align: left; padding: clamp(26px, 3.5vw, 36px);
  border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column; gap: 14px;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { border: none; }
.price-card.featured::before {
  content: ""; position: absolute; inset: 0; padding: 1.5px; border-radius: inherit;
  background: var(--grad-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.price-card .plan { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.price-card .plan .name { font-family: var(--f-head); font-weight: 800; font-size: 1.22rem; letter-spacing: -.02em; }
.price-card .plan .freq { font-size: .85rem; color: var(--ink-faint); font-family: var(--f-head); font-weight: 600; }
.price-card .badge-pop { font-family: var(--f-head); font-weight: 800; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--grad-brand); padding: .4em .8em; border-radius: 100px; }
.price-card .desc { font-size: .9rem; color: var(--ink-soft); }
.price-rows { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; border-top: 1px solid var(--line); }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.price-row .k { font-size: .9rem; color: var(--ink-soft); }
.price-row .v { display: flex; align-items: baseline; gap: 8px; }
.price-row .v del { color: var(--ink-faint); font-size: .9rem; }
.price-row .v .now { font-family: var(--f-head); font-weight: 800; font-size: 1.05rem; }
.price-row.total .k { font-weight: 700; color: var(--ink); font-family: var(--f-head); }
.price-row.total .now { font-size: 1.55rem; }
.price-row.total .now .gold-text { font-size: inherit; }

.close-cta { margin-top: clamp(28px, 4vw, 40px); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.close-note { font-size: .85rem; color: var(--ink-faint); max-width: 40ch; text-wrap: balance; }
.close-note b { color: var(--ink-soft); font-weight: 700; }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding-block: clamp(48px, 7vw, 80px); border-top: 1px solid var(--line); background: var(--surface); }
.footer .row { display: flex; flex-direction: column; gap: 26px; align-items: center; text-align: center; }
.footer .logo { display: flex; align-items: center; gap: 12px; }
.footer .logo img { width: 38px; height: 38px; }
.footer .logo b { font-family: var(--f-head); font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; }
.footer .logo b .y { color: var(--violet); }
.footer .brandline { font-family: var(--f-quote); font-style: italic; font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: var(--ink); line-height: 1.3; max-width: 24ch; }
.footer .brandline .en { display: block; font-size: .72em; color: var(--ink-faint); margin-top: 4px; }
.footer .meta { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; align-items: center; font-size: .92rem; color: var(--ink-soft); }
.footer .meta a { font-family: var(--f-head); font-weight: 700; color: var(--ink); transition: color .2s; }
.footer .meta a:hover { color: var(--violet); }
.footer .legal { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: center; font-size: .8rem; color: var(--ink-faint); }

/* ============================================================
   Hero switcher (design-review chrome — removable)
   ============================================================ */
.hero-switch {
  position: fixed; z-index: 90; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  padding: 7px 8px 7px 14px; border-radius: 100px;
  background: rgba(22,18,32,.9); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg); color: #fff;
}
.hero-switch .lbl { font-family: var(--f-head); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-right: 4px; }
.hero-switch button {
  font-family: var(--f-head); font-weight: 700; font-size: .82rem; color: rgba(255,255,255,.7);
  padding: .5em .9em; border-radius: 100px; transition: background .2s, color .2s;
}
.hero-switch button[aria-pressed="true"] { background: var(--grad-brand); color: #fff; }
.hero-switch .x { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,.5); font-size: 1rem; margin-left: 2px; }
.hero-switch .x:hover { background: rgba(255,255,255,.12); color: #fff; }
.hero-switch.hidden { display: none; }

/* ---------- Scroll reveal ---------- */

/* ============================================================
   Lesson lightbox + Level Lab philosophy line
   ============================================================ */
.lab-philos {
  margin: 4px auto 0; display: inline-flex; flex-wrap: wrap; gap: 10px 14px;
  align-items: center; justify-content: center; text-align: center;
}
.lab-philos .kicker {
  font-family: var(--f-head); font-weight: 800; font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--violet);
  background: var(--surface-2); padding: .5em 1em; border-radius: 100px;
}
.lab-philos .tripod { font-size: .92rem; color: var(--ink-soft); }
.lab-philos .tripod b { font-family: var(--f-head); font-weight: 700; color: var(--ink); }
.lab-philos .tripod em { font-style: normal; color: var(--ink-faint); }

.lesson-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: clamp(0px, 2vw, 28px); }
.lesson-modal[hidden] { display: none; }
.lm-scrim { position: absolute; inset: 0; background: rgba(16,11,26,.62); backdrop-filter: blur(8px); animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lm-panel {
  position: relative; width: min(1080px, 100%); height: min(92vh, 940px);
  background: var(--surface); border-radius: clamp(0px, 2vw, 24px); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  animation: lmIn .42s cubic-bezier(.2,.8,.2,1);
}
@keyframes lmIn { from { opacity: 0; transform: translateY(22px) scale(.985); } to { opacity: 1; transform: none; } }
.lm-bar { flex: none; display: flex; align-items: center; gap: 14px; padding: 11px 13px; border-bottom: 1px solid var(--line); background: var(--surface); }
.lm-brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.lm-logo { width: 34px; height: 34px; border-radius: 9px; flex: none; }
.lm-meta { min-width: 0; }
.lm-meta b { display: block; font-family: var(--f-head); font-weight: 800; font-size: .95rem; letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lm-meta span { display: block; font-size: .78rem; color: var(--ink-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lm-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; flex: none; }
.lm-newtab { font-family: var(--f-head); font-weight: 700; font-size: .82rem; color: var(--violet); padding: .6em .95em; border-radius: 100px; border: 1.5px solid var(--line-2); transition: border-color .2s, background .2s, transform .2s; white-space: nowrap; }
.lm-newtab:hover { border-color: var(--violet); background: var(--surface-2); transform: translateY(-1px); }
.lm-newtab .arr { display: inline-block; transition: transform .2s; }
.lm-newtab:hover .arr { transform: translate(2px,-2px); }
.lm-close { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); font-size: 1.05rem; background: var(--surface-2); transition: background .2s, color .2s; }
.lm-close:hover { background: var(--ink); color: #fff; }
.lm-stage { position: relative; flex: 1; background: var(--surface-2); }
.lm-stage iframe { width: 100%; height: 100%; border: 0; display: block; background: #fff; }
.lm-loading { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 14px; align-items: center; justify-content: center; padding: 24px; background: var(--surface-2); }
.lm-loading.hide { display: none; }
.lm-spin { width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--line-2); border-top-color: var(--violet); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.lm-loading p { font-family: var(--f-head); font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.lm-hint { display: none; font-size: .78rem; color: var(--ink-faint); max-width: 34ch; text-align: center; line-height: 1.5; }
.lm-hint b { color: var(--ink-soft); }

@media (max-width: 600px) {
  .lesson-modal { padding: 0; }
  .lm-panel { height: 100%; width: 100%; border-radius: 0; }
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Handoff-only additions
   ============================================================ */

/* ---- Profile link (under About Me) ---- */
.profile-link {
  display: inline-flex; align-items: center; gap: 12px; align-self: flex-start;
  padding: 9px 18px 9px 9px; border-radius: 100px;
  background: var(--surface); border: 1.5px solid var(--line-2);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, border-color .25s, box-shadow .25s; margin-top: 4px;
}
.profile-link:hover { transform: translateY(-2px); border-color: var(--violet); box-shadow: var(--shadow-md); }
.profile-link .av { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex: none; background: var(--surface-2); }
.profile-link .pl-txt { display: flex; flex-direction: column; line-height: 1.2; }
.profile-link .pl-txt b { font-family: var(--f-head); font-weight: 700; font-size: .92rem; color: var(--ink); }
.profile-link .pl-txt span { font-size: .78rem; color: var(--ink-faint); }
.profile-link .pl-arrow { margin-left: 4px; color: var(--violet); font-weight: 800; transition: transform .2s; }
.profile-link:hover .pl-arrow { transform: translateX(3px); }

/* ---- Instagram embed wrapper (embed.js + poster fallback) ---- */
.ig-embed { width: min(300px, 78vw); margin-inline: auto; }
.ig-embed .instagram-media { margin: 0 auto !important; min-width: 0 !important; }
.phone-link { display: block; text-decoration: none; }

/* ---- How it works (3 steps) ---- */
.how {
  display: grid; gap: 14px; width: 100%; max-width: 880px;
  margin: clamp(28px, 4vw, 42px) auto 0; grid-template-columns: 1fr;
}
.how-step {
  display: flex; align-items: flex-start; gap: 14px; text-align: left;
  padding: 20px 22px; border-radius: 18px; background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.how-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.how-step .n { flex: none; width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; color: #fff; background: var(--grad-brand); font-size: .98rem; }
.how-step .st b { display: block; font-family: var(--f-head); font-weight: 700; font-size: 1.02rem; color: var(--ink); letter-spacing: -.01em; }
.how-step .st span { font-size: .9rem; color: var(--ink-soft); }
@media (min-width: 760px) { .how { grid-template-columns: repeat(3, 1fr); } }

/* ---- Personal sign-off ---- */
.signoff {
  margin-top: clamp(36px, 5vw, 58px); max-width: 560px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
  padding-top: clamp(30px, 4vw, 44px); border-top: 1px solid var(--line);
}
.signoff .rab { flex: none; color: var(--violet); opacity: .85; }
.signoff .rab svg { width: 42px; height: 42px; }
.signoff p { font-family: var(--f-quote); font-style: italic; font-size: clamp(1.2rem, 2.6vw, 1.6rem); line-height: 1.4; color: var(--ink); text-wrap: balance; }
.signoff .sig { font-family: var(--f-head); font-weight: 800; letter-spacing: -.01em; color: var(--violet); font-size: 1.05rem; }
.signoff .sig small { display: block; font-family: var(--f-body); font-weight: 500; font-size: .76rem; letter-spacing: .04em; color: var(--ink-faint); margin-top: 3px; text-transform: uppercase; }

/* ---- Sticky mobile CTA ---- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 10px 10px 18px; border-radius: 18px;
  background: rgba(20,16,30,.94); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  transform: translateY(160%); opacity: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .3s;
}
.sticky-cta.show { transform: none; opacity: 1; }
.sticky-cta .info { color: #fff; min-width: 0; flex: 1 1 auto; line-height: 1.15; }
.sticky-cta .info b { display: block; font-family: var(--f-head); font-weight: 800; font-size: .86rem; letter-spacing: -.01em; }
.sticky-cta .info > span { display: block; font-size: .7rem; color: rgba(255,255,255,.62); }
.sticky-cta .info span .gold { color: var(--yellow); }
.sticky-cta .btn { padding: .82em 1.1em; font-size: .85rem; white-space: nowrap; flex: 0 0 auto; }
/* very narrow phones: the sub-line + button would overflow — drop the price line, keep the bar tight */
@media (max-width: 380px) {
  .sticky-cta { padding-left: 14px; gap: 10px; }
  .sticky-cta .info span { display: none; }
  .sticky-cta .btn { padding: .82em .95em; }
}
@media (min-width: 760px) {
  .sticky-cta { left: auto; right: 22px; bottom: 22px; max-width: 360px; }
}

/* scarcity reinforcement line */
.scarcity-line { font-family: var(--f-head); font-weight: 700; font-size: .82rem; color: var(--gold-deep); letter-spacing: .01em; }

/* ---- Level preview (screenshot below A1/A2 cards) ---- */
.level-preview { width: 100%; max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 11px; }
/* Mobile: lead with the lesson screenshot above the big level block — it's what makes students want to tap in. */
@media (max-width: 760px) { .level-preview { order: -1; } }
.lp-frame { display: block; border-radius: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); transition: transform .3s, box-shadow .3s; }
.lp-frame:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.lp-bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.lp-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.lp-bar i:nth-child(1) { background: #F7728A; } .lp-bar i:nth-child(2) { background: #FFD36A; } .lp-bar i:nth-child(3) { background: #5BD08A; }
.lp-bar em { margin-left: 8px; font-family: ui-monospace, Menlo, monospace; font-style: normal; font-size: .72rem; color: var(--ink-faint); }
.lp-shot { position: relative; display: block; aspect-ratio: 16/10; background: var(--surface-2); overflow: hidden; }
.lp-ph { position: absolute; inset: 0; display: grid; place-content: center; gap: 4px; padding: 18px; text-align: center;
  background: radial-gradient(120% 120% at 50% 0%, #F2EFFA, #ECE7F4); }
.lp-ph b { font-family: var(--f-head); font-weight: 800; font-size: 1.1rem; letter-spacing: -.02em; color: var(--ink-soft); }
.lp-ph b i { font-style: normal; color: var(--violet); }
.lp-ph small { font-family: var(--f-head); font-weight: 700; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.lp-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.level-preview figcaption { text-align: center; font-size: .82rem; color: var(--ink-faint); }

/* ---- Kabbalah stories ---- */
.kab-sec { background: var(--bg-warm); border-block: 1px solid var(--line); overflow: hidden; }
.kab-row { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 860px) { .kab-row { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); } }
.kab-art { max-width: 460px; width: 100%; margin-inline: auto; }
.kab-img--logo { display: block; width: 72px; height: 72px; border-radius: 18px; margin-bottom: 16px; }
.kab-img--story { display: block; width: 100%; height: auto; border-radius: 10px; box-shadow: var(--shadow-md); }
.kab-caption {
  display: inline-flex; align-items: center; gap: .5em; margin-top: 10px;
  font-family: var(--f-head); font-weight: 700; font-size: .82rem; letter-spacing: -.01em; color: var(--ink-soft);
}
.kab-caption aye-icon { color: var(--yellow); }
.kab-caption svg { width: 17px; height: 17px; }
.kab-copy .eyebrow { margin-bottom: 18px; display: block; text-align: center; }
.kab-tree-img { display: block; height: 64px; width: 64px; object-fit: contain; margin: 0 auto 14px; }
.kab-eyebrow::before { display: none; }
.kab-copy h2 { margin-bottom: 18px; }
.kab-lead-2 { margin-top: 16px; font-size: clamp(1rem, 1.5vw, 1.1rem); color: var(--ink-soft); line-height: 1.6; }
.kab-lead-2 b { color: var(--ink); font-weight: 700; }
.kab-lead-2 em { font-style: italic; color: var(--violet); }
.kab-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---- TOEFL Library (view-only) ---- */
.toefl-sec { background: var(--surface); border-block: 1px solid var(--line); overflow: hidden; }
.toefl-row { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
@media (min-width: 900px) { .toefl-row { grid-template-columns: 1fr 1.08fr; } }
.toefl-copy h2 { margin: 16px 0 18px; }
.toefl-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin: 26px 0 22px; }
.toefl-list li { display: flex; align-items: center; gap: 10px; font-family: var(--f-head); font-weight: 700; font-size: .95rem; color: var(--ink); }
.toefl-list aye-icon { color: var(--violet); flex: none; }
.toefl-list aye-icon svg { width: 19px; height: 19px; }
.toefl-note { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--ink-soft); background: var(--surface-2); padding: .65em 1em; border-radius: 12px; }
.toefl-note aye-icon { color: var(--gold-deep); flex: none; }
.toefl-note aye-icon svg { width: 16px; height: 16px; }
.toefl-shot { border-radius: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.toefl-shot .lp-shot { position: relative; display: block; aspect-ratio: 16/10; background: var(--surface-2); overflow: hidden; }
.toefl-shot .lp-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; pointer-events: none; }
.toefl-lock { position: absolute; right: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-head); font-weight: 700; font-size: .72rem; letter-spacing: .02em; color: #fff;
  background: rgba(20,16,30,.62); backdrop-filter: blur(6px); padding: .5em .8em; border-radius: 10px; }
.toefl-lock aye-icon svg { width: 14px; height: 14px; }

/* ---- Proof / testimonials ---- */
.proof-grid { display: grid; gap: 14px; margin-top: clamp(34px, 5vw, 54px); grid-template-columns: 1fr; }
.tcard { position: relative; display: flex; flex-direction: column; gap: 16px; padding: clamp(22px, 3vw, 30px); border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.tcard .qglyph { position: absolute; top: -8px; right: 16px; font-family: var(--f-quote); font-style: italic; font-size: 6rem; line-height: 1; color: var(--surface-2); pointer-events: none; }
.tbadge { align-self: flex-start; font-family: var(--f-head); font-weight: 800; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: #2A1E06; background: linear-gradient(120deg, #E8C46A, #C9973A); padding: .5em .9em; border-radius: 100px; position: relative; z-index: 1; }
.tbadge.alt { color: var(--violet); background: var(--surface-2); }
.tquote { font-size: 1rem; line-height: 1.56; color: var(--ink); position: relative; z-index: 1; text-wrap: pretty; }
.tperson { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tmono { width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; font-size: .85rem; color: #fff; background: var(--grad-brand); letter-spacing: .02em; }
.tcard:nth-child(3n+2) .tmono { background: linear-gradient(135deg, #1ECBE1, #4657F2); }
.tcard:nth-child(3n) .tmono { background: linear-gradient(135deg, #9A6BFF, #593FE0); }
.tperson .tn b { display: block; font-family: var(--f-head); font-weight: 700; font-size: .95rem; color: var(--ink); letter-spacing: -.01em; }
.tperson .tn span { font-size: .8rem; color: var(--ink-faint); }
.proof-foot { display: flex; justify-content: center; margin-top: clamp(26px, 4vw, 38px); }
.proof-more { font-family: var(--f-head); font-weight: 700; color: var(--violet); display: inline-flex; align-items: center; gap: .5em; transition: gap .2s; }
.proof-more:hover { gap: .8em; }
.proof-more .arrow { transition: transform .2s; }
.proof-more:hover .arrow { transform: translateX(3px); }
@media (min-width: 680px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Responsive — desktop enhancements
   ============================================================ */
@media (min-width: 760px) {
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .heroA .grid { grid-template-columns: 1.15fr .85fr; }
  .heroB .panel .grid { grid-template-columns: 1.2fr .8fr; }
  .embed-row { grid-template-columns: 1.05fr .95fr; }
  .embed-row .embed-copy { padding-right: 20px; }
  .embed-row.reverse .embed-copy { order: 2; padding-right: 0; padding-left: 20px; }
  .level-card { grid-template-columns: .92fr 1.08fr; }
  .level-card .poster { aspect-ratio: auto; }
  .topics-grid { grid-template-columns: repeat(4, 1fr); }
  .footer .row { flex-direction: row; justify-content: space-between; text-align: left; align-items: center; }
  .footer .brandline { max-width: 30ch; }
}

@media (min-width: 1180px) {
  .topics-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   FAQ section — ported from hotsite-b
   ============================================================ */
.faq-sec { background: var(--surface); border-block: 1px solid var(--line); }
.faq-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item:hover { border-color: var(--line-2, var(--line)); }
.faq-item[open] { border-color: var(--violet); box-shadow: var(--shadow-md); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; list-style: none; font-family: var(--f-head); font-weight: 700; font-size: 1rem; line-height: 1.35; color: var(--ink); transition: color .15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--violet); }
.faq-item summary::after { content: "+"; flex: none; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-2); color: var(--violet); font-family: var(--f-head); font-weight: 700; font-size: 1.25rem; line-height: 1; transition: background .2s, transform .2s; }
.faq-item[open] summary::after { content: "\2212"; background: var(--violet); color: #fff; }
.faq-a { padding: 0 22px 22px; }
.faq-a p { margin: 0; font-family: var(--f-body, var(--f-head)); font-size: .98rem; line-height: 1.62; color: var(--ink-soft); }
.faq-a p + p { margin-top: 10px; }
.faq-a em { font-style: normal; font-weight: 700; color: var(--violet); }
.faq-item[open] .faq-a { animation: faqReveal .22s ease both; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) { .faq-item summary { padding: 16px 16px; font-size: .95rem; } .faq-a { padding: 0 16px 18px; } }
