/* Æshar — aeshar.app
   Self-hosted fonts + first-party assets only — no external requests, no analytics,
   no trackers. The site keeps the same privacy posture as the app.
   Palette: the app's IRIS "Night" world (AuraeColorProvider.swift). Type: the app's
   own pairing — Outfit (UI) + Cormorant Garamond (the reflective serif voice). */

/* ── Fonts (self-hosted WOFF2, latin subset) ───────────────────────────── */
@font-face {
  font-family: "Outfit"; font-style: normal; font-weight: 300;
  font-display: swap; src: url("fonts/Outfit-300.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("fonts/Outfit-500.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 300;
  font-display: swap; src: url("fonts/CormorantGaramond-300.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: italic; font-weight: 300;
  font-display: swap; src: url("fonts/CormorantGaramond-300Italic.woff2") format("woff2");
}

/* ── Tokens — IRIS Night ────────────────────────────────────────────────── */
:root {
  --bg:        #03040A;   /* indigo-black */
  --surface:   #0A0817;   /* deep indigo */
  --raised:    #120E24;   /* indigo */
  --jade:      #1FE0B0;   /* aurora — primary accent */
  --cyan:      #2C9CC4;   /* aurora support */
  --azure:     #3E86D6;   /* aurora pop */
  --gold:      #C88A3C;   /* IRIS gold — the Vigil apex */
  --gold-soft: #E8B26A;
  --silver:    #BCC4D6;   /* Glimpse / moonlight */
  --mint:      #8FD4B0;   /* numerology — the second language / add-on pill */

  --text:      #EAF2EF;
  --text-dim:  #93A6A8;
  --text-faint:#5E6F72;
  --line:      rgba(31,224,176,0.14);
  --line-soft: rgba(234,242,239,0.08);
  --card:      rgba(18,14,36,0.55);

  --sans:  "Outfit", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif: "Cormorant Garamond", ui-serif, Georgia, serif;

  --maxw: 1100px;
  --readw: 720px;

  /* ── Spacing scale + vertical rhythm (single source of truth) ──
     Every gap on the page resolves to one of these. Don't hand-pick px in markup. */
  --space-2xs: 6px;
  --space-xs:  10px;
  --space-s:   16px;   /* eyebrow↓, paragraph↔ */
  --space-m:   22px;   /* heading↓ */
  --space-l:   32px;   /* intro copy → list / aside */
  --space-xl:  clamp(36px, 5vh, 48px);   /* intro copy → grid or media block */
  --space-2xl: clamp(56px, 8vh, 80px);   /* between stacked feature rows / sub-sections */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(16px, 15px + 0.3vw, 18px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
::selection { background: rgba(31,224,176,0.22); color: #fff; }

/* ── Aurora + starfield (CSS, GPU-cheap) ────────────────────────────────── */
.sky {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(58% 44% at 20% 10%, rgba(31,224,176,0.16), transparent 70%),
    radial-gradient(54% 40% at 82% 18%, rgba(62,134,214,0.14), transparent 70%),
    radial-gradient(70% 55% at 50% 102%, rgba(44,156,196,0.10), transparent 70%),
    linear-gradient(180deg, #050710 0%, #03040A 55%, #020207 100%);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(0,-2%,0) scale(1.05); }
}
.stars {
  position: fixed; inset: 0; z-index: -1; opacity: 0.55;
  background-image:
    radial-gradient(1px 1px at 15% 30%, rgba(255,255,255,0.75), transparent),
    radial-gradient(1px 1px at 70% 18%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 42% 65%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 88% 55%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 28% 85%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 60% 78%, rgba(31,224,176,0.6), transparent),
    radial-gradient(1.5px 1.5px at 33% 12%, rgba(62,134,214,0.5), transparent);
}

/* ── Layout ─────────────────────────────────────────────────────────────── */
main { width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.read { max-width: var(--readw); }
section { padding: clamp(72px, 12vh, 128px) 0; position: relative; }
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent); max-width: var(--maxw); margin: 0 auto; }

.eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--jade); margin-bottom: var(--space-s);
}
.eyebrow.gold { color: var(--gold-soft); }
.eyebrow.azure { color: var(--azure); }
.eyebrow.mint { color: var(--mint); }
.pill-tag { display:inline-block; font-size:11px; letter-spacing:0.16em; text-transform:uppercase; padding:4px 12px; border-radius:999px; margin-bottom:14px; }
.pill-tag.mint { color:#06231A; background:var(--mint); }
.pill-tag.gold { color:#1A0F03; background:linear-gradient(180deg,var(--gold-soft),var(--gold)); }

/* mini feature grid — Vigil long-horizon + "what's inside" lists */
.mini-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:var(--space-l); }
.mini-card { padding:20px 22px; border-radius:16px; background:var(--card); border:1px solid var(--line); }
.mini-card .mc-h { color:var(--text); font-family:var(--serif); font-size:19px; margin-bottom:4px; }
.mini-card .mc-p { font-size:14.5px; color:var(--text-dim); }
.vigil-note { margin-top:var(--space-s); font-size:12px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold-soft); }
.inside { list-style:none; margin-top:var(--space-l); display:grid; gap:12px; }
.inside li { position:relative; padding-left:24px; color:var(--text-dim); font-size:15.5px; }
.inside li::before { content:"✦"; position:absolute; left:0; top:2px; color:var(--jade); font-size:12px; }

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3 { font-weight: 300; }
.wordmark { font-family: var(--sans); font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; }

h1 {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(40px, 6vw + 1rem, 68px);
  letter-spacing: 0.26em; text-transform: uppercase;
  text-align: center; color: var(--text); text-indent: 0.26em;
}
.tagline {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 3.4vw, 34px); line-height: 1.35;
  text-align: center; margin-top: 20px; color: var(--text);
}
.sub {
  color: var(--text-dim); text-align: center;
  max-width: 52ch; margin: var(--space-s) auto 0; font-size: clamp(15px, 1rem + 0.2vw, 18px);
}
h2 {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2; letter-spacing: 0.01em; margin-bottom: var(--space-m); color: var(--text);
}
h2 em { font-style: italic; color: var(--jade); }
h3 { font-family: var(--serif); font-size: 23px; color: var(--text); margin-bottom: var(--space-xs); }
p { color: var(--text-dim); }
p + p { margin-top: var(--space-s); }
.aside {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem;
  color: var(--text-faint); margin-top: var(--space-l); line-height: 1.6;
}
strong { color: var(--text); font-weight: 500; }
a { color: var(--jade); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--gold-soft); }
.center { text-align: center; }
.center .sub, .center h2 { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.cta { text-align: center; margin-top: 34px; }
.btn {
  display: inline-block; padding: 15px 32px; border-radius: 999px;
  font-family: var(--sans); font-weight: 500; font-size: 16px; letter-spacing: 0.01em;
  color: #05130E; background: linear-gradient(180deg, #34F0C4, var(--jade));
  border: 1px solid rgba(255,255,255,0.16);
  transition: transform .15s ease, filter .15s ease, box-shadow .3s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); color: #05130E; box-shadow: 0 10px 34px rgba(31,224,176,0.24); }
.btn--ghost { background: rgba(31,224,176,0.06); color: var(--jade); border: 1px solid var(--line); }
.btn--ghost:hover { color: var(--gold-soft); border-color: rgba(200,138,60,0.4); background: rgba(31,224,176,0.09); }
.btn--gold { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #1A0F03; }
.micro-note { margin-top: 14px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-faint); }

/* ── Nav ────────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px,5vw,40px);
  background: rgba(3,4,10,0.62); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
nav .brand { display: flex; align-items: center; gap: 11px; font-size: 17px; color: var(--text); }
nav .links { display: flex; align-items: center; gap: 22px; }
nav .links a { font-size: 14px; color: var(--text-dim); letter-spacing: 0.02em; }
nav .links a:hover { color: var(--jade); }
nav .nav-cta {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--jade); border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px;
}
nav .nav-cta:hover { color: var(--gold-soft); border-color: rgba(200,138,60,0.45); }
@media (max-width: 640px) { nav .links a:not(.nav-cta) { display: none; } }

/* ── Brand mark ─────────────────────────────────────────────────────────── */
.mark { display: block; }
.mark--nav { width: 28px; height: 28px; }
.mark--hero { width: clamp(76px, 14vw, 104px); height: clamp(76px, 14vw, 104px); margin: 0 auto clamp(24px, 4vh, 40px); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { min-height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }

/* ── Trust strip ────────────────────────────────────────────────────────── */
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; padding: 26px 0; }
.trust span { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); display: inline-flex; align-items: center; gap: 8px; }
.trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--jade); box-shadow: 0 0 10px rgba(31,224,176,0.7); }

