/* ============================================================
   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(28px, 4vw, 60px);
  --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; }

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; }

.section { padding-block: var(--section-y); position: relative; }

.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: 100px;
  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;
  align-self: flex-start; width: max-content; max-width: 100%;
  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: var(--section-y); }
.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);
  width: 100%;
}
/* Hero portrait: stays pinned under the sticky nav as the user scrolls the long left column. Releases when the hero section ends (parent is the hero grid). */
@media (min-width: 960px) {
  .heroA .grid { align-items: start; }
  .heroA .portrait {
    position: sticky;
    top: calc(72px + 20px);   /* 72px = navbar height, +20 gap */
    align-self: start;
  }
}
.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 55%, rgba(22,18,32,.28));
}
.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 { font-family: var(--f-head); font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; line-height: 1.2; }
.heroA .portrait .tag span { font-size: .8rem; opacity: .9; line-height: 1.3; }
/* Override `.l-en{display:none}` was being defeated by .heroA .portrait .tag span specificity — now spans get block-level layout from the flex-column parent .tag-txt, so we don't force display:block on them. */

/* ---- 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: 100px;
  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; }
.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; justify-content: center; 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; 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); }

/* ============================================================
   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: 6px auto 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  text-align: center;
  width: min(100%, 680px);
}
.lab-philos .kicker {
  font-family: var(--f-head); font-weight: 900;
  font-size: clamp(1rem, 2.8vw, 1.22rem);
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--violet);
  background: linear-gradient(135deg, rgba(89,63,224,.12), rgba(30,203,225,.08));
  border: 1.5px solid rgba(89,63,224,.18);
  padding: .82em 1.5em; border-radius: 100px;
  box-shadow: var(--shadow-md);
}
.lab-philos-copy {
  max-width: 52ch; color: var(--ink-soft);
  font-size: clamp(1rem, 2.8vw, 1.16rem);
  line-height: 1.6; text-wrap: balance;
}
.lab-tripod {
  width: 100%; display: grid; gap: 8px;
  padding: 10px; border: 1px solid var(--line);
  border-radius: 18px; background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
}
.lab-tripod-base {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.lab-tripod-base > span {
  min-width: 0;
  display: flex; flex-direction: column;
  align-items: flex-start; text-align: left;
  gap: 4px; padding: 16px 14px;
  border-radius: 13px; background: var(--surface);
  border: 1px solid var(--line); color: var(--ink);
  font-family: var(--f-head); font-weight: 800;
  letter-spacing: -.01em; white-space: normal;
}
.lab-tripod-base aye-icon { color: var(--violet); flex: none; margin-bottom: 6px; }
.lab-tripod-base > span > b { display: block; font-family: var(--f-head); font-weight: 900; font-size: 1rem; color: var(--ink); }
.lab-tripod-base > span > em { display: block; font-style: normal; font-family: var(--f-base, "Poppins", sans-serif); font-weight: 400; font-size: .82rem; color: var(--ink-soft); line-height: 1.55; margin-top: 2px; }
.lab-tripod-purpose {
  display: flex; align-items: center; justify-content: center;
  gap: 9px; padding: .82em 1em;
  border-radius: 13px; color: #fff;
  background: linear-gradient(135deg, #161220 0%, #3a22b0 48%, #593FE0 100%);
  font-size: clamp(.88rem, 1.8vw, 1rem);
}
.lab-tripod-purpose b { font-family: var(--f-head); font-weight: 900; }
.lab-tripod-purpose > span { color: rgba(255,255,255,.82); }
@media (max-width: 520px) {
  .lab-tripod { padding: 8px; border-radius: 16px; }
  .lab-tripod-base { grid-template-columns: 1fr; }
  .lab-tripod-base > span { justify-content: flex-start; padding-inline: 14px; }
  .lab-tripod-purpose { flex-direction: column; gap: 3px; line-height: 1.22; }
}

.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; }
/* Parallax: don't let the reveal's .7s transform-transition ease every scroll frame (kills the jank). Keep the opacity fade-in; promote to its own GPU layer. */
[data-parallax] { will-change: transform; backface-visibility: hidden; }
.reveal[data-parallax] { transition-property: opacity; transition-delay: 0s; }

@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 { width: 44px; height: 44px; opacity: .85; }
.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: 100px;
  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; 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 { font-size: .7rem; color: rgba(255,255,255,.62); }
.sticky-cta .info span .gold { color: var(--yellow); }
.sticky-cta .btn { padding: .82em 1.2em; font-size: .88rem; white-space: nowrap; flex: none; }
@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 { max-width: 760px; margin: clamp(18px, 3vw, 30px) auto 0; display: flex; flex-direction: column; gap: 11px; }
.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-items: center; padding: 18px; text-align: center;
  background: repeating-linear-gradient(45deg, #F2EFFA, #F2EFFA 13px, #ECE7F4 13px, #ECE7F4 26px); }
.lp-ph code { font-family: ui-monospace, Menlo, monospace; font-size: .72rem; color: var(--ink-soft); background: var(--surface); padding: .55em .85em; border-radius: 8px; box-shadow: var(--shadow-sm); max-width: 80%; word-break: break-all; }
.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); }

/* ---- 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); } }

/* ============================================================
   HOMEPAGE additions
   ============================================================ */
body { padding-top: 64px; }
section[id] { scroll-margin-top: 84px; }

/* ---- Bilingual toggle ---- */
.l-en { display: none; }
body.lang-en .l-pt { display: none; }
body.lang-en .l-en { display: block; }
.l-en.i { display: none; }
body.lang-en .l-pt.i { display: none; }
body.lang-en .l-en.i { display: inline; }
.btn.l-en { display: none; }
body.lang-en .btn.l-pt { display: none; }
body.lang-en .btn.l-en { display: inline-flex; }

