/* ═══════════════════════════════════════════════════════════════════════════
   Serene — Multi-page site · "Quiet Machine" dark premium
   Geist + Geist Mono · near-black + gold accent · WCAG AA · reduced-motion aware
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* Surfaces — near-black, faintly warm-neutral */
  --bg:           #0B0A0C;
  --bg-2:         #111014;
  --surface:      #16151A;
  --surface-2:    #1D1B22;
  --surface-hi:   #25222B;

  /* Ink */
  --ink:          #F4F1EB;
  --ink-2:        #B7B1A8;
  --ink-faint:    #7C766D;

  /* Gold accent (carries the brand on dark) */
  --gold:         #C9A86A;
  --gold-bright:  #E2C68C;
  --gold-deep:    #A8864C;
  --gold-glow:    rgba(201,168,106,.16);
  --gold-tint:    rgba(201,168,106,.10);

  --success:      #5BD08A;

  /* Lines */
  --line:         rgba(244,241,235,.09);
  --line-2:       rgba(244,241,235,.15);

  /* Type */
  --sans: 'Geist', system-ui, -apple-system, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', monospace;

  /* Fluid type scale (1.25) */
  --t-xs:  .75rem;
  --t-sm:  .875rem;
  --t-base: 1rem;
  --t-lg:  1.125rem;
  --t-xl:  clamp(1.25rem, 1.1rem + .6vw, 1.5rem);
  --t-2xl: clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem);
  --t-3xl: clamp(2rem, 1.5rem + 2.2vw, 3rem);
  --t-4xl: clamp(2.6rem, 1.8rem + 3.6vw, 4.5rem);

  /* Spacing */
  --sp-1: .25rem; --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem;   --sp-8: 3rem;   --sp-10: 4rem;
  --sp-12: 6rem;  --sp-16: 8rem;

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --pill:      999px;

  --ease: cubic-bezier(.16,1,.3,1);          /* ease-out-expo-ish */
  --ease-2: cubic-bezier(.22,.61,.36,1);
  --dur: 280ms;

  --container: 1140px;
  --nav-h: 70px;

  /* z-scale */
  --z-nav: 100; --z-overlay: 200; --z-toast: 300;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "cv01","ss01";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
strong { font-weight: 600; color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: var(--z-toast);
  background: var(--gold); color: #1a1206; padding: 8px 16px;
  border-radius: var(--radius); font-size: var(--t-sm); font-weight: 600;
  transform: translateY(-200%); transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ── Layout primitives ──────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: clamp(var(--sp-10), 8vw, var(--sp-16)); }
.section--tight { padding-block: var(--sp-10); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--mono); font-size: var(--t-xs); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--gold); opacity: .7; }

