/* ═══════════════════════════════════════════════════════════════════
   WalletLab — landing. Light/Apple-clair + cinematic green.
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --bg: #FAFAF7;
  --bg-2: #F0F1EB;
  --surface: #FFFFFF;
  --ink: #0A0F0C;
  --ink-2: #39443D;
  --muted: #6F7A72;
  --muted-2: #9AA39C;
  --line: rgba(10, 15, 12, 0.08);
  --line-2: rgba(10, 15, 12, 0.13);
  --green: #0E9D5C;
  --green-ink: #073d24;
  --green-bright: #2FD46A;
  --green-deep: #06271B;
  --green-deep-2: #0A3A28;
  --paper: #FFFEFB;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-2xl: 40px;
  --pill: 999px;

  --nav-h: 70px;
  --maxw: 1240px;

  --display: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --text: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--text);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}
@media (pointer: fine) { body { cursor: none; } }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: inherit; border: 0; background: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--green-bright); color: var(--green-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
@media (max-width: 760px) { .wrap { padding: 0 22px; } }

/* ── Animated background ───────────────────────────────────────────── */
#bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}
.bg-mesh {
  position: fixed; inset: -20vh -20vw; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40vw 40vw at 12% 8%, rgba(47, 212, 106, 0.14), transparent 60%),
    radial-gradient(46vw 46vw at 88% 22%, rgba(14, 157, 92, 0.10), transparent 62%),
    radial-gradient(50vw 50vw at 50% 100%, rgba(47, 212, 106, 0.08), transparent 60%);
  filter: blur(8px);
  animation: meshDrift 22s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.05); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.08); }
}
.page { position: relative; z-index: 1; }

/* ── Custom cursor ─────────────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  mix-blend-mode: normal;
  will-change: transform;
}
.cursor-dot { width: 7px; height: 7px; background: var(--green); margin: -3.5px 0 0 -3.5px; transition: opacity .2s; }
.cursor-ring {
  width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1.5px solid var(--line-2);
  transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), border-color .25s, background .25s;
}
.cursor-ring.hot {
  width: 60px; height: 60px; margin: -30px 0 0 -30px;
  border-color: var(--green); background: rgba(47, 212, 106, 0.08);
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Reveal on scroll ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── Nav ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; width: 100%; gap: 36px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.03em; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--green-bright), var(--green));
  display: grid; place-items: center; color: #06271B;
  box-shadow: 0 4px 14px rgba(14, 157, 92, 0.4), inset 0 1px 0 rgba(255,255,255,.4);
}
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; font-size: 14.5px; font-weight: 500; color: var(--muted); }
.nav-links a { position: relative; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0; background: var(--green); transition: width .25s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn.ghost { display: none; }
  .nav-burger { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); color: var(--ink); margin-left: auto; }
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  height: 54px; padding: 0 26px; border-radius: var(--pill);
  font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  white-space: nowrap; will-change: transform;
}
.btn.sm { height: 42px; padding: 0 18px; font-size: 14px; }
.btn.primary { background: var(--ink); color: var(--bg); box-shadow: 0 1px 2px rgba(0,0,0,.2); }
.btn.primary:hover { box-shadow: 0 14px 34px rgba(10,15,12,.28); }
.btn.green {
  background: linear-gradient(145deg, var(--green-bright), var(--green));
  color: #06271B;
  box-shadow: 0 8px 26px rgba(14, 157, 92, 0.34), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn.green:hover { box-shadow: 0 16px 40px rgba(14, 157, 92, 0.46), inset 0 1px 0 rgba(255,255,255,.45); }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn.ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn.on-dark.ghost { color: #F4FBF6; box-shadow: inset 0 0 0 1.5px rgba(244,251,246,.28); }
.btn.on-dark.ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(244,251,246,.7); }
.btn .ic { transition: transform .3s var(--ease); }
.btn:hover .ic { transform: translateX(3px); }

/* ── Eyebrow & section heads ───────────────────────────────────────── */
.section { padding: 130px 0; position: relative; }
@media (max-width: 760px) { .section { padding: 88px 0; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--green);
  margin-bottom: 22px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 10px var(--green-bright); }
