/* usemobile.fun: matte black ceramic, one neon edge */

:root {
  --paper:        #f1f4f6;
  --paper-warm:   #f9fbfc;
  --ink:          #080c12;
  --ink-2:        #39424f;
  --ink-3:        #5f6b7a;

  --neon:         #0fb8c9;
  --neon-lit:     #2ad6e8;
  --check:        #1f8f88;

  --tint-cool:    #a9e8f2;
  --tint-warm:    #cfd8ff;
  --tint-mint:    #bdf0e4;

  --glass-edge:   rgba(255,255,255,.85);
  --glass-line:   rgba(8,12,18,.09);
  --blur:         28px;

  --shadow-sm: 0 1px 2px rgba(8,12,18,.04), 0 4px 14px -6px rgba(8,12,18,.10);
  --shadow-md: 0 2px 4px rgba(8,12,18,.04), 0 18px 40px -22px rgba(8,12,18,.22);
  --shadow-lg: 0 3px 6px rgba(8,12,18,.05), 0 44px 80px -40px rgba(8,12,18,.30);

  /* squarer than Mailbox: the whole kit is device hardware, not stationery */
  --r-sm: 9px;
  --r-md: 13px;
  --r-lg: 18px;
  --r-pill: 999px;

  --gut: clamp(20px, 5vw, 64px);
  --max: 1160px;

  --ease: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  font-feature-settings: "cv11" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
picture > img { width: 100%; }

::selection { background: var(--ink); color: #fff; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 6px; }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(12,14,19,.16);
  border: 3px solid var(--paper);
  border-radius: var(--r-pill);
}
::-webkit-scrollbar-thumb:hover { background: rgba(12,14,19,.3); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------- ambient field ---------------- */

.field { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.field::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 42%, #eef1f6 100%);
}
.field__bloom { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .6; will-change: transform; }
.field__bloom--a {
  width: 62vw; height: 62vw; min-width: 420px; min-height: 420px;
  top: -22vw; right: -14vw;
  background: radial-gradient(circle at 40% 40%, var(--tint-cool), rgba(185,210,255,0) 68%);
  animation: drift-a 26s var(--ease) infinite alternate;
}
.field__bloom--b {
  width: 50vw; height: 50vw; min-width: 340px; min-height: 340px;
  top: 34vh; left: -18vw;
  background: radial-gradient(circle at 55% 45%, var(--tint-warm), rgba(255,215,189,0) 70%);
  animation: drift-b 32s var(--ease) infinite alternate;
}
.field__bloom--c {
  width: 46vw; height: 46vw; min-width: 300px; min-height: 300px;
  bottom: -16vw; right: 8vw;
  background: radial-gradient(circle at 50% 50%, var(--tint-mint), rgba(201,235,225,0) 72%);
  animation: drift-a 38s var(--ease) infinite alternate-reverse;
}
.field__grain {
  position: absolute; inset: 0; opacity: .28; mix-blend-mode: multiply;
  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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
@keyframes drift-a { to { transform: translate3d(-5%, 6%, 0) scale(1.1); } }
@keyframes drift-b { to { transform: translate3d(7%, -5%, 0) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .field__bloom { animation: none; } }

/* ---------------- glass primitive ---------------- */

.glass {
  position: relative;
  background: linear-gradient(150deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.34) 46%, rgba(255,255,255,.52) 100%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  border: 1px solid var(--glass-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md), inset 0 1px 0 var(--glass-edge), inset 0 -1px 0 rgba(255,255,255,.4);
  isolation: isolate;
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(255,255,255,.95), rgba(255,255,255,.1) 34%, rgba(255,255,255,0) 58%, rgba(255,255,255,.55) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none; z-index: 3;
}
.glass::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(42,214,232,.20), rgba(42,214,232,0) 55%),
    radial-gradient(110% 80% at 96% 106%, rgba(207,216,255,.28), rgba(207,216,255,0) 58%);
  pointer-events: none; z-index: 0;
}
/* the one neon edge the material is named for */
.feature__glass, .split__glass, .wire__glass, .closer__glass, .token__glass, .room__card {
  border-color: rgba(15,184,201,.22);
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 var(--glass-edge),
    inset 0 -1px 0 rgba(42,214,232,.42);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass { background: rgba(255,255,255,.9); }
}

/* hover sheen: a specular band sweeping the pane */
.sheen { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; border-radius: inherit; }
.sheen::before {
  content: "";
  position: absolute;
  top: -60%; bottom: -60%; left: -30%;
  width: 34%;
  background: linear-gradient(100deg, rgba(255,255,255,0), rgba(255,255,255,.62), rgba(255,255,255,0));
  transform: translateX(var(--sheen-x, -140%)) rotate(14deg);
  filter: blur(6px);
  opacity: var(--sheen-o, 0);
}

/* ---------------- buttons ---------------- */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit;
  font-size: 15px; font-weight: 550; letter-spacing: -0.014em;
  text-decoration: none; cursor: pointer; border: 0;
  padding: 14px 24px; border-radius: var(--r-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.btn--solid {
  color: #fff;
  background: linear-gradient(170deg, #2a2f3a, #0c0e13 62%);
  box-shadow: 0 1px 1px rgba(12,14,19,.2), 0 12px 26px -12px rgba(12,14,19,.7), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 1px rgba(12,14,19,.2), 0 20px 36px -14px rgba(12,14,19,.75), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--ghost {
  color: var(--ink);
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.88);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.8);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.95);
}
.btn:active { transform: translateY(0) scale(.99); }
.btn__arrow {
  width: 15px; height: 15px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .4s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------------- nav ---------------- */

.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 16px;
  padding: 14px var(--gut);
  padding-top: calc(14px + env(safe-area-inset-top, 0px));
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav[data-stuck="true"] {
  background: rgba(241,244,246,.74);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(12,14,19,.06), 0 12px 28px -24px rgba(12,14,19,.5);
}
.nav__mark {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 16px; letter-spacing: -0.025em;
  color: var(--ink); text-decoration: none;
}
.nav__glyph {
  width: 32px; height: 32px;
  filter: drop-shadow(0 3px 5px rgba(12,14,19,.16));
}
.nav__links {
  display: flex; gap: 26px; margin-left: auto;
  font-size: 14px; letter-spacing: -0.01em;
}
.nav__links a {
  color: var(--ink-2); text-decoration: none;
  text-underline-offset: 5px; text-decoration-thickness: 1px;
  transition: color .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); text-decoration: underline; }
.nav__cta {
  font-family: inherit; cursor: pointer;
  font-size: 14px; font-weight: 500; letter-spacing: -0.012em;
  color: var(--ink); text-decoration: none;
  padding: 9px 17px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  backdrop-filter: blur(14px) saturate(170%);
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.85);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.nav__cta:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.95);
}

