/* =========================================================
   Auramaxxing Academy — white / clean / editorial
   ========================================================= */

:root {
  /* canvas + ink */
  --bg:        #FFFFFF;
  --bg-soft:   #FBFAF8;   /* warm bone */
  --surface:   #FFFFFF;
  --ink:       #1A1A18;   /* off-black */
  --ink-soft:  #4A4A45;
  --muted:     #8A8A82;
  --line:      #EAE8E3;   /* hairline */
  --line-2:    rgba(0,0,0,0.05);

  /* five elements — used sparingly, as accent dots / tags only */
  --earth:  #9C7A4D;  --earth-pale:  #F4EFE6;
  --water:  #2E86C1;  --water-pale:  #E4F1FA;
  --fire:   #D9542B;  --fire-pale:   #FBEAE3;
  --air:    #4F9D69;  --air-pale:    #EAF3ED;
  --ether:  #7A5EC4;  --ether-pale:  #EFEAF8;

  /* type — single clean sans system */
  --serif: 'Inter Tight', system-ui, sans-serif;   /* display / headings */
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* rhythm */
  --container: 1120px;
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 6px; z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- shared atoms ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { background: #000; box-shadow: 0 8px 24px rgba(0,0,0,0.10); transform: translateY(-1px); }
.btn:active { transform: scale(.98); }
.btn--ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--bg-soft); border-color: var(--ink); box-shadow: none; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }

.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.tag--fire  { background: var(--fire-pale);  color: var(--fire); }
.tag--water { background: var(--water-pale); color: var(--water); }

.section { padding-block: clamp(72px, 10vw, 132px); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head h2 { margin-top: 6px; }
.section__lede { color: var(--ink-soft); font-size: 18px; margin-top: 20px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 22px; letter-spacing: -0.01em; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 54px; }
.nav__mark { display: flex; align-items: center; gap: 9px; }
.nav__logo { width: 26px; height: 26px; }
.nav__word { font-family: var(--serif); font-weight: 600; font-size: 16.5px; letter-spacing: -0.02em; }
.nav__word-dim { color: var(--muted); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--ink); transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

/* ---------- hero ---------- */
.hero { padding-block: clamp(28px, 4vw, 56px) clamp(48px, 7vw, 84px); position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero__title { font-size: clamp(40px, 5.5vw, 64px); line-height: 1.02; letter-spacing: -0.03em; }
.hero__sub { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.6vw, 26px); color: var(--ink-soft); margin-top: 14px; }
.hero__lede { color: var(--ink-soft); font-size: 18px; max-width: 30em; margin-top: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta { font-size: 13px; letter-spacing: 0.04em; color: var(--muted); margin-top: 30px; }

.hero__art { position: relative; display: grid; place-items: center; }
.hero__logo {
  width: min(100%, 440px); position: relative; z-index: 2;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.10));
  animation: float 9s ease-in-out infinite;
}
.hero__halo {
  position: absolute; inset: 0; z-index: 1; place-self: center;
  width: 120%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,94,196,0.10), rgba(217,84,43,0.06) 40%, transparent 68%);
  animation: breathe 11s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.06); opacity: 1; } }

/* ---------- invitation ---------- */
.invitation { padding-block: clamp(56px, 8vw, 96px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.prose { max-width: 760px; margin-inline: auto; text-align: center; }
.invitation__title { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 30px; }
.invitation__title em { font-style: italic; color: var(--fire); }
.invitation p { color: var(--ink-soft); font-size: 18px; margin-top: 20px; text-align: left; }

/* ---------- path ---------- */
.path__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.elcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.elcard:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.05); }
.elcard__dot { display: block; width: 14px; height: 14px; border-radius: 50%; margin-bottom: 20px; }
.elcard h3 { margin-bottom: 10px; }
.elcard p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.elcard--earth { } .elcard--earth .elcard__dot { background: var(--earth); box-shadow: 0 0 0 6px var(--earth-pale); }
.elcard--earth:hover { border-color: var(--earth); }
.elcard--water .elcard__dot { background: var(--water); box-shadow: 0 0 0 6px var(--water-pale); }
.elcard--water:hover { border-color: var(--water); }
.elcard--fire .elcard__dot { background: var(--fire); box-shadow: 0 0 0 6px var(--fire-pale); }
.elcard--fire:hover { border-color: var(--fire); }
.elcard--air .elcard__dot { background: var(--air); box-shadow: 0 0 0 6px var(--air-pale); }
.elcard--air:hover { border-color: var(--air); }
.elcard--ether .elcard__dot { background: var(--ether); box-shadow: 0 0 0 6px var(--ether-pale); }
.elcard--ether:hover { border-color: var(--ether); }