h1, h2, h3 { font-weight: 600; line-height: 1.08; letter-spacing: -.025em; color: var(--ink); text-wrap: balance; }
.display { font-size: var(--t-4xl); font-weight: 620; letter-spacing: -.03em; }
.h2 { font-size: var(--t-3xl); }
.h3 { font-size: var(--t-xl); letter-spacing: -.015em; }
.lede { font-size: var(--t-lg); color: var(--ink-2); line-height: 1.65; max-width: 56ch; text-wrap: pretty; }
.muted { color: var(--ink-2); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  height: 46px; padding-inline: var(--sp-5);
  border-radius: var(--pill); font-size: var(--t-sm); font-weight: 600;
  letter-spacing: -.01em; white-space: nowrap;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn--primary {
  background: var(--gold); color: #15100A;
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn--primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 10px 30px -8px var(--gold-glow); }
.btn--ghost { color: var(--ink); border: 1px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn--lg { height: 54px; padding-inline: var(--sp-6); font-size: var(--t-base); }
.btn--full { width: 100%; }

/* ── Nav ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav); height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(11,10,12,.72); backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); width: 100%; }
.nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.nav__brand svg { color: var(--gold); }
.nav__word { font-size: 1.3rem; font-weight: 600; letter-spacing: -.02em; }
.nav__links { display: none; align-items: center; gap: var(--sp-6); }
.nav__links a { font-size: var(--t-sm); color: var(--ink-2); transition: color var(--dur) var(--ease); position: relative; padding-block: 4px; }
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold);
}
.nav__right { display: none; align-items: center; gap: var(--sp-3); }
.nav__toggle { display: inline-flex; padding: 8px; margin-right: -8px; color: var(--ink); }
.nav__toggle svg { width: 24px; height: 24px; }

.nav__mobile {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: var(--z-nav);
  background: rgba(11,10,12,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-5); display: grid; gap: var(--sp-2);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav__mobile[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav__mobile a { padding: var(--sp-3) var(--sp-2); font-size: var(--t-lg); color: var(--ink-2); border-radius: var(--radius); }
.nav__mobile a[aria-current="page"] { color: var(--gold); }
.nav__mobile .btn { margin-top: var(--sp-2); }

@media (min-width: 880px) {
  .nav__links, .nav__right { display: flex; }
  .nav__toggle { display: none; }
}

/* ── Hero (home) ────────────────────────────────────────────────────────── */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(var(--sp-8), 7vw, var(--sp-12))); padding-bottom: clamp(var(--sp-10), 8vw, var(--sp-16)); }
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hero__glow::before {
  content: ""; position: absolute; top: -10%; right: -5%; width: 60vw; height: 60vw; max-width: 820px; max-height: 820px;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 62%);
  filter: blur(20px);
}
.hero__grid {
  position: relative; z-index: 1; display: grid; gap: clamp(var(--sp-8), 6vw, var(--sp-12));
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .hero__grid { grid-template-columns: 1.05fr .95fr; align-items: center; } }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--t-xs); color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: var(--pill); margin-bottom: var(--sp-5);
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(91,208,138,.18); }
.hero h1 { margin-bottom: var(--sp-5); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lede { margin-bottom: var(--sp-6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.hero__micro { font-size: var(--t-sm); color: var(--ink-faint); display: flex; align-items: center; gap: var(--sp-2); }
.hero__micro svg { width: 15px; height: 15px; color: var(--gold); }

/* ── Phone mock ─────────────────────────────────────────────────────────── */
.phone {
  position: relative; width: min(360px, 100%); margin-inline: auto;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius-xl); padding: var(--sp-4);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,106,.06);
}
.phone__bar { display: flex; align-items: center; gap: var(--sp-3); padding-bottom: var(--sp-3); border-bottom: 1px solid var(--line); }
.phone__ava { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); border: 1px solid var(--line-2); color: var(--gold); }
.phone__ava svg { width: 22px; height: 22px; }
.phone__who { font-size: var(--t-sm); font-weight: 600; }
.phone__status { font-size: var(--t-xs); color: var(--success); }
.phone__chat { display: flex; flex-direction: column; gap: var(--sp-2); padding-top: var(--sp-4); }
.bubble { max-width: 84%; padding: 10px 13px; font-size: var(--t-sm); line-height: 1.45; border-radius: 14px; }
.bubble--in { align-self: flex-start; background: var(--surface-2); color: var(--ink); border-bottom-left-radius: 4px; }
.bubble--out { align-self: flex-end; background: var(--gold); color: #15100A; border-bottom-right-radius: 4px; font-weight: 450; }
.bubble--pix {
  align-self: flex-end; display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap;
  background: var(--bg-2); border: 1px solid var(--gold-deep); color: var(--ink);
  font-weight: 500;
}
.bubble--pix svg { width: 17px; height: 17px; color: var(--gold); }
.bubble--pix span { width: 100%; font-size: var(--t-xs); color: var(--gold); font-weight: 600; }

/* ── Stat strip ─────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: var(--sp-6) var(--sp-5); }
.stat strong { display: block; font-size: var(--t-2xl); font-weight: 620; letter-spacing: -.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat span { display: block; margin-top: var(--sp-2); font-size: var(--t-sm); color: var(--ink-2); }

/* ── Section header ─────────────────────────────────────────────────────── */
.shead { max-width: 60ch; margin-bottom: clamp(var(--sp-6), 5vw, var(--sp-10)); }
.shead.center { margin-inline: auto; text-align: center; }
.shead .eyebrow { margin-bottom: var(--sp-4); }
.shead h2 { margin-bottom: var(--sp-4); }

/* ── Feature rows (alternating, not identical cards) ───────────────────── */
.frow { display: grid; gap: var(--sp-6); align-items: center; padding-block: clamp(var(--sp-6), 5vw, var(--sp-10)); border-top: 1px solid var(--line); }
@media (min-width: 860px) { .frow { grid-template-columns: 1fr 1fr; gap: var(--sp-10); } .frow:nth-child(even) .frow__visual { order: -1; } }
.frow__num { font-family: var(--mono); font-size: var(--t-sm); color: var(--gold); margin-bottom: var(--sp-3); }
.frow h3 { margin-bottom: var(--sp-3); }
.frow p { color: var(--ink-2); max-width: 46ch; }
.frow__visual { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); aspect-ratio: 16/11; display: grid; place-items: center; padding: clamp(var(--sp-5), 4vw, var(--sp-8)); position: relative; overflow: hidden; }
.frow__visual::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 12%, var(--gold-tint), transparent 58%); pointer-events: none; }