/* ---------------- hero ---------------- */

.hero {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(32px, 6vh, 80px) var(--gut) clamp(56px, 9vh, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}
.hero__title {
  margin: 0;
  font-size: clamp(3rem, 7.6vw, 5.4rem);
  line-height: .94;
  letter-spacing: -0.048em;
  font-weight: 600;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .word { display: inline-block; }
.hero__title .line--mute { color: var(--ink-3); }

.hero__sub {
  margin: 24px 0 0; max-width: 36ch;
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.5; color: var(--ink-2);
  letter-spacing: -0.014em; text-wrap: pretty;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__acts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(24px, 3.5vw, 34px); }

.hero__whisper {
  margin: 22px 0 0;
  font-size: 13.5px; color: var(--ink-3);
  letter-spacing: -0.004em;
}

.hero__object { position: relative; margin: 0; display: grid; place-items: center; }
.hero__halo {
  position: absolute; inset: 6% 4%; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.95), rgba(255,255,255,0) 62%),
    radial-gradient(circle at 34% 30%, rgba(42,214,232,.42), rgba(42,214,232,0) 66%),
    radial-gradient(circle at 70% 76%, rgba(207,216,255,.52), rgba(207,216,255,0) 68%);
  filter: blur(26px);
}
.hero__object img {
  position: relative; width: 100%; max-width: 470px;
  filter: drop-shadow(0 34px 44px rgba(12,14,19,.16));
}

/* ---------------- feature ---------------- */

