/* ============================================================
   HAZEL — hazelmd.xyz
   Dark, particle-orb aesthetic. Poppins + Space Mono.
   ============================================================ */

:root {
  /* base */
  --bg:        #040305;
  --bg-2:      #0a0810;
  --panel:     rgba(255,255,255,0.022);
  --panel-2:   rgba(255,255,255,0.04);
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);
  --ink:       #f5f3f9;
  --ink-2:     #c8c2d4;
  --muted:     #8e879c;
  --faint:     #5e5870;

  /* brand / accents */
  --purple:    oklch(0.66 0.20 318);
  --blue:      oklch(0.66 0.17 264);
  --red:       oklch(0.64 0.21 14);
  --green:     oklch(0.74 0.16 158);

  /* aurora ramp */
  --a1: oklch(0.72 0.20 318);
  --a2: oklch(0.70 0.18 268);
  --a3: oklch(0.78 0.16 200);
  --a4: oklch(0.72 0.20 350);

  --maxw: 1180px;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --glow: 1;     /* tuned by Tweaks */
  --float-mult: 1;
}

[data-accent="blue"]   { --accent: var(--blue); }
[data-accent="red"]    { --accent: var(--red); }
[data-accent="green"]  { --accent: var(--green); }
[data-accent="purple"] { --accent: var(--purple); }

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

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
html { overflow-x: clip; }
body.lock { overflow: hidden; }

::selection { background: color-mix(in oklch, var(--purple) 55%, transparent); color: #fff; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.mono {
  font-family: "Space Mono", ui-monospace, monospace;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ambient page background */
.bg-field {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, color-mix(in oklch, var(--purple) 14%, transparent), transparent 60%),
    radial-gradient(90% 60% at 12% 108%, color-mix(in oklch, var(--blue) 12%, transparent), transparent 60%),
    var(--bg);
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%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)' opacity='0.5'/%3E%3C/svg%3E");
}
body[data-grain="off"] .grain { display: none; }

.shell { position: relative; z-index: 2; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   LOADING
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: grid; justify-items: center; gap: 30px; transform: translateY(-2%); }
.loader-orb {
  width: min(46vw, 240px); aspect-ratio: 1; position: relative;
  animation: breathe 4.5s ease-in-out infinite;
}
.loader-orb img { width: 100%; height: 100%; object-fit: contain; filter: saturate(1.1); mix-blend-mode: screen; -webkit-mask: radial-gradient(circle at 50% 50%, #000 46%, rgba(0,0,0,0.4) 72%, transparent 90%); mask: radial-gradient(circle at 50% 50%, #000 46%, rgba(0,0,0,0.4) 72%, transparent 90%); }
.loader-word {
  font-weight: 700; font-size: clamp(34px, 9vw, 64px); letter-spacing: -0.02em;
  opacity: 0; transform: translateY(10px); animation: rise 0.9s var(--ease) 0.5s forwards;
}
.loader-sub {
  font-size: 13px; color: var(--muted); opacity: 0;
  animation: rise 0.9s var(--ease) 0.9s forwards;
}
.loader-bar {
  width: 150px; height: 2px; border-radius: 2px; overflow: hidden;
  background: rgba(255,255,255,0.08); margin-top: 6px;
}
.loader-bar i {
  display: block; height: 100%; width: 40%; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--a1), var(--a3), transparent);
  animation: load 1.6s ease-in-out infinite;
}
@keyframes load { 0%{transform:translateX(-120%)} 100%{transform:translateX(320%)} }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklch, var(--bg) 72%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 18px; letter-spacing: -0.01em; cursor: pointer; }
.brand-mark {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background-size: 150%; background-position: center; background-repeat: no-repeat;
  mix-blend-mode: screen;
  box-shadow: 0 0 16px color-mix(in oklch, var(--purple) 55%, transparent);
}
.brand-name { color: var(--ink); }
.brand-dot { color: var(--a1); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-size: 13.5px; color: var(--ink-2); transition: color 0.2s; cursor: pointer; }
.nav-links a:hover { color: var(--ink); }
.lang-toggle { display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; padding: 2px; gap: 2px; }
.lang-opt { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; padding: 5px 9px; border-radius: 999px; color: var(--faint); transition: 0.2s; }
.lang-opt.on { background: var(--panel-2); color: var(--ink); }
.nav-cta {
  font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--ink); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--panel-2); border-color: var(--ink-2); }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } .nav-cta { display: none; } }

