/* NANDA Cube — nandacube.com
   Compiled from the Claude Design source (NANDA Cube.dc.html) into plain
   HTML/CSS: no DC runtime, no React, no external requests. `style-hover`
   attributes became real :hover rules, <helmet> moved into <head>, and the
   props script became the custom properties below.

   The palette is the mark's own — black, and the exact gold sampled from
   the Project NANDA logo rather than a colour picked to resemble it. */

:root {
  --bg:      #050506;
  --ink:     #f4f4f7;
  --dim:     #a9adb6;
  --faint:   #74787f;
  --line:    rgba(255,255,255,.09);
  --line-2:  rgba(255,255,255,.055);

  --gold:    #fccd17;   /* sampled from the mark */
  --gold-hi: #ffe58a;
  --amber:   #ff9f2e;   /* alerts only, so "needs a yes" reads as its own thing */

  --shell: min(1180px, 90vw);
  --ease:  cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #16120a; }

.skip { position: absolute; left: -9999px; background: var(--gold); color: #16120a;
        padding: .7rem 1.1rem; border-radius: 10px; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 8px; }

/* ───────────────────────────────────────────────────  type  ── */

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.038em; line-height: 1.02; }

.display {
  font-size: clamp(46px, 8.6vw, 118px); line-height: .94; letter-spacing: -.045em;
  background: linear-gradient(180deg, #fff 22%, #b9bec9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.display-sm { font-size: clamp(38px, 6.6vw, 82px); line-height: .98; letter-spacing: -.042em; }

h2 { font-size: clamp(32px, 5vw, 62px); }
.h-mid { font-size: clamp(30px, 4.4vw, 54px); line-height: 1.04; letter-spacing: -.036em; }
h3 { font-size: 20px; letter-spacing: -.02em; line-height: 1.25; }

.eyebrow { margin: 0 0 22px; font-size: 12px; letter-spacing: .22em;
           text-transform: uppercase; color: var(--gold); }
.kicker  { margin: 0 0 16px; font-size: 12px; letter-spacing: .2em;
           text-transform: uppercase; color: var(--faint); }
.lede { margin: 26px auto 0; max-width: 620px; font-size: clamp(16px, 2vw, 21px);
        line-height: 1.5; color: var(--dim); letter-spacing: -.012em; text-wrap: pretty; }
.sub  { margin: 20px auto 0; max-width: 680px; font-size: clamp(15px, 1.7vw, 19px);
        line-height: 1.55; color: var(--dim); letter-spacing: -.01em; text-wrap: pretty; }
.sub-left { margin-inline: 0; }
.body { margin: 22px 0 0; max-width: 500px; font-size: 16.5px; line-height: 1.62; color: var(--dim); }
.body em { font-family: "Instrument Serif", Georgia, serif; font-style: italic;
           font-size: 19px; color: #f0f1f4; }
.center { margin-inline: auto; text-align: center; }
.aside { margin: 22px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--faint); }

/* ────────────────────────────────────────────────────  nav  ── */

.nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 clamp(20px, 5vw, 64px); height: 56px;
  background: rgba(6,6,10,.72);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--line-2);
}
.wordmark { display: flex; align-items: center; gap: 10px;
            font-size: 14px; font-weight: 600; letter-spacing: -.01em; }
.wordmark-chip {
  width: 15px; height: 15px; border-radius: 4px;
  background: radial-gradient(circle at 50% 40%, #33363d, #101216 70%);
  box-shadow: 0 0 11px rgba(252,205,23,.65),
              inset 0 0 5px rgba(252,205,23,.55),
              inset 0 1px 0 rgba(236,241,255,.4);
}
.nav-links { display: flex; gap: clamp(14px, 2.2vw, 30px); font-size: 12.5px; color: var(--dim); }
.nav-links a:hover { color: var(--gold); }

/* ────────────────────────────────────────────────  buttons  ── */

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
       border-radius: 999px; font-size: 15px; font-weight: 600; white-space: nowrap;
       padding: 13px 26px; border: 1px solid transparent;
       transition: background .25s var(--ease), color .25s var(--ease),
                   border-color .25s var(--ease), box-shadow .25s var(--ease),
                   transform .25s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 7px 15px; font-size: 12.5px; }
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-solid { background: var(--gold); color: #16120a;
             box-shadow: 0 14px 44px -14px rgba(252,205,23,.65); }