.feature { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
.feature__glass {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(32px, 5vw, 64px);
  border-radius: clamp(26px, 3.4vw, 38px);
}
.feature__copy { position: relative; z-index: 1; }
.feature__copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04; letter-spacing: -0.042em; font-weight: 600;
}
.feature__copy p {
  margin: 16px 0 0; max-width: 42ch;
  color: var(--ink-2); font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.5; letter-spacing: -0.01em;
}
.feature__art {
  position: relative; z-index: 1;
  width: 100%; max-width: 236px; justify-self: center;
  filter: drop-shadow(0 26px 34px rgba(12,14,19,.16));
  margin: 12px 0; /* headroom so the parallax drift stays inside the pane */
}

/* ---------------- stats ---------------- */

.stats {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(56px, 9vh, 104px) var(--gut) clamp(24px, 4vh, 40px);
}
/* stats read as one lit instrument panel, not three paper columns */
.stats__panel {
  border-radius: var(--r-md);
  padding: clamp(24px, 3.4vw, 36px) clamp(20px, 3vw, 40px);
  background: linear-gradient(158deg, #1b222c, #080c12 68%);
  border: 1px solid rgba(42,214,232,.24);
  box-shadow:
    0 24px 50px -30px rgba(8,12,18,.7),
    inset 0 1px 0 rgba(255,255,255,.1),
    inset 0 -1px 0 rgba(42,214,232,.5);
}
.stats__grid {
  margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 40px);
}
.stat {
  display: flex; flex-direction: column-reverse; gap: 8px;
  padding-left: clamp(16px, 2.4vw, 28px);
  border-left: 1px solid rgba(255,255,255,.1);
}
.stat:first-child { padding-left: 0; border-left: 0; }
.stat__num {
  margin: 0;
  font-size: clamp(1.5rem, 2.9vw, 2.1rem); line-height: 1;
  letter-spacing: -0.035em; font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--neon-lit);
  text-shadow: 0 0 18px rgba(42,214,232,.42);
}
.stat dt {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.62);
  letter-spacing: .01em; text-transform: uppercase;
}
.stats__note {
  margin: clamp(26px, 4vw, 40px) 0 0;
  font-size: 14px; color: var(--ink-3);
  padding-top: 20px;
  border-top: 1px solid rgba(12,14,19,.08);
}

/* ---------------- how ---------------- */

.how {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 11vh, 128px) var(--gut) clamp(40px, 6vh, 72px);
}
.how__title, .why__title, .room__title, .faq__title {
  margin: 0 0 clamp(32px, 5vw, 52px);
  font-size: clamp(1.75rem, 3.6vw, 2.7rem);
  line-height: 1.08; letter-spacing: -0.042em; font-weight: 600;
  max-width: 20ch; text-wrap: balance;
}
.how__steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
}
.how__step { position: relative; padding-top: 26px; }
.how__step::before {
  content: ""; position: absolute;
  top: 5px; left: 0; right: calc(-1 * clamp(22px, 4vw, 48px));
  height: 1px;
  background: linear-gradient(90deg, rgba(12,14,19,.18), rgba(12,14,19,.05));
}
.how__step:last-child::before { right: 0; background: linear-gradient(90deg, rgba(12,14,19,.18), rgba(12,14,19,0)); }
.how__dot {
  position: absolute; top: 0; left: 0;
  width: 11px; height: 11px; border-radius: 50%;
  background: linear-gradient(160deg, #fff, #dfe4ec);
  border: 1px solid rgba(12,14,19,.16);
  box-shadow: 0 1px 2px rgba(12,14,19,.12), inset 0 1px 0 #fff;
}
.how__step h3 { margin: 0; font-size: 1.14rem; font-weight: 600; letter-spacing: -0.028em; }
.how__step p {
  margin: 8px 0 0; color: var(--ink-2);
  font-size: 15.5px; line-height: 1.52; max-width: 32ch;
  letter-spacing: -0.008em;
}
.how__step code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: .88em;
  background: rgba(12,14,19,.05);
  border: 1px solid rgba(12,14,19,.07);
  padding: 1px 6px; border-radius: 6px;
  color: var(--ink);
  white-space: normal;
}

/* ---------------- the wire: phone screen + delivery log ---------------- */

