/* ============================================================
   Wingbie — warm-editorial luxury. Ivory canvas, deep-plum ink,
   champagne-gold + couture-rose, Fraunces display + Inter.
   Lean landing + two 3D scene routes. No dependencies.
============================================================ */
:root {
  --bg: #fbf7f2; --bg-2: #f5efe7; --surface: #ffffff;
  --ink: #2a1d24; --muted: #756169;
  --rose: #b12e52; --rose-soft: #f6e5ea;
  --gold: #b8893f; --gold-soft: #f6ecda;
  --green: #2f7d5b; --border: #ece2d6; --gold-edge: rgba(184,137,63,0.45);
  --shadow-sm: 0 1px 2px rgba(42,29,36,0.05), 0 2px 8px -2px rgba(42,29,36,0.06);
  --shadow-md: 0 4px 12px -4px rgba(42,29,36,0.1), 0 10px 28px -10px rgba(42,29,36,0.12);
  --shadow-lg: 0 12px 32px -12px rgba(42,29,36,0.18), 0 24px 64px -24px rgba(120,60,80,0.16);
  --maxw: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif; background: var(--bg); color: var(--ink);
  line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; position: relative;
}
.font-display, h1, h2, h3, .brand { font-family: "Fraunces", Georgia, serif; font-weight: 500; letter-spacing: -0.015em; }
.font-display em, h1 em, h2 em { font-style: italic; color: var(--rose); }
img { display: block; max-width: 100%; }

/* ---------- Background ---------- */
.bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.beam { position: absolute; top: -28%; left: 50%; width: 120vw; height: 90vh; transform: translateX(-50%);
  background: radial-gradient(45% 50% at 50% 0%, rgba(177,46,82,0.1), transparent 70%); animation: breathe 9s ease-in-out infinite; }
@keyframes breathe { 0%,100%{opacity:.7} 50%{opacity:1} }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; opacity: .5; }
.blob--rose { background: radial-gradient(circle, rgba(177,46,82,.5), transparent 65%); top: -10%; left: -8%; animation: drift1 22s ease-in-out infinite; }
.blob--violet { background: radial-gradient(circle, rgba(184,137,63,.45), transparent 65%); top: 4%; right: -12%; animation: drift2 26s ease-in-out infinite; }
.blob--amber { background: radial-gradient(circle, rgba(216,168,87,.4), transparent 60%); bottom: -22%; left: 30%; opacity: .3; animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(8vw,6vh) scale(1.1)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1.06)} 50%{transform:translate(-7vw,9vh) scale(.94)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-6vw,-8vh) scale(1.14)} }
.dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(42,29,36,.05) 1px, transparent 1px); background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 50% 28%, #000, transparent 70%); mask-image: radial-gradient(circle at 50% 28%, #000, transparent 70%); }
.grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.cursor-glow { position: fixed; top: 0; left: 0; z-index: 0; width: 420px; height: 420px; border-radius: 50%; pointer-events: none;
  transform: translate(-50%,-50%); opacity: 0; transition: opacity .4s; background: radial-gradient(circle, rgba(184,137,63,.12), transparent 60%); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 30; max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }
.nav--solid { max-width: none; background: rgba(251,247,242,.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); padding: 14px max(24px, calc((100% - var(--maxw)) / 2)); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 21px; color: var(--ink); text-decoration: none; }
.brand__mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px;
  background: linear-gradient(140deg, var(--rose), #7d1f3c); color: #e9cf9a; box-shadow: 0 8px 22px rgba(177,46,82,.32); }
.brand__mark svg { width: 23px; height: 23px; }
.brand--sm { font-size: 16px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link { font-family: "Inter", sans-serif; font-size: 14.5px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav__link:hover { color: var(--ink); }
@media (max-width: 700px) { .nav__links .nav__link { display: none; } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: "Inter", sans-serif; font-weight: 600;
  font-size: 15px; padding: 12px 22px; border-radius: 999px; border: 0; cursor: pointer; text-decoration: none; color: var(--ink);
  transition: transform .2s, box-shadow .3s, background .3s, border-color .3s; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--ghost { background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--gold-edge); transform: translateY(-2px); }
.btn--primary { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--rose), #c63a5e); color: #fff;
  box-shadow: 0 2px 6px rgba(42,29,36,.12), 0 12px 28px -8px var(--rose); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(42,29,36,.16), 0 16px 34px -8px var(--rose); }
.btn--primary::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent); transform: skewX(-20deg); animation: shine 4.5s ease-in-out infinite; }
@keyframes shine { 0%,100%{left:-120%} 18%,100%{left:160%} }