/* ---------- teachers ---------- */
.teachers { background: var(--bg-soft); border-top: 1px solid var(--line); }
.teachers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.teacher {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.teacher:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.teacher__portrait { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.teacher__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.teacher__body { padding: 30px 30px 36px; }
.teacher__body h3 { font-size: 28px; margin-bottom: 14px; }
.teacher__body p { color: var(--ink-soft); font-size: 16px; margin-top: 14px; }

/* ---------- field band (real photos) ---------- */
.fieldband { padding-block: clamp(56px, 8vw, 96px); border-top: 1px solid var(--line); background: var(--bg); }
.fieldband__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.fieldband__head h2 { margin-top: 6px; }
.fieldband__feature { margin: 0 0 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 22px 56px rgba(0,0,0,0.08); }
.fieldband__feature img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: center 38%; transition: transform .8s var(--ease); }
.fieldband__feature:hover img { transform: scale(1.025); }
.fieldband__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fieldband__fig { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 18px 44px rgba(0,0,0,0.06); }
.fieldband__fig img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s var(--ease); }
.fieldband__fig:hover img { transform: scale(1.03); }
.fieldband__cap { font-size: 13px; color: var(--muted); text-align: center; margin-top: 28px; }
@media (max-width: 820px) { .fieldband__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .fieldband__grid { grid-template-columns: 1fr; } .fieldband__feature img { aspect-ratio: 4/3; } }