.wire { max-width: var(--max); margin: 0 auto; padding: clamp(24px, 4vh, 48px) var(--gut) clamp(40px, 7vh, 88px); }
.wire__glass { padding: clamp(26px, 4vw, 48px); border-radius: clamp(16px, 2vw, 22px); }
.wire__head {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px 20px;
  margin-bottom: clamp(24px, 3.4vw, 36px);
}
.wire__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.06; letter-spacing: -0.042em; font-weight: 600;
}
.wire__live {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #0a6d77;
  background: rgba(15,184,201,.1);
  border: 1px solid rgba(15,184,201,.28);
  padding: 5px 11px; border-radius: var(--r-pill);
}
.wire__live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon); box-shadow: 0 0 0 0 rgba(15,184,201,.55);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 7px rgba(15,184,201,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,184,201,0); }
}
@media (prefers-reduced-motion: reduce) { .wire__live i { animation: none; } }

.wire__body {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 248px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.phone__frame {
  position: relative;
  border-radius: 36px;
  padding: 13px 11px 17px;
  background: linear-gradient(160deg, #262e39, #070b10 62%);
  border: 1px solid rgba(42,214,232,.3);
  box-shadow:
    0 30px 54px -28px rgba(8,12,18,.72),
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 0 1px rgba(42,214,232,.12);
}
.phone__notch {
  display: block; width: 52px; height: 5px; margin: 0 auto 12px;
  border-radius: var(--r-pill); background: rgba(255,255,255,.22);
}
.phone__screen {
  border-radius: 25px;
  padding: 18px 14px 16px;
  min-height: 344px;
  background: radial-gradient(120% 80% at 50% 0%, rgba(42,214,232,.14), rgba(0,0,0,0) 60%), #050809;
  display: flex; flex-direction: column;
}
.phone__from {
  margin: 0 0 14px; text-align: center;
  font-size: 10.5px; font-weight: 600; letter-spacing: .14em;
  color: rgba(255,255,255,.45);
}
.phone__bubble {
  align-self: flex-start;
  max-width: 88%;
  padding: 11px 14px;
  border-radius: 16px 16px 16px 5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(42,214,232,.42);
  box-shadow: 0 0 22px -6px rgba(42,214,232,.5);
}
.phone__bubble p {
  margin: 0; color: #eef7f8;
  font-size: 14.5px; line-height: 1.4; letter-spacing: -0.012em;
}
.phone__link {
  margin-top: 5px !important;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 12.5px !important; color: var(--neon-lit) !important;
}
.phone__stamp {
  margin: 9px 0 0; font-size: 10.5px;
  color: rgba(255,255,255,.4); letter-spacing: .02em;
}

.log { min-width: 0; }
.log__row {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .8fr) minmax(0, .9fr);
  gap: 12px; align-items: baseline;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(8,12,18,.08);
  font-size: 14.5px; letter-spacing: -0.008em;
}
.log__row--head {
  padding-top: 0; padding-bottom: 9px;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3);
}
.log__num {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 13.5px; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.log__amt { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
.log__state {
  justify-self: start;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink-3);
  background: rgba(8,12,18,.05);
  border: 1px solid rgba(8,12,18,.08);
  padding: 3px 9px; border-radius: var(--r-pill);
}
.log__state--ok {
  color: #0a6d77;
  background: rgba(15,184,201,.1);
  border-color: rgba(15,184,201,.3);
}
.log__foot {
  margin: 16px 0 0; font-size: 13px; color: var(--ink-3);
}

/* ---------------- why ---------------- */

.why {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(56px, 9vh, 104px) var(--gut);
}
.why__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(12,14,19,.08);
}
.why__list li {
  padding: clamp(22px, 3vw, 34px) clamp(20px, 3vw, 40px) clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid rgba(12,14,19,.08);
}
.why__list li:nth-child(odd) { border-right: 1px solid rgba(12,14,19,.08); }
.why__list li:nth-child(even) { padding-left: clamp(20px, 3vw, 40px); }
.why__list h3 { margin: 0; font-size: 1.1rem; font-weight: 600; letter-spacing: -0.026em; }
.why__list p {
  margin: 7px 0 0; color: var(--ink-2);
  font-size: 15.5px; line-height: 1.5; max-width: 38ch;
  letter-spacing: -0.008em;
}

/* ---------------- mailroom ---------------- */