/* ── Product mini-mockups (the Serene UI, shown as "screenshots") ───────── */
.mk { position: relative; z-index: 1; width: 100%; max-width: 330px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: 0 24px 50px -28px rgba(0,0,0,.8); font-size: var(--t-sm); }
.mk__top { display: flex; align-items: center; gap: var(--sp-2); padding: 10px 14px; border-bottom: 1px solid var(--line); }
.mk__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-faint); }
.mk__dot.g { background: var(--success); }
.mk__title { font-family: var(--mono); font-size: var(--t-xs); color: var(--ink-2); letter-spacing: .02em; }
.mk__title .file { color: var(--ink); }
.mk__body { padding: 14px; display: grid; gap: 9px; }

/* chat */
.mk-b { max-width: 82%; padding: 8px 11px; border-radius: 12px; line-height: 1.4; font-size: 12.5px; }
.mk-b.in { align-self: flex-start; background: var(--surface-2); border-bottom-left-radius: 4px; }
.mk-b.out { align-self: flex-end; background: var(--gold); color: #15100A; border-bottom-right-radius: 4px; }

/* calendar */
.mk-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.mk-cal span { aspect-ratio: 1; display: grid; place-items: center; font-size: 11px; color: var(--ink-faint); border-radius: 6px; }
.mk-cal span.on { background: var(--gold); color: #15100A; font-weight: 600; }
.mk-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; background: var(--gold-tint); border: 1px solid var(--gold-deep); border-radius: var(--pill); color: var(--gold-bright); font-size: 12px; width: fit-content; }
.mk-chip .d { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* receipt / status row */
.mk-row { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }
.mk-row .lbl { color: var(--ink-2); }
.mk-row .val { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.mk-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--success); }
.mk-badge svg { width: 15px; height: 15px; }
.mk-amt { font-size: 1.9rem; font-weight: 640; letter-spacing: -.02em; color: var(--ink); font-variant-numeric: tabular-nums; }

/* document skeleton */
.mk-line { height: 7px; border-radius: 4px; background: var(--surface-hi); }
.mk-line.s { width: 55%; }
.mk-line.m { width: 80%; }
.mk-line.g { background: linear-gradient(90deg, var(--gold-deep), transparent); width: 40%; height: 9px; }

/* finance table */
.mk-fin { display: grid; gap: 8px; }
.mk-fin .r { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-2); }
.mk-fin .r.tot { border-top: 1px solid var(--line); padding-top: 9px; margin-top: 2px; color: var(--ink); font-weight: 600; }
.mk-fin .r .v { font-variant-numeric: tabular-nums; }
.mk-fin .r.tot .v { color: var(--gold-bright); }