/* ============================================================
   HERO STAGE (desktop: sticky scrub-reveal)
   ============================================================ */
.stage { position: relative; height: 188svh; z-index: 2; }
.stage-pin { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.stage-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 36%, color-mix(in oklch, var(--purple) 16%, transparent), transparent 70%);
}
.stage-inner { position: absolute; inset: 0; }

/* orb */
.orb-stage {
  position: relative; width: min(72vw, 360px); aspect-ratio: 1;
  display: grid; place-items: center; cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.stage-inner .orb-stage {
  position: absolute; left: 50%; top: 45%; margin: 0;
  width: clamp(240px, 34vh, 360px); will-change: transform;
}
.orb-img {
  width: 100%; height: 100%; object-fit: contain; mix-blend-mode: screen;
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 46%, rgba(0,0,0,0.4) 72%, transparent 90%);
  mask: radial-gradient(circle at 50% 50%, #000 46%, rgba(0,0,0,0.4) 72%, transparent 90%);
  animation: float calc(7s / var(--float-mult)) ease-in-out infinite,
             breathe calc(5s / var(--float-mult)) ease-in-out infinite;
  filter: drop-shadow(0 0 calc(46px * var(--glow)) color-mix(in oklch, var(--purple) 42%, transparent)) saturate(1.12);
}
.orb-stage:hover .orb-img { filter: drop-shadow(0 0 calc(64px * var(--glow)) color-mix(in oklch, var(--purple) 58%, transparent)) saturate(1.2); }
.orb-ring {
  position: absolute; inset: 8%; border-radius: 50%;
  border: 1px solid color-mix(in oklch, var(--purple) 30%, transparent);
  opacity: 0; animation: ringpulse 3.4s ease-out infinite; pointer-events: none;
}
@keyframes ringpulse { 0% { opacity: 0; transform: scale(0.82); } 35% { opacity: 0.6; } 100% { opacity: 0; transform: scale(1.18); } }
@keyframes hintpulse { 0%,100%{opacity:0.4} 50%{opacity:1} }
@keyframes float { 0%,100% { transform: translateY(calc(-9px * var(--float-mult))); } 50% { transform: translateY(calc(9px * var(--float-mult))); } }
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.03); } }

/* hero text */
.hero-text { text-align: center; display: grid; justify-items: center; gap: 18px; }
.stage-inner .hero-text { position: absolute; left: 50%; top: 60%; transform: translateX(-50%); width: min(1240px, 94vw); }
.hero-m .hero-text { max-width: 640px; }
.eyebrow { font-size: 11px; color: color-mix(in oklch, var(--blue) 78%, white); }
.hero-h1 { margin: 0; font-weight: 700; letter-spacing: -0.03em; line-height: 1.03; font-size: clamp(30px, 4.5vw, 60px); }
@media (min-width: 920px) { .hero-h1 { white-space: nowrap; } }
.hero-sub { font-size: clamp(13px, 1.5vw, 15.5px); color: var(--muted); }
.hero-sub .mono { letter-spacing: 0.1em; font-size: 0.92em; }

/* deck (revealed cards over the hero) */
.deck { position: absolute; left: 50%; top: 56%; transform: translate(-50%, -50%); width: min(1100px, 92vw); }
.deck-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; perspective: 2200px; }
.deck-card { will-change: transform, opacity; }
.deck .card { aspect-ratio: auto; height: clamp(404px, 56vh, 486px); min-height: 0; }