.btn-solid:hover { background: var(--gold-hi); box-shadow: 0 18px 54px -14px rgba(252,205,23,.85); }
.btn-line { border-color: rgba(255,255,255,.18); color: #e8e9ee; font-weight: 500; }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

/* ───────────────────────────────────────────────  sections  ── */

.wrap { max-width: var(--shell); margin: 0 auto;
        padding: clamp(80px, 12vh, 150px) 0; }
.band-deep, .band-soft { padding: 0 clamp(20px, 5vw, 64px); border-top: 1px solid var(--line-2); }
.band-deep { background: radial-gradient(ellipse at 50% 0%, #0c0d13, var(--bg) 70%); }
.band-soft { background: linear-gradient(180deg, var(--bg), #0a0b0e 50%, var(--bg));
             border-bottom: 1px solid var(--line-2); }
main > .wrap { padding-inline: clamp(20px, 5vw, 64px); }

.head { max-width: 760px; margin-bottom: clamp(40px, 6vh, 70px); }
.head-center { margin-inline: auto; text-align: center; }

/* ───────────────────────────────────────────────────  hero  ── */

.hero { position: relative; padding: clamp(56px, 9vh, 110px) clamp(20px, 5vw, 64px) 0;
        text-align: center; overflow: hidden; }
.hero-bloom {
  position: absolute; top: -14%; left: 50%; transform: translateX(-50%);
  width: min(1400px, 150vw); height: 900px; pointer-events: none; filter: blur(30px);
  background:
    radial-gradient(ellipse at 38% 34%, rgba(252,205,23,.26), transparent 58%),
    radial-gradient(ellipse at 64% 52%, rgba(255,120,40,.16), transparent 56%),
    radial-gradient(ellipse at 50% 70%, rgba(120,90,255,.10), transparent 60%);
  animation: drift 18s ease-in-out infinite;
}
.hero-copy { position: relative; max-width: 980px; margin: 0 auto; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ───────────────────────────────────────────────  the cube  ── */

.stage { position: relative; display: grid; place-items: center; perspective: 1400px; }
.stage-hero { height: clamp(360px, 52vh, 560px); margin-top: clamp(-10px, 1vh, 24px); }
.stage-mid  { height: clamp(340px, 46vh, 480px); margin: clamp(20px, 4vh, 50px) 0;
              perspective: 1200px; }

.stage-halo { position: absolute; width: min(760px, 92vw); aspect-ratio: 1; border-radius: 50%;
              background:
                radial-gradient(circle at 44% 40%, rgba(252,205,23,.34), transparent 56%),
                radial-gradient(circle at 60% 62%, rgba(255,132,48,.2), transparent 54%);
              filter: blur(60px); animation: drift 14s ease-in-out infinite; }
.stage-halo.warm { width: min(620px, 86vw); aspect-ratio: auto; height: 300px;
                   background: radial-gradient(ellipse, rgba(255,159,46,.2), transparent 62%);
                   filter: blur(54px); animation: none; }
.stage-shadow { position: absolute; bottom: 8%; width: min(560px, 80vw); height: 90px;
                filter: blur(18px);
                background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,.9), transparent 70%); }

.bob { transform-style: preserve-3d; animation: bob 9s ease-in-out infinite; }

.cube { position: relative; transform-style: preserve-3d;
        animation: spinLg 24s linear infinite; }
.cube-lg { width: 230px; height: 230px; transform: rotateX(-16deg) rotateY(16deg);
           --z: 115px; --r: 2px; }
.cube-sm { width: 190px; height: 190px; transform: rotateX(-22deg) rotateY(28deg);
           --z: 95px; --r: 2px; }
.cube-sm { animation: spinSm 30s linear infinite; }

/* A face is four layers: a specular hotspot, a fine brushed grain, an edge
   bevel, and the base metal underneath. A single flat gradient reads as
   plastic — what says "machined" is the grain plus a narrow hot highlight
   and a bright top edge. */
.f {
  position: absolute; inset: -0.5px; border-radius: var(--r);
  /* The cube is a solid, so the far faces must not show through it. Without
     this the underside reads as a shadow hanging off the bottom edge. */
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  background:
    radial-gradient(120% 90% at 26% 8%, rgba(214,220,235,.22), transparent 48%),
    linear-gradient(74deg, transparent 36%, rgba(252,205,23,.13) 46%,
      rgba(255,241,205,.20) 50%, rgba(160,190,235,.10) 55%, transparent 66%),
    repeating-linear-gradient(97deg,
      rgba(255,255,255,.055) 0 1px, rgba(0,0,0,.03) 1px 2px, transparent 2px 4px),
    linear-gradient(176deg,
      #4a4d56 0%, #34373f 14%, #24272e 36%,
      #191b21 62%, #101218 82%, #0a0b10 100%);
  /* The chamfer, as light rather than as geometry: a hot line along the
     top edge, a softer one down the leading side, and a dark one on the
     trailing side. */
  background-size: auto, 320% 100%, auto, auto;
  animation: sheen 9s ease-in-out infinite;
  box-shadow:
    inset 0 2px 0 rgba(236,241,255,.62),
    inset 0 -1.5px 0 rgba(0,0,0,.7),
    inset 2px 0 0 rgba(214,222,240,.24),
    inset -2px 0 0 rgba(0,0,0,.55),
    inset 0 -34px 64px rgba(0,0,0,.5);
}
.ff { transform: translateZ(var(--z)); }
.fb { transform: rotateY(180deg) translateZ(var(--z));
      background:
        radial-gradient(120% 90% at 70% 10%, rgba(255,255,255,.2), transparent 44%),
        repeating-linear-gradient(97deg, rgba(255,255,255,.03) 0 1px, transparent 1px 4px),
        linear-gradient(176deg, #2a2d33, #16181d 62%, #08090c 100%); }
.fr { transform: rotateY(90deg) translateZ(var(--z));
      background:
        radial-gradient(120% 90% at 18% 10%, rgba(255,255,255,.3), transparent 46%),
        repeating-linear-gradient(97deg, rgba(255,255,255,.04) 0 1px, transparent 1px 4px),
        linear-gradient(176deg, #33363d 0%, #212429 34%, #14161b 68%, #0b0c10 100%); }
.fl { transform: rotateY(-90deg) translateZ(var(--z));
      background:
        radial-gradient(120% 90% at 34% 8%, rgba(255,255,255,.46), transparent 46%),
        repeating-linear-gradient(97deg, rgba(255,255,255,.05) 0 1px, transparent 1px 4px),
        linear-gradient(176deg, #42454e 0%, #2b2e35 30%, #1a1c22 64%, #0d0e13 100%); }
.fd { transform: rotateX(-90deg) translateZ(var(--z));
      background: linear-gradient(150deg, #24262c, #111216);
      box-shadow: 0 0 90px rgba(252,205,23,.3); }

/* The top face: a turned-metal disc, a machined recess, and the mark
   sitting in it. The ring on this product is the Project NANDA mark, so
   this is the real artwork rather than a stand-in circle. */
.fu {
  transform: rotateX(90deg) translateZ(var(--z));
  display: grid; place-items: center;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%,
      rgba(255,255,255,.035) 0deg 2deg, rgba(0,0,0,.05) 2deg 4deg),
    radial-gradient(circle at 50% 50%,
      rgba(252,205,23,.20) 0%, rgba(252,205,23,.09) 38%, transparent 60%),
    radial-gradient(circle at 50% 46%, #3d4048 0%, #26292f 46%, #16181d 78%, #0e1014 100%);
  box-shadow: inset 0 0 40px rgba(252,205,23,.13), inset 0 0 0 1.5px rgba(236,241,255,.4);
}
.well { position: relative; display: grid; place-items: center;
        width: 64%; aspect-ratio: 1; border-radius: 50%;
        background: radial-gradient(circle at 50% 42%, #0a0b0e 0%, #030304 74%);
        box-shadow: inset 0 3px 8px rgba(0,0,0,1),
                    inset 0 -2px 6px rgba(252,205,23,.14),
                    0 1px 0 rgba(236,241,255,.34),
                    0 0 26px rgba(252,205,23,.28); }
.well-glow { position: absolute; inset: -36%; border-radius: 50%; pointer-events: none;
             background: radial-gradient(circle, transparent 28%, rgba(252,205,23,.6) 50%, transparent 76%);
             filter: blur(8px); animation: breathe 4.5s ease-in-out infinite; }
.well-mark { position: relative; width: 94%; height: auto;
             filter: drop-shadow(0 0 1px rgba(255,231,150,1))
                     drop-shadow(0 0 8px rgba(252,205,23,.8))
                     drop-shadow(0 0 22px rgba(252,205,23,.45));
             image-rendering: -webkit-optimize-contrast;
             animation: breathe 4.5s ease-in-out infinite; }

@keyframes spinLg {
  from { transform: rotateX(-16deg) rotateY(16deg); }
  to   { transform: rotateX(-16deg) rotateY(376deg); }
}
@keyframes spinSm {
  from { transform: rotateX(-22deg) rotateY(28deg); }
  to   { transform: rotateX(-22deg) rotateY(-332deg); }
}
@keyframes sheen { from { background-position: -160% 0; } to { background-position: 260% 0; } }
@keyframes drift {
  0%,100% { transform: translate(-2%, 1%) scale(1); opacity: .85; }
  50%     { transform: translate(3%, -2%) scale(1.08); opacity: 1; }
}
@keyframes breathe  { 0%,100% { opacity: .62; } 50% { opacity: 1; } }
@keyframes bob      { 0%,100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }

/* ──────────────────────────────────────────────  the asks  ── */

.asks { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: 18px; perspective: 1400px; }
.ask { position: relative; margin: 0; padding: 28px 26px 30px; border-radius: 20px;
       font-family: "Instrument Serif", Georgia, serif;
       font-size: 23px; line-height: 1.32; letter-spacing: -.01em; color: #eceef2;
       transform-style: preserve-3d;
       transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.ask:nth-child(3n+1) { transform: rotateY(2.2deg) rotateX(1.4deg); }
.ask:nth-child(3n+2) { transform: rotateX(1.8deg); }
.ask:nth-child(3n)   { transform: rotateY(-2.2deg) rotateX(1.4deg); }
.ask:hover { transform: translateZ(26px) rotateX(-1deg); }
.ask:hover::before { border-color: rgba(252,205,23,.5); }

.steps { list-style: none; margin: clamp(56px, 8vh, 100px) 0 0;
         padding: clamp(40px, 6vh, 64px) 0 0; border-top: 1px solid var(--line);
         display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
         gap: clamp(24px, 4vw, 56px); }
.step-n { font-family: "Instrument Serif", Georgia, serif; font-size: 40px;
          color: var(--gold); line-height: 1; }
.steps h3 { margin: 14px 0 8px; font-size: 21px; }
.steps p  { margin: 0; font-size: 15.5px; line-height: 1.6; color: #a0a4ad; }
.steps em { font-family: "Instrument Serif", Georgia, serif; font-style: italic;
            font-size: 18px; color: var(--gold); }

/* A card is drawn as a physical tile rather than a rectangle with a
   border: a lit top bevel, a body, and a dark base edge underneath, plus
   elevation shadows that get deeper as it lifts. That reads as an object
   in a still frame, which a hover-only transform does not. */
.ask::before, .card::before, .tier::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: linear-gradient(168deg, rgba(255,255,255,.10) 0%,
              rgba(255,255,255,.045) 34%, rgba(255,255,255,.012) 100%);
  border: 1px solid var(--line);
  border-top-color: rgba(255,255,255,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -14px 26px rgba(0,0,0,.34),
    0 2px 0 rgba(255,255,255,.05),
    0 10px 0 -4px rgba(255,255,255,.035),
    0 18px 34px -14px rgba(0,0,0,.75),
    0 40px 70px -30px rgba(0,0,0,.85);
  transition: border-color .35s var(--ease), box-shadow .45s var(--ease);
}
.ask:hover::before, .card:hover::before, .tier:hover::before {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -14px 26px rgba(0,0,0,.3),
    0 2px 0 rgba(255,255,255,.07),
    0 12px 0 -4px rgba(255,255,255,.05),
    0 30px 50px -16px rgba(0,0,0,.8),
    0 60px 90px -34px rgba(252,205,23,.22);
}

/* ──────────────────────────────────────────────────  slab  ── */

.slab { max-width: 1000px; margin: 0 auto;
        display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 1px; background: var(--line); border: 1px solid var(--line);
        border-radius: 20px; overflow: hidden; }
.slab > div { padding: 28px 26px; background: #07080c; }
.slab p { margin: 0; font-size: 15.5px; line-height: 1.6; color: #b6bac2; }
.slab-k { font-size: 11.5px !important; letter-spacing: .16em; text-transform: uppercase;
          color: var(--gold) !important; margin-bottom: 12px !important; }

/* ─────────────────────────────────────────────────  cards  ── */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 18px; perspective: 1400px; }
.card { position: relative; padding: 32px 28px 34px; border-radius: 22px;
        transform-style: preserve-3d;
        transition: transform .45s var(--ease); }
.cards .card:nth-child(1) { transform: rotateY(2.4deg) rotateX(1.2deg); }
.cards .card:nth-child(2) { transform: rotateX(1.6deg); }
.cards .card:nth-child(3) { transform: rotateY(-2.4deg) rotateX(1.2deg); }
.card:hover { transform: translateZ(26px) rotateX(-1deg); }
.card:hover::before { border-color: rgba(252,205,23,.45); }
.card h3 { margin: 0 0 12px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.card p  { margin: 0; font-size: 15.5px; line-height: 1.62; color: #a0a4ad; }
.role { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

/* ─────────────────────────────────────────────────  split  ── */

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
         gap: clamp(36px, 6vw, 80px); align-items: center; }
.split-art { display: grid; place-items: center; }
.net { align-items: start; }
.net-copy { display: grid; gap: 14px; align-content: start; }

.dashes { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 10px;
          font-size: 15px; color: #9ea2ab; }
.dashes li { display: flex; gap: 10px; align-items: baseline; }
.dashes li::before { content: "—"; color: var(--gold); }

/* ─────────────────────────────────────────────────  panel  ── */

.panel { width: 100%; max-width: 440px; padding: 22px; border-radius: 26px;
         background: rgba(9,10,15,.92); border: 1px solid rgba(255,255,255,.1);
         box-shadow: 0 40px 100px -46px rgba(252,205,23,.4); display: grid; gap: 18px; }
.panel.plan { gap: 0; }

.meter-row { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 8px; }
.meter-row span:first-child { color: #dfe1e6; }
.meter-row span:last-child  { color: #8b8f97; }
.track { height: 6px; border-radius: 999px; background: rgba(255,255,255,.09); }
.track i { display: block; height: 100%; border-radius: 999px; background: #8f949d; }
.track i.gold { background: var(--gold); box-shadow: 0 0 12px rgba(252,205,23,.8); }

.alert { padding: 16px; border-radius: 16px; background: rgba(255,159,46,.09);
         border: 1px solid rgba(255,159,46,.34); }
.alert p { margin: 0; }
.alert-k { display: flex; align-items: center; gap: 8px; font-size: 11.5px; letter-spacing: .14em;
           text-transform: uppercase; color: var(--amber); margin-bottom: 10px !important; }
.pip { width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
       box-shadow: 0 0 10px var(--amber); animation: breathe 2s ease-in-out infinite; }
.alert-t { font-size: 15.5px; color: #eceef2; }
.alert-s { font-size: 13px; color: #8b8f97; margin-top: 6px !important; }

.quote { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-size: 21px;
         line-height: 1.35; color: #eceef2; padding-bottom: 18px;
         border-bottom: 1px solid var(--line); }
.plan-k, .lookup-k { margin: 18px 0 14px; font-size: 11.5px; letter-spacing: .16em;
                     text-transform: uppercase; color: var(--faint); }
.lookup-k { display: flex; justify-content: space-between; }
.plan-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px;
             font-size: 15px; color: #b6bac2; counter-reset: p; }
.plan-list li { display: flex; gap: 10px; counter-increment: p; }
.plan-list li::before { content: counter(p); color: var(--gold); }
.plan-list li.lit { color: #eceef2; }
.plan-foot { margin: 18px 0 0; font-size: 12.5px; color: var(--faint); }

.hits { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.hits li { display: grid; grid-template-columns: 1fr auto; gap: 0 12px;
           padding: 14px 16px; border-radius: 14px;
           background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07); }
.hits b { font-size: 15px; font-weight: 400; color: #eceef2; }
.hits span { grid-column: 1; font-size: 12.5px; color: #8b8f97; margin-top: 3px; }
.hits i { grid-row: 1; grid-column: 2; font-style: normal; font-size: 12.5px;
          color: #8b8f97; white-space: nowrap; }

/* ─────────────────────────────────────────────────  phone  ── */

.phone { width: min(300px, 80vw); padding: 11px; border-radius: 48px;
         background: linear-gradient(160deg, #33353d, #0a0b0e 62%);
         box-shadow: 0 50px 90px -40px rgba(0,0,0,.9),
                     inset 0 2px 0 rgba(255,255,255,.12),
                     0 0 0 1px rgba(255,255,255,.06); }
.phone-screen { border-radius: 38px; overflow: hidden; background: #0b0c10;
                border: 1px solid rgba(255,255,255,.06);
                padding: 8px 6px 18px; min-height: 520px; }
.phone-bar { display: flex; justify-content: space-between; padding: 6px 18px 2px;
             font-size: 11.5px; font-weight: 600; color: #cfd2d8; }
.phone-head { padding: 18px 18px 16px; display: grid; gap: 4px; }
.phone-title { font-size: 26px; font-weight: 600; letter-spacing: -.035em; }
.phone-sum { font-size: 13px; color: #8b8f97; }
.receipts { list-style: none; margin: 0; padding: 0 10px; display: grid; gap: 8px; }
.receipts li { display: grid; gap: 3px; padding: 14px 15px; border-radius: 16px;
               background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.05); }
.receipts b { font-size: 14.5px; font-weight: 600; letter-spacing: -.015em; color: #eceef2; }
.receipts span { font-size: 12.5px; color: #8b8f97; line-height: 1.35; }
.receipts i { font-style: normal; font-size: 11.5px; color: #6e727a; margin-top: 3px; }
.receipts li.lit { background: rgba(252,205,23,.08); border-color: rgba(252,205,23,.3); }
.receipts li.lit span { color: var(--gold); }

/* ───────────────────────────────────────────────  pricing  ── */

.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 20px; align-items: start; perspective: 1600px; }
.tier { position: relative; padding: 32px 28px 34px; border-radius: 24px;
        transform-style: preserve-3d; transition: transform .45s var(--ease); }
.tiers .tier:nth-child(1) { transform: rotateY(3deg); }
.tiers .tier:nth-child(3) { transform: rotateY(-3deg); }
.tier:hover { transform: translateZ(24px); }
.tier.lit { transform: translateZ(18px); }
.tier.lit::before { border-color: rgba(252,205,23,.5);
                    background: linear-gradient(172deg, rgba(252,205,23,.14), rgba(252,205,23,.02) 62%);
                    box-shadow: inset 0 1px 0 rgba(255,223,120,.3),
                                inset 0 -14px 26px rgba(0,0,0,.3),
                                0 2px 0 rgba(255,223,120,.12),
                                0 12px 0 -4px rgba(252,205,23,.1),
                                0 30px 54px -16px rgba(0,0,0,.8),
                                0 60px 96px -30px rgba(252,205,23,.5); }
.tier.lit:hover { transform: translateZ(34px); }
.tier-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.flag { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
        padding: 4px 10px; border-radius: 999px; background: var(--gold); color: #16120a; }
.flag.ghost { background: none; color: var(--faint); font-weight: 400; padding: 0; }
.tier-price { font-family: "Instrument Serif", Georgia, serif; font-size: 34px;
              color: #f0f1f4; margin: 13px 0 4px; }
.tier-line { margin: 0 0 22px; font-size: 13.5px; color: #8b8f97; }
.tier ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px;
           font-size: 15px; color: var(--dim); }
.tier-foot { margin: 22px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--faint); }

/* ──────────────────────────────────────────────  waitlist  ── */

.waitlist { position: relative; overflow: hidden; text-align: center;
            padding: clamp(90px, 14vh, 170px) clamp(20px, 5vw, 64px);
            border-top: 1px solid var(--line-2); }
.waitlist-bloom { position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%);
                  width: min(1100px, 140vw); height: 700px; pointer-events: none;
                  filter: blur(50px);
                  background: radial-gradient(ellipse at 50% 50%, rgba(252,205,23,.2), transparent 62%); }
.waitlist-inner { position: relative; max-width: 640px; margin: 0 auto; }
.waitlist .body { margin: 22px auto 32px; max-width: none; font-size: 17px; }
.waitlist .aside { margin-top: 18px; }

/* ────────────────────────────────────────────────  footer  ── */

.footer { padding: clamp(40px, 6vh, 64px) clamp(20px, 5vw, 64px) 48px;
          border-top: 1px solid var(--line); background: #06060a; }
.footer-inner { max-width: var(--shell); margin: 0 auto;
                display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 28px; align-items: start; }
.footer p { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--faint); max-width: 460px; }
.footer strong { color: #b6bac2; font-weight: 600; }
.footer-meta { font-size: 13px; line-height: 1.7; color: var(--faint); }
.footer-meta a, .footer p a { color: var(--dim); border-bottom: 1px solid rgba(252,205,23,.45); }
.footer-meta a:hover, .footer p a:hover { color: var(--gold); }

/* ────────────────────────────────────────────  responsive  ── */

@media (max-width: 820px) {
  .nav-links { display: none; }
  .split-art { order: -1; }
  .split.net .split-art { order: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .ask { padding: 20px; font-size: 20px; }
  .card, .tier { padding: 24px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cube, .bob, .stage-halo, .hero-bloom, .well-glow, .well-mark, .pip, .f
    { animation: none !important; }
  .ask, .card, .tier { transform: none !important; }
  * { transition-duration: .01ms !important; }
}
