/* ============ tokens ============
   Palette derived from the real UBC brand:
   - Lavender/periwinkle from the UBC logo
   - Hot magenta from the "Why UBC" graphics
   - Neon lime dividers seen on their marketing assets
   - Deep black canvas
*/
:root {
  --bg: #0a0a0b;
  --bg-2: #131316;
  --bg-3: #1a1a1e;
  --ink: #ffffff;
  --ink-2: #c9c9d1;
  --muted: #888894;
  --line: #23232a;
  --line-2: #2e2e38;

  --lavender: #a99bf2;
  --lavender-ink: #0a0a0b;
  --magenta: #ff2e9c;
  --lime: #d4f228;

  --radius: 20px;
  --radius-sm: 10px;
  --max: 1200px;
  --shadow: 0 10px 40px -18px rgba(169,155,242,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* film-grain texture for depth on the dark canvas */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--lavender), var(--magenta), var(--lime));
  z-index: 200;
  transition: width .08s linear;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-variation-settings: "opsz" 96;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 .5em;
  text-transform: none;
}
h1 em, h2 em, .accent {
  font-family: 'Instrument Serif', 'Times New Roman', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--lavender);
  letter-spacing: -0.01em;
  padding-right: .04em;
  font-size: 1.08em;
}

p { margin: 0 0 1em; color: var(--ink-2); }

.eyebrow, .section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 11px;
  font-weight: 700;
  color: var(--magenta);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--lime);
}

.section-title { font-size: clamp(30px, 4.4vw, 56px); }
.section-lede { max-width: 640px; color: var(--ink-2); font-size: 17px; }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-lg { padding: 20px 38px; font-size: 15px; }
.btn-primary {
  background: var(--lavender);
  color: var(--lavender-ink);
  box-shadow: 0 10px 40px -12px rgba(169,155,242,.6);
}
.btn-primary:hover { background: var(--lime); transform: translateY(-1px); box-shadow: 0 12px 50px -10px rgba(212,242,40,.5); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--bg-2); border-color: var(--lavender); }
.btn-block { width: 100%; }
.btn-inline { margin-top: 12px; }

/* ============ nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,11,.75);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-mark {
  display: block;
  height: 88px;
  width: auto;
  border-radius: 14px;
  background: #000;
  padding: 8px 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand:hover .brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 0 36px -8px rgba(169,155,242,.55);
}
.brand-mark-footer { height: 96px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13px; color: var(--ink-2); font-weight: 500; text-transform: uppercase; letter-spacing: .12em; }
.nav-links a:hover { color: var(--lavender); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 34px; height: 30px;
  position: relative;
  cursor: pointer;
  padding: 0;
  color: var(--ink);
}
.nav-toggle span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s ease, opacity .2s ease, top .3s ease, background .2s ease;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 15px; transform: rotate(45deg); background: var(--lavender); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 15px; transform: rotate(-45deg); background: var(--lavender); }

.nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(169,155,242,.25), transparent 70%),
    radial-gradient(40% 60% at 50% 100%, rgba(255,46,156,.12), transparent 70%),
    var(--bg);
  z-index: 40;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.77,0,.175,1);
  padding: 120px 32px 60px;
  overflow-y: auto;
  display: none;
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer nav { display: flex; flex-direction: column; gap: 4px; max-width: 560px; margin: 0 auto; }
.nav-drawer a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -.02em;
}
.nav-drawer a:hover { color: var(--lavender); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-drawer { display: block; }
}

/* ============ hero ============ */
.hero {
  padding: clamp(60px, 10vw, 130px) 0 clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto auto;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(169,155,242,.18), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto auto -20% -10%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(255,46,156,.12), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(40px, 6.8vw, 86px);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero-sub {
  max-width: 54ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin: 28px 0 48px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 640px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.hero-stats span { font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); }

.hero-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(169,155,242,.3), transparent 60%),
    #000;
  box-shadow: 0 30px 80px -20px rgba(169,155,242,.25);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: sway 9s ease-in-out infinite;
  transform-origin: 50% 55%;
}
@keyframes sway {
  0%, 100% { transform: rotate(-1.5deg) scale(1.02); }
  50%      { transform: rotate(1.5deg)  scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
}
.hero-media .tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--lime);
  color: #000;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============ marquee ============ */
