/* ============================================================
   RELINK — Simple / Tech
   One page, three coherent directions:
   [data-direction="swiss"]  light, minimal, blueprint
   [data-direction="lumen"]  dark, luminous accent
   [data-direction="glass"]  frosted translucent soft-UI
   ============================================================ */

/* ---------- TOKENS (default = swiss) ---------- */
:root {
  --ff-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --ff-mono: 'Geist Mono', 'JetBrains Mono', monospace;

  --bg:        oklch(0.972 0.008 83);
  --bg-2:      oklch(0.955 0.010 83);
  --surface:   oklch(0.995 0.004 83);
  --surface-2: oklch(0.978 0.006 83);

  --ink:    oklch(0.23 0.014 70);
  --ink-2:  oklch(0.46 0.012 70);
  --ink-3:  oklch(0.62 0.010 70);

  --line:    oklch(0.23 0.01 70 / 0.12);
  --line-2:  oklch(0.23 0.01 70 / 0.07);
  --grid:    oklch(0.23 0.01 70 / 0.045);

  --accent:     oklch(0.72 0.14 85);
  --accent-2:   oklch(0.78 0.12 85);
  --accent-ink: oklch(0.24 0.04 80);
  --accent-soft: oklch(0.72 0.14 85 / 0.13);

  --glow: 0 0 0 transparent;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px oklch(0.23 0.01 70 / 0.05), 0 8px 30px oklch(0.23 0.01 70 / 0.06);
  --shadow-lg: 0 2px 6px oklch(0.23 0.01 70 / 0.06), 0 24px 60px oklch(0.23 0.01 70 / 0.10);

  --blur: 0px;
  --surface-border: var(--line);
  --bg-image: none;
}

/* ---------- LUMEN (dark) ---------- */
[data-direction="lumen"] {
  --bg:        oklch(0.165 0.014 264);
  --bg-2:      oklch(0.195 0.016 264);
  --surface:   oklch(0.215 0.016 264);
  --surface-2: oklch(0.245 0.018 264);

  --ink:    oklch(0.965 0.006 264);
  --ink-2:  oklch(0.74 0.012 264);
  --ink-3:  oklch(0.56 0.014 264);

  --line:    oklch(0.97 0.01 264 / 0.14);
  --line-2:  oklch(0.97 0.01 264 / 0.08);
  --grid:    oklch(0.97 0.01 264 / 0.05);

  --accent:     oklch(0.82 0.15 90);
  --accent-2:   oklch(0.87 0.13 90);
  --accent-ink: oklch(0.22 0.05 85);
  --accent-soft: oklch(0.82 0.15 90 / 0.13);

  --glow: 0 0 0 1px oklch(0.82 0.15 90 / 0.18), 0 0 40px oklch(0.82 0.15 90 / 0.16);
  --shadow: 0 1px 2px oklch(0 0 0 / 0.3), 0 10px 34px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 2px 8px oklch(0 0 0 / 0.4), 0 30px 70px oklch(0 0 0 / 0.55);
  --surface-border: var(--line);
}