.on-dark .eyebrow { color: var(--green-bright); }
.s-head { max-width: 760px; margin: 0 0 70px; }
.s-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.s-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 5vw, 62px); line-height: 1.02; letter-spacing: -0.04em;
  margin: 0 0 22px; text-wrap: balance;
}
.s-sub { font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; color: var(--muted); max-width: 620px; text-wrap: pretty; margin: 0; }
.s-head.center .s-sub { margin: 0 auto; }

/* ═══ HERO ═════════════════════════════════════════════════════════ */
.hero { padding-top: calc(var(--nav-h) + 70px); padding-bottom: 60px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 30px; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  height: 34px; padding: 0 16px; border-radius: var(--pill);
  background: rgba(47, 212, 106, 0.10); border: 1px solid rgba(14, 157, 92, 0.22);
  font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 30px;
}
.hero-eyebrow .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); position: relative; }
.hero-eyebrow .pulse::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--green-bright); animation: pulseRing 2s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3.4); opacity: 0; } }

.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(46px, 8vw, 104px); line-height: 0.94; letter-spacing: -0.05em;
  margin: 0 0 28px; text-wrap: balance;
}
.hero h1 .em {
  background: linear-gradient(115deg, var(--green) 0%, var(--green-bright) 60%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  position: relative;
}
.hero h1 .reveal-line { display: block; overflow: hidden; }
.hero h1 .reveal-line span { display: block; transform: none; }
.hero.lit h1 .reveal-line span { animation: lineUp 1s var(--ease-out); }
.hero.lit h1 .reveal-line:nth-child(2) span { animation-delay: .10s; }
.hero.lit h1 .reveal-line:nth-child(3) span { animation-delay: .20s; }
@keyframes lineUp { 0% { transform: translateY(110%); } 100% { transform: none; } }
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(22px); } 100% { opacity: 1; transform: none; } }
.hero.lit .hero-sub { animation: fadeUp .9s var(--ease-out); }
.hero.lit .hero-actions { animation: fadeUp 1s var(--ease-out); }
.hero.lit .hero-trust { animation: fadeUp 1.1s var(--ease-out); }
.hero.lit .hero-stage { animation: fadeUp 1.2s var(--ease-out); }
.hero-sub { font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; color: var(--muted); max-width: 520px; margin: 0 0 36px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 34px; color: var(--muted); font-size: 13.5px; }
.hero-trust .avatars { display: flex; }
.hero-trust .av { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -10px; background: var(--green-deep); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.hero-trust .av:first-child { margin-left: 0; }
.hero-stars { color: var(--green); letter-spacing: 2px; }

/* Hero stage: iPhone + emerging card */
.hero-stage { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; perspective: 1600px; }
@media (max-width: 960px) { .hero-stage { height: 540px; } }
.stage-3d { position: relative; transform-style: preserve-3d; will-change: transform; }

/* iPhone */
.phone {
  width: 290px; height: 590px; border-radius: 52px; position: relative;
  background: linear-gradient(155deg, #1c1c1e, #0a0a0b);
  padding: 11px;
  box-shadow: 0 50px 100px -20px rgba(6, 39, 27, 0.5), 0 30px 60px -30px rgba(0,0,0,.6), inset 0 0 0 2px rgba(255,255,255,.06);
  transform: translateZ(0);
}
@media (max-width: 960px) { .phone { width: 260px; height: 530px; } }
.phone-screen {
  width: 100%; height: 100%; border-radius: 42px; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #0c2c1f 0%, #06271B 55%, #041c13 100%);
}
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 92px; height: 28px; background: #050506; border-radius: 16px; z-index: 5; }
.lock-time { position: absolute; top: 64px; left: 0; right: 0; text-align: center; color: #fff; z-index: 2; }
.lock-time .d { font-size: 14px; font-weight: 500; opacity: .8; letter-spacing: .02em; }
.lock-time .t { font-family: var(--display); font-size: 64px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; margin-top: 2px; }
.lock-glow { position: absolute; inset: 0; background: radial-gradient(60% 40% at 50% 18%, rgba(47,212,106,.22), transparent 70%); pointer-events: none; }

/* push notification on lock screen */
.push {
  position: absolute; left: 14px; right: 14px; top: 188px; z-index: 6;
  background: rgba(244, 251, 246, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 20px; padding: 13px 14px; display: flex; gap: 11px; align-items: flex-start;
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
  transform: translateY(-30px) scale(.92); opacity: 0;
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.push.show { transform: none; opacity: 1; }
.push-ic { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; background: linear-gradient(145deg, var(--green-bright), var(--green)); display: grid; place-items: center; color: #06271B; }
.push-meta { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; color: #5a6b62; }
.push-title { font-size: 13.5px; font-weight: 700; color: #0a0f0c; margin-top: 1px; }
.push-body { font-size: 12px; line-height: 1.32; color: #3a453e; margin-top: 2px; }

/* Loyalty card (emerges in front of phone) */
.loy-card {
  position: absolute; bottom: -8px; left: 50%;
  width: 320px; padding: 20px 20px 18px; border-radius: 24px;
  transform: translate(-50%, 0) translateZ(90px) rotateX(6deg);
  background: linear-gradient(150deg, #0d4a33 0%, #06271B 100%);
  color: #F4FBF6;
  box-shadow: 0 40px 80px -16px rgba(6, 39, 27, 0.66), 0 0 0 1px rgba(47,212,106,.14) inset, inset 0 1px 0 rgba(255,255,255,.08);
  z-index: 8;
}
@media (max-width: 960px) { .loy-card { width: 290px; } }
.loy-card::before { content: ''; position: absolute; top: 0; left: 14%; right: 14%; height: 1px; background: linear-gradient(90deg, transparent, rgba(47,212,106,.6), transparent); }
.loy-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.loy-brand { display: flex; align-items: center; gap: 9px; }
.loy-logo { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(145deg, var(--green-bright), var(--green)); display: grid; place-items: center; color: #06271B; font-weight: 800; font-size: 14px; }
.loy-name { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.loy-sub { font-size: 9.5px; font-family: var(--mono); color: rgba(244,251,246,.45); letter-spacing: .06em; margin-top: 1px; }
.loy-chip { font-family: var(--mono); font-size: 9px; color: rgba(244,251,246,.5); border: 1px solid rgba(244,251,246,.16); padding: 4px 8px; border-radius: 20px; letter-spacing: .08em; }
.loy-count { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.loy-count .big { font-family: var(--display); font-size: 40px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.loy-count .of { font-size: 18px; opacity: .5; }
.loy-count .reward { margin-left: auto; text-align: right; font-size: 10.5px; line-height: 1.3; color: rgba(244,251,246,.6); max-width: 110px; }
.loy-stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 14px; }
.stamp { aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; transition: background .3s var(--ease), transform .3s var(--ease), color .3s; }
.stamp.on { background: linear-gradient(145deg, var(--green-bright), var(--green)); color: #06271B; box-shadow: 0 3px 10px rgba(47,212,106,.4); }
.stamp.on.pop { animation: stampPop .45s var(--ease); }
.stamp.off { border: 1.5px dashed rgba(244,251,246,.18); }
@keyframes stampPop { 0% { transform: scale(.2); } 55% { transform: scale(1.25); } 100% { transform: scale(1); } }
.loy-bar { height: 5px; border-radius: 99px; background: rgba(244,251,246,.1); overflow: hidden; }
.loy-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--green), var(--green-bright)); transition: width .5s var(--ease); }
.loy-foot { display: flex; justify-content: space-between; font-size: 10.5px; color: rgba(244,251,246,.55); margin-top: 9px; }
.loy-foot strong { color: rgba(244,251,246,.9); }

.hero-card-ctl { display: flex; gap: 10px; justify-content: center; margin-top: 26px; }
.mini-btn { display: inline-flex; align-items: center; gap: 7px; height: 42px; padding: 0 18px; border-radius: var(--pill); font-weight: 600; font-size: 13.5px; background: var(--ink); color: var(--bg); transition: transform .2s; }
.mini-btn.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.mini-btn:active { transform: scale(.96); }

/* confetti burst layer */
.burst { position: absolute; left: 0; right: 0; top: 40%; z-index: 9; pointer-events: none; }
.confetti { position: absolute; top: 0; width: 9px; height: 9px; border-radius: 2px; opacity: 0; }
@keyframes heroConfetti {
  0% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translate(var(--dx, 0), 240px) rotate(var(--rot, 360deg)) scale(.4); }
}

/* ── Marquee ───────────────────────────────────────────────────────── */
.marquee-band { padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-lead { text-align: center; font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 24px; }
.marquee { display: flex; gap: 56px; width: max-content; animation: scrollX 32s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-size: 26px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); opacity: .34; transition: opacity .25s; white-space: nowrap; }
.marquee span:hover { opacity: 1; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ── Stats ─────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
.stat { padding: 0 28px; border-left: 1px solid var(--line-2); }
.stat:first-child { padding-left: 0; border-left: 0; }
@media (max-width: 800px) { .stat { padding: 0; border-left: 0; } }
.stat-num { font-family: var(--display); font-size: clamp(46px, 6vw, 78px); font-weight: 700; letter-spacing: -0.05em; line-height: 1; color: var(--ink); }
.stat-num .suf { color: var(--green); }
.stat-label { margin-top: 14px; font-size: 14.5px; line-height: 1.45; color: var(--muted); max-width: 230px; }

/* ── How (steps) ───────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 38px 34px; min-height: 320px;
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(6,39,27,.3); border-color: var(--line-2); }
.step-k { font-family: var(--mono); font-size: 13px; color: var(--green); letter-spacing: .1em; margin-bottom: 26px; }
.step-k b { font-family: var(--display); font-size: 64px; font-weight: 700; letter-spacing: -0.05em; display: block; color: var(--ink); margin-top: 6px; }
.step h3 { font-family: var(--display); font-size: 23px; font-weight: 600; letter-spacing: -0.025em; margin: 0 0 12px; }
.step p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.step-tag { margin-top: auto; padding-top: 22px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: var(--muted-2); display: flex; align-items: center; gap: 8px; }
.step-tag::before { content: ''; width: 18px; height: 1px; background: var(--green); }

/* ── Features bento ────────────────────────────────────────────────── */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 880px) { .feats { grid-template-columns: 1fr; } }
.feat {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 28px; min-height: 250px;
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.feat::after { content: ''; position: absolute; inset: 0; opacity: 0; background: radial-gradient(60% 60% at 30% 0%, rgba(47,212,106,.10), transparent 70%); transition: opacity .4s; pointer-events: none; }
.feat:hover { transform: translateY(-5px); box-shadow: 0 26px 56px -30px rgba(6,39,27,.32); border-color: var(--line-2); }
.feat:hover::after { opacity: 1; }
.feat-ic { width: 50px; height: 50px; border-radius: 15px; background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--green); margin-bottom: 26px; transition: transform .4s var(--ease); }
.feat:hover .feat-ic { transform: scale(1.08) rotate(-4deg); }
.feat-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.feat h3 { font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 10px; }
.feat p { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0; }

/* ── Showcase (dark green cinematic band) ──────────────────────────── */
.band-dark { background: var(--green-deep); color: #F4FBF6; position: relative; overflow: hidden; }
.band-dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 60% at 80% 10%, rgba(47,212,106,.16), transparent 60%), radial-gradient(40% 50% at 8% 90%, rgba(47,212,106,.10), transparent 60%); pointer-events: none; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
@media (max-width: 920px) { .showcase-grid { grid-template-columns: 1fr; gap: 48px; } }
.band-dark .s-title { color: #F4FBF6; }
.band-dark .s-sub { color: rgba(244,251,246,.66); }
.showcase-bullets { list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-direction: column; gap: 16px; }
.showcase-bullets li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: rgba(244,251,246,.92); }
.showcase-bullets .ck { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(145deg, var(--green-bright), var(--green)); color: #06271B; display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 4px 14px rgba(47,212,106,.4); }
.showcase-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; perspective: 1400px; }
.showcase-card {
  width: 360px; padding: 26px; border-radius: 26px;
  background: linear-gradient(150deg, #0e5239 0%, #07301f 100%);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(47,212,106,.14) inset;
  transform-style: preserve-3d; will-change: transform;
}
@media (max-width: 920px) { .showcase-card { width: 320px; } }
.sc-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(47,212,106,.16); }
.sc-orbit.a { width: 460px; height: 460px; animation: spin 26s linear infinite; }
.sc-orbit.b { width: 600px; height: 600px; animation: spin 40s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.sc-orbit i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 12px var(--green-bright); top: -4px; left: 50%; }

/* ── Use cases ─────────────────────────────────────────────────────── */
.cases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 880px) { .cases { grid-template-columns: repeat(2, 1fr); } }
.case {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 16px; min-height: 168px;
  transition: transform .35s var(--ease), border-color .25s, box-shadow .35s;
}
.case:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 22px 44px -28px rgba(6,39,27,.34); }
.case-ic { width: 44px; height: 44px; border-radius: 13px; background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--green); }
.case-name { font-family: var(--display); font-size: 16.5px; font-weight: 600; letter-spacing: -0.02em; margin-top: auto; }
.case-reward { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ── Compare ───────────────────────────────────────────────────────── */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 820px) { .compare { grid-template-columns: 1fr; } }
.cmp { border-radius: var(--r-2xl); padding: 44px 40px; min-height: 440px; display: flex; flex-direction: column; }
.cmp.paper { background: var(--surface); border: 1px solid var(--line); }
.cmp.good { background: var(--green-deep); color: #F4FBF6; position: relative; overflow: hidden; }
.cmp.good::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 50% at 90% 0%, rgba(47,212,106,.18), transparent 60%); pointer-events: none; }
.cmp-tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.cmp.good .cmp-tag { color: var(--green-bright); }
.cmp-title { font-family: var(--display); font-size: 30px; font-weight: 600; letter-spacing: -0.03em; margin: 0 0 30px; }
.cmp ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; position: relative; }
.cmp li { display: flex; gap: 13px; font-size: 15px; line-height: 1.4; }
.cmp.good li { color: rgba(244,251,246,.92); }
.ico-x { width: 23px; height: 23px; border-radius: 50%; flex-shrink: 0; background: var(--bg-2); border: 1px solid var(--line); color: var(--muted-2); display: grid; place-items: center; font-size: 13px; font-weight: 700; margin-top: 1px; }
.ico-ck { width: 23px; height: 23px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(145deg, var(--green-bright), var(--green)); color: #06271B; display: grid; place-items: center; margin-top: 1px; box-shadow: 0 3px 10px rgba(47,212,106,.4); }

/* ── Testimonials ──────────────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .quotes { grid-template-columns: 1fr; } }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 34px 30px; display: flex; flex-direction: column; gap: 26px; transition: transform .35s var(--ease), box-shadow .35s; }
.quote:hover { transform: translateY(-5px); box-shadow: 0 26px 52px -30px rgba(6,39,27,.3); }
.quote-mark { font-family: var(--display); font-size: 56px; line-height: .4; color: var(--green); height: 22px; }
.quote-text { font-family: var(--display); font-size: 19px; font-weight: 500; line-height: 1.4; letter-spacing: -0.015em; text-wrap: pretty; }
.quote-by { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(145deg, var(--green), var(--green-deep)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; font-family: var(--display); }
.quote-name { font-size: 14.5px; font-weight: 700; }
.quote-role { font-size: 13px; color: var(--muted); }

/* ── Pricing (single plan) ─────────────────────────────────────────── */
.price-wrap { display: flex; justify-content: center; }
.price-card {
  position: relative; width: 100%; max-width: 560px;
  background: var(--green-deep); color: #F4FBF6;
  border-radius: var(--r-2xl); padding: 50px 48px; overflow: hidden;
  box-shadow: 0 60px 120px -30px rgba(6,39,27,.55);
}
@media (max-width: 600px) { .price-card { padding: 40px 28px; } }
.price-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 50% at 85% 0%, rgba(47,212,106,.22), transparent 60%), radial-gradient(40% 40% at 5% 100%, rgba(47,212,106,.12), transparent 60%); pointer-events: none; }
.price-card > * { position: relative; }
.price-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 22px; }
.price-name { font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.price-amt { display: flex; align-items: flex-start; gap: 4px; margin: 14px 0 4px; }
.price-amt .cur { font-family: var(--display); font-size: 34px; font-weight: 600; margin-top: 12px; }
.price-amt .val { font-family: var(--display); font-size: 92px; font-weight: 700; letter-spacing: -0.05em; line-height: .9; }
.price-period { font-size: 15px; color: rgba(244,251,246,.65); }
.price-trial { display: inline-flex; align-items: center; gap: 9px; margin: 22px 0 28px; padding: 9px 15px; border-radius: var(--pill); background: rgba(47,212,106,.12); border: 1px solid rgba(47,212,106,.28); font-size: 13.5px; font-weight: 500; color: var(--green-bright); }
.price-items { list-style: none; padding: 0; margin: 0 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 18px; }
@media (max-width: 600px) { .price-items { grid-template-columns: 1fr; } }
.price-items li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: rgba(244,251,246,.9); }
.price-items .ck { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; background: rgba(47,212,106,.16); color: var(--green-bright); display: grid; place-items: center; margin-top: 1px; }
.price-card .btn { width: 100%; justify-content: center; height: 58px; font-size: 16px; }
.price-note { text-align: center; font-size: 13px; color: rgba(244,251,246,.5); margin-top: 18px; }

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line); }
.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: 24px; padding: 28px 0; font-family: var(--display); font-size: clamp(18px, 2vw, 22px); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
.faq-plus { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); transition: transform .3s var(--ease), background .25s, color .25s, border-color .25s; }
.faq-item.open .faq-plus { background: var(--green); color: #06271B; border-color: var(--green); transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding-bottom .35s; font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 720px; }
.faq-item.open .faq-a { max-height: 260px; padding-bottom: 28px; }

/* ── Big CTA ───────────────────────────────────────────────────────── */
.cta-wrap { padding: 40px 0 110px; }
.cta {
  position: relative; border-radius: var(--r-2xl); padding: 96px 60px; overflow: hidden;
  background: var(--green-deep); color: #F4FBF6; text-align: center;
}
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% -10%, rgba(47,212,106,.26), transparent 60%), radial-gradient(40% 60% at 100% 100%, rgba(47,212,106,.14), transparent 60%); pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { font-family: var(--display); font-size: clamp(36px, 6vw, 76px); font-weight: 700; letter-spacing: -0.045em; line-height: .98; margin: 0 auto 22px; max-width: 12ch; text-wrap: balance; }
.cta p { font-size: clamp(16px, 1.6vw, 20px); color: rgba(244,251,246,.7); margin: 0 auto 38px; max-width: 540px; line-height: 1.5; }
.cta-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) { .cta { padding: 64px 28px; } }