/* ---------- Hero ---------- */
.hero { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 54px 24px 40px;
  display: grid; gap: 48px; align-items: center; grid-template-columns: 1.08fr .92fr; }
@media (max-width: 940px) { .hero { grid-template-columns: 1fr; padding-top: 30px; gap: 36px; } }
.live { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: var(--gold-soft);
  border: 1px solid var(--gold-edge); font-size: 13px; font-weight: 500; color: #8a6526; margin-bottom: 24px; }
.live__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(47,125,91,.5); animation: ping 2.4s ease-out infinite; }
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(47,125,91,.5)} 70%,100%{box-shadow:0 0 0 10px rgba(47,125,91,0)} }
.hero__title { font-size: clamp(46px, 7vw, 86px); font-weight: 500; line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 22px; }
.hero__sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 46ch; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.proof { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.proof strong { color: var(--ink); font-weight: 600; }
.avatars { display: flex; }
.avatars img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg); object-fit: cover; margin-left: -10px; }
.avatars img:first-child { margin-left: 0; }

/* cycling headline word */
.cycle { position: relative; display: inline-block; min-height: 1.05em; }
.cycle__word { position: absolute; left: 0; top: 0; white-space: nowrap; opacity: 0; transform: translateY(.45em);
  background: linear-gradient(100deg, var(--rose) 18%, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.9,.3,1.2); }
.cycle__word.is-on { position: relative; opacity: 1; transform: none; }
.cycle__word.is-off { opacity: 0; transform: translateY(-.45em); }