/* ---------- GLASS (frosted) ---------- */
[data-direction="glass"] {
  --bg:        oklch(0.955 0.022 270);
  --bg-2:      oklch(0.94 0.03 280);
  --surface:   oklch(1 0 0 / 0.55);
  --surface-2: oklch(1 0 0 / 0.42);

  --ink:    oklch(0.29 0.035 278);
  --ink-2:  oklch(0.45 0.035 278);
  --ink-3:  oklch(0.58 0.030 278);

  --line:    oklch(1 0 0 / 0.65);
  --line-2:  oklch(1 0 0 / 0.4);
  --grid:    oklch(0.40 0.04 278 / 0.05);

  --accent:     oklch(0.60 0.17 280);
  --accent-2:   oklch(0.66 0.14 280);
  --accent-ink: oklch(0.99 0.01 280);
  --accent-soft: oklch(0.60 0.17 280 / 0.12);

  --radius: 18px;
  --radius-lg: 26px;
  --blur: 18px;
  --glow: 0 1px 0 oklch(1 0 0 / 0.7) inset;
  --shadow: 0 1px 2px oklch(0.4 0.05 278 / 0.06), 0 14px 40px oklch(0.4 0.05 278 / 0.14);
  --shadow-lg: 0 2px 8px oklch(0.4 0.05 278 / 0.08), 0 34px 80px oklch(0.4 0.05 278 / 0.20);
  --surface-border: var(--line);
  --bg-image:
    radial-gradient(50% 55% at 12% 8%,  oklch(0.78 0.16 30 / 0.40), transparent 70%),
    radial-gradient(46% 50% at 92% 12%, oklch(0.72 0.16 280 / 0.42), transparent 70%),
    radial-gradient(55% 55% at 78% 92%, oklch(0.78 0.15 200 / 0.38), transparent 72%),
    radial-gradient(50% 50% at 20% 95%, oklch(0.80 0.14 150 / 0.32), transparent 72%);
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* high-specificity bg on html so a host `html,body{background:transparent}`
   reset can't override the themed surface */
html[data-direction] {
  background: var(--bg);
}

body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  background-color: var(--bg);
  background-image: var(--bg-image);
  z-index: -1;
  pointer-events: none;
}

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

::selection { background: var(--accent); color: var(--accent-ink); }

a { color: inherit; text-decoration: none; }

/* accent word in headings */
.acc { color: var(--accent); }

.mono {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-sans);
  font-weight: 600; font-size: 14px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { display: block; }
.btn.lg { padding: 16px 26px; font-size: 15px; }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--glow);
}
.btn-accent:hover { background: var(--accent-2); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(var(--blur));
}
.btn-ghost:hover { border-color: var(--ink-3); }

/* ---------- surface card ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

/* ---------- section rhythm ---------- */
section { position: relative; }
.sec-pad { padding: clamp(60px, 9vw, 120px) 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 22px;
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--ink-3); opacity: .6;
}
.sec-title {
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 650;
  max-width: 18ch;
}
.sec-lead {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: clamp(15px, 1.5vw, 17px);
  max-width: 46ch;
  line-height: 1.6;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line-2);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand {
  font-size: 23px; font-weight: 700; letter-spacing: -0.045em;
}
.brand .d { color: var(--accent); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  position: relative;
  width: 40px; height: 40px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--surface-border);
  color: var(--ink); cursor: pointer;
  backdrop-filter: blur(var(--blur));
  transition: border-color .15s ease;
}
.icon-btn:hover { border-color: var(--ink-3); }
.icon-btn .badge {
  position: absolute; top: -5px; right: -5px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 999px; font-size: 10px; font-weight: 700;
  display: grid; place-items: center;
}

@media (max-width: 760px) { .nav-links { display: none; } }

/* language switcher */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px; padding: 0 11px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--surface-border);
  color: var(--ink); cursor: pointer; font-family: var(--ff-sans);
  backdrop-filter: blur(var(--blur));
  transition: border-color .15s ease;
}
.lang-btn:hover { border-color: var(--ink-3); }
.lang-btn .globe { color: var(--ink-2); display: grid; place-items: center; }
.lang-btn .code { font-family: var(--ff-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
.lang-btn .chev { color: var(--ink-3); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  width: 216px; max-height: 320px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  backdrop-filter: blur(calc(var(--blur) + 8px));
  display: flex; flex-direction: column;
}
.lang-menu-head {
  font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); padding: 12px 14px 9px; border-bottom: 1px solid var(--line-2);
}
.lang-menu-list { overflow-y: auto; padding: 6px; display: flex; flex-direction: column; gap: 1px; }
.lang-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 11px; border-radius: 9px; border: none; background: none; cursor: pointer;
  color: var(--ink-2); font-family: var(--ff-sans); font-size: 13.5px; text-align: left;
  transition: background .12s ease, color .12s ease;
}
.lang-item:hover { background: var(--bg-2); color: var(--ink); }
.lang-item.active { color: var(--accent); background: var(--accent-soft); }
.lang-item .c { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: 0.06em; opacity: .8; }