/* ── Feature rows ───────────────────────────────────────────────────────── */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.feat + .feat { margin-top: clamp(72px, 11vh, 120px); }
.feat.rev .feat-copy { order: 2; }
.feat-copy p { max-width: 46ch; }

/* phone frame */
.phone-wrap { display: flex; justify-content: center; }
.shot-frame {
  width: min(300px, 76vw); border-radius: 44px; padding: 11px;
  background: linear-gradient(165deg, #0C0B1A, #050510);
  border: 1px solid rgba(234,242,239,0.1);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 60px rgba(31,224,176,0.06), inset 0 1px 0 rgba(234,242,239,0.06);
}
.shot-window {
  border-radius: 34px; overflow: hidden; position: relative; aspect-ratio: 9 / 19.5;
  background:
    radial-gradient(70% 40% at 30% 0%, rgba(31,224,176,0.16), transparent 70%),
    radial-gradient(70% 40% at 85% 6%, rgba(62,134,214,0.14), transparent 70%),
    linear-gradient(180deg, var(--surface), var(--bg));
}
/* Every phone frame auto-pans: a full-length (stitched) screenshot pans top→bottom
   as the frame scrolls through the viewport; a single-screen shot just fills and
   sits still (nothing to pan). Panning + the hint are enabled by JS only when the
   image actually overflows the frame. */
.shot-window img { width: 100%; height: auto; display: block; position: absolute; top: 0; left: 0; will-change: transform; }
.shot-window .pan-hint { display: none; position: absolute; right: 12px; bottom: 12px; z-index: 3; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); background: rgba(3,4,10,0.6); padding: 5px 10px; border-radius: 999px; }
.shot-window.has-pan .pan-hint { display: block; }