/* ---- Hero chips (Individual · Personalizada · Online ao vivo) ---- */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line, #E2DBFF);
  border-radius: 100px;
  font-family: var(--f-head, 'Poppins'), sans-serif;
  font-weight: 600; font-size: .9rem;
  color: var(--ink-soft, #4A4459);
  line-height: 1;
}
.hero-chip svg {
  width: 15px; height: 15px; flex-shrink: 0;
  stroke: var(--violet, #593FE0); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Faded eyebrow tone — same --ink-faint hotsite-b uses */
.hero-eyebrow { color: #908AA0; }
.hero-eyebrow .l-pt, .hero-eyebrow .l-en { color: inherit; }

/* ---- Nav ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250,248,252,.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); transition: box-shadow .3s, background .3s; }
.nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(250,248,252,.92); }
.nav-in { max-width: var(--maxw); margin: 0 auto; padding: 13px var(--gutter); display: flex; align-items: center; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--f-head); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink); }
.nav-logo img { height: 32px; width: auto; border-radius: 8px; }
.nav-logo .y { color: inherit; }
.nav-menu { display: none; margin-left: 14px; gap: 26px; list-style: none; }
.nav-menu a { font-family: var(--f-head); font-weight: 600; font-size: .9rem; color: var(--ink-soft); transition: color .2s; }
.nav-menu a:hover { color: var(--violet); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.lang-toggle { display: flex; gap: 3px; padding: 3px; background: var(--surface-2); border-radius: 100px; }
.lang-btn { padding: 5px 11px; border-radius: 100px; font-family: var(--f-head); font-weight: 700; font-size: .76rem; color: var(--ink-faint); transition: background .2s, color .2s; }
.lang-btn.active { background: var(--surface); color: var(--violet); box-shadow: var(--shadow-sm); }
.nav-cta { display: none; padding: .7em 1.2em; font-size: .85rem; }
.nav-burger { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; color: var(--ink); }
.nav-burger:hover { background: var(--surface-2); }
.nav-burger svg { width: 22px; height: 22px; }
.nav-mobile { display: none; flex-direction: column; gap: 2px; padding: 8px var(--gutter) 16px; border-top: 1px solid var(--line); background: var(--surface); }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--f-head); font-weight: 600; font-size: 1rem; color: var(--ink-soft); padding: 12px 4px; border-bottom: 1px solid var(--line); }
.nav-mobile a:last-of-type { border-bottom: none; }
@media (min-width: 760px) {
  .nav-menu { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none !important; }
}

/* ---- Home hero ---- */
.home-hero { padding-top: clamp(36px, 6vw, 70px); text-align: center; overflow: hidden; }
.home-hero .inner { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 3vw, 30px); position: relative; z-index: 2; }
.home-hero h1 { font-size: clamp(2.6rem, 7.2vw, 5.4rem); line-height: 1.0; }
.home-hero h1 .c1,
.home-hero h1 .c2,
.hero h1 .c1,
.hero h1 .c2 { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.home-hero .quote { font-size: clamp(1.3rem, 2.8vw, 2rem); color: var(--ink); max-width: 22ch; }
.home-hero .quote .accent { color: var(--violet); }
.home-hero .lead { max-width: 40em; }
.home-hero .hero-ctas { justify-content: center; }
.cred-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 22px; margin-top: 6px; }
.cred { display: inline-flex; align-items: baseline; gap: 7px; font-family: var(--f-head); }
.cred b { font-weight: 900; font-size: 1.15rem; color: var(--ink); letter-spacing: -.02em; }
.cred span { font-size: .82rem; color: var(--ink-faint); font-weight: 600; }
.cred-row .sep { width: 1px; height: 22px; background: var(--line-2); }
.cred-row .exams { display: inline-flex; gap: 7px; }
.cred-row .exams i { font-family: var(--f-head); font-weight: 700; font-style: normal; font-size: .72rem; letter-spacing: .04em; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line-2); padding: .35em .7em; border-radius: 100px; }

/* ---- Section heading block ---- */
.sec-head { max-width: 760px; display: flex; flex-direction: column; gap: 16px; margin-bottom: clamp(34px, 5vw, 52px); }
.sec-head.center { margin-inline: auto; text-align: center; align-items: center; }
.sec-head h2 { text-wrap: balance; }

/* ---- Principle cards (philosophy) ---- */
.pgrid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.pcard { padding: clamp(24px, 3vw, 32px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; gap: 12px; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pcard .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--surface-2); color: var(--violet); margin-bottom: 4px; }
.pcard:nth-child(2) .ic { color: var(--teal); } .pcard:nth-child(3) .ic { color: var(--coral); }
.pcard .ic svg { width: 24px; height: 24px; }
.pcard h4 { font-family: var(--f-head); font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; color: var(--ink); }
.pcard p { font-size: .95rem; color: var(--ink-soft); line-height: 1.6; }

/* ---- Contrast (other vs AyE) ---- */
.contrast { display: grid; gap: 14px; grid-template-columns: 1fr; margin-top: clamp(28px,4vw,40px); }
.vs { padding: 22px 24px; border-radius: 18px; display: flex; flex-direction: column; gap: 6px; }
.vs .vlabel { font-family: var(--f-head); font-weight: 700; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.vs .vmain { font-family: var(--f-head); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.vs.before { background: rgba(247,37,133,.05); border: 1px solid rgba(247,37,133,.18); }
.vs.before .vlabel { color: var(--coral); } .vs.before .vmain { color: #C01E6A; }
.vs.after { background: rgba(89,63,224,.05); border: 1px solid rgba(89,63,224,.2); }
.vs.after .vlabel { color: var(--violet); } .vs.after .vmain { color: var(--violet); }

/* ---- Pillars ---- */
.pillars { margin-top: clamp(28px,4vw,40px); border-top: 1px solid var(--line); }
.pillar { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.pillar .pn { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; font-size: .85rem; color: #fff; background: var(--grad-brand); }
.pillar p { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; }
.pillar p b { color: var(--ink); font-weight: 700; }

/* ---- Mantra ---- */
.mantra { margin-top: clamp(34px,5vw,52px); text-align: center; padding: clamp(30px,4vw,44px); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(89,63,224,.07), rgba(30,203,225,.06)); border: 1px solid rgba(89,63,224,.14); }
.mantra .pt { font-family: var(--f-quote); font-style: italic; font-weight: 600; font-size: clamp(1.5rem, 3.4vw, 2.3rem); color: var(--violet); line-height: 1.3; }
.mantra .en { font-family: var(--f-head); font-weight: 600; font-size: .95rem; color: var(--ink-soft); margin-top: 8px; }

/* ---- Experience teaser ---- */
.exp { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(34px,5vw,60px) clamp(26px,5vw,64px); color: #fff; background: var(--grad-aurora); background-size: 200% 200%; animation: auroraShift 18s ease-in-out infinite; box-shadow: var(--shadow-lg); text-align: center; }
.exp::after { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 70% at 80% 10%, rgba(255,216,87,.18), transparent 60%), radial-gradient(50% 60% at 10% 95%, rgba(30,203,225,.28), transparent 60%); pointer-events: none; }
.exp > * { position: relative; z-index: 1; }
.exp .eyebrow { color: rgba(255,255,255,.85); }
.exp .eyebrow::before { background: rgba(255,255,255,.6); }
.exp h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.exp p { color: rgba(255,255,255,.88); max-width: 44ch; margin: 14px auto 0; }
.exp .chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: clamp(26px,4vw,36px) auto 0; max-width: 540px; }
.exp .lvchip { font-family: var(--f-head); font-weight: 800; font-size: 1rem; color: #fff; background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.4); padding: .7em 1.15em; border-radius: 100px; transition: transform .2s, background .2s; }
.exp .lvchip span { font-size: .62em; font-weight: 700; opacity: .8; margin-left: .4em; letter-spacing: .04em; }
.exp .lvchip:hover { transform: translateY(-2px); background: rgba(255,255,255,.26); }
.exp .exp-cta { margin-top: clamp(26px,4vw,34px); }
.exp .btn--light { background: #fff; color: var(--violet); box-shadow: 0 16px 34px -14px rgba(0,0,0,.4); }
.exp .btn--light:hover { transform: translateY(-2px); }

/* ---- Tripod cards ---- */
.tripod-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.trip { text-align: center; padding: clamp(28px,3.5vw,38px) clamp(22px,3vw,28px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.trip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trip .ic { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center; background: var(--surface-2); color: var(--violet); }
.trip:nth-child(2) .ic { color: var(--gold-deep); } .trip:nth-child(3) .ic { color: var(--teal); }
.trip .ic svg { width: 27px; height: 27px; }
.trip h4 { font-family: var(--f-head); font-weight: 800; font-size: 1.2rem; letter-spacing: -.01em; color: var(--ink); margin-bottom: 8px; }
.trip p { font-size: .94rem; color: var(--ink-soft); line-height: 1.6; }
.trip.cycle { background: linear-gradient(135deg, rgba(89,63,224,.06), rgba(30,203,225,.05)); border-color: rgba(89,63,224,.14); }
.trip-closer { text-align: center; margin-top: clamp(26px,4vw,36px); font-family: var(--f-quote); font-style: italic; font-size: clamp(1.1rem,2.2vw,1.4rem); color: var(--violet); }

/* ---- Journey ---- */
.jgrid { display: grid; gap: 14px; grid-template-columns: 1fr; margin-top: clamp(30px,4vw,44px); }
.jstep { position: relative; padding: clamp(24px,3vw,30px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.jstep:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.jstep .jn { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--surface-2); margin-bottom: 16px; }
.jstep .jn img { width: 26px; height: 26px; }
.jstep .jn b { font-family: var(--f-head); font-weight: 800; color: var(--violet); font-size: 1.05rem; }
.jstep h4 { font-family: var(--f-head); font-weight: 800; font-size: 1.08rem; letter-spacing: -.01em; color: var(--ink); margin-bottom: 8px; }
.jstep p { font-size: .93rem; color: var(--ink-soft); line-height: 1.6; }
.journey-lead { font-family: var(--f-quote); font-style: italic; font-size: clamp(1.15rem,2.2vw,1.45rem); color: var(--violet); line-height: 1.4; max-width: 30ch; }

/* ---- Courses ---- */
.course-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.course { display: flex; flex-direction: column; gap: 12px; padding: clamp(26px,3vw,34px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s, border-color .3s; }
.course:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.course .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--surface-2); color: var(--violet); }
.course:nth-child(2) .ic { color: var(--gold-deep); } .course:nth-child(3) .ic { color: var(--aurora); }
.course .ic svg { width: 25px; height: 25px; }
.course h4 { font-family: var(--f-head); font-weight: 800; font-size: 1.25rem; letter-spacing: -.01em; color: var(--ink); }
.course .ctag { font-family: var(--f-head); font-weight: 700; font-size: .82rem; color: var(--violet); }
.course .ctag.exams { color: var(--gold-deep); letter-spacing: .02em; }
.course p { font-size: .94rem; color: var(--ink-soft); line-height: 1.62; }
.course .clink { margin-top: auto; padding-top: 6px; }
.course .clink a { font-family: var(--f-head); font-weight: 700; font-size: .9rem; color: var(--violet); display: inline-flex; align-items: center; gap: .45em; transition: gap .2s; }
.course .clink a:hover { gap: .7em; }

/* ---- App features ---- */
.appf-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }

/* ---- Kabbalah stories (imported from hotsite-b §5.5b) ---- */
.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; }

/* ---- Platform showcase (imported from hotsite-b §5.6) ---- */
.platform-showcase {
  margin-top: clamp(40px,6vw,72px);
  display: flex; flex-direction: column; gap: clamp(24px,4vw,40px);
}
.platform-header { max-width: 640px; display: flex; flex-direction: column; gap: 14px; }
.platform-header h3 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
.platform-screens {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .platform-screens { grid-template-columns: 1.05fr .95fr; align-items: start; }
  .platform-fig--detail { margin-top: 40px; }
}
.platform-fig {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--surface-2);
}
.platform-fig img { width: 100%; height: auto; display: block; }
.platform-fig figcaption {
  padding: 10px 16px; font-family: var(--f-head); font-weight: 600;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-faint); background: var(--surface);
}

/* ---- Stats ---- */
.stats { display: grid; gap: 18px; grid-template-columns: repeat(2,1fr); text-align: center; }
.stat .num { font-family: var(--f-head); font-weight: 900; font-size: clamp(2.6rem,6vw,3.6rem); letter-spacing: -.03em; line-height: 1; }
.stat:nth-child(1) .num { color: var(--violet); } .stat:nth-child(2) .num { color: var(--gold-deep); }
.stat:nth-child(3) .num { color: var(--aurora); } .stat:nth-child(4) .num { color: var(--teal); }
.stat .lbl { margin-top: 8px; font-family: var(--f-head); font-weight: 700; font-size: .92rem; color: var(--ink); }
.stat .lbl small { display: block; font-family: var(--f-body); font-weight: 400; font-size: .8rem; color: var(--ink-faint); margin-top: 2px; }
.certs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: clamp(30px,4vw,44px); }
.cert { font-family: var(--f-head); font-weight: 700; font-size: .9rem; color: var(--ink); background: var(--surface); border: 1.5px solid var(--line-2); padding: .7em 1.3em; border-radius: 100px; box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s; }
.cert:hover { border-color: var(--violet); transform: translateY(-2px); }

/* ---- About ---- */
.about-grid { display: grid; gap: clamp(28px,4vw,52px); grid-template-columns: 1fr; align-items: start; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; max-width: 360px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-body h3 { font-family: var(--f-head); font-weight: 700; font-size: 1.1rem; color: var(--violet); }
.about-creds { font-family: var(--f-head); font-weight: 600; font-size: .95rem; color: var(--teal); margin: 12px 0 18px; line-height: 1.6; }
.about-body p { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 12px; }
.about-body .hero-ctas { margin-top: 22px; }

/* ---- Final CTA (dark accent moment) ---- */
.final { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(48px,7vw,96px) clamp(28px,5vw,72px); text-align: center; color: #fff; background: linear-gradient(135deg, #1B1430 0%, #2A1E68 45%, #3A2FBF 100%); box-shadow: var(--shadow-lg); }
.final::after { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 85% 90%, rgba(154,107,255,.15), transparent 60%); pointer-events: none; }
.final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 0%, rgba(154,107,255,.35), transparent 65%); pointer-events: none; }
.final > * { position: relative; z-index: 1; }
.final h2 { color: #fff; max-width: 20ch; margin: 0 auto 14px; }
.final p { color: rgba(255,255,255,.7); max-width: 46ch; margin: 0 auto clamp(26px,4vw,36px); }
.final .hero-ctas { justify-content: center; }
.final .btn--ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); color: #fff; }
.final .btn--ghost:hover { background: rgba(255,255,255,.2); color: #fff; border-color: #fff; }

/* ---- Home footer ---- */
.home-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: clamp(48px,7vw,76px); }
.home-footer .frow { display: flex; flex-direction: column; gap: 26px; align-items: center; text-align: center; }
.home-footer .flogo { display: flex; align-items: center; gap: 11px; color: #fff; font-family: var(--f-head); font-weight: 800; font-size: 1.15rem; }
.home-footer .flogo img { height: 36px; border-radius: 8px; }
.home-footer .flogo .y { color: inherit; }
.home-footer .ftag { font-family: var(--f-quote); font-style: italic; font-size: clamp(1.1rem,2.2vw,1.4rem); color: #fff; line-height: 1.35; max-width: 26ch; }
.home-footer .ftag .en { display: block; font-size: .72em; color: rgba(255,255,255,.45); margin-top: 5px; }
.home-footer .fmeta { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; font-size: .9rem; }
.home-footer .fmeta a { color: rgba(255,255,255,.75); font-family: var(--f-head); font-weight: 600; transition: color .2s; }
.home-footer .fmeta a:hover { color: #fff; }
.home-footer .fcopy { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ---- WhatsApp icon in buttons ---- */
.wa { width: 19px; height: 19px; fill: currentColor; flex: none; }

@media (min-width: 680px) {
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .contrast { grid-template-columns: 1fr 1fr; }
  .tripod-grid { grid-template-columns: repeat(2, 1fr); }
  .jgrid { grid-template-columns: repeat(2, 1fr); }
  .course-grid { grid-template-columns: repeat(3, 1fr); }
  .appf-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 760px) {
  .jgrid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: .8fr 1.2fr; align-items: center; }
  .tripod-grid { grid-template-columns: repeat(4, 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: 0; 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); }
}

/* ============================================================
   TOEFL Library + FAQ — ported from hotsite-b/samples
   ============================================================ */
.toefl-sec { background: var(--surface, #fff); border-block: 1px solid var(--line, #E2DBFF); 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; padding: 0; }
.toefl-list li { display: flex; align-items: center; gap: 10px; font-family: var(--f-head); font-weight: 700; font-size: .95rem; color: var(--ink, #1B1726); padding: 12px 14px; background: rgba(89,63,224,.04); border: 1px solid rgba(89,63,224,.14); border-radius: 12px; }
.toefl-list aye-icon { color: var(--violet, #593FE0); flex: none; }
.toefl-note { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--ink-soft, #4A4459); background: rgba(230,168,0,.08); border: 1px solid rgba(230,168,0,.22); padding: .65em 1em; border-radius: 12px; }
.toefl-note aye-icon { color: var(--gold-deep, #C9973A); flex: none; }
.toefl-shot { background: #f5f3fa; border-radius: 18px; padding: 14px; box-shadow: 0 20px 50px -10px rgba(89,63,224,.18); margin: 0; position: relative; }
.lp-bar { display: flex; align-items: center; gap: 8px; padding: 4px 10px 12px; border-bottom: 1px solid #e4dffc; margin-bottom: 12px; }
.lp-bar i { width: 10px; height: 10px; border-radius: 50%; }
.lp-bar i:nth-child(1) { background: #ff6052; } .lp-bar i:nth-child(2) { background: #f4c34e; } .lp-bar i:nth-child(3) { background: #5bcc8a; }
.lp-bar em { margin-left: 6px; font-style: normal; font-size: .82rem; color: #8e89a3; }
.lp-shot { position: relative; display: block; border-radius: 12px; overflow: hidden; }
.lp-shot img { display: block; width: 100%; height: auto; }
.toefl-lock { position: absolute; bottom: 14px; right: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: #fff; background: rgba(22,18,32,.78); padding: 7px 12px; border-radius: 100px; }
.toefl-lock aye-icon { font-size: .9em; }

.faq-sec { background: var(--surface, #fff); border-block: 1px solid var(--line, #E2DBFF); }
.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, #fff); border: 1px solid var(--line, #E2DBFF); border-radius: 18px; box-shadow: var(--shadow-sm, 0 2px 6px rgba(89,63,224,.06)); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item:hover { border-color: rgba(89,63,224,.3); }
.faq-item[open] { border-color: var(--violet, #593FE0); box-shadow: var(--shadow-md, 0 8px 24px rgba(89,63,224,.12)); }
.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, #1B1726); transition: color .15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--violet, #593FE0); }
.faq-item summary::after { content: "+"; flex: none; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-2, #F3EFFF); color: var(--violet, #593FE0); 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, #593FE0); color: #fff; }
.faq-a { padding: 0 22px 22px; }
.faq-a p { margin: 0; font-size: .98rem; line-height: 1.62; color: var(--ink-soft, #4A4459); }
.faq-a p + p { margin-top: 10px; }
.faq-a em { font-style: normal; font-weight: 700; color: var(--violet, #593FE0); }
.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; } .toefl-list { grid-template-columns: 1fr; } }

/* Hero portrait parallax — handled in app.js via data-parallax attribute.
   Aligns to start so the image's top stays anchored as it parallax-translates. */
@media (min-width: 760px) {
  .heroA .grid { align-items: start; }
}

/* ============================================================
   PORTED FROM hotsite-b — IG carousel + phil-sec + tripod + slide45 + bg-*
   ============================================================ */
.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: max(18px, env(safe-area-inset-left));
  right: max(18px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 80;
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
  padding: 18px 18px 16px; border-radius: 20px;
  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;
  max-width: calc(100vw - 36px);
  overflow: hidden;
}
.sticky-cta.show { transform: none; opacity: 1; }
.sticky-cta .info { color: #fff; line-height: 1.2; }
.sticky-cta .info b { display: block; font-family: var(--f-head); font-weight: 800; font-size: .88rem; letter-spacing: -.01em; }
.sticky-cta .info > span { display: block; font-size: .72rem; color: rgba(255,255,255,.65); margin-top: 2px; }
.sticky-cta .info span .gold { color: var(--yellow); }
.sticky-cta .btn {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
  padding: 1.08em 1.2em;
  border-radius: 15px;
  font-size: .94rem;
  line-height: 1.16;
  white-space: normal;
  overflow-wrap: anywhere;
}
@media (max-width: 380px) {
  .sticky-cta {
    left: max(14px, env(safe-area-inset-left));
    right: max(14px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 14px;
    border-radius: 16px;
    max-width: calc(100vw - 28px);
  }
  .sticky-cta .btn { padding: 1em .85em; font-size: .86rem; }
}
@media (min-width: 760px) {
  .sticky-cta {
    flex-direction: row; align-items: center; left: auto; right: 22px;
    bottom: 22px; max-width: 380px; padding: 10px 10px 10px 18px; gap: 12px;
  }
  .sticky-cta .info { flex: 1 1 auto; min-width: 0; }
  .sticky-cta .btn { width: auto; flex: 0 0 auto; }
}

/* 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;
    grid-template-areas: "above portrait" "below portrait";
    align-items: start;
  }
  .heroA .col-above { grid-area: above; order: unset; gap: clamp(10px,1.4vw,16px); }
  .heroA .col-below { grid-area: below; order: unset; }
  .heroA .portrait  { grid-area: portrait; order: unset; align-self: start; position: sticky; top: calc(72px + clamp(16px,2vw,24px)); }
  .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); }
}

/* ---- Philosophy + Tripod ---- */
.phil-sec { background: var(--bg); }
.phil-head { margin-bottom: clamp(28px,4vw,48px); }
.phil-head h2 { margin-top: 10px; }
.phil-contrast {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: clamp(32px,5vw,56px);
}
@media (max-width:640px) { .phil-contrast { grid-template-columns: 1fr; gap: 2px; } }
.phil-col { padding: clamp(24px,3.5vw,40px); }
.phil-col--other { background: var(--surface-2); }
.phil-col--aye { background: linear-gradient(135deg,#3a22b0 0%,#5B3FF8 100%); color: #fff; }
.phil-label {
  display: block; font-family: var(--f-head); font-weight: 800;
  font-size: clamp(.78rem,1.4vw,.9rem); letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 18px; opacity: .7;
}
.phil-col--aye .phil-label { opacity: .85; }
.phil-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.phil-col li { font-size: clamp(.92rem,1.4vw,1rem); line-height: 1.5; padding-left: 1.4em; position: relative; }
.phil-col li::before { content: "—"; position: absolute; left: 0; opacity: .45; }
.phil-col--aye li::before { content: "✓"; opacity: .75; }
.phil-col em { font-style: italic; }
/* Tripod — base pillars + purpose crown */
.tripod {
  display: flex;
  flex-direction: column;
  gap: clamp(12px,2vw,18px);
  position: relative;
}
.tripod-base-label {
  margin-bottom: 2px;
  text-align: center;
}
.tripod-eyebrow { font-size: .72rem; letter-spacing: .2em; }
.tripod-bases {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(10px,1.8vw,16px);
  position: relative;
}
.tripod-bases::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--line-2), var(--violet));
  opacity: .65;
}
@media (max-width:500px) {
  .tripod-bases { grid-template-columns: 1fr; }
  .tripod-bases::after { display: none; }
}
.tripod-card {
  padding: clamp(18px,2.5vw,26px); border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tripod-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-md);
}
.tripod-card--base::before {
  content: "";
  position: absolute;
  inset: 0 var(--radius) auto;
  height: 4px;
  border-radius: 0 0 2px 2px;
  background: var(--grad-brand);
}
.tripod-card--base aye-icon { color: var(--violet); display: block; margin-bottom: 12px; }
.tripod-card--base h3 { font-family: var(--f-head); font-weight: 800; font-size: clamp(.95rem,1.5vw,1.05rem); margin-bottom: 8px; }
.tripod-card--base p { font-size: clamp(.82rem,1.2vw,.9rem); color: var(--ink-soft); line-height: 1.55; }
/* Crown card — Consciência */
.tripod-purpose {
  padding: clamp(26px,3.5vw,42px); border-radius: var(--radius-lg);
  background: linear-gradient(135deg,#2e1f8f 0%,#5B3FF8 60%,#7b5cfa 100%);
  color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tripod-purpose::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.tripod-purpose-label { margin-bottom: 14px; }
.tripod-eyebrow--light { color: rgba(255,255,255,.6); }
.tripod-eyebrow--light::before { background: rgba(255,255,255,.4); }
.tripod-purpose aye-icon { color: rgba(255,255,255,.9); display: block; margin-bottom: 14px; }
.tripod-purpose h3 { font-family: var(--f-head); font-weight: 800; font-size: clamp(1.3rem,2.5vw,1.7rem); letter-spacing: -.02em; margin-bottom: 14px; color: #fff; }
.tripod-purpose p { font-size: clamp(.92rem,1.4vw,1.02rem); line-height: 1.7; color: rgba(255,255,255,.85); max-width: 66ch; }
.tripod-purpose em { font-style: italic; color: #fff; font-weight: 600; }

/* ---- Tripod: resultado cards ---- */
.tripod-resultado-label { margin-top: 8px; }
.tripod-resultado { margin-top: 0; }

/* ---- Mobile: gap below eyebrow so portrait has breathing room ---- */
@media (max-width: 959px) {
  .col-above { padding-bottom: clamp(10px, 2.5vw, 22px); }
  .heroA .portrait { margin-top: 4px; }
}

/* ---- Sticky CTA: better button padding ---- */
.sticky-cta .btn {
  padding: 1em 1.2em;
  font-size: .95rem;
  border-radius: 12px;
}

/* ---- Global mobile overflow guard ---- */
html, body { max-width: 100%; overflow-x: clip; }

/* ---- Tripod resultado: separator line ---- */
.tripod-resultado-label {
  margin-top: clamp(28px,4vw,44px);
  display: flex; align-items: center; gap: 14px;
}
/* line stops at the card edge, not at the section edge */
.tripod-resultado-label::before,
.tripod-resultado-label::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
  border-radius: 1px;
}

/* ---- Base pills: stretch edge-to-edge inside the box ---- */
.lab-tripod-base span {
  width: 100%;
}

/* ---- Kicker: two lines on mobile ---- */
@media (max-width: 640px) {
  .kicker-br { display: block; }
  .lab-philos .kicker { text-align: center; line-height: 1.5; }
}
@media (min-width: 641px) {
  .kicker-br { display: none; }
}

/* ---- Profile link: desktop = inside col, mobile = after IG ---- */
.profile-link--mobile { display: none; }
.profile-link--desktop { display: flex; }
@media (max-width: 767px) {
  .profile-link--mobile { display: flex; margin-top: 16px; }
  .profile-link--desktop { display: none; }
}

/* ---- Platform showcase ---- */
.platform-showcase {
  margin-top: clamp(40px,6vw,72px);
  display: flex; flex-direction: column; gap: clamp(24px,4vw,40px);
}
.platform-header { max-width: 640px; display: flex; flex-direction: column; gap: 14px; }
.platform-header h3 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
.platform-screens {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .platform-screens { grid-template-columns: 1.05fr .95fr; align-items: start; }
  .platform-fig--detail { margin-top: 40px; }
}
.platform-fig {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--surface-2);
}
.platform-fig img { width: 100%; height: auto; display: block; }
.platform-fig figcaption {
  padding: 10px 16px; font-family: var(--f-head); font-weight: 600;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-faint); background: var(--surface);
}

/* ---- About profile copy ---- */
.about-profile { display: flex; flex-direction: column; gap: 13px; margin-bottom: 20px; }
.about-line { font-size: clamp(.95rem,1.5vw,1.06rem); color: var(--ink-soft); line-height: 1.65; }
.about-line b { color: var(--ink); font-weight: 700; }
.about-line em { font-style: italic; color: var(--violet); }

.about-line--lead { font-size: clamp(1.05rem,1.8vw,1.18rem); color: var(--ink); font-weight: 500; }
.about-line--close { font-style: italic; font-family: var(--f-quote); font-size: clamp(1rem,1.7vw,1.12rem); color: var(--ink); border-left: 3px solid var(--violet); padding-left: 14px; }
.about-callout { margin: 4px 0; padding: 14px 18px; border-left: 4px solid var(--violet); border-radius: 0 10px 10px 0; background: rgba(89,63,224,.06); font-size: clamp(.92rem,1.4vw,1rem); color: var(--ink-soft); line-height: 1.6; font-style: italic; }

/* ---- Portrait video duo ---- */
.duovid-head { max-width: 640px; margin-bottom: clamp(28px,4vw,44px); display: flex; flex-direction: column; gap: 18px; }
.duovid-head .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); }
.duovid-head .soft { color: var(--ink-faint); }
.duovid-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(16px,3vw,36px); justify-items: center; }
.duovid-fig { width: 100%; max-width: 360px; display: flex; flex-direction: column; gap: 14px; }
.duovid-wrap { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; background: #0e0b16; box-shadow: var(--shadow-lg); }
.duovid-wrap--square { aspect-ratio: 9 / 16; border-radius: 4px; }
.duovid-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.duovid-fig figcaption { font-family: var(--f-head); font-weight: 700; font-size: .98rem; color: var(--ink); text-align: center; }
.duovid-placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#1a1430 0%,#2d2060 100%); }
.duovid-ph-label { color: rgba(255,255,255,.35); font-family: var(--f-head); font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; }
.duovid-fig .ig-embed { width: 100%; max-width: 100%; }
.duovid-fig .ig-embed .phone { --pw: 100%; width: 100%; }
.duovid-label {
  font-family: var(--f-head); font-weight: 800;
  font-size: clamp(1.5rem,3.5vw,2.1rem);
  letter-spacing: -.03em; line-height: 1.15;
  text-align: center; margin: 0 0 14px;
}
.vid-phone-frame { position: relative; }
@media (max-width: 580px) {
  .duovid-grid { grid-template-columns: 1fr; justify-items: stretch; row-gap: clamp(36px,8vw,52px); }
  .duovid-fig { max-width: 100%; width: 100%; }
  .duovid-label { text-align: left; }
}

/* ---- Hero format chips (below h1) ---- */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head); font-size: clamp(.7rem,1.1vw,.8rem); font-weight: 600;
  color: var(--violet);
  border: 1.5px solid rgba(89,63,224,.28);
  background: rgba(89,63,224,.05);
  border-radius: 100px; padding: 8px 18px;
}
.hero-chip svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--violet); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Hero guarantee line ---- */
.hero-guarantee {
  font-size: clamp(.78rem,1.2vw,.86rem);
  color: var(--ink-faint);
  line-height: 1.4;
}
.hero-guarantee b { color: var(--ink-soft); font-weight: 600; }
.hero-guarantee aye-icon { width: 1em; height: 1em; vertical-align: middle; position: relative; top: -.06em; color: var(--violet); }
@media (max-width: 959px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; text-align: center; }
  .hero-guarantee { text-align: center; margin-top: 2px; }
}
/* Hero A — keep both CTAs on one row on desktop (trim btn--lg padding so they fit) */
@media (min-width: 960px) {
  .heroA .hero-ctas { flex-wrap: nowrap; align-items: stretch; }
  .heroA .hero-ctas .btn--lg { padding: 1em 1.35em; font-size: clamp(.95rem, 1.3vw, 1.05rem); white-space: nowrap; }
}


/* ============================================================
   Phil-split: IG card + comparison table side by side
   ============================================================ */
.phil-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: start;
  margin-bottom: clamp(40px,6vw,64px);
}
.phil-ig-col { display: flex; justify-content: center; }
@media (max-width: 800px) {
  .phil-split { grid-template-columns: 1fr; }
  .phil-ig-col { order: 2; }
  .phil-table-col { order: 1; }
}

/* ── IG embed card ── */
.ig-embed-card {
  width: min(380px,100%);
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.1);
}
.ig-embed-card .ig-head { display:flex; align-items:center; gap:9px; padding:10px 14px; border-bottom:1px solid #efefef; }
.ig-embed-card .ig-avatar { width:32px; height:32px; border-radius:50%; flex-shrink:0; overflow:hidden; padding:2px; background:var(--grad-brand); }
.ig-embed-card .ig-avatar img { width:100%; height:100%; border-radius:50%; object-fit:cover; object-position:center top; display:block; }
.ig-embed-card .ig-user { font-family:var(--f-head); font-weight:700; font-size:12.5px; color:#262626; flex:1; }
.ig-embed-card .ig-more { color:#8e8e8e; font-size:18px; font-weight:700; line-height:1; letter-spacing:.04em; }

/* 4:5 viewport */
.ig-viewport { width:100%; aspect-ratio:4/5; position:relative; overflow:hidden; background:#fafafa; touch-action:pan-y; }
.ig-track { display:flex; width:700%; height:100%; transition:transform .32s cubic-bezier(.4,0,.2,1); will-change:transform; }
.ig-frame { flex:0 0 calc(100%/7); height:100%; position:relative; overflow:hidden; }
.ig-slide45 { width:1080px; height:1350px; transform-origin:top left; position:absolute; top:0; left:0; pointer-events:none; }

/* arrows */
.ig-arr { position:absolute; top:50%; transform:translateY(-50%); z-index:20; width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,.88); backdrop-filter:blur(6px); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 1px 8px rgba(0,0,0,.2); transition:opacity .15s; }
.ig-arr:disabled { opacity:0; pointer-events:none; }
.ig-arr-prev { left:10px; }
.ig-arr-next { right:10px; }
.ig-arr svg { width:16px; height:16px; stroke:#262626; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.ig-counter { position:absolute; top:10px; right:12px; z-index:20; background:rgba(0,0,0,.55); color:#fff; border-radius:100px; padding:3px 10px; font-family:var(--f-head); font-size:11px; font-weight:700; }

/* dots strip */
.ig-dots-strip { display:flex; justify-content:center; align-items:center; gap:6px; padding:9px 0 8px; border-top:1px solid #efefef; }
.igdot { width:7px; height:7px; border-radius:50%; background:#dbdbdb; border:none; padding:0; cursor:pointer; transition:all .2s; }
.igdot.on { background:var(--violet); width:20px; border-radius:7px; }

/* ── 4:5 slide internals (1080×1350) ── */
.si45 { width:1080px; height:1350px; display:flex; flex-direction:column; position:relative; overflow:hidden; font-family:var(--f-head); }
.si45::before { content:""; position:absolute; top:0; left:0; right:0; height:10px; background:var(--grad-brand); z-index:10; }
.si45.bg-cover    { background:linear-gradient(150deg,#FAF8FC 0%,#EDE8FA 55%,#E0D4F8 100%); }
.si45.bg-blocker  { background:#fff; }
.si45.bg-flip     { background:linear-gradient(150deg,#EDE8FA,#DDD4F6); }
.si45.bg-solution { background:linear-gradient(150deg,#EDE8FA,#D4CCF4); }
.si45.bg-cta      { background:linear-gradient(150deg,#FAF8FC,#EDE8FA); }
.si45 .vb1 { position:absolute; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(89,63,224,.15),transparent 70%); top:-100px; right:-160px; pointer-events:none; z-index:1; }
.si45 .vb2 { position:absolute; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle,rgba(30,203,225,.11),transparent 70%); bottom:60px; left:-180px; pointer-events:none; z-index:1; }
.sc45 { flex:1; display:flex; flex-direction:column; justify-content:center; padding:80px 160px 40px; position:relative; z-index:2; }
.sf45 { flex-shrink:0; padding:28px 160px 44px; display:flex; align-items:center; justify-content:space-between; position:relative; z-index:2; }
.sf45 .sn45 { font-weight:800; font-size:28px; color:#4A4459; }
.sf45 .su45 { font-weight:700; font-size:26px; color:var(--violet); }
.t-dots45 { display:flex; justify-content:center; gap:12px; margin-bottom:44px; }
.tdot45 { width:12px; height:12px; border-radius:50%; background:rgba(89,63,224,.15); }
.tdot45.on { background:var(--violet); width:34px; border-radius:12px; }
.t-eye45  { font-weight:700; font-size:26px; letter-spacing:.2em; text-transform:uppercase; color:#908AA0; margin-bottom:48px; }
.t-big45  { font-weight:900; font-size:108px; line-height:.95; letter-spacing:-.05em; color:#161220; margin-bottom:40px; }
.t-big45 .grad45 { background:var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.t-rule45 { width:70px; height:5px; background:var(--grad-brand); border-radius:5px; margin-bottom:44px; }
.t-body45 { font-size:38px; line-height:1.55; color:#4A4459; }
.t-swipe45{ font-weight:700; font-size:26px; letter-spacing:.15em; text-transform:uppercase; color:#908AA0; margin-top:52px; }
.t-num45  { font-weight:900; font-size:200px; line-height:.85; letter-spacing:-.06em; background:var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; opacity:.12; margin-bottom:-10px; }
.t-pre45  { font-weight:700; font-size:52px; color:#4A4459; line-height:1.15; letter-spacing:-.02em; margin-bottom:28px; }
.t-sep45  { width:64px; height:5px; background:var(--grad-brand); border-radius:5px; margin-bottom:32px; }
.t-res45  { font-weight:900; font-size:82px; line-height:1.0; letter-spacing:-.04em; color:#161220; }
.t-kick45 { font-weight:700; font-size:28px; letter-spacing:.18em; text-transform:uppercase; color:var(--violet); opacity:.75; margin-bottom:36px; }
.t-tag45  { display:inline-block; margin-top:44px; font-weight:800; font-size:30px; background:#fff; border:2px solid rgba(89,63,224,.25); border-radius:100px; padding:16px 36px; color:var(--violet); }
.cta45 { display:block; background:var(--violet); border-radius:28px; padding:56px 72px; text-align:center; margin-top:40px; text-decoration:none; pointer-events:auto; cursor:pointer; transition:opacity .2s; }
.cta45:hover { opacity:.88; }
.cta45 .cl45 { font-weight:700; font-size:28px; letter-spacing:.15em; text-transform:uppercase; color:rgba(255,255,255,.6); margin-bottom:24px; }
.cta45 .cm45 { font-weight:900; font-size:72px; line-height:1.0; letter-spacing:-.04em; color:#fff; margin-bottom:24px; }
.cta45 .cs45 { font-size:34px; color:rgba(255,255,255,.72); line-height:1.4; margin-bottom:36px; }
.cta-btn45 { background:#fff; color:var(--violet); border-radius:100px; padding:22px 48px; font-weight:800; font-size:32px; display:inline-block; margin-top:8px; }

/* ============================================================
   §FAQ — Antes de você decidir (accordion)
   ============================================================ */
.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); }
.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:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 6px; }
.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);
  font-size: .98rem;
  line-height: 1.62;
  color: var(--ink-soft);
}
.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; }
}

/* ============================================================
   §Vagas — prazo (countdown) + esgotado
   ============================================================ */
.hero-deadline {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--f-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .01em;
  color: var(--gold-deep); margin-top: 4px;
}
.hero-deadline aye-icon, .deadline-line aye-icon { width: 1em; height: 1em; flex: none; }
.deadline-line {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-head); font-weight: 700; font-size: .82rem;
  color: var(--gold-deep); margin-top: 4px;
}
.scarcity-band-count { font-family: var(--f-head); font-weight: 900; color: var(--gold-deep); font-size: 1rem; }
.soldout-band {
  margin: 0 auto 18px; max-width: 620px;
  padding: 14px 20px; border-radius: 16px;
  background: rgba(201,151,58,.1); border: 1px solid rgba(201,151,58,.35);
  font-family: var(--f-head); font-weight: 700; color: var(--gold-deep);
  font-size: .95rem; line-height: 1.45; text-align: center;
}
.soldout-band a { color: var(--violet); text-decoration: underline; white-space: nowrap; }
@media (max-width: 959px) { .hero-deadline { justify-content: center; } }

/* Price boxes embedded inside the FAQ answer (tighter than the close section) */
.price-grid--faq { margin: 16px 0 4px; max-width: 100%; }
.price-grid--faq .price-card { padding: 18px 20px; border-radius: 18px; gap: 9px; }
.price-grid--faq .price-card:hover { transform: none; box-shadow: var(--shadow-md); }
.price-grid--faq .plan .name { font-size: 1.08rem; }
.price-grid--faq .price-row.total .now { font-size: 1.32rem; }
.faq-a .faq-note { margin-top: 14px; }
.faq-a .faq-note a { color: var(--violet); font-weight: 700; text-decoration: none; white-space: nowrap; }
.faq-a .faq-note a:hover { text-decoration: underline; }

/* ============================================================
   PORTED FROM hotsite-b — .phone IG embed mockup (for "Por que eu faço" duovid right column)
   ============================================================ */
.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; }

/* ============================================================
   PORTED FROM hotsite-b — "Quem está do outro lado" About section
   ============================================================ */
.section--snug-top { padding-top: clamp(20px, 3.5vw, 44px); }
.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); }
@media (min-width: 900px) {
  .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; }
}

/* Duplicate .profile-link block removed — the earlier definition at line 744 + the .profile-link--desktop / .profile-link--mobile responsive rules at lines 1575-1580 are the canonical source. Re-declaring `display: inline-flex` here was overriding `.profile-link--mobile { display: none }`, causing both copies of the "Conheça a minha história completa" button to render. */