@media (max-width: 540px) { .lang-btn .code { display: none; } .lang-btn { padding: 0 10px; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(50px, 7vw, 96px); }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(75% 70% at 50% 30%, #000 30%, transparent 78%);
          mask-image: radial-gradient(75% 70% at 50% 30%, #000 30%, transparent 78%);
}
.hero-in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero-eye {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px 7px 11px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--surface-border);
  font-size: 12.5px; font-weight: 500; color: var(--ink-2);
  backdrop-filter: blur(var(--blur));
  margin-bottom: 26px;
}
.hero-eye .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.hero h1 .ink-accent { color: var(--accent); }
.hero-sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--ink-2);
  max-width: 40ch;
  line-height: 1.55;
}
.hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars .av {
  width: 32px; height: 32px; border-radius: 999px;
  border: 2px solid var(--bg);
  margin-left: -9px;
  background-size: cover;
}
.avatars .av:first-child { margin-left: 0; }
.hero-trust .stars { color: var(--accent); display: flex; gap: 1px; }
.hero-trust .t-txt { font-size: 13px; color: var(--ink-2); }
.hero-trust .t-txt b { color: var(--ink); }

/* hero visual — framed stage panel */
.hero-vis {
  position: relative; height: 490px;
  container-type: size;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
  overflow: hidden;
}
.hero-vis .stage-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-vis .stage-glow {
  position: absolute; top: 50%; left: 46%; transform: translate(-50%, -50%);
  width: 380px; height: 380px; border-radius: 999px;
  background: radial-gradient(circle, var(--accent-soft), transparent 68%);
}
.hero-vis .ripple {
  position: absolute; top: 50%; left: 46%;
  width: 120px; height: 120px; transform: translate(-50%, -50%);
  border-radius: 999px; border: 1.5px solid var(--accent);
  opacity: 0; animation: ripple 3.4s ease-out infinite;
}
.hero-vis .ripple:nth-child(2) { animation-delay: 1.1s; }
.hero-vis .ripple:nth-child(3) { animation-delay: 2.2s; }
@keyframes ripple {
  0% { width: 120px; height: 120px; opacity: .5; }
  100% { width: 420px; height: 420px; opacity: 0; }
}

.r-card {
  position: absolute; top: 51%; left: 44%;
  width: clamp(230px, 64cqw, 320px);
  aspect-ratio: 320 / 202; height: auto;
  transform: translate(-55%, -52%) rotate(-7deg);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(var(--blur));
  padding: 22px 24px;
  overflow: hidden;
}
.r-card .foil {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, oklch(1 0 0 / 0.12) 46%, transparent 60%);
  pointer-events: none;
}
.r-card .b { font-size: 30px; font-weight: 700; letter-spacing: -0.04em; }
.r-card .s { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
.r-card .g-badge {
  position: absolute; top: 22px; right: 22px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  padding: 5px 11px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--line);
}
.r-card .g-badge .g {
  width: 13px; height: 13px; border-radius: 999px;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #ea4335 0 50%, #fbbc05 0 75%, #34a853 0);
}
.r-card .stars-row { position: absolute; left: 24px; bottom: 50px; color: var(--accent); display: flex; gap: 3px; }
.r-card .chip {
  position: absolute; left: 24px; bottom: 22px;
  width: 38px; height: 27px; border-radius: 6px;
  background: linear-gradient(135deg, oklch(0.82 0.12 85), oklch(0.70 0.10 85));
  opacity: .85;
}
.r-card .nfc {
  position: absolute; right: 22px; bottom: 20px; color: var(--accent); opacity: .9;
}

