/* ============================================================
   Kesef — marketing site styles
   Design: dark, trust-first hero (A) blended with bright,
   energetic mid-page sections (B).
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* dark surfaces */
  --ink:        #0A0C10;
  --ink-2:      #0E1116;
  --surface:    #14181F;
  --surface-2:  #1A1F27;
  --line-dark:  rgba(255,255,255,.09);
  --line-dark-2:rgba(255,255,255,.14);

  /* light surfaces */
  --paper:      #FFFFFF;
  --paper-2:    #F6F5F2;   /* warm off-white for tinted sections */
  --line:       rgba(15,18,25,.10);

  /* text */
  --on-dark:    #F3F5F8;
  --on-dark-mut:#9AA4B2;
  --on-light:   #14171E;
  --on-light-mut:#586275;

  /* brand */
  --brand:      #5B4CE6;   /* indigo — energy (B) */
  --brand-2:    #7C6FF0;
  --brand-ink:  #EBE9FC;
  --mint:       #2FD3A5;   /* money-moving / success accent (A) */
  --amber:      #E7A33E;

  /* effects */
  --glow-brand: rgba(91,76,230,.45);
  --glow-mint:  rgba(47,211,165,.35);

  --radius:     14px;
  --radius-lg:  20px;
  --radius-pill:999px;

  --maxw:       1140px;
  --ease:       cubic-bezier(.22,.61,.36,1);

  --font-display:'Space Grotesk', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-mono:   'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--on-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.nb { display: none; }
@media (min-width:600px){ .nb { display: inline; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; white-space: nowrap;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  padding: 12px 20px; border-radius: var(--radius-pill);
  border: 1px solid transparent; transition: transform .15s var(--ease), background .2s, box-shadow .2s;
}
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 8px 24px -8px var(--glow-brand);
}
.btn--primary:hover { background: var(--brand-2); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 12px 30px -8px var(--glow-brand); }
.btn--primary:active { transform: translateY(0) scale(.99); }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em;
  color: var(--mint); text-transform: none; margin-bottom: 18px;
}
.eyebrow--light { color: var(--brand); }
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 18%, transparent); }

.section { padding: clamp(64px, 9vw, 120px) 0; background: var(--paper); color: var(--on-light); }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--ink-2); color: var(--on-dark); position: relative; }
.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__title { font-size: clamp(28px, 4.4vw, 46px); }
.section--dark .section__title { color: var(--on-dark); }
.section__lead { margin-top: 18px; font-size: 18px; color: var(--on-light-mut); max-width: 620px; }
.section--dark .section__lead { color: var(--on-dark-mut); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-dark);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--on-dark); font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -.01em; }
.brand__mark { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--mint)); color: #fff; }
.brand__mark svg { width: 17px; height: 17px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a:not(.btn) { color: var(--on-dark-mut); font-size: 15px; transition: color .2s; }
.nav__links > a:not(.btn):hover { color: var(--on-dark); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--on-dark); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--ink); color: var(--on-dark); padding: 148px 0 72px; overflow: hidden; }
.hero__glow {
  position: absolute; top: -240px; left: 50%; transform: translateX(-46%);
  width: 900px; height: 720px; pointer-events: none;
  background:
    radial-gradient(closest-side, var(--glow-brand), transparent 70%),
    radial-gradient(closest-side, var(--glow-mint), transparent 65%);
  background-position: 30% 30%, 78% 62%;
  background-repeat: no-repeat;
  background-size: 62% 62%, 55% 55%;
  filter: blur(30px); opacity: .8;
}
.hero__inner { position: relative; display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width:940px){ .hero__inner { grid-template-columns: 1.05fr .95fr; } }