/* hero visual card */
.hero__visual { display: flex; justify-content: center; }
.advisor-card { position: relative; width: 100%; max-width: 360px; border-radius: 26px; padding: 22px; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.advisor-card::before { content: ""; position: absolute; inset: 0; border-radius: 26px; padding: 1px; pointer-events: none;
  background: linear-gradient(135deg, var(--gold), var(--rose), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.ac__top { display: flex; align-items: center; gap: 14px; }
.ac__photo { position: relative; width: 64px; height: 64px; border-radius: 50%; }
.ac__photo img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.ac__photo::after { content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--rose), var(--gold)); z-index: -1; animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.ac__online { position: absolute; right: 2px; bottom: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--green); border: 2px solid #fff; }
.ac__name { font-family: "Fraunces", serif; font-weight: 600; font-size: 20px; }
.ac__role { display: inline-block; margin-top: 3px; font-size: 11px; font-weight: 600; color: var(--gold); background: var(--gold-soft); padding: 2px 9px; border-radius: 999px; }
.ac__help { margin: 16px 0 14px; font-size: 15px; color: var(--ink); }
.ac__help b { color: var(--rose); }
.ac__skills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.ac__skills span { font-size: 12px; color: var(--muted); background: var(--bg-2); border: 1px solid var(--border); padding: 4px 10px; border-radius: 999px; }
.ac__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ac__rating { font-size: 14px; color: var(--gold); font-weight: 600; }
.ac__btn { font-size: 14px; font-weight: 600; color: #fff; text-decoration: none; padding: 10px 16px; border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), #c63a5e); box-shadow: 0 8px 20px -6px var(--rose); transition: transform .2s; }
.ac__btn:hover { transform: translateY(-2px); }

/* ---------- Rotating taglines ---------- */
.tagline { max-width: var(--maxw); margin: 30px auto; padding: 28px 24px; display: flex; flex-direction: column; align-items: center; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tagline__lead { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.tagline__rotator { position: relative; display: inline-block; min-height: 1.3em; font-size: clamp(22px, 3.6vw, 38px); color: var(--ink); }
.tagline__rotator span { position: absolute; left: 50%; top: 0; transform: translate(-50%, .5em); white-space: nowrap; opacity: 0;
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.9,.3,1.2); }
.tagline__rotator span.is-on { position: relative; left: auto; transform: none; opacity: 1; }
.tagline__rotator span.is-off { opacity: 0; transform: translate(-50%, -.5em); }
@media (max-width: 560px) { .tagline__rotator span { white-space: normal; width: 90vw; } }

/* ---------- Manifesto ---------- */
.manifesto { max-width: 900px; margin: 88px auto; padding: 0 24px; text-align: center; }
.manifesto p { font-size: clamp(30px, 5.2vw, 58px); line-height: 1.12; letter-spacing: -.025em; }

/* ---------- Sections ---------- */
.section { max-width: var(--maxw); margin: 88px auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 46px); letter-spacing: -.025em; line-height: 1.08; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 17px; }
.kicker { display: inline-block; font-family: "Inter", sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; color: var(--gold); }

/* Offerings */
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 820px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
.offer { padding: 26px 22px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .3s, border-color .3s, box-shadow .3s; }
.offer:hover { transform: translateY(-5px); border-color: var(--gold-edge); box-shadow: var(--shadow-md); }
.offer__icon { font-size: 26px; display: block; margin-bottom: 12px; }
.offer h3 { font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.offer p { font-size: 14px; color: var(--muted); }
.offer__from { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--gold); background: var(--gold-soft); padding: 4px 10px; border-radius: 999px; }
.offer__tag { display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); background: var(--bg-2); border: 1px solid var(--border); padding: 4px 10px; border-radius: 999px; }
.offer__tag--free { color: var(--green); background: #e6f1ea; border-color: rgba(47,125,91,.25); }
.offer-cta { text-align: center; margin-top: 34px; }
.offer-cta__note { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* Gold button */
.btn--gold { background: linear-gradient(135deg, var(--gold), #cda156); color: #fff; box-shadow: 0 2px 6px rgba(42,29,36,.12), 0 12px 28px -8px var(--gold); }
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.04); }

/* Pain / why-join */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 940px; margin: 0 auto; }
@media (max-width: 680px) { .pain-grid { grid-template-columns: 1fr; } }
.pain__item { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 16px 18px; font-size: 15.5px; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .3s, border-color .3s, box-shadow .3s; }
.pain__item span { font-size: 22px; line-height: 1; }
.pain__item:hover { transform: translateX(5px); border-color: var(--rose); box-shadow: var(--shadow-md); }
.pain__turn { text-align: center; font-size: clamp(26px, 4.4vw, 44px); line-height: 1.16; letter-spacing: -.02em; margin-top: 44px; }

/* Stats band */
.stats-band { max-width: var(--maxw); margin: 76px auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
@media (max-width: 760px) { .stats-band { grid-template-columns: 1fr 1fr; gap: 34px 16px; } }
.stat__num { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(42px, 6.4vw, 68px); display: block; letter-spacing: -.02em; color: var(--rose); line-height: 1; }
.stats-band .stat:nth-child(2n) .stat__num { color: var(--gold); }
.stat--money .stat__num::before { content: "$"; }
.stat__label { display: block; color: var(--muted); font-size: 14px; margin: 10px auto 0; max-width: 20ch; }

/* Flip band (cross-sell to wings) */
.flip-band { max-width: var(--maxw); margin: 76px auto; padding: 0 24px; }
.flip-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(160deg, var(--bg-2), #fff); border: 1px solid var(--border); border-radius: 26px; padding: 34px 40px; box-shadow: var(--shadow-sm); }
.flip-band__inner h3 { font-size: clamp(22px, 3vw, 30px); margin: 8px 0 6px; }
.flip-band__inner p { color: var(--muted); font-size: 16px; max-width: 48ch; }

/* Wingman page — earnings card + numbered steps */
.earn { position: relative; width: 100%; max-width: 360px; border-radius: 26px; padding: 26px; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.earn::before { content: ""; position: absolute; inset: 0; border-radius: 26px; padding: 1px; pointer-events: none;
  background: linear-gradient(135deg, var(--gold), var(--rose), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.earn__label { font-size: 13px; color: var(--muted); }
.earn__amount { font-family: "Fraunces", serif; font-weight: 600; font-size: 46px; letter-spacing: -.02em; color: var(--ink); margin: 4px 0 2px; }
.earn__amount span { color: var(--green); }
.earn__sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.earn__bars { display: flex; align-items: flex-end; gap: 8px; height: 92px; }
.earn__bars i { flex: 1; background: linear-gradient(var(--gold), var(--rose)); border-radius: 6px 6px 0 0; opacity: .92; }
.offer__num { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; font-family: "Fraunces", serif;
  font-weight: 600; font-size: 18px; color: #fff; background: linear-gradient(135deg, var(--rose), var(--gold)); margin-bottom: 14px; box-shadow: 0 8px 20px -6px var(--rose); }

/* Trust band */
.trust-band { max-width: var(--maxw); margin: 0 auto; padding: 18px 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px; }
.trust-band__item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.trust-band__item span { font-size: 18px; }
.trust-band__item b { color: var(--ink); }

/* Featured quote */
.quote-feature { max-width: 880px; margin: 88px auto; padding: 0 24px; text-align: center; }
.quote-feature p { font-size: clamp(24px, 3.6vw, 38px); line-height: 1.28; letter-spacing: -.02em; }
.quote-feature figcaption { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 14px; color: var(--muted); }
.quote-feature figcaption img { width: 40px; height: 40px; border-radius: 50%; }
.quote-feature figcaption b { color: var(--ink); font-weight: 600; }

/* ---------- CTA ---------- */
.cta { max-width: var(--maxw); margin: 88px auto 40px; padding: 0 24px; }
.cta__card { position: relative; overflow: hidden; text-align: center; padding: 64px 28px; border-radius: 32px;
  background: linear-gradient(135deg, var(--rose), var(--gold)); color: #fff; box-shadow: var(--shadow-lg); }
.cta__glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 80%; height: 120%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,.35), transparent 70%); pointer-events: none; }
.cta__card h2 { position: relative; font-size: clamp(32px, 5vw, 52px); letter-spacing: -.02em; margin-bottom: 12px; color: #fff; }
.cta__card p { position: relative; color: rgba(255,255,255,.92); font-size: 17px; margin-bottom: 26px; }
.join { position: relative; display: flex; gap: 10px; width: 100%; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.join input { flex: 1; min-width: 200px; padding: 14px 18px; border-radius: 999px; background: rgba(255,255,255,.95); border: 1px solid transparent; color: var(--ink); font-size: 15px; font-family: inherit; }
.join input::placeholder { color: var(--muted); }
.join input:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,.5); }
.cta .join .btn--primary { background: var(--ink); box-shadow: 0 8px 20px -6px rgba(0,0,0,.4); }
.cta .join .btn--primary::after { display: none; }
.join__done { position: absolute; inset: 0; display: grid; place-items: center; background: var(--rose); color: #fff; border-radius: 999px; font-weight: 600; }
.cta__note { position: relative; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.85); }

/* ---------- Lead forms (full signup) ---------- */
.lead-form { position: relative; width: 100%; max-width: 460px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.lf-row { display: flex; gap: 12px; }
.lf-row .field { flex: 1; min-width: 0; }
.field { display: flex; flex-direction: column; gap: 5px; margin: 0; }
.field input, .field textarea { width: 100%; padding: 13px 16px; border-radius: 14px; border: 1px solid transparent; background: rgba(255,255,255,.96); color: var(--ink); font-family: inherit; font-size: 15px; }
.field textarea { resize: vertical; min-height: 66px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,.55); }
.field.has-error input, .field.has-error textarea { box-shadow: 0 0 0 2px #ffd0d0; }
.field .err { font-size: 12.5px; font-weight: 500; color: #ffe3e3; }
.lead-form .cf-turnstile { margin: 2px 0; min-height: 65px; }
.lead-form > .btn { width: 100%; }
.form-msg { margin: 2px 0 0; font-size: 14px; min-height: 1.2em; color: #fff; }
.form-msg.ok { color: #effff5; font-weight: 600; }
.form-msg.err { color: #ffe3e3; font-weight: 500; }
.lead-form.is-done .field, .lead-form.is-done .lf-row, .lead-form.is-done .cf-turnstile, .lead-form.is-done > .btn { display: none; }
.lead-form.is-done .form-msg { font-size: 18px; margin-top: 0; }

/* ---------- Footer ---------- */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 30px 24px 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--ink); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .beam, .blob, .btn--primary::after, .live__dot, .ac__photo::after { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