/* Horizontal swipe carousel — for multi-tab screens (e.g. Resonance: Reading/Numbers/Map/Combin) */
.shot-window.carousel-window { }
.carousel { position: absolute; inset: 0; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.carousel::-webkit-scrollbar { display: none; }
.carousel .slide { flex: 0 0 100%; scroll-snap-align: start; position: relative; height: 100%; }
.carousel .slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; position: static; }
.carousel .slide .tabcap { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); background: rgba(3,4,10,0.6); padding: 4px 12px; border-radius: 999px; }
.swipe-hint { text-align: center; margin-top: 14px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }
.shot-window .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-faint); }
.shot-pair { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.shot-pair .shot-frame { width: min(230px, 42vw); }
.shot-cap { text-align: center; margin-top: 12px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-dim); }

/* ── Two languages ──────────────────────────────────────────────────────── */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: var(--space-xl); }
.duo-card { padding: 30px 28px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); backdrop-filter: blur(10px); }
.duo-card .glyph { font-size: 26px; margin-bottom: 12px; }

/* ── IRIS 4-up ──────────────────────────────────────────────────────────── */
.iris-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: var(--space-xl); }
.iris-item { border-radius: 22px; overflow: hidden; border: 1px solid var(--line-soft); position: relative; aspect-ratio: 9 / 19.5; background: var(--surface); }
.iris-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.iris-item .ph { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.iris-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 14px 15px; background: linear-gradient(0deg, rgba(3,4,10,0.9), transparent); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); z-index: 2; }
.iris-cap.morning { color: #FF8CA6; } .iris-cap.afternoon { color: #3AD0F0; }
.iris-cap.evening { color: #FF6E4F; }  .iris-cap.night { color: #1FE0B0; }

/* ── Privacy list ───────────────────────────────────────────────────────── */
.privacy-list { list-style: none; margin-top: var(--space-l); display: grid; gap: 12px; }
.privacy-list li { padding-left: 30px; position: relative; color: var(--text-dim); }
.privacy-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--jade); box-shadow: 0 0 10px rgba(31,224,176,0.7); }
.privacy-list strong { color: var(--text); }