.hero__title { font-size: clamp(38px, 6.6vw, 68px); font-weight: 600; letter-spacing: -.03em; color: #fff; }
.hero__sub { margin-top: 22px; font-size: clamp(16px, 2vw, 19px); color: var(--on-dark-mut); max-width: 500px; }

/* signup form */
.signup { margin-top: 30px; max-width: 480px; }
.signup--center { margin-inline: auto; }
.signup__field {
  display: flex; gap: 8px; padding: 6px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line-dark-2);
  transition: border-color .2s, box-shadow .2s;
}
.signup__field:focus-within { border-color: color-mix(in srgb, var(--brand) 60%, transparent); box-shadow: 0 0 0 4px var(--glow-brand); }
.signup__field input {
  flex: 1; min-width: 0; border: 0; background: none; outline: none;
  color: var(--on-dark); font-size: 15.5px; padding: 0 8px 0 16px;
}
.signup__field input::placeholder { color: #6b7482; }
.signup__field .btn { flex-shrink: 0; }
.signup__note { margin-top: 12px; font-size: 13.5px; color: #737d8c; }
.signup__msg { margin-top: 12px; font-size: 14px; min-height: 1.2em; font-weight: 500; }
.signup__msg.is-ok { color: var(--mint); }
.signup__msg.is-err { color: #ff6b6b; }
.signup--center .signup__field { background: rgba(255,255,255,.05); }

/* --- animated product card --- */
.hero__visual { position: relative; }
.pcard {
  position: relative; background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line-dark-2); border-radius: var(--radius-lg);
  padding: 18px; box-shadow: 0 40px 90px -40px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.02) inset;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }

.pcard__head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--line-dark); }
.pcard__dots { display: inline-flex; gap: 6px; }
.pcard__dots i { width: 9px; height: 9px; border-radius: 50%; background: #333a45; }
.pcard__title { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--on-dark); }
.pcard__live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11.5px; color: var(--mint); }
.pcard__live em { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 0 var(--glow-mint); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 var(--glow-mint) } 70%{ box-shadow: 0 0 0 8px transparent } 100%{ box-shadow: 0 0 0 0 transparent } }

.payout { padding: 18px 4px 6px; }
.payout__row { display: flex; align-items: center; gap: 12px; }
.avatar { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.payout__meta { display: flex; flex-direction: column; line-height: 1.3; }
.payout__meta strong { font-weight: 500; font-size: 15px; color: var(--on-dark); }
.payout__meta small { font-size: 12.5px; color: var(--on-dark-mut); }
.payout__amt { margin-left: auto; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff; }

.payout__bar { position: relative; height: 6px; border-radius: 6px; background: rgba(255,255,255,.08); margin: 18px 0 12px; overflow: hidden; }
.payout__bar span { position: absolute; inset: 0; width: 0; border-radius: 6px;
  background: linear-gradient(90deg, var(--brand), var(--mint));
  animation: fill 4s var(--ease) infinite; }
@keyframes fill {
  0%   { width: 0; opacity: 1; }
  22%  { width: 100%; opacity: 1; }
  70%  { width: 100%; opacity: 1; }
  78%  { width: 100%; opacity: 0; }
  100% { width: 0; opacity: 0; }
}
.payout__settled { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--mint);
  opacity: 0; animation: settledIn 4s ease infinite; }
@keyframes settledIn { 0%,18%{ opacity:0; transform: translateY(3px) } 26%,72%{ opacity:1; transform:none } 82%,100%{ opacity:0 } }

.txlist { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 2px; }
.tx { display: flex; align-items: center; gap: 11px; padding: 9px 4px; opacity: 0; transform: translateY(6px); animation: txIn .6s var(--ease) forwards; }
.tx:nth-child(1){ animation-delay: .5s } .tx:nth-child(2){ animation-delay: .75s } .tx:nth-child(3){ animation-delay: 1s }
@keyframes txIn { to { opacity: 1; transform: none } }
.tx__avatar { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 600; font-family: var(--font-display); color: var(--on-dark); background: var(--surface-2); border: 1px solid var(--line-dark-2); }
.tx__name { font-size: 13.5px; color: var(--on-dark-mut); }
.tx__amt { margin-left: auto; font-family: var(--font-mono); font-size: 13px; color: var(--mint); }

/* stats strip */
.stats { margin-top: clamp(56px, 8vw, 88px); display: grid; grid-template-columns: repeat(2,1fr); gap: 1px;
  background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius);
  overflow: hidden; }
@media (min-width:760px){ .stats { grid-template-columns: repeat(4,1fr); } }
.stat { background: var(--ink); padding: 26px 24px; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(26px,3.2vw,34px); color: #fff; letter-spacing: -.02em; }
.stat__lbl { display: block; margin-top: 6px; font-size: 13.5px; color: var(--on-dark-mut); }

/* ============================================================
   HOW IT WORKS — steps
   ============================================================ */
.steps { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width:760px){ .steps { grid-template-columns: repeat(3,1fr); } }
.step { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.section--tint .step { background: #fff; }
.step:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(20,23,30,.35); border-color: color-mix(in srgb, var(--brand) 30%, var(--line)); }
.step__num { font-family: var(--font-mono); font-size: 13px; color: var(--brand); }
.step__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; margin: 16px 0 18px;
  background: color-mix(in srgb, var(--brand) 10%, transparent); color: var(--brand); }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--on-light-mut); font-size: 15.5px; }

/* ============================================================
   USE CASES
   ============================================================ */