/* ── Steps ──────────────────────────────────────────────────────────────── */
.steps { display: grid; gap: var(--sp-5); counter-reset: step; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); } }
.step { padding: var(--sp-6); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.step__n { font-family: var(--mono); font-size: var(--t-sm); color: var(--gold); margin-bottom: var(--sp-4); display: block; }
.step h3 { font-size: var(--t-lg); margin-bottom: var(--sp-2); }
.step p { font-size: var(--t-sm); color: var(--ink-2); }

/* ── Single price ───────────────────────────────────────────────────────── */
.price {
  max-width: 540px; margin-inline: auto; background: var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--radius-xl);
  padding: clamp(var(--sp-6), 5vw, var(--sp-10)); text-align: center; position: relative;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.8);
}
.price__badge { display: inline-block; font-family: var(--mono); font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--gold); background: var(--gold-tint); border: 1px solid var(--gold-deep); padding: 5px 14px; border-radius: var(--pill); margin-bottom: var(--sp-5); }
.price__name { font-size: var(--t-lg); color: var(--ink-2); margin-bottom: var(--sp-3); }
.price__fig { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.price__cur { font-size: var(--t-xl); color: var(--ink-2); align-self: flex-start; margin-top: .5em; }
.price__amt { font-size: clamp(3.5rem, 2rem + 7vw, 5.5rem); font-weight: 640; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.price__per { font-size: var(--t-lg); color: var(--ink-2); }
.price__day { font-size: var(--t-sm); color: var(--ink-faint); margin-top: var(--sp-3); }
.price__rule { height: 1px; background: var(--line); margin-block: var(--sp-6); }
.price__list { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); text-align: left; margin-bottom: var(--sp-6); }
@media (min-width: 480px) { .price__list { grid-template-columns: 1fr 1fr; } }
.price__list li { display: flex; gap: var(--sp-2); font-size: var(--t-sm); color: var(--ink-2); line-height: 1.4; }
.price__list svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.price__note { font-size: var(--t-xs); color: var(--ink-faint); margin-top: var(--sp-4); }
.guarantee { display: flex; gap: var(--sp-3); align-items: flex-start; max-width: 580px; margin: var(--sp-8) auto 0; padding: var(--sp-5); background: var(--gold-tint); border: 1px solid var(--gold-deep); border-radius: var(--radius-lg); font-size: var(--t-sm); color: var(--ink-2); }
.guarantee svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); text-align: left; padding: var(--sp-5) 0; font-size: var(--t-lg); font-weight: 500; color: var(--ink); }
.faq__q svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.faq__item.open .faq__q svg { transform: rotate(180deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height var(--dur) var(--ease); }
.faq__a > div { padding-bottom: var(--sp-5); color: var(--ink-2); max-width: 64ch; }

/* ── Form ───────────────────────────────────────────────────────────────── */
.form { display: grid; gap: var(--sp-4); max-width: 520px; }
.field { display: grid; gap: var(--sp-2); }
.field label { font-size: var(--t-sm); color: var(--ink-2); }
.field input {
  height: 50px; padding-inline: var(--sp-4); background: var(--bg-2);
  border: 1px solid var(--line-2); border-radius: var(--radius); color: var(--ink); font: inherit;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-tint); }
.field input[aria-invalid="true"] { border-color: #E5705F; }
.form__note { font-size: var(--t-xs); color: var(--ink-faint); }

/* ── CTA band ───────────────────────────────────────────────────────────── */
.cta {
  position: relative; overflow: hidden; text-align: center;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-xl);
  padding: clamp(var(--sp-8), 7vw, var(--sp-12)) var(--sp-5);
}
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, var(--gold-glow), transparent 60%); pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { margin-bottom: var(--sp-4); }
.cta .lede { margin-inline: auto; margin-bottom: var(--sp-6); }
.cta__actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding-block: var(--sp-8); margin-top: var(--sp-12); }
.footer__top { display: flex; flex-wrap: wrap; gap: var(--sp-6); justify-content: space-between; align-items: flex-start; }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 600; }
.footer__brand svg { color: var(--gold); }
.footer__tag { color: var(--ink-faint); font-size: var(--t-sm); margin-top: var(--sp-3); max-width: 30ch; }
.footer__cols { display: flex; gap: var(--sp-8); flex-wrap: wrap; }
.footer__col h4 { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); margin-bottom: var(--sp-3); font-weight: 500; }
.footer__col a { display: block; font-size: var(--t-sm); color: var(--ink-2); padding-block: 5px; transition: color var(--dur); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between; margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid var(--line); font-size: var(--t-xs); color: var(--ink-faint); }

/* ── Motion ──────────────────────────────────────────────────────────────────
   Content is ALWAYS visible by default (no opacity:0 in CSS). The GSAP layer
   (motion.js) adds entrance + scroll animation when it loads. If GSAP fails to
   load, is slow, or JS is off, the page simply shows — it can never go blank. */
.hero__glow, .phone { will-change: transform; }

/* ── Flor da Vida — background animado ──────────────────────────────────────
   SVG posicionado fixo, rotação lenta e contínua, completamente invisível
   para acessibilidade (aria-hidden). Discreta e sempre presente. */
.lotus-bg {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.028;
  will-change: transform;
}
.lotus-bg--tl {
  top: -18vw; left: -18vw;
  width: 65vw; height: 65vw;
  animation: lotusRotate 90s linear infinite;
}
.lotus-bg--br {
  bottom: -22vw; right: -22vw;
  width: 72vw; height: 72vw;
  animation: lotusRotate 120s linear infinite reverse;
}
@keyframes lotusRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .lotus-bg { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