/* ── Pricing ────────────────────────────────────────────────────────────── */
.bill-toggle { display: inline-flex; margin: 6px auto 34px; border: 1px solid var(--line); border-radius: 999px; padding: 4px; gap: 4px; }
.bill-toggle button { font-family: var(--sans); font-size: 14px; color: var(--text-dim); background: none; border: none; padding: 8px 20px; border-radius: 999px; cursor: pointer; transition: all .25s ease; }
.bill-toggle button.on { background: rgba(31,224,176,0.12); color: var(--jade); }
.bill-toggle .save { font-size: 11px; color: var(--gold-soft); letter-spacing: 0.08em; }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.tier { display: flex; flex-direction: column; padding: 28px 24px; border-radius: 22px; background: var(--card); border: 1px solid var(--line); backdrop-filter: blur(10px); position: relative; }
.tier--glimpse { border-top: 2px solid var(--silver); }
.tier--gaze    { border-top: 2px solid var(--jade); }
.tier--vigil   { border-top: 2px solid var(--gold); box-shadow: 0 0 0 1px rgba(200,138,60,0.25), 0 24px 60px rgba(200,138,60,0.08); }
.tier .rec { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #1A0F03; background: linear-gradient(180deg, var(--gold-soft), var(--gold)); padding: 4px 14px; border-radius: 999px; }
.tier .name { font-family: var(--serif); font-size: 26px; color: var(--text); }
.tier .tag { font-style: italic; font-family: var(--serif); color: var(--text-dim); font-size: 16px; margin-top: 2px; }
.tier .price { margin-top: 16px; font-size: 15px; color: var(--text); }
.tier .price .amt { font-size: 30px; font-weight: 500; }
.tier .price .per { color: var(--text-dim); font-size: 14px; }
.tier ul { list-style: none; margin: 20px 0 24px; display: grid; gap: 10px; }
.tier li { position: relative; padding-left: 24px; font-size: 15px; color: var(--text-dim); }
.tier li::before { content: "✦"; position: absolute; left: 0; color: var(--jade); font-size: 12px; top: 3px; }
.tier--vigil li::before { color: var(--gold-soft); }
.tier .btn { margin-top: auto; text-align: center; }
.addons { margin-top: 26px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.addon { padding: 20px 22px; border-radius: 16px; border: 1px dashed var(--line); background: rgba(10,8,23,0.4); text-align: left; }
.addon--mint { border-color: rgba(143,212,176,0.4); }
.addon .an { color: var(--text); font-size: 16px; } .addon .ap { color: var(--gold-soft); font-size: 14px; margin-top: 4px; } .addon .ad { font-size: 14px; margin-top: 8px; line-height: 1.6; }
.addon--mint .ap { color: var(--mint); }
.price-fine { text-align: center; color: var(--text-faint); font-size: 13px; margin-top: 22px; }

/* ── Waitlist ───────────────────────────────────────────────────────────── */
.wait-form { display: flex; gap: 12px; max-width: 460px; margin: 30px auto 0; }
.wait-form input { flex: 1; background: rgba(234,242,239,0.04); border: 1px solid var(--line); border-radius: 999px; padding: 15px 24px; color: var(--text); font-family: var(--sans); font-size: 16px; outline: none; transition: border-color .3s ease; }
.wait-form input:focus { border-color: rgba(31,224,176,0.5); }
.wait-form input::placeholder { color: var(--text-faint); }
.wait-msg { margin-top: 18px; font-size: 14px; color: var(--jade); min-height: 1.2em; text-align: center; }
.wait-referral { margin-top: 14px; font-size: 13px; color: var(--text-faint); text-align: center; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq { max-width: var(--readw); margin: 34px auto 0; }
.faq details { border-bottom: 1px solid var(--line-soft); padding: 20px 0; }
.faq summary { cursor: pointer; list-style: none; color: var(--text); font-size: 18px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--jade); font-size: 22px; transition: transform .3s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: 14px; }

/* ── Founder ────────────────────────────────────────────────────────────── */
.founder { max-width: var(--readw); margin: 0 auto; text-align: center; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line-soft); padding: 48px 24px 96px; text-align: center; color: var(--text-dim); font-size: 14px; }
footer .foot-line { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--text-faint); margin-bottom: 18px; }
footer .links { margin-bottom: 14px; }
footer .links a { margin: 0 12px; color: var(--text-dim); }
footer .fine { opacity: 0.7; font-size: 12.5px; margin-top: 10px; max-width: 60ch; margin-left: auto; margin-right: auto; }

/* ── Sticky mobile CTA ──────────────────────────────────────────────────── */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: linear-gradient(0deg, rgba(3,4,10,0.96), rgba(3,4,10,0.7)); backdrop-filter: blur(12px); border-top: 1px solid var(--line-soft); transform: translateY(120%); transition: transform .4s cubic-bezier(.16,.84,.28,1); display: none; }
.sticky-cta .btn { width: 100%; }
.sticky-cta.show { transform: translateY(0); }
@media (max-width: 720px) { .sticky-cta { display: block; } }

/* ── Long-form legal pages ──────────────────────────────────────────────── */
.doc { max-width: var(--readw); padding: 96px 0 72px; }
.doc h1 { text-align: left; text-transform: none; letter-spacing: 0.01em; font-family: var(--serif); font-weight: 300; text-indent: 0; font-size: clamp(34px, 7vw, 52px); }
.doc .updated { color: var(--text-faint); font-size: 14px; margin: 10px 0 40px; }
.doc h2 { font-size: 26px; margin: 40px 0 12px; }
.doc h3 { font-size: 20px; margin: 24px 0 8px; }
.doc p, .doc li { color: var(--text-dim); }
.doc ul { margin: 12px 0 12px 22px; } .doc li { margin-bottom: 8px; }
.doc .lede { color: var(--text); font-size: 19px; font-family: var(--serif); }

/* ── Scroll reveal ──────────────────────────────────────────────────────── */
.veil { opacity: 0; transform: translateY(26px); transition: opacity 1s cubic-bezier(.16,.84,.28,1), transform 1s cubic-bezier(.16,.84,.28,1); will-change: opacity, transform; }
.veil.lifted { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .feat { grid-template-columns: 1fr; gap: 40px; }
  .feat.rev .feat-copy { order: 0; }
  .feat-copy { text-align: center; } .feat-copy p { margin-left: auto; margin-right: auto; }
  .tiers { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .iris-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .duo { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wait-form { flex-direction: column; } .wait-form .btn { width: 100%; }
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .veil { opacity: 1; transform: none; }
  .sky { animation: none; }
}