.cases { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width:760px){ .cases { grid-template-columns: repeat(3,1fr); } }
.case { padding: 32px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s; }
.case:hover { transform: translateY(-4px); box-shadow: 0 26px 55px -32px rgba(20,23,30,.4); }
.case__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px; }
.case__icon--indigo { background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); }
.case__icon--mint   { background: color-mix(in srgb, var(--mint) 16%, transparent); color: #12967a; }
.case__icon--amber  { background: color-mix(in srgb, var(--amber) 16%, transparent); color: #a86a15; }
.case h3 { font-size: 21px; margin-bottom: 12px; }
.case p { color: var(--on-light-mut); font-size: 15.5px; }

/* ============================================================
   FEATURES (dark)
   ============================================================ */
.features { display: grid; gap: 1px; grid-template-columns: 1fr; background: var(--line-dark);
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width:640px){ .features { grid-template-columns: repeat(2,1fr); } }
@media (min-width:960px){ .features { grid-template-columns: repeat(3,1fr); } }
.feature { background: var(--ink-2); padding: 32px; transition: background .25s; }
.feature:hover { background: var(--surface); }
.feature__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; margin-bottom: 18px;
  background: rgba(255,255,255,.05); color: var(--mint); border: 1px solid var(--line-dark); }
.feature h3 { font-size: 18px; margin-bottom: 9px; color: var(--on-dark); }
.feature p { color: var(--on-dark-mut); font-size: 15px; }

/* ============================================================
   SECURITY
   ============================================================ */
.security { display: grid; gap: clamp(36px,6vw,72px); align-items: center; }
@media (min-width:860px){ .security { grid-template-columns: 1.2fr .8fr; } }
.security__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.security__list li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; color: var(--on-light); }
.security__list svg { color: var(--mint); flex-shrink: 0; }
.security__badge { display: grid; place-items: center; }
.shield { position: relative; width: 200px; height: 200px; display: grid; place-items: center; border-radius: 28px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--brand) 12%, transparent), transparent);
  color: var(--brand); }
.shield::before { content: ""; position: absolute; inset: 0; border-radius: 28px; border: 1px dashed color-mix(in srgb, var(--brand) 40%, transparent); animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg) } }

/* ============================================================
   WAITLIST CTA
   ============================================================ */
.cta { position: relative; background: var(--ink); color: var(--on-dark); padding: clamp(72px,10vw,128px) 0; overflow: hidden; text-align: center; }
.cta__glow { position: absolute; bottom: -320px; left: 50%; transform: translateX(-50%); width: 820px; height: 620px;
  background: radial-gradient(closest-side, var(--glow-brand), transparent 70%); filter: blur(20px); opacity: .7; pointer-events: none; }
.cta__inner { position: relative; max-width: 720px; }
.cta__title { font-size: clamp(30px,5vw,52px); color: #fff; }
.cta__sub { margin-top: 18px; font-size: 18px; color: var(--on-dark-mut); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-2); color: var(--on-dark-mut); padding: 72px 0 36px; border-top: 1px solid var(--line-dark); }
.footer__inner { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width:760px){ .footer__inner { grid-template-columns: 1.4fr 2fr; } }
.brand--footer { color: var(--on-dark); }
.footer__tag { margin-top: 14px; font-size: 14.5px; max-width: 260px; }
.footer__cols { display: grid; gap: 32px; grid-template-columns: repeat(2,1fr); }
@media (min-width:520px){ .footer__cols { grid-template-columns: repeat(3,1fr); } }
.footer__col h4 { font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 16px; }
.footer__col a { display: block; color: #c3cbd6; font-size: 14.5px; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__base { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: 8px 32px; justify-content: space-between; font-size: 13px; }
.footer__fine { color: #6a7482; max-width: 520px; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.steps .reveal:nth-child(2){ transition-delay: .08s } .steps .reveal:nth-child(3){ transition-delay: .16s }
.cases .reveal:nth-child(2){ transition-delay: .08s } .cases .reveal:nth-child(3){ transition-delay: .16s }
.features .reveal:nth-child(2){ transition-delay: .05s } .features .reveal:nth-child(3){ transition-delay: .1s }
.features .reveal:nth-child(4){ transition-delay: .15s } .features .reveal:nth-child(5){ transition-delay: .2s } .features .reveal:nth-child(6){ transition-delay: .25s }

/* ============================================================
   Depth & motion enhancements
   ============================================================ */

/* faint grid texture on the dark sections, masked to fade at edges */
.hero::before,
.section--dark::before,
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 26%, transparent 80%);
          mask-image: radial-gradient(ellipse 78% 62% at 50% 42%, #000 26%, transparent 80%);
}
.hero > .container { position: relative; z-index: 1; }
.section--dark .container { position: relative; z-index: 1; }
.cta__inner { z-index: 1; }

/* gradient hairline at the top edge of dark sections */
.section--dark::after,
.cta::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--brand), var(--mint), transparent);
  opacity: .55;
}