/* hint */
.stage-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 10px; font-size: 10.5px; color: var(--faint);
  letter-spacing: 0.16em; text-transform: uppercase; pointer-events: none;
}
.stage-hint > span:first-child { animation: hintpulse 2.6s ease-in-out infinite; }
.stage-hint .line { width: 1px; height: 30px; background: linear-gradient(var(--line-2), transparent); }

/* ===== MOBILE hero / bundles ===== */
.hero-m { min-height: 94svh; display: grid; place-items: center; text-align: center; padding: 116px 22px 30px; }
.hero-m .hero-text { gap: 16px; }
.hero-m .orb-stage { width: min(66vw, 300px); margin-bottom: 8px; }
.bundles-m { padding: 10px 0 40px; }
.bundles-m .deck-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 18px; perspective: 1600px; }

/* ============================================================
   SECTIONS / headings
   ============================================================ */
section { position: relative; }
.sec { position: relative; padding: clamp(40px, 5vw, 72px) 0; }
.sec-collection { padding: clamp(28px, 4vw, 52px) 0 clamp(36px, 5vw, 64px); }
.anchor { display: block; height: 0; }
.sec-head { display: grid; justify-items: center; text-align: center; gap: 14px; margin-bottom: clamp(38px, 6vw, 64px); }
.sec-eyebrow { font-size: 10.5px; color: var(--faint); }
.sec-title { margin: 0; font-weight: 600; letter-spacing: -0.025em; font-size: clamp(28px, 5vw, 46px); line-height: 1.05; }
.sec-desc { max-width: 520px; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   BUNDLES (flip cards)
   ============================================================ */

.card {
  position: relative; aspect-ratio: 0.74; min-height: 440px;
  transform-style: preserve-3d;
  transition: transform 0.85s var(--ease);
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.card.flipped { transform: rotateY(180deg); }

.face {
  position: absolute; inset: 0; border-radius: var(--radius);
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 50% 0%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 62%),
    linear-gradient(180deg, var(--bg-2), #08070c);
  box-shadow: 0 40px 90px -46px rgba(0,0,0,0.95), inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex; flex-direction: column;
}
/* visibility fallback — backface-visibility cull is unreliable with blended
   descendants, so swap face visibility discretely at the rotation midpoint */
.face-front { visibility: visible; transition: visibility 0s linear 0.43s; }
.face-back  { visibility: hidden;  transition: visibility 0s linear 0.43s; }
.card.flipped .face-front { visibility: hidden; }
.card.flipped .face-back  { visibility: visible; }
.face::after { /* accent edge glow */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 60px -30px color-mix(in oklch, var(--accent) 80%, transparent);
}
.card:hover .face { box-shadow: 0 46px 100px -44px rgba(0,0,0,0.95), inset 0 1px 0 rgba(255,255,255,0.07), 0 18px 60px -28px color-mix(in oklch, var(--accent) 42%, transparent); }
/* hover-highlight the small include lines */
.back-list li { transition: color 0.22s var(--ease), transform 0.22s var(--ease); }
.face-back:hover .back-list li { color: var(--muted); }
.face-back .back-list li:hover { color: var(--ink); transform: translateX(3px); }
.face-back .back-list li:hover .tick { color: #fff; background: color-mix(in oklch, var(--accent) 42%, transparent); }

.face-front { padding: 26px 24px 24px; }
.face-back { transform: rotateY(180deg); padding: 26px 24px 24px; }

.card-orb {
  width: 56%; aspect-ratio: 1; margin: 4px auto 6px;
  background-size: contain; background-position: center; background-repeat: no-repeat;
  mix-blend-mode: screen;
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 50%, transparent 86%);
  mask: radial-gradient(circle at 50% 50%, #000 50%, transparent 86%);
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 0 calc(28px * var(--glow)) color-mix(in oklch, var(--accent) 50%, transparent));
}
.card-no { font-size: 10px; color: var(--faint); text-align: center; }
.card-title { text-align: center; font-weight: 700; font-size: 30px; letter-spacing: -0.02em; margin: 8px 0 4px; }
.card-tag { text-align: center; font-size: 12.5px; color: color-mix(in oklch, var(--accent) 60%, white); margin-bottom: 14px; }
.card-blurb { text-align: center; font-size: 13.5px; line-height: 1.55; color: var(--ink-2); padding: 0 4px; }
.card-foot { margin-top: auto; display: grid; gap: 14px; padding-top: 18px; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.price { font-weight: 700; font-size: 30px; letter-spacing: -0.02em; }
.price s { color: var(--faint); font-weight: 400; font-size: 15px; }
.flip-hint { text-align: center; font-size: 10px; color: var(--faint); display:flex; gap:6px; align-items:center; justify-content:center; }
.flip-hint svg { width: 12px; height: 12px; }

/* back face content */
.back-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.back-head .t { font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.back-close { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink-2); transition: 0.2s; }
.back-close:hover { background: var(--panel-2); }
.back-summary { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
.back-list { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 10px; }
.back-list li { display: flex; gap: 10px; font-size: 13px; color: var(--ink-2); line-height: 1.35; }
.back-list li .tick {
  flex: none; width: 16px; height: 16px; margin-top: 1px; border-radius: 50%;
  background: color-mix(in oklch, var(--accent) 22%, transparent);
  color: color-mix(in oklch, var(--accent) 70%, white);
  display: grid; place-items: center;
}
.back-list li .tick svg { width: 9px; height: 9px; }
.back-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.chip {
  font-size: 9.5px; padding: 5px 10px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted);
}
.back-foot { margin-top: auto; display: grid; gap: 10px; }

/* ============================================================
   AURORA BUTTON
   ============================================================ */
.aurora {
  position: relative; width: 100%; padding: 15px 22px; border-radius: 14px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  color: #fff; overflow: hidden; isolation: isolate;
  background: color-mix(in oklch, var(--accent, var(--purple)) 12%, rgba(255,255,255,0.02));
  transition: transform 0.25s var(--ease), box-shadow 0.4s;
}
.aurora::before { /* moving aurora glow behind text */
  content: ""; position: absolute; inset: -60%; z-index: -1;
  background: conic-gradient(from 0deg, var(--a1), var(--a2), var(--a3), var(--a4), var(--a1));
  filter: blur(26px); opacity: calc(0.55 * var(--glow));
  animation: spin 7s linear infinite;
}
.aurora::after { /* thin animated border */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; z-index: -1;
  background: linear-gradient(120deg, var(--a4), var(--a1), var(--a3), var(--a2));
  background-size: 280% 280%; animation: shimmer 5s ease infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.aurora span {
  position: relative; z-index: 1;
  animation: textglow 4s ease-in-out infinite;
}
.aurora:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -16px color-mix(in oklch, var(--accent, var(--purple)) 70%, transparent); }
.aurora:active { transform: translateY(0) scale(0.99); }
.aurora.ghost { background: rgba(255,255,255,0.03); }
.aurora.ghost::before { opacity: calc(0.3 * var(--glow)); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes textglow {
  0%,100% { text-shadow: 0 0 6px rgba(255,255,255,0.25), 0 0 18px color-mix(in oklch, var(--a1) 60%, transparent); }
  50%     { text-shadow: 0 0 10px rgba(255,255,255,0.5), 0 0 30px color-mix(in oklch, var(--a3) 70%, transparent); }
}

/* ============================================================
   COLLECTION banner
   ============================================================ */
.collection {
  margin-top: 26px;
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(80% 140% at 15% 0%, color-mix(in oklch, var(--purple) 16%, transparent), transparent 55%),
    radial-gradient(80% 140% at 85% 100%, color-mix(in oklch, var(--blue) 14%, transparent), transparent 55%),
    linear-gradient(180deg, var(--bg-2), #08070c);
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
  padding: 28px 32px;
}
.collection .orbs { display: flex; }
.collection .orbs span {
  width: 62px; height: 62px; border-radius: 50%; background-size: 150%; background-position: center;
  margin-left: -16px; mix-blend-mode: screen;
}
.collection .orbs span:first-child { margin-left: 0; }
.collection .c-title { font-weight: 700; font-size: clamp(20px, 3vw, 26px); letter-spacing: -0.02em; }
.collection .c-blurb { color: var(--muted); font-size: 13.5px; margin-top: 4px; max-width: 420px; }
.collection .c-buy { display: grid; gap: 8px; justify-items: end; min-width: 180px; }
.collection .c-price { display: flex; align-items: baseline; gap: 8px; }
.collection .c-price b { font-size: 30px; font-weight: 700; }
.collection .c-price s { color: var(--faint); font-size: 16px; }
.collection .aurora { width: auto; padding: 14px 34px; }
@media (max-width: 820px) {
  .collection { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 30px 24px; }
  .collection .orbs { justify-content: center; }
  .collection .c-buy { justify-items: center; width: 100%; max-width: 280px; }
  .collection .aurora { width: 100%; }
}

/* ---- The Vault & Xtras: rich "get everything" offer panel ---- */
.collection-offer {
  position: relative; margin-top: 26px; border-radius: 28px; overflow: hidden;
  background:
    radial-gradient(80% 130% at 12% 0%, color-mix(in oklch, var(--purple) 18%, transparent), transparent 55%),
    radial-gradient(80% 130% at 88% 100%, color-mix(in oklch, var(--blue) 15%, transparent), transparent 55%),
    linear-gradient(180deg, var(--bg-2), #08070c);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.04);
  padding: clamp(30px, 5vw, 56px);
  display: grid; gap: clamp(22px, 3vw, 34px);
}
.collection-offer::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 90px -40px color-mix(in oklch, var(--purple) 70%, transparent);
}
.collection-offer .co-head { display: grid; justify-items: center; text-align: center; gap: 12px; position: relative; z-index: 1; }
.collection-offer .co-orbs { display: flex; margin-bottom: 4px; }
.collection-offer .co-orbs span {
  width: 64px; height: 64px; border-radius: 50%; background-size: 150%; background-position: center;
  margin-left: -18px; mix-blend-mode: screen;
  filter: drop-shadow(0 0 22px color-mix(in oklch, var(--purple) 40%, transparent));
}
.collection-offer .co-orbs span:first-child { margin-left: 0; }
.co-eyebrow { font-size: 10.5px; color: color-mix(in oklch, var(--purple) 72%, white); }
.co-title { margin: 0; font-weight: 700; letter-spacing: -0.03em; font-size: clamp(26px, 4vw, 42px); line-height: 1.04; }
.co-blurb { margin: 0; max-width: 580px; color: var(--ink-2); font-size: clamp(14px, 1.6vw, 16px); line-height: 1.55; }
.collection-offer .co-list {
  list-style: none; margin: 0 auto; padding: 0; width: 100%; max-width: 840px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 13px 28px; position: relative; z-index: 1;
}
.collection-offer .co-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; line-height: 1.4; color: var(--ink-2); transition: color 0.2s var(--ease), transform 0.2s var(--ease); }
.collection-offer .co-list li:hover { color: var(--ink); transform: translateX(3px); }
.collection-offer .co-list li .tick {
  flex: none; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%;
  background: color-mix(in oklch, var(--purple) 22%, transparent);
  color: color-mix(in oklch, var(--purple) 72%, white); display: grid; place-items: center;
}
.collection-offer .co-list li .tick svg { width: 10px; height: 10px; }
.collection-offer .co-list li.star { color: var(--ink); font-weight: 500; }
.collection-offer .co-list li.star .tick { background: color-mix(in oklch, var(--a1) 32%, transparent); color: #fff; }
.collection-offer .co-foot { display: grid; justify-items: center; gap: 13px; position: relative; z-index: 1; }
.collection-offer .co-price { display: flex; align-items: baseline; gap: 10px; }
.collection-offer .co-price b { font-size: clamp(38px, 6vw, 48px); font-weight: 700; letter-spacing: -0.02em; }
.collection-offer .co-price s { color: var(--faint); font-size: 20px; }
.collection-offer .co-save {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px; align-self: center;
  color: color-mix(in oklch, var(--green) 78%, white);
  background: color-mix(in oklch, var(--green) 16%, transparent);
}
.collection-offer .co-value { font-size: 12.5px; color: var(--muted); }
.collection-offer .co-foot .aurora { width: auto; min-width: 300px; padding: 16px 42px; font-size: 15px; }
@media (max-width: 720px) {
  .collection-offer .co-list { grid-template-columns: 1fr; max-width: 440px; }
  .collection-offer .co-foot .aurora { width: 100%; min-width: 0; }
}

/* ============================================================
   FEATURE (orb + big two-line headline — ad layout)
   ============================================================ */
.feature {
  position: relative; border-radius: 28px; overflow: hidden;
  padding: clamp(38px, 6vw, 76px);
  box-shadow: 0 40px 90px -52px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.04);
  background:
    radial-gradient(70% 80% at 16% 116%, color-mix(in oklch, var(--purple) 24%, transparent), transparent 60%),
    linear-gradient(180deg, var(--bg-2), #08070c);
  display: grid; justify-items: start; text-align: left; gap: 4px;
}
.feature-flip {
  justify-items: end; text-align: right;
  background:
    radial-gradient(70% 80% at 84% 116%, color-mix(in oklch, var(--purple) 24%, transparent), transparent 60%),
    linear-gradient(180deg, var(--bg-2), #08070c);
}
.feature-orb {
  width: clamp(120px, 15vw, 184px); aspect-ratio: 1; margin-bottom: clamp(20px, 4vw, 40px);
  background-size: contain; background-position: center; background-repeat: no-repeat;
  mix-blend-mode: screen;
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 50%, transparent 86%);
  mask: radial-gradient(circle at 50% 50%, #000 50%, transparent 86%);
  filter: drop-shadow(0 0 calc(34px * var(--glow)) color-mix(in oklch, var(--purple) 46%, transparent));
  animation: float 8s ease-in-out infinite;
}
.feature-eyebrow { font-size: 11px; color: color-mix(in oklch, var(--purple) 72%, white); margin-bottom: 18px; }
.feature-title { margin: 0; font-weight: 700; letter-spacing: -0.03em; line-height: 1.0; font-size: clamp(34px, 5.6vw, 68px); }
.feature-title span { display: block; }
.feature-text { margin: 22px 0 0; color: var(--ink-2); font-size: clamp(15px, 1.9vw, 20px); line-height: 1.5; max-width: 540px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.review {
  border-radius: 18px; padding: 24px; display: grid; gap: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  box-shadow: 0 24px 50px -40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: box-shadow 0.3s, transform 0.3s var(--ease);
}
.review:hover { transform: translateY(-3px); box-shadow: 0 34px 64px -38px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.09); }
.stars { display: flex; gap: 3px; color: var(--a1); }
.stars svg { width: 15px; height: 15px; }
.review p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-2); }
.review .who { display: flex; align-items: center; gap: 11px; }
.review .av {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, var(--a1), var(--a2) 60%, #1a1030);
}
.review .who b { font-size: 13px; font-weight: 600; }
.review .who small { display: block; font-size: 11px; color: var(--faint); }

/* ============================================================
   EXAMPLES
   ============================================================ */
.ex-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.ex-tab {
  padding: 9px 18px; border-radius: 999px; font-size: 12.5px; font-weight: 500;
  border: 1px solid var(--line); color: var(--muted); transition: 0.25s;
}
.ex-tab[data-on="true"] { color: var(--ink); border-color: color-mix(in oklch, var(--accent) 50%, var(--line)); background: color-mix(in oklch, var(--accent) 10%, transparent); }
.ex-list { display: grid; gap: 16px; max-width: 760px; margin: 0 auto; }
.ex-card {
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2), #08070c);
  box-shadow: 0 24px 50px -42px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.04);
}
.ex-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.ex-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.ex-bar .lbl { margin-left: 8px; font-size: 9.5px; color: var(--faint); }
.ex-body { padding: 18px 18px; }
.ex-body .you { font-size: 10px; color: var(--faint); margin-bottom: 8px; }
.ex-body .prompt {
  font-family: "Space Mono", monospace; font-size: 13px; line-height: 1.7; color: var(--ink-2);
}
.ex-body .prompt b { color: color-mix(in oklch, var(--accent) 70%, white); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 740px; margin: 0 auto; display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font-size: 16px; font-weight: 500; color: var(--ink);
}
.faq-q .pm { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--ink-2);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq-q .pm::before { width: 13px; height: 1.5px; }
.faq-q .pm::after { width: 1.5px; height: 13px; }
.faq-item[data-open="true"] .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-a .inner { padding: 0 4px 22px; font-size: 14px; line-height: 1.65; color: var(--muted); max-width: 620px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 70px 0 60px; border-top: 1px solid var(--line); text-align: center; }
.footer .fbrand { display: flex; align-items: center; gap: 11px; justify-content: center; font-weight: 600; font-size: 22px; margin-bottom: 14px; }
.footer .ftag { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.footer .flinks { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.footer .flinks a { font-size: 13px; color: var(--ink-2); transition: 0.2s; }
.footer .flinks a:hover { color: var(--ink); }
.footer .fnote { font-size: 11px; color: var(--faint); }
.footer .fnote .mono { font-size: 10px; }

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.modal-veil {
  position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px;
  background: rgba(4,3,8,0.7); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.modal-veil.open { opacity: 1; visibility: visible; }
.modal {
  width: 100%; max-width: 420px; border-radius: 24px; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2), #08070c);
  box-shadow: 0 50px 100px -40px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(20px) scale(0.97); opacity: 0; transition: transform 0.45s var(--ease), opacity 0.45s;
}
.modal-veil.open .modal { transform: none; opacity: 1; }
.modal-top {
  position: relative; padding: 26px 26px 22px; display: flex; gap: 16px; align-items: center;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(100% 120% at 50% 0%, color-mix(in oklch, var(--accent) 16%, transparent), transparent 60%);
}
.modal-top .m-orb { width: 58px; height: 58px; flex: none; background-size: contain; background-repeat: no-repeat; background-position: center; mix-blend-mode: screen; }
.modal-top .m-t { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.modal-top .m-s { font-size: 12px; color: var(--muted); margin-top: 2px; }
.modal-x { position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); border: 1px solid var(--line); transition: 0.2s; }
.modal-x:hover { background: var(--panel-2); }
.modal-body { padding: 22px 26px 26px; display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 10.5px; color: var(--faint); letter-spacing: 0.05em; }
.field input {
  width: 100%; padding: 13px 14px; border-radius: 11px; font-size: 14px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line); color: var(--ink);
  font-family: inherit; transition: border-color 0.2s;
}
.field input::placeholder { color: var(--faint); }
.field input:focus { outline: none; border-color: color-mix(in oklch, var(--accent) 55%, var(--line)); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.summary { display: flex; justify-content: space-between; align-items: baseline; padding: 4px 2px 6px; }
.summary .lab { font-size: 13px; color: var(--muted); }
.summary .val { font-weight: 700; font-size: 22px; }
.modal-note { font-size: 10px; color: var(--faint); text-align: center; }
.secured { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 10px; color: var(--faint); }
.secured svg { width: 12px; height: 12px; }

/* success */
.success { display: grid; justify-items: center; text-align: center; gap: 14px; padding: 48px 30px 40px; }
.success .check {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: color-mix(in oklch, var(--green) 18%, transparent);
  color: var(--green); animation: pop 0.5s var(--ease);
}
.success .check svg { width: 30px; height: 30px; }
@keyframes pop { 0%{transform:scale(0.5);opacity:0} 60%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }
.success h3 { margin: 0; font-size: 20px; font-weight: 700; }
.success p { margin: 0; font-size: 13px; color: var(--muted); max-width: 260px; line-height: 1.5; }

/* reduced motion */
body[data-motion="off"] *,
@media (prefers-reduced-motion: reduce) {
  animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
}