/* ── Footer ────────────────────────────────────────────────────────── */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 60px; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 290px; }
.footer-tag { font-size: 14px; line-height: 1.55; color: var(--muted); }
.footer-col h4 { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 16px; }
.footer-col a { display: block; padding: 7px 0; font-size: 14.5px; color: var(--ink-2); transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.wordmark { font-family: var(--display); font-size: clamp(70px, 21vw, 280px); font-weight: 700; letter-spacing: -0.06em; line-height: .8; text-align: center; padding: 36px 0 0; color: var(--ink); opacity: .045; user-select: none; }

/* ── Mobile menu ───────────────────────────────────────────────────── */
.mmenu { position: fixed; inset: 0; z-index: 200; background: var(--bg); transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; visibility: hidden; }
.mmenu.open { transform: none; visibility: visible; }
.mmenu-head { height: var(--nav-h); padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.mmenu-body { flex: 1; padding: 14px 22px; display: flex; flex-direction: column; }
.mmenu-link { display: flex; align-items: center; justify-content: space-between; height: 66px; font-family: var(--display); font-size: 28px; font-weight: 500; letter-spacing: -0.02em; border-bottom: 1px solid var(--line); }
.mmenu-foot { padding: 22px; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line); }
.mmenu-foot .btn { width: 100%; justify-content: center; }

/* mobile hero tweaks */
@media (max-width: 960px) {
  .hero { text-align: center; }
  .hero-eyebrow, .hero h1, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-stage { margin-top: 10px; }
}
@media (max-width: 760px) {
  .hero-actions .btn { flex: 1; justify-content: center; }
  .s-head { margin-bottom: 48px; }
  .section { padding: 80px 0; }
}

/* ── Language switcher ─────────────────────────────────────────────── */
.lang-switcher { display: flex; align-items: center; gap: 2px; background: var(--bg-card, rgba(0,0,0,.06)); border-radius: 8px; padding: 3px; }
.lang-btn { height: 26px; padding: 0 9px; border-radius: 6px; border: 0; background: transparent; font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--muted); cursor: pointer; transition: background .15s, color .15s; }
.lang-btn.active { background: var(--fg); color: var(--bg); }
.lang-btn:hover:not(.active) { color: var(--fg); }