/* slow drift on the hero aurora */
.hero__glow { animation: aurora 20s ease-in-out infinite alternate; }
@keyframes aurora {
  0%   { transform: translateX(-48%) translateY(-6px); }
  100% { transform: translateX(-42%) translateY(14px); }
}

/* gradient accent line that wipes in on card hover */
.step, .case { position: relative; overflow: hidden; }
.step::before, .case::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, var(--brand), var(--mint));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.step:hover::before, .case:hover::before { transform: scaleX(1); }
.step:hover, .case:hover { box-shadow: 0 26px 55px -30px var(--glow-brand); }

/* dashed flow line connecting the three steps (desktop) */
@media (min-width: 760px) {
  .steps { position: relative; }
  .steps::after {
    content: ""; position: absolute; top: 90px; left: 12%; right: 12%; height: 2px; z-index: 0;
    background: repeating-linear-gradient(90deg,
      color-mix(in srgb, var(--brand) 55%, transparent) 0 7px, transparent 7px 15px);
  }
  .step { z-index: 1; }
}

/* sheen sweep across primary buttons on hover */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn--primary:hover::after { animation: sheen .75s var(--ease); }
@keyframes sheen { to { left: 150%; } }

/* ============================================================
   Statement band with parallax "money in motion"
   ============================================================ */
.band { position: relative; overflow: hidden; background: var(--ink); color: var(--on-dark);
  padding: clamp(90px, 13vw, 160px) 0; }
.band::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--brand), var(--mint), transparent); opacity: .5;
}
.band__layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.band__inner { position: relative; z-index: 1; text-align: center; max-width: 820px; }
.band__inner .eyebrow { justify-content: center; }
.band__title { font-size: clamp(30px, 5vw, 54px); color: #fff; }

.coin {
  position: absolute; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; color: rgba(255,255,255,.5);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 12px 34px -14px rgba(0,0,0,.7);
  will-change: transform;
}
.coin--indigo { background: linear-gradient(145deg, rgba(91,76,230,.5), rgba(91,76,230,.12));
  border-color: rgba(124,111,240,.55); color: rgba(210,205,252,.88); }
.coin--mint { background: linear-gradient(145deg, rgba(47,211,165,.46), rgba(47,211,165,.1));
  border-color: rgba(47,211,165,.55); color: rgba(200,245,232,.92); }
.coin--far { filter: blur(1.5px); opacity: .62; }

@media (max-width: 640px) {
  .band .coin--far { display: none; }
  .coin { transform: none !important; }
}

/* ============================================================
   Comparison table
   ============================================================ */
.compare { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.compare__table {
  width: 100%; min-width: 640px; border-collapse: collapse;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
}
.compare__table th, .compare__table td {
  padding: 16px 22px; text-align: left; vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
.compare__table thead th { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--on-light); }
.compare__table tbody th { font-weight: 500; font-size: 15px; color: var(--on-light); width: 30%; }
.compare__table td { font-size: 15px; color: var(--on-light-mut); white-space: nowrap; }
.compare__table tr:last-child th, .compare__table tr:last-child td { border-bottom: 0; }

.compare__table .is-kesef { background: color-mix(in srgb, var(--brand) 8%, transparent); }
.compare__table td.is-kesef { color: var(--on-light); }
.compare__table td.is-kesef strong { font-weight: 500; }
.compare__table thead th.is-kesef { color: var(--brand); border-top: 2px solid var(--brand); }

.ci { vertical-align: -3px; margin-right: 8px; }
.ci--yes { color: #12967a; }
.ci--no { color: var(--on-light-mut); opacity: .55; }
.ci--part { color: #a86a15; }

.compare__note { margin-top: 16px; font-size: 13px; color: var(--on-light-mut); }

/* ============================================================
   Mobile nav
   ============================================================ */
@media (max-width:860px){
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: color-mix(in srgb, var(--ink) 96%, transparent); backdrop-filter: blur(14px);
    padding: 16px 24px 28px; border-bottom: 1px solid var(--line-dark);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links > a:not(.btn) { padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--line-dark); }
  .nav__links .btn { margin-top: 12px; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width:520px){
  .signup__field { flex-direction: column; padding: 10px; border-radius: var(--radius); }
  .signup__field input { padding: 10px 12px; }
  .signup__field .btn { width: 100%; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