.marquee {
  overflow: hidden;
  background: var(--lavender);
  color: #000;
  padding: 18px 0;
  border-top: 1px solid var(--lavender);
  border-bottom: 1px solid var(--lavender);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.marquee-track span.dot { color: var(--magenta); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ tiers ============ */
.tiers { padding: clamp(80px, 10vw, 130px) 0; }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.tier {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.tier:hover { transform: translateY(-2px); border-color: var(--lavender); box-shadow: var(--shadow); }
.tier-featured {
  background: linear-gradient(160deg, #1b1530 0%, #120c22 100%);
  border-color: var(--lavender);
}
.tier-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  color: var(--lavender);
  margin-bottom: 20px;
  line-height: 1;
  font-weight: 700;
}
.tier-featured .tier-num { color: var(--lime); }
.tier h3 { font-size: 24px; margin-bottom: 14px; }
.tier p { font-size: 15px; }
.tier ul { list-style: none; padding: 0; margin: 20px 0 0; }
.tier ul li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
  display: flex; gap: 10px;
}
.tier ul li::before { content: '→'; color: var(--magenta); font-weight: 700; }

@media (max-width: 860px) { .tier-grid { grid-template-columns: 1fr; } }

/* ============ curriculum ============ */
.curriculum {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.module {
  background: var(--bg-2);
  padding: 26px 22px;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.module:hover { background: var(--lavender); }
.module:hover span { color: #000; }
.module:hover h4 { color: #000; }
.module:hover p { color: #1a1530; }
.module span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  color: var(--magenta);
  font-weight: 700;
  letter-spacing: .08em;
  transition: color .2s ease;
}
.module h4 {
  font-size: 16px;
  margin: 10px 0 6px;
  letter-spacing: -.01em;
  color: var(--ink);
  transition: color .2s ease;
}
.module p { font-size: 13px; color: var(--muted); margin: 0; transition: color .2s ease; }

@media (max-width: 980px) { .module-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .module-grid { grid-template-columns: 1fr; } }

/* ============ founder / why UBC ============ */
.founder { padding: clamp(80px, 10vw, 130px) 0; }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.founder-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: #000;
}
.founder-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .9;
}
.chip {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.6);
  white-space: nowrap;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
}
.chip-1 { top: 6%;   left: -18px; transform: rotate(-3deg); }
.chip-1::before { background: var(--lime); }
.chip-2 { top: 46%;  right: -22px; transform: rotate(3deg); }
.chip-2::before { background: var(--magenta); }
.chip-3 { bottom: 8%; left: 18%; transform: rotate(-2deg); }
.chip-3::before { background: var(--lavender); }

.why-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 8px;
}
.why-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-2);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-list li::before {
  content: '';
  width: 10px; height: 10px;
  margin-top: 7px;
  background: var(--lime);
  border-radius: 2px;
  flex-shrink: 0;
}
.why-list li:nth-child(2)::before { background: var(--magenta); }
.why-list li:nth-child(3)::before { background: var(--lavender); }
.why-list li:nth-child(4)::before { background: var(--lime); }
.why-list li:nth-child(5)::before { background: var(--magenta); }
.why-list li strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 6px;
}

/* highlight "new" tags in module grid */
.module h4 em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--lime);
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

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

/* ============ results ============ */
.results {
  padding: clamp(80px, 10vw, 130px) 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, #0d0a15 100%);
  border-top: 1px solid var(--line);
}
/* "Let's talk numbers" earnings calculator strip */
.number-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 48px 0 60px;
}
.number-card {
  background: #211d18;
  border: 1px solid #2e2924;
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.number-card:hover { transform: translateY(-3px); border-color: var(--lavender); }
.number-card span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #a89f93;
  margin-bottom: 12px;
  font-weight: 600;
}
.number-card strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-variation-settings: "opsz" 96;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  display: block;
}
.number-card strong small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #a89f93;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-left: 2px;
}
.number-featured {
  background: linear-gradient(160deg, #1f1830 0%, #14102b 100%);
  border-color: var(--lavender);
  box-shadow: 0 12px 40px -16px rgba(169,155,242,.45);
}
.number-featured strong { color: var(--lavender); }
.number-featured span { color: #d8d2c7; }
@media (max-width: 1000px) {
  .number-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .number-grid { grid-template-columns: 1fr; }
}

/* "What you don't need" — secondary pricing card with X marks */
.price-features-no li::before {
  content: '✕';
  color: var(--magenta);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px; left: 22px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--lavender);
  opacity: .25;
}
.testimonial blockquote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: 500;
  letter-spacing: -.01em;
  position: relative;
}
.testimonial figcaption { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.testimonial .avatar-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--magenta));
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 14px;
}
.testimonial figcaption .who { display: flex; flex-direction: column; gap: 2px; }
.testimonial figcaption strong { color: var(--ink); }
.testimonial figcaption span { color: var(--muted); font-size: 12px; }

@media (max-width: 760px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ============ pricing ============ */
.pricing { padding: clamp(80px, 10vw, 130px) 0; }
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card header h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.price-card header p { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  color: var(--ink);
}
.price .currency { font-size: 28px; color: var(--muted); }
.price .period {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.price-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.price-features li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-features li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
}
.price-note { font-size: 12px; color: var(--muted); margin: 14px 0 0; text-align: center; }

.price-card-featured {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(169,155,242,.18), transparent 50%),
    linear-gradient(160deg, #1a1530 0%, #0f0b1e 100%);
  border-color: var(--lavender);
  box-shadow: var(--shadow);
}
.badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--lime);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.guarantee {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-size: 14px;
}
.guarantee strong { color: var(--lime); }

@media (max-width: 800px) { .price-grid { grid-template-columns: 1fr; } }

/* ============ faq ============ */
.faq {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-list { margin-top: 40px; max-width: 820px; }
.faq details {
  border-top: 1px solid var(--line-2);
  padding: 22px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line-2); }
.faq summary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px;
  color: var(--lavender);
  font-weight: 300;
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--magenta); }
.faq details p { margin: 14px 0 0; color: var(--ink-2); font-size: 15.5px; max-width: 72ch; }

/* ============ final CTA ============ */
.final-cta {
  padding: clamp(90px, 12vw, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(169,155,242,.22), transparent 70%),
    radial-gradient(40% 50% at 50% 100%, rgba(255,46,156,.15), transparent 70%),
    var(--bg);
}
.final-cta h2 {
  font-size: clamp(40px, 7vw, 78px);
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.final-cta h2 em { color: var(--lime); font-style: normal; }
.final-cta p { font-size: 18px; margin-bottom: 36px; }

/* ============ footer ============ */
.footer {
  background: #000;
  color: #888894;
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-tag { color: var(--muted); margin-top: 14px; font-size: 14px; max-width: 32ch; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h5 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--lavender);
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: var(--ink-2);
}
.footer-cols a:hover { color: var(--lime); }
.footer-bottom { padding-top: 24px; }
.footer-bottom small { color: var(--muted); font-size: 12px; }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ============ reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* ============ text selection ============ */
::selection { background: var(--lime); color: #000; }