.room {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(40px, 7vh, 88px) var(--gut);
}
.room__note {
  margin: clamp(22px, 3vw, 32px) 0 0;
  font-size: 14px; color: var(--ink-3);
  max-width: 54ch;
}
.room__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}
.room__card {
  padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 22px;
  border-radius: var(--r-md);
}
.room__card p {
  position: relative; z-index: 1;
  margin: 0;
  font-size: 16px; line-height: 1.5;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}
.room__card footer {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 3px;
  font-size: 13px; color: var(--ink-3);
  padding-top: 16px;
  border-top: 1px solid rgba(12,14,19,.08);
}
.room__tick {
  font-weight: 600; color: var(--ink);
  letter-spacing: -0.012em; font-size: 13.5px;
}

/* ---------------- split ---------------- */

.split { max-width: var(--max); margin: 0 auto; padding: clamp(40px, 7vh, 88px) var(--gut); }
.split__glass {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, .55fr);
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(32px, 5vw, 60px);
  border-radius: clamp(26px, 3.4vw, 38px);
}
.split__copy { position: relative; z-index: 1; }
.split__copy h2 {
  margin: 0 0 clamp(24px, 3vw, 34px);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.06; letter-spacing: -0.042em; font-weight: 600;
}
.split__bar {
  display: flex; gap: 8px;
  width: 100%;
}
.split__seg {
  display: flex; flex-direction: column; gap: 2px; justify-content: flex-end;
  padding: 18px 18px 16px;
  border-radius: var(--r-sm);
  min-height: 112px;
  min-width: 0;
  overflow: hidden;
}
.split__seg b { font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.split__seg i { font-style: normal; font-size: 12.5px; line-height: 1.3; letter-spacing: -0.004em; }
.split__seg--big {
  flex: 0 0 calc(80% - 4px); width: auto;
  color: #fff;
  background: linear-gradient(150deg, #232b36, #080c12 70%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(42,214,232,.6),
    0 10px 24px -14px rgba(8,12,18,.7);
}
.split__seg--big i { color: rgba(255,255,255,.66); }
.split__seg--small {
  flex: 1 1 0; min-width: 0;
  color: var(--ink);
  background: rgba(255,255,255,.62);
  border: 1px solid var(--glass-line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.split__seg--small i { color: var(--ink-3); }
.split__legend { display: none; }
.split__art {
  position: relative; z-index: 1;
  width: 100%; max-width: 230px; justify-self: center;
  filter: drop-shadow(0 26px 34px rgba(12,14,19,.16));
  margin: 18px 0;
}

/* ---------------- $MAIL token ---------------- */

.token { max-width: var(--max); margin: 0 auto; padding: clamp(40px, 7vh, 88px) var(--gut); }
.token__glass {
  max-width: 620px; margin: 0 auto;
  padding: clamp(30px, 4vw, 48px);
  border-radius: clamp(24px, 3vw, 32px);
}
.token__head {
  position: relative; z-index: 1;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 16px;
}
.token__head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1; letter-spacing: -0.05em; font-weight: 600;
}
.token__chain { font-size: 14px; color: var(--ink-3); letter-spacing: -0.006em; }

.token__ca { position: relative; z-index: 1; margin-top: clamp(24px, 3vw, 32px); }
.token__caLabel {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--ink-3);
  letter-spacing: .01em; text-transform: uppercase;
  margin-bottom: 9px;
}
.token__tba {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  color: #0a6d77;
  background: rgba(15,184,201,.1);
  border: 1px solid rgba(15,184,201,.28);
  padding: 2px 7px; border-radius: var(--r-pill);
}
.token__caRow {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 7px 7px 16px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.58);
  border: 1px solid var(--glass-line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.token__caRow code {
  flex: 1 1 auto; min-width: 0;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 13.5px; color: var(--ink-2);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.token__copy {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: inherit; font-size: 13px; font-weight: 550;
  letter-spacing: -0.008em; color: var(--ink);
  cursor: pointer;
  padding: 8px 13px; border-radius: 10px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.95);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
}
.token__copy svg {
  width: 14px; height: 14px; fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.token__copy:hover { transform: translateY(-1px); box-shadow: var(--shadow-md), inset 0 1px 0 #fff; }
.token__copy[data-copied="true"] { color: var(--check); }

.token__burn {
  position: relative; z-index: 1;
  margin: clamp(20px, 2.6vw, 26px) 0 0;
  max-width: 46ch;
  color: var(--ink-2); font-size: 15.5px; line-height: 1.5;
  letter-spacing: -0.008em;
}
.token__btn { position: relative; z-index: 1; margin-top: clamp(22px, 3vw, 30px); }

/* ---------------- launcher modal ---------------- */

.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__scrim {
  position: absolute; inset: 0;
  background: rgba(233,236,242,.62);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
}
.modal__pane {
  position: relative;
  width: min(100%, 420px);
  padding: clamp(30px, 5vw, 40px) clamp(24px, 4vw, 36px) clamp(26px, 4vw, 32px);
  border-radius: clamp(22px, 3vw, 28px);
  text-align: center;
  box-shadow: var(--shadow-lg), inset 0 1px 0 var(--glass-edge);
}
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--glass-line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.modal__close svg { width: 12px; height: 12px; fill: none; stroke: var(--ink-2); stroke-width: 1.7; stroke-linecap: round; }
.modal__close:hover { background: #fff; transform: scale(1.06); }

.modal__art {
  position: relative; z-index: 1;
  width: 128px; margin: 0 auto 18px;
  filter: drop-shadow(0 16px 22px rgba(12,14,19,.16));
}
.modal__title {
  position: relative; z-index: 1; margin: 0;
  font-size: 1.35rem; font-weight: 600; letter-spacing: -0.032em;
}
.modal__desc {
  position: relative; z-index: 1;
  margin: 8px 0 0; color: var(--ink-2); font-size: 15px;
  letter-spacing: -0.008em;
}
.modal__bar {
  position: relative; z-index: 1;
  margin: 24px 0 0; height: 6px; border-radius: var(--r-pill);
  overflow: hidden;
  background: rgba(12,14,19,.08);
  box-shadow: inset 0 1px 2px rgba(12,14,19,.08);
}
.modal__barFill {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 38%; border-radius: var(--r-pill);
  background: linear-gradient(90deg, rgba(12,14,19,.25), var(--ink) 50%, rgba(12,14,19,.25));
  animation: crawl 1.6s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes crawl {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(300%); }
}
.modal__fine {
  position: relative; z-index: 1;
  margin: 16px 0 0; font-size: 12.5px; color: var(--ink-3);
  letter-spacing: -0.004em;
}

/* ---------------- faq ---------------- */

.faq { max-width: 820px; margin: 0 auto; padding: clamp(56px, 9vh, 104px) var(--gut); }
.faq__list { border-top: 1px solid rgba(12,14,19,.09); }
.faq__item { border-bottom: 1px solid rgba(12,14,19,.09); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 2px;
  font-size: clamp(1rem, 1.7vw, 1.1rem); font-weight: 550;
  letter-spacing: -0.022em;
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--ink-2); }
.faq__plus {
  position: relative; flex: 0 0 auto;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(12,14,19,.05);
  border: 1px solid rgba(12,14,19,.09);
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--ink-2);
  transition: transform .45s var(--ease), opacity .35s var(--ease);
}
.faq__plus::before { width: 9px; height: 1.4px; }
.faq__plus::after  { width: 1.4px; height: 9px; }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__answer { overflow: hidden; }
.faq__answer p {
  margin: 0 0 22px;
  max-width: 60ch;
  color: var(--ink-2); font-size: 16px; line-height: 1.55;
  letter-spacing: -0.008em;
}

/* ---------------- closer ---------------- */

.closer { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut) clamp(64px, 10vh, 120px); }
.closer__glass {
  padding: clamp(44px, 7vw, 84px) clamp(28px, 5vw, 64px);
  text-align: center;
  border-radius: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 var(--glass-edge);
}
.closer__glass h2 {
  position: relative; z-index: 1; margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.04; letter-spacing: -0.044em; font-weight: 600;
  text-wrap: balance;
}
.closer__glass p {
  position: relative; z-index: 1;
  margin: 14px auto 0; max-width: 34ch;
  color: var(--ink-2); font-size: clamp(1rem, 1.6vw, 1.14rem);
  letter-spacing: -0.012em;
}
.closer__acts {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: clamp(26px, 3.5vw, 36px);
}

/* ---------------- footer ---------------- */

.foot {
  max-width: var(--max); margin: 0 auto;
  padding: 28px var(--gut) calc(36px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(12,14,19,.08);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 18px 32px;
  font-size: 13.5px; color: var(--ink-3);
  letter-spacing: -0.006em;
}
.foot__brand { display: flex; flex-direction: column; gap: 2px; }
.foot__mark { font-weight: 600; color: var(--ink); font-size: 15px; letter-spacing: -0.028em; }
.foot__links { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0 auto; }
.foot__links a {
  color: var(--ink-3); text-decoration: none;
  text-underline-offset: 4px; text-decoration-thickness: 1px;
  transition: color .3s var(--ease);
}
.foot__links a:hover { color: var(--ink); text-decoration: underline; }

/* ---------------- motion base state ---------------- */
/* JS sets these only when GSAP is present; CSS never hides content on its own. */

html.gsap-ready [data-reveal],
html.gsap-ready [data-hero-fade],
html.gsap-ready .hero__title .word { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ---------------- responsive ---------------- */

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__links + .nav__cta { margin-left: auto; }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: clamp(16px, 3vh, 40px);
    gap: clamp(24px, 6vw, 44px);
  }
  .hero__object { order: -1; }
  .hero__object img { max-width: 290px; }
  .hero__sub { max-width: 44ch; }

  .feature__glass { grid-template-columns: minmax(0, 1fr); }
  .feature__art { max-width: 250px; justify-self: start; order: -1; margin-bottom: 8px; }

  .split__glass { grid-template-columns: minmax(0, 1fr); }
  .split__art { max-width: 200px; justify-self: start; order: -1; }

  .room__grid { grid-template-columns: minmax(0, 1fr); }

  .wire__body { grid-template-columns: minmax(0, 1fr); }
  .phone { max-width: 248px; }

  .how__steps { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .how__step { padding: 0 0 26px 26px; }
  .how__step::before {
    top: 6px; bottom: 0; left: 5px; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(180deg, rgba(12,14,19,.18), rgba(12,14,19,.05));
  }
  .how__step:last-child::before { background: linear-gradient(180deg, rgba(12,14,19,.18), rgba(12,14,19,0)); }
  .how__step p { max-width: 44ch; }
}

@media (max-width: 680px) {
  .stats__grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .stat {
    flex-direction: row-reverse; align-items: baseline; justify-content: space-between; gap: 14px;
    padding: 0 0 16px; border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .stat:last-child { padding-bottom: 0; border-bottom: 0; }
  .stat__num { font-size: 1.45rem; }

  .log__row { grid-template-columns: minmax(0, 1fr) auto; row-gap: 4px; }
  .log__row--head { display: none; }
  .log__state { grid-column: 2; grid-row: 1; justify-self: end; }
  .log__amt { grid-column: 1; grid-row: 2; }

  .why__list { grid-template-columns: minmax(0, 1fr); }
  .why__list li { padding: 20px 0; }
  .why__list li:nth-child(odd) { border-right: 0; }
  .why__list li:nth-child(even) { padding-left: 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero__title { font-size: clamp(2.7rem, 13.5vw, 3.6rem); }
  .hero__acts .btn { flex: 1 1 auto; justify-content: center; }
  .closer__acts { flex-direction: column; align-items: stretch; }
  .closer__acts .btn { justify-content: center; }

  /* the 80/20 proportion IS the point, keep the track horizontal */
  .split__seg { min-height: 72px; padding: 13px 11px; justify-content: center; }
  .split__seg b { font-size: 1.15rem; }
  .split__seg i { display: none; }
  .split__legend {
    display: flex; flex-wrap: wrap; gap: 6px 18px;
    margin: 12px 0 0; font-size: 12.5px; color: var(--ink-3);
  }
  .split__legend b { font-weight: 600; color: var(--ink); }

  .foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .foot__links { margin: 0; }
}

@media (max-width: 400px) {
  .wire__glass { padding: 22px 18px; }
  .phone { max-width: 100%; }
}

/* X link, nav + footer */
.nav__xlink, .foot__xlink { display: inline-flex; align-items: center; gap: 7px; color: inherit; opacity: .72; transition: opacity .2s ease; }
.nav__xlink:hover, .foot__xlink:hover { opacity: 1; }
.nav__xlink svg, .foot__xlink svg { width: 14px; height: 14px; fill: currentColor; }