/* ---------- offerings ladder ---------- */
.ladder { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ladder__row {
  display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 24px;
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.ladder__row:last-child { border-bottom: none; }
.ladder__row:hover { background: var(--bg-soft); }
.ladder__rung { font-family: var(--serif); font-size: 24px; color: var(--muted); }
.ladder__kicker { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.ladder__body h3 { font-size: 20px; }
.ladder__body p { font-size: 14.5px; color: var(--ink-soft); margin-top: 5px; }
.ladder__price { font-family: var(--serif); font-size: 22px; white-space: nowrap; text-align: right; }
.ladder__price small { font-size: 13px; color: var(--muted); font-family: var(--sans); }
.ladder__row--free { background: linear-gradient(180deg, var(--air-pale), transparent 90%); }
.ladder__row--free .ladder__price { color: var(--air); }

/* ---------- founding ---------- */
.founding__card {
  background: var(--ink); color: #fff;
  border-radius: 22px; padding: clamp(40px, 6vw, 72px);
  text-align: center; max-width: 800px; margin-inline: auto;
  position: relative; overflow: hidden;
}
.founding__card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(217,84,43,0.22), transparent 55%),
              radial-gradient(circle at 80% 110%, rgba(122,94,196,0.22), transparent 55%);
  pointer-events: none;
}
.founding__card > * { position: relative; }
.founding__card .eyebrow { color: rgba(255,255,255,0.55); }
.founding__card h2 { color: #fff; margin-bottom: 18px; }
.founding__card p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 52ch; margin: 0 auto 30px; }
.founding__card .btn { background: #fff; color: var(--ink); border-color: #fff; }
.founding__card .btn:hover { background: var(--bg-soft); }

/* ---------- community ---------- */
.community { text-align: center; border-top: 1px solid var(--line); }
.community__inner { display: flex; flex-direction: column; align-items: center; }
.community__logo { width: 92px; margin-bottom: 24px; opacity: .95; }
.community h2 { font-size: clamp(32px, 5vw, 56px); }
.community__body { font-family: var(--sans); font-size: 21px; color: var(--ink-soft); margin: 20px 0 34px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding-block: 64px 36px; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo { width: 44px; }
.footer__brand p { font-family: var(--sans); font-size: 16px; color: var(--ink-soft); max-width: 24ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer__cols ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__cols li, .footer__cols a { font-size: 14.5px; color: var(--ink-soft); }
.footer__cols a:hover { color: var(--ink); }
.footer__base { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.footer__base p { font-size: 13px; color: var(--muted); }

/* =========================================================
   FUNNEL ADDITIONS — announce, proof, offer stack, guide,
   guarantee, faq. Same white/clean language as above.
   ========================================================= */

/* gold accent for the paid product */
:root { --gold: #B68A2E; --gold-soft: #F7F0DF; --ink-95: #14140F; }

/* ---------- announce bar ---------- */
.announce {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  flex-wrap: wrap;
  background: var(--ink); color: #fff;
  font-size: 12.5px; font-weight: 500;
  padding: 7px 20px; text-align: center;
  transition: background .2s var(--ease);
}
.announce:hover { background: #000; }
.announce strong { font-weight: 600; }
.announce__sep { color: rgba(255,255,255,0.4); }
.announce__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(182,138,46,0.6); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(182,138,46,0.55); } 70% { box-shadow: 0 0 0 8px rgba(182,138,46,0); } 100% { box-shadow: 0 0 0 0 rgba(182,138,46,0); } }

/* gold button variant */
.btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--gold:hover { background: #9d761f; border-color: #9d761f; box-shadow: 0 10px 28px rgba(182,138,46,0.28); }

/* hero trust ticks */
.hero__trust { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 30px; }
.hero__trust li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink-soft); }
.tick { flex: none; width: 18px; height: 18px; border-radius: 50%; background: var(--air-pale); position: relative; }
.tick::after { content: ""; position: absolute; left: 6px; top: 3px; width: 4px; height: 8px; border: solid var(--air); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.tick--gold { background: var(--gold-soft); }
.tick--gold::after { border-color: var(--gold); }
@media (max-width: 900px) { .hero__trust { align-items: center; } }

/* ---------- proof strip ---------- */
.proofstrip { border-block: 1px solid var(--line); background: var(--bg-soft); }
.proofstrip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 30px; }
.proofstat { text-align: center; position: relative; }
.proofstat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); width: 1px; height: 40px; background: var(--line); }
.proofstat__n { display: block; font-family: var(--serif); font-size: clamp(26px, 4vw, 36px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.proofstat__l { display: block; font-size: 12.5px; color: var(--muted); margin-top: 7px; letter-spacing: 0.01em; }
@media (max-width: 560px) { .proofstrip__inner { grid-template-columns: 1fr 1fr; gap: 28px 16px; } .proofstat:nth-child(2)::after { display: none; } }

/* ---------- offer / value stack ---------- */
.offer { background: var(--bg); }
.offer__grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.offer__intro h2 { margin: 6px 0 20px; }
.offer__intro p { color: var(--ink-soft); font-size: 18px; margin-bottom: 28px; }
.offer__micro { font-size: 14px !important; color: var(--muted) !important; margin: 16px 0 0 !important; }

.stack { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: clamp(28px, 4vw, 40px); box-shadow: 0 24px 60px rgba(0,0,0,0.06); }
.stack__head { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.stack__list { list-style: none; display: flex; flex-direction: column; }
.stack__list li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.stack__item { font-size: 16px; color: var(--ink); padding-left: 26px; position: relative; }
.stack__item::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--air-pale); }
.stack__item::after { content: ""; position: absolute; left: 5px; top: 8px; width: 4px; height: 7px; border: solid var(--air); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.stack__val { font-family: var(--serif); font-size: 15px; color: var(--muted); white-space: nowrap; }
.stack__total { display: flex; align-items: baseline; justify-content: space-between; padding: 18px 0 6px; font-size: 14px; color: var(--muted); }
.stack__total-num { font-family: var(--serif); font-size: 18px; color: var(--ink-soft); text-decoration: line-through; text-decoration-color: var(--muted); }
.stack__price { display: flex; align-items: baseline; gap: 12px; padding: 8px 0 24px; }
.stack__price-label { font-size: 14px; color: var(--muted); }
.stack__price-num { font-family: var(--serif); font-size: 46px; font-weight: 700; letter-spacing: -0.04em; color: var(--air); line-height: 1; }
.stack__price-sub { font-size: 14px; color: var(--ink-soft); }
.stack__cta { width: 100%; }

/* ---------- field guide feature ---------- */
.guide { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.guide::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 20%, rgba(182,138,46,0.18), transparent 46%), radial-gradient(circle at 90% 90%, rgba(122,94,196,0.16), transparent 50%); pointer-events: none; }
.guide__grid { position: relative; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.guide__cover { position: relative; display: grid; place-items: center; }
.guide__cover-glow { position: absolute; inset: -8%; background: radial-gradient(circle, rgba(182,138,46,0.30), transparent 62%); filter: blur(18px); }
.guide__img { position: relative; width: min(100%, 360px); border-radius: 8px; box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06); transform: perspective(1200px) rotateY(-7deg); transition: transform .5s var(--ease); }
.guide__cover:hover .guide__img { transform: perspective(1200px) rotateY(0deg) translateY(-4px); }
.guide__badge { position: absolute; top: 14px; right: 8px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; box-shadow: 0 6px 18px rgba(0,0,0,0.4); }
.guide__body .eyebrow { color: var(--gold); }
.guide__body h2 { color: #fff; margin: 6px 0 16px; }
.guide__tagline { font-family: var(--serif); font-size: clamp(18px, 2.4vw, 22px); color: var(--gold-soft); font-style: italic; margin-bottom: 18px; }
.guide__tagline em { font-style: italic; }
.guide__lede { color: rgba(255,255,255,0.80); font-size: 17px; margin-bottom: 26px; }
.guide__points { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.guide__points li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: rgba(255,255,255,0.92); }
.guide__points .tick { margin-top: 1px; background: rgba(182,138,46,0.20); }
.guide__points .tick::after { border-color: var(--gold); }
.guide__buy { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 22px; }
.guide__pricewrap { display: flex; flex-direction: column; }
.guide__price { font-family: var(--serif); font-size: 44px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: #fff; }
.guide__pricenote { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.guide__guarantee { font-size: 14.5px; color: rgba(255,255,255,0.70); line-height: 1.6; border-left: 2px solid var(--gold); padding-left: 16px; max-width: 52ch; }
.guide__guarantee strong { color: var(--gold-soft); }

/* ladder — "available now" highlight */
.ladder__row--now { background: linear-gradient(180deg, var(--gold-soft), transparent 90%); }
.ladder__row--now .ladder__price { color: var(--gold); }

/* ---------- faq ---------- */
.faq__inner { max-width: 820px; margin-inline: auto; }
.faq__inner .section__head { margin-inline: auto; text-align: center; }
.faq__list { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__item { border-bottom: 1px solid var(--line); background: var(--surface); transition: background .2s var(--ease); }
.faq__item:last-child { border-bottom: none; }
.faq__item[open] { background: var(--bg-soft); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 56px 22px 26px; font-family: var(--serif); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--muted); transition: transform .25s var(--ease); font-family: var(--sans); line-height: 1; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--ink); }
.faq__item p { padding: 0 26px 24px; color: var(--ink-soft); font-size: 16px; max-width: 64ch; }

/* community dual cta */
.community__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- funnel responsive ---------- */
@media (max-width: 900px) {
  .offer__grid { grid-template-columns: 1fr; gap: 40px; }
  .guide__grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .guide__points li, .guide__guarantee { text-align: left; }
  .guide__buy { justify-content: center; }
  .guide__guarantee { margin-inline: auto; }
  .guide__img { width: min(64%, 300px); transform: none; }
}
@media (max-width: 560px) {
  .announce { font-size: 12.5px; }
  .stack__price-num { font-size: 38px; }
  .faq__item summary { font-size: 16px; }
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-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; }
.reveal--d5 { transition-delay: .40s; }
.elcard.reveal { transition-delay: calc(var(--i) * 80ms); }

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

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; }
  .hero__lede { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__logo { width: min(72%, 320px); }
  .path__grid { grid-template-columns: repeat(2, 1fr); }
  .teachers__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .container { padding-inline: 20px; }
  .path__grid { grid-template-columns: 1fr; }
  .ladder__row { grid-template-columns: 44px 1fr; gap: 16px; }
  .ladder__price { grid-column: 2; text-align: left; margin-top: 6px; font-size: 19px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ============ LIGHTBOX ============ */
.lightbox-trigger {
  display: block; width: 100%; padding: 0; margin: 0;
  border: 0; background: none; cursor: zoom-in; font: inherit; color: inherit;
}
.lightbox-trigger img { display: block; }
.lightbox-trigger:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(20, 20, 18, 0);
  backdrop-filter: blur(0px);
  opacity: 0; transition: opacity .28s var(--ease), background .28s var(--ease), backdrop-filter .28s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  background: rgba(20, 20, 18, 0.88);
  backdrop-filter: blur(4px);
}
.lightbox__img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(.96); transition: transform .28s var(--ease);
  cursor: zoom-out;
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: clamp(12px, 3vw, 28px); right: clamp(12px, 3vw, 28px);
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.1);
  color: #fff; font-size: 30px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); transform: scale(1.05); }
.lightbox__close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__img { transition: none; }
}