.r-phone {
  position: absolute; top: 49%; right: 5%;
  width: clamp(106px, 28cqw, 138px);
  aspect-ratio: 138 / 282; height: auto;
  transform: translateY(-46%) rotate(4deg);
  border-radius: 26px;
  background: oklch(0.15 0.01 264);
  border: 5px solid oklch(0.10 0.01 264);
  box-shadow: var(--shadow-lg);
  padding: 12px 10px;
  overflow: hidden;
}
.r-phone .notch { width: 46px; height: 5px; border-radius: 999px; background: oklch(0.4 0.01 264); margin: 0 auto 12px; }
.r-phone .scr { background: #fff; border-radius: 16px; height: calc(100% - 18px); padding: 11px; color: #1a1a1a; }
.r-phone .url {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--ff-mono); font-size: 8.5px; color: #555;
  background: #f1f1f3; border-radius: 7px; padding: 6px 8px;
}
.r-phone .url .g { width: 10px; height: 10px; border-radius: 999px; background: conic-gradient(from -45deg, #4285f4 0 25%, #ea4335 0 50%, #fbbc05 0 75%, #34a853 0); }
.r-phone .biz { margin-top: 12px; font-size: 11px; font-weight: 700; color: #1a1a1a; }
.r-phone .ask { margin-top: 2px; font-size: 9px; color: #888; }
.r-phone .pstars { margin-top: 12px; display: flex; gap: 3px; color: #f5a623; font-size: 18px; }
.r-phone .pbtn {
  margin-top: 14px; background: #1a73e8; color: #fff;
  text-align: center; font-size: 10px; font-weight: 700;
  padding: 9px; border-radius: 8px;
}

/* stage chips + telemetry */
.st-chip {
  position: absolute; z-index: 3;
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: 12px; box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
}
.st-live { top: 44px; left: 22px; padding: 11px 15px; }
.st-live .t { white-space: nowrap; }
.st-live .lv {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
}
.st-live .lv::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
.st-live .t2 { margin-top: 4px; font-size: 16px; font-weight: 650; letter-spacing: -0.02em; }

.st-stat { top: 96px; right: 20px; padding: 13px 16px; text-align: left; }
.st-stat .n { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--accent); }
.st-stat .l { margin-top: 5px; font-family: var(--ff-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); line-height: 1.5; }

.st-quote { left: 22px; bottom: 58px; padding: 12px 14px; max-width: 215px; display: flex; gap: 10px; }
.st-quote .av { width: 28px; height: 28px; border-radius: 999px; flex-shrink: 0; background: linear-gradient(135deg, var(--accent-2), var(--accent)); opacity: .9; }
.st-quote .stars { display: flex; gap: 1px; color: var(--accent); }
.st-quote .q { margin-top: 3px; font-size: 11.5px; line-height: 1.4; color: var(--ink); }
.st-quote .a { margin-top: 3px; font-size: 10px; color: var(--ink-3); }

.st-tele {
  position: absolute; top: 16px; right: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--ink-3);
}
.st-tele .d { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }

.st-coords {
  position: absolute; left: 20px; bottom: 16px; z-index: 3;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--ink-3);
}
.st-coords b { color: var(--ink-2); font-weight: 600; }

.st-spark {
  position: absolute; right: 18px; bottom: 13px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-mono); font-size: 10px; color: var(--ink-3);
}
.st-spark svg { color: var(--ink-2); display: block; }
.st-spark b { color: var(--ink); font-weight: 600; }
.st-spark .up { color: var(--accent); font-style: normal; font-weight: 600; }

@media (max-width: 880px) {
  .hero-in { grid-template-columns: 1fr; gap: 20px; }
  .hero-vis { height: 420px; order: 2; }
  .st-quote { display: none; }
}

/* ============================================================
   LOGO STRIP
   ============================================================ */
.logos { border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); padding: 26px 0; }
.logos-in { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; justify-content: center; }
.logos .lbl { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.logos .item { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 600; color: var(--ink-2); opacity: .8; }
.logos .item .sw { width: 11px; height: 11px; border-radius: 3px; background: var(--accent); opacity: .65; }

/* ============================================================
   HOW — 3 steps
   ============================================================ */
.how-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 50px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
  overflow: hidden;
}
.step .s-n {
  display: inline-block;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600;
  background: var(--ink); color: var(--bg);
  padding: 5px 10px; border-radius: 5px;
}
.step h3 { margin-top: 18px; font-size: 22px; font-weight: 650; letter-spacing: -0.025em; }
.step p { margin-top: 9px; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.step .s-art {
  margin-top: 22px; height: 150px; border-radius: 12px;
  border: 1px solid var(--line);
  background: repeating-linear-gradient(45deg, var(--grid) 0 2px, transparent 2px 9px);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  color: var(--ink);
}
.step .s-telem {
  position: absolute; left: 12px; bottom: 10px;
  font-family: var(--ff-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
}

/* (mini-scene styles removed — steps use hatched placeholders) */

@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   PROOF — stat band + testimonial
   ============================================================ */
.proof-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
  overflow: hidden;
}
.proof-band .s { padding: 28px 26px; border-right: 1px solid var(--line-2); }
.proof-band .s:last-child { border-right: none; }
.proof-band .s .n { font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; letter-spacing: -0.03em; }
.proof-band .s .n .x { color: var(--accent); }
.proof-band .s .l { margin-top: 6px; font-size: 13px; color: var(--ink-2); line-height: 1.45; }
.proof-band .s .k { margin-top: 12px; font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: 0.12em; color: var(--ink-3); }

.testi { margin-top: 22px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.tcard {
  padding: 26px 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--surface-border);
  box-shadow: var(--shadow); backdrop-filter: blur(var(--blur));
  display: flex; flex-direction: column;
}
.tcard.feat { background: var(--accent); color: var(--accent-ink); border-color: transparent; box-shadow: var(--shadow-lg), var(--glow); }
.tcard .biz { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: .75; }
.tcard .stars { display: flex; gap: 2px; margin: 12px 0; color: var(--accent); }
.tcard.feat .stars { color: var(--accent-ink); }
.tcard .q { font-size: 16px; line-height: 1.5; letter-spacing: -0.01em; flex: 1; }
.tcard.feat .q { font-size: 19px; }
.tcard .res {
  margin-top: 16px; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 600;
  padding: 6px 11px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
}
.tcard.feat .res { background: oklch(1 0 0 / 0.18); color: var(--accent-ink); }
.tcard .meta { margin-top: 18px; display: flex; align-items: center; gap: 11px; }
.tcard .meta .av { width: 36px; height: 36px; border-radius: 999px; background: linear-gradient(135deg, var(--accent-2), var(--accent)); opacity: .9; }
.tcard .meta .nm { font-size: 13px; font-weight: 600; }
.tcard .meta .rl { font-size: 12px; opacity: .7; }

@media (max-width: 920px) {
  .proof-band { grid-template-columns: repeat(2, 1fr); }
  .proof-band .s:nth-child(2) { border-right: none; }
  .proof-band .s:nth-child(-n+2) { border-bottom: 1px solid var(--line-2); }
  .testi { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.price-head { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 14px; }
.price-head .sec-title { max-width: 22ch; line-height: 1.08; }
.price-head .sec-lead { max-width: 48ch; margin-top: 26px; }
.plat-row { display: flex; gap: 9px; justify-content: center; margin: 26px 0 34px; flex-wrap: wrap; }
.plat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--surface-border);
  font-size: 13px; font-weight: 500; color: var(--ink-2); cursor: pointer;
  backdrop-filter: blur(var(--blur));
  transition: border-color .15s ease, color .15s ease;
}
.plat .dot { width: 9px; height: 9px; border-radius: 3px; }
.plat.p-google .dot { background: conic-gradient(from -45deg, #4285f4 0 25%, #ea4335 0 50%, #fbbc05 0 75%, #34a853 0); border-radius: 999px; }
.plat.p-tripadvisor .dot { background: #00aa6c; border-radius: 999px; }
.plat.p-instagram .dot { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); border-radius: 999px; }
.plat.p-trustpilot .dot { background: #00b67a; border-radius: 999px; }
.plat.active { color: var(--ink); border-color: var(--ink-3); background: var(--surface-2); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan {
  position: relative;
  padding: 28px 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--surface-border);
  box-shadow: var(--shadow); backdrop-filter: blur(var(--blur));
  cursor: pointer; display: flex; flex-direction: column;
  transition: border-color .15s ease, transform .15s ease;
}
.plan:hover { transform: translateY(-3px); }
.plan.best { border-color: var(--accent); box-shadow: var(--shadow-lg), var(--glow); }
.plan .pop-tag {
  position: absolute; top: -11px; left: 26px;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.1em; font-weight: 600;
  background: var(--accent); color: var(--accent-ink);
  padding: 4px 11px; border-radius: 999px;
}
.plan .p-l { font-size: 18px; font-weight: 600; }
.plan .p-d { margin-top: 3px; font-size: 13px; color: var(--ink-2); }
.plan .p-price { margin-top: 20px; display: flex; align-items: baseline; gap: 9px; }
.plan .p-price .now { font-size: 40px; font-weight: 600; letter-spacing: -0.03em; }
.plan .p-price .was { font-size: 16px; color: var(--ink-3); text-decoration: line-through; }
.plan .p-per { margin-top: 4px; font-family: var(--ff-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }
.plan .p-save {
  margin-top: 14px; align-self: flex-start;
  font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
}
.plan .p-cta { margin-top: 22px; }
.plan .p-cta .btn { width: 100%; justify-content: center; }

.price-foot { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.price-foot span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-2); }
.price-foot span svg { color: var(--accent); }

@media (max-width: 820px) { .plans { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 30px; align-items: start; }
.faq-side h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -0.035em; font-weight: 650; }
.faq-side p { margin-top: 14px; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 32ch; }
.faq-side .btn { margin-top: 22px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 2px; font-size: 16.5px; font-weight: 500; color: var(--ink);
  font-family: var(--ff-sans);
}
.faq-q .pl { color: var(--accent); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-q .pl { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; }
.faq-a p { padding: 0 2px 22px; color: var(--ink-2); font-size: 14.5px; line-height: 1.65; max-width: 60ch; }

@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(var(--blur));
  padding: clamp(48px, 7vw, 84px) 24px;
  position: relative; overflow: hidden;
}
.final .glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 520px; height: 320px; border-radius: 999px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.final h2 { position: relative; font-size: clamp(32px, 5vw, 58px); line-height: 1.02; letter-spacing: -0.04em; font-weight: 700; }
.final h2 .acc { color: var(--accent); }
.final p { position: relative; margin: 20px auto 0; max-width: 46ch; color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.final-cta { position: relative; margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-foot { position: relative; margin-top: 26px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }
.final-foot span { display: inline-flex; align-items: center; gap: 7px; }
.final-foot .d { width: 5px; height: 5px; border-radius: 999px; background: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-2); padding: 60px 0 40px; margin-top: clamp(60px, 9vw, 110px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer .wm { font-size: 26px; font-weight: 700; letter-spacing: -0.045em; }
.footer .tag { margin-top: 12px; max-width: 32ch; color: var(--ink-2); font-size: 13.5px; line-height: 1.6; }
.footer .socials { margin-top: 18px; display: flex; gap: 8px; }
.footer .socials a {
  width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--line);
  display: grid; place-items: center; font-family: var(--ff-mono); font-size: 10px; font-weight: 600; color: var(--ink-2);
  transition: border-color .15s ease, color .15s ease;
}
.footer .socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer h5 { font-size: 12px; font-family: var(--ff-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--ink-2); }
.footer ul a:hover { color: var(--ink); }
.footer-bot { margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--ink-3); }

@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   CART (minimal drawer)
   ============================================================ */
.cart-ov { position: fixed; inset: 0; z-index: 90; background: oklch(0.1 0.01 264 / 0.4); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.cart-ov.open { opacity: 1; pointer-events: auto; }
.cart {
  position: fixed; top: 0; right: 0; z-index: 91; height: 100%;
  width: min(400px, 92vw);
  background: var(--bg); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 18px; font-weight: 600; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { color: var(--ink-3); font-size: 14px; text-align: center; margin-top: 40px; }
.cart-item { display: flex; gap: 13px; align-items: center; padding: 13px; border: 1px solid var(--line); border-radius: 12px; }
.cart-item .ci-art { width: 44px; height: 28px; border-radius: 5px; background: linear-gradient(135deg, var(--accent-2), var(--accent)); }
.cart-item .ci-t { font-size: 14px; font-weight: 600; }
.cart-item .ci-s { font-size: 12px; color: var(--ink-3); }
.cart-item .ci-p { margin-left: auto; font-weight: 600; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-tot { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 15px; }
.cart-tot b { font-size: 19px; }

/* ============================================================
   V6 — scroll reveal
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .steps .step:nth-child(2), .plans .plan:nth-child(2) { transition-delay: .08s; }
  .steps .step:nth-child(3), .plans .plan:nth-child(3) { transition-delay: .16s; }
}

/* ============================================================
   V6 — interactive tap demo on hero stage
   ============================================================ */
.hero-vis.clickable { cursor: pointer; }
.hero-vis .burst {
  position: absolute; top: 50%; left: 46%;
  width: 110px; height: 110px; transform: translate(-50%, -50%);
  border-radius: 999px; border: 2px solid var(--accent);
  pointer-events: none; opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-vis.tapping .burst { animation: burst 1.1s ease-out; }
  @keyframes burst {
    0% { width: 90px; height: 90px; opacity: .8; }
    100% { width: 460px; height: 460px; opacity: 0; }
  }
  .hero-vis.tapping .r-phone { transform: translateY(-46%) rotate(4deg) scale(1.03); }
}
.r-phone { transition: transform .35s ease; }
.r-phone .pbtn { transition: background .25s ease; }
.r-phone .pbtn.ok { background: #1d9e57; }
.st-hint {
  position: absolute; left: 50%; bottom: 38px; transform: translateX(-50%);
  z-index: 3; white-space: nowrap;
  font-family: var(--ff-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 7px;
}
.st-hint::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
@media (prefers-reduced-motion: no-preference) {
  .st-hint::before { animation: hintpulse 2s ease-in-out infinite; }
  @keyframes hintpulse { 0%,100% { box-shadow: 0 0 0 0 var(--accent-soft); } 50% { box-shadow: 0 0 0 6px var(--accent-soft); } }
}

/* ============================================================
   V6 — sticky buy bar
   ============================================================ */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: oklch(0.17 0.012 70);
  color: oklch(0.97 0.005 83);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-top: 1px solid oklch(1 0 0 / 0.08);
}
[data-direction="lumen"] .buybar { background: oklch(0.10 0.012 264); }
.buybar.show { transform: translateY(0); }
.buybar-in { display: flex; align-items: center; gap: 16px; height: 68px; }
.buybar .bb-art {
  width: 46px; height: 30px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  position: relative;
}
.buybar .bb-art::after {
  content: "relink"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 9px; font-weight: 700; letter-spacing: -0.03em; color: var(--accent-ink);
}
.buybar .bb-t { font-size: 14px; font-weight: 650; letter-spacing: -0.01em; }
.buybar .bb-s { font-size: 11.5px; opacity: .55; margin-top: 1px; }
.buybar .bb-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.buybar .bb-price { font-size: 20px; font-weight: 700; letter-spacing: -0.03em; }
.buybar .bb-was { font-size: 13px; opacity: .45; text-decoration: line-through; margin-left: 7px; font-weight: 400; }
.buybar .btn { padding: 11px 20px; }
@media (max-width: 640px) {
  .buybar .bb-s { display: none; }
  .buybar .bb-t { font-size: 13px; }
}
body.has-buybar { padding-bottom: 68px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
