:root {
  --ink: #071A17;
  --ink-2: #0D2420;
  --ink-3: #102A26;
  --ink-4: #14332E;
  --accent: #1ED760;
  --accent-hover: #27F47A;
  --accent-2: #27F47A;
  --accent-dim: rgba(30, 215, 96, 0.14);
  --accent-glow: rgba(30, 215, 96, 0.35);
  --mist: #e8f5ef;
  --text: #ffffff;
  --text-2: #d1d5db; /* gray-300 */
  --text-muted: #9ca3af; /* gray-400/500 */
  --text-faint: #6b7280;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --surface: #102A26;
  --surface-2: rgba(16, 42, 38, 0.72);
  --danger: #ef6b6b;
  --warn: #e0b35a;
  --radius: 16px;
  --radius-card: 22px;
  --radius-btn: 16px;
  --font: "Manrope", system-ui, sans-serif;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
  --shadow-lift: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(30, 215, 96, 0.12);
  --max: 1320px;
  --header-h: 76px;
  --section-y: 7.5rem; /* ~120px */
  --card-pad: 2rem; /* 32px */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

[data-theme="light"] {
  --ink: #f3faf6;
  --ink-2: #e8f4ee;
  --ink-3: #ffffff;
  --ink-4: #dceee5;
  --text: #071A17;
  --text-2: #1f2937;
  --text-muted: #4b5563;
  --text-faint: #6b7280;
  --line: rgba(7, 26, 23, 0.1);
  --line-strong: rgba(7, 26, 23, 0.16);
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 48px rgba(7, 26, 23, 0.1);
  --shadow-lift: 0 18px 40px rgba(7, 26, 23, 0.12), 0 0 0 1px rgba(30, 215, 96, 0.2);
  --accent-dim: rgba(30, 215, 96, 0.12);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.011em;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.55em;
  font-weight: 750;
}
p { margin: 0 0 1em; }
.sr-only, .skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 1rem; top: 1rem; width: auto; height: auto; padding: .65rem 1.1rem;
  background: var(--accent); color: #04120f; z-index: 100; border-radius: 12px;
  font-weight: 700;
}

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.2) blur(18px);
  -webkit-backdrop-filter: saturate(1.2) blur(18px);
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  height: var(--header-h); display: flex; align-items: center; gap: 1rem;
  min-width: 0;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--text); flex-shrink: 0; }
.brand:hover { color: var(--text); }
.brand-word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.28rem;
  letter-spacing: 0.06em;
}
.brand-mark { border-radius: 11px; }
.nav-desktop {
  display: none; flex: 1; justify-content: center; gap: .1rem;
  align-items: center;
}
.nav-desktop a {
  position: relative;
  color: var(--text-muted); font-size: .92rem; font-weight: 560;
  padding: .5rem .78rem; border-radius: 10px;
  transition: color .2s var(--ease);
}
.nav-desktop a::after {
  content: "";
  position: absolute; left: .78rem; right: .78rem; bottom: .2rem;
  height: 2px; border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .28s var(--ease);
}
.nav-desktop a:hover { color: var(--text); }
.nav-desktop a:hover::after { transform: scaleX(0.55); }
.nav-desktop a.is-active { color: var(--text); }
.nav-desktop a.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: .55rem; margin-left: auto; }
.nav-burger {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px;
  background: transparent; display: grid; place-content: center; gap: 5px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.nav-burger:hover { border-color: var(--line-strong); background: var(--accent-dim); }
.nav-burger span {
  display: block; width: 18px; height: 2px; background: var(--text);
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.nav-drawer {
  border-top: 1px solid var(--line); padding: 1rem 1.25rem 1.5rem;
  background: color-mix(in srgb, var(--ink-2) 96%, transparent);
  backdrop-filter: blur(16px);
}
.nav-drawer nav { display: grid; gap: .3rem; }
.nav-drawer a {
  color: var(--text); padding: .85rem 1rem; border-radius: 14px; font-weight: 600;
  font-size: 1.02rem; min-height: 48px; display: flex; align-items: center;
}
.nav-drawer a:hover { background: var(--accent-dim); color: var(--text); }
.nav-drawer .btn { justify-content: center; margin-top: .5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 680; font-size: .95rem;
  padding: 1rem 2rem; /* 16×32 */
  border-radius: var(--radius-btn); border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s, border-color .22s, box-shadow .22s, opacity .2s;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: .45; pointer-events: none; transform: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #16b34a 100%);
  color: #04120f !important;
  box-shadow: 0 10px 32px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  box-shadow: 0 14px 40px rgba(39, 244, 122, 0.4), inset 0 1px 0 rgba(255,255,255,.3);
  color: #04120f !important;
}
.btn-ghost {
  background: transparent; color: var(--text) !important; border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: var(--accent-dim); color: var(--text) !important;
}
.btn-lg { padding: 1.05rem 2.15rem; font-size: 1.02rem; border-radius: 18px; }
.btn-sm { padding: .7rem 1.25rem; font-size: .88rem; }

.theme-toggle {
  width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--line);
  background: transparent; cursor: pointer; position: relative;
  transition: border-color .2s, background .2s;
}
.theme-toggle:hover { border-color: var(--line-strong); background: var(--accent-dim); }
.theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.theme-ico { position: absolute; inset: 0; margin: auto; width: 16px; height: 16px; border-radius: 50%; transition: opacity .25s; }
.theme-ico-sun { background: #e8c96a; box-shadow: 0 0 0 3px rgba(232, 201, 106, 0.22); }
.theme-ico-moon { background: #9ca3af; opacity: 0; }
[data-theme="light"] .theme-ico-sun { opacity: 0; }
[data-theme="light"] .theme-ico-moon { opacity: 1; }

/* Lucide / icon helpers */
.icon { width: 1.15em; height: 1.15em; stroke: currentColor; fill: none; stroke-width: 1.75; flex-shrink: 0; }
.feat-ico i[data-lucide], .feat-ico svg {
  width: 22px; height: 22px; stroke: var(--accent); stroke-width: 1.75;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid; align-items: center; overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(30, 215, 96, 0.22), transparent 58%),
    radial-gradient(ellipse 45% 40% at 8% 78%, rgba(30, 215, 96, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(13, 36, 32, 0.9), transparent),
    linear-gradient(165deg, #041411 0%, var(--ink) 42%, #0a221e 100%);
  animation: meshDrift 20s ease-in-out infinite alternate;
}
[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 70% 55% at 75% 12%, rgba(30, 215, 96, 0.2), transparent 55%),
    radial-gradient(ellipse 45% 40% at 10% 85%, rgba(30, 215, 96, 0.1), transparent 50%),
    linear-gradient(165deg, #eaf7f0 0%, #f3faf6 48%, #dff0e8 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1; opacity: .18;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 15%, transparent 72%);
  animation: gridPulse 12s ease-in-out infinite;
}
@keyframes meshDrift {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.05) translate(-1.2%, .8%); }
}
@keyframes gridPulse {
  0%, 100% { opacity: .14; }
  50% { opacity: .24; }
}
.hero-inner {
  max-width: var(--max); width: 100%; margin: 0 auto;
  padding: 4rem 1.5rem 3.5rem;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem 4.5rem;
  }
}
.hero-copy { position: relative; z-index: 1; }
.hero-brand {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3.5rem, 10vw, 4.5rem);
  letter-spacing: -0.045em; line-height: .9; margin: 0 0 .5rem;
  background: linear-gradient(120deg, var(--text) 35%, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: brandIn .9s var(--ease) both;
}
.hero h1 {
  font-size: clamp(2.15rem, 5vw, 4.25rem); /* 64–72px target */
  font-weight: 800;
  max-width: 14ch;
  margin-bottom: .85rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
  animation: riseIn .8s .1s var(--ease) both;
}
.hero-lead {
  max-width: 40ch; color: var(--text-2); font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  line-height: 1.65; margin-bottom: 1.5rem;
  animation: riseIn .8s .2s var(--ease) both;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  animation: riseIn .8s .28s var(--ease) both;
  margin-bottom: 1.75rem;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: .5rem;
  animation: riseIn .8s .36s var(--ease) both;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .85rem; border-radius: 999px;
  border: 1px solid var(--line); background: color-mix(in srgb, var(--ink-2) 70%, transparent);
  color: var(--text-2); font-size: .84rem; font-weight: 600;
}
.hero-pill svg { width: 14px; height: 14px; stroke: var(--accent); }

@keyframes brandIn {
  from { opacity: 0; transform: translateY(22px) scale(.98); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatY2 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(8px) rotate(1deg); }
}

/* Hero product visual */
.hero-visual {
  position: relative;
  min-height: 380px;
  animation: riseIn .9s .25s var(--ease) both;
}
.hero-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 480px;
}
.mock-phone {
  position: absolute;
  inset: 8% 18% 4% 12%;
  border-radius: 28px;
  background: linear-gradient(160deg, #0f2e29, #071A17);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow), 0 0 0 1px rgba(30, 215, 96, 0.08);
  overflow: hidden;
  z-index: 2;
}
[data-theme="light"] .mock-phone {
  background: linear-gradient(160deg, #fff, #eaf6f0);
}
.mock-phone-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem .9rem;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink-2) 80%, transparent);
}
.mock-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-faint); opacity: .6; }
.mock-dot.g { background: var(--accent); opacity: 1; }
.mock-url {
  flex: 1; height: 22px; border-radius: 8px; background: var(--ink);
  border: 1px solid var(--line); font-size: .65rem; color: var(--text-muted);
  display: flex; align-items: center; padding: 0 .55rem; overflow: hidden;
}
.mock-body { padding: .85rem; display: grid; gap: .55rem; }
.mock-row {
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem .65rem; border-radius: 12px;
  border: 1px solid var(--line); background: color-mix(in srgb, var(--ink-3) 90%, transparent);
}
.mock-avatar {
  width: 28px; height: 28px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent-dim), rgba(30,215,96,.35));
  display: grid; place-items: center; color: var(--accent); font-size: .7rem; font-weight: 800;
}
.mock-meta { flex: 1; min-width: 0; }
.mock-meta b { display: block; font-size: .78rem; font-weight: 700; letter-spacing: -0.02em; }
.mock-meta span { display: block; font-size: .68rem; color: var(--text-muted); }
.mock-badge {
  font-size: .62rem; font-weight: 700; padding: .2rem .4rem; border-radius: 6px;
  background: var(--accent-dim); color: var(--accent);
}
.mock-chart {
  height: 64px; border-radius: 12px; border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent 60%, var(--accent-dim)),
    repeating-linear-gradient(90deg, transparent, transparent 18px, var(--line) 18px, var(--line) 19px);
  position: relative; overflow: hidden;
}
.mock-chart::after {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-hover), transparent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.float-card {
  position: absolute;
  z-index: 3;
  padding: .85rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--ink-3) 92%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  min-width: 148px;
  animation: floatY 5.5s ease-in-out infinite;
}
[data-theme="light"] .float-card { background: rgba(255,255,255,.92); }
.float-card.fc-proxy {
  top: 6%; right: 0; animation-delay: -.8s; animation-name: floatY2;
}
.float-card.fc-iso {
  bottom: 10%; left: 0; animation-delay: -1.6s;
}
.float-card .fc-label {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted); font-weight: 700; margin-bottom: .25rem;
}
.float-card .fc-val {
  font-size: .92rem; font-weight: 750; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: .4rem;
}
.float-card .fc-val svg { width: 16px; height: 16px; stroke: var(--accent); }
.float-card .fc-sub { font-size: .72rem; color: var(--text-muted); margin-top: .2rem; }

.country-chips {
  position: absolute; z-index: 4;
  top: 42%; right: -2%;
  display: flex; flex-direction: column; gap: .4rem;
  animation: floatY 6.5s ease-in-out infinite;
  animation-delay: -2s;
}
.country-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .7rem; border-radius: 999px;
  background: color-mix(in srgb, var(--ink-2) 90%, transparent);
  border: 1px solid var(--line); font-size: .72rem; font-weight: 650;
  color: var(--text-2); white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.country-chip i { font-style: normal; }

/* ── Sections ── */
.section { padding: var(--section-y) 1.5rem; }
.section-tight { padding: 4rem 1.5rem; }
.section-alt {
  background: color-mix(in srgb, var(--ink-2) 88%, transparent);
  border-block: 1px solid var(--line);
}
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-kicker {
  display: inline-block; color: var(--accent); font-weight: 750; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: .85rem;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 2.85rem); /* 40–48px */
  font-weight: 780;
  max-width: 20ch;
  margin-bottom: .7rem;
}
.section-lead {
  color: var(--text-muted); max-width: 54ch;
  font-size: clamp(1.02rem, 1.4vw, 1.125rem); /* 17–18 */
  line-height: 1.65;
}

/* Pillar / product explanation */
.pillar-grid {
  display: grid; gap: 1.15rem; margin-top: 2.5rem;
}
@media (min-width: 720px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1060px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
}
.pillar {
  padding: var(--card-pad);
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  box-shadow: var(--shadow-lift);
}
.pillar-ico {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1.1rem;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(30,215,96,.22), rgba(30,215,96,.05));
  border: 1px solid rgba(30,215,96,.2);
}
.pillar-ico svg { width: 22px; height: 22px; stroke: var(--accent); }
.pillar h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem); /* 24–28 */
  margin-bottom: .45rem;
}
.pillar p { color: var(--text-muted); margin: 0; font-size: 1rem; line-height: 1.6; }

/* Trust / capability strip */
.trust-section .trust-grid {
  display: grid; gap: 1rem; margin-top: 2rem;
}
@media (min-width: 720px) {
  .trust-section .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
.trust-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, color-mix(in srgb, var(--ink-3) 100%, transparent), color-mix(in srgb, var(--ink-2) 80%, transparent));
  text-align: center;
}
.trust-card .trust-stat {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--accent); margin-bottom: .4rem;
}
.trust-card p { margin: 0; color: var(--text-muted); font-size: .95rem; }
.trust-note {
  margin-top: 1.25rem; text-align: center;
  color: var(--text-faint); font-size: .88rem;
}

.trust-row {
  display: flex; flex-wrap: wrap; gap: 1rem 2.25rem; align-items: center;
  padding: 1.75rem 0; border-block: 1px solid var(--line); color: var(--text-muted);
  font-size: .95rem; font-weight: 560;
}
.trust-row strong { color: var(--text); font-weight: 720; }

.feature-grid, .use-grid, .plan-grid, .step-list, .faq-list, .doc-grid, .post-grid {
  display: grid; gap: 1.2rem; margin-top: 2.25rem;
}
.feature-grid { grid-template-columns: 1fr; }
.feat {
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  backdrop-filter: blur(8px);
  transition: border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s;
  display: flex; flex-direction: column;
}
.feat:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.feat h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  margin-bottom: .45rem;
}
.feat p { color: var(--text-muted); margin: 0 0 1rem; font-size: 1rem; flex: 1; }
.feat-more {
  font-size: .92rem; font-weight: 680; color: var(--accent);
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: auto;
}
.feat-more:hover { color: var(--accent-hover); gap: .5rem; }
.feat-ico {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1.15rem;
  background: linear-gradient(145deg, rgba(30,215,96,.25), rgba(30,215,96,.06));
  border: 1px solid rgba(30,215,96,.18);
  display: grid; place-items: center;
  color: var(--accent); font-weight: 800; font-family: var(--font-display);
}
.feat-thumb {
  margin: -.5rem -.5rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 16 / 9;
  position: relative;
}

/* Mini mock thumbs inside feature cards */
.mini-mock {
  position: absolute; inset: 0; padding: .65rem;
  display: grid; gap: .35rem;
  font-size: .65rem;
}
.mini-mock .mm-bar {
  height: 10px; border-radius: 4px; background: var(--line-strong); width: 40%;
}
.mini-mock .mm-row {
  height: 22px; border-radius: 6px; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink-3) 90%, transparent);
}
.mini-mock .mm-row.accent { border-color: rgba(30,215,96,.35); background: var(--accent-dim); }
.mini-mock.browser .mm-url {
  height: 16px; border-radius: 6px; background: var(--ink); border: 1px solid var(--line); width: 70%;
}
.mini-mock.proxy .mm-dots { display: flex; gap: .3rem; }
.mini-mock.proxy .mm-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent); opacity: .7;
}

.step-list { counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.15rem; align-items: start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--line);
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #16b34a);
  color: #04120f;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.step h3 { margin-bottom: .3rem; font-size: 1.2rem; }
.step p { margin: 0; color: var(--text-muted); font-size: 1rem; }

.audience {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.75rem;
}
.chip {
  padding: .55rem 1rem; border-radius: 999px; border: 1px solid var(--line);
  color: var(--text-2); font-size: .92rem; font-weight: 600;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  transition: border-color .2s, background .2s;
}
.chip:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); background: var(--accent-dim); }

.use-card {
  padding: var(--card-pad);
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: linear-gradient(100deg, var(--accent-dim), transparent 65%);
  transition: transform .25s var(--ease);
}
.use-card:hover { transform: translateY(-3px); }
.use-card h3 { font-size: 1.35rem; }
.use-card p { margin: 0; color: var(--text-muted); }

/* Product mock showcase strip */
.mock-showcase {
  display: grid; gap: 1.25rem; margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .mock-showcase { grid-template-columns: repeat(3, 1fr); }
}
.mock-panel {
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s;
}
.mock-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.mock-panel-label {
  padding: .85rem 1.1rem; border-bottom: 1px solid var(--line);
  font-size: .78rem; font-weight: 720; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); display: flex; align-items: center; gap: .5rem;
}
.mock-panel-label svg { width: 15px; height: 15px; stroke: var(--accent); }
.mock-panel-body { padding: 1rem; min-height: 180px; }

/* Dashboard mock */
.dash-mock .dm-sidebar {
  display: none;
}
.dash-mock .dm-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem;
}
.dash-mock .dm-title { font-weight: 750; font-size: .95rem; }
.dash-mock .dm-chips { display: flex; gap: .35rem; }
.dash-mock .dm-chips span {
  width: 48px; height: 8px; border-radius: 4px; background: var(--line-strong);
}
.dash-mock .dm-cards { display: grid; gap: .45rem; }
.dash-mock .dm-card {
  display: grid; grid-template-columns: 28px 1fr auto; gap: .55rem; align-items: center;
  padding: .55rem .65rem; border-radius: 10px; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink-2) 70%, transparent);
  font-size: .78rem;
}
.dash-mock .dm-ico {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--accent-dim); display: grid; place-items: center;
  color: var(--accent); font-weight: 800; font-size: .7rem;
}

/* Browser mock */
.browser-mock .bm-chrome {
  display: flex; gap: .4rem; align-items: center; margin-bottom: .65rem;
}
.browser-mock .bm-chrome .dots { display: flex; gap: 4px; }
.browser-mock .bm-chrome .dots i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--text-faint); display: block; font-style: normal;
}
.browser-mock .bm-url {
  flex: 1; height: 24px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--ink); padding: 0 .55rem; font-size: .7rem; color: var(--text-muted);
  display: flex; align-items: center;
}
.browser-mock .bm-tabs { display: flex; gap: .3rem; margin-bottom: .65rem; }
.browser-mock .bm-tabs span {
  padding: .3rem .55rem; border-radius: 8px 8px 0 0; font-size: .68rem;
  background: var(--ink-2); border: 1px solid var(--line); color: var(--text-muted);
}
.browser-mock .bm-tabs span.on { background: var(--accent-dim); color: var(--accent); border-color: rgba(30,215,96,.3); }
.browser-mock .bm-page {
  height: 100px; border-radius: 10px; border: 1px solid var(--line);
  background:
    linear-gradient(135deg, var(--accent-dim), transparent 50%),
    var(--ink-2);
  padding: .75rem;
}
.browser-mock .bm-page .line {
  height: 6px; border-radius: 3px; background: var(--line-strong); margin-bottom: .4rem;
}
.browser-mock .bm-page .line.w60 { width: 60%; }
.browser-mock .bm-page .line.w40 { width: 40%; }

/* Proxy mock */
.proxy-mock .pm-list { display: grid; gap: .45rem; }
.proxy-mock .pm-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem .7rem; border-radius: 10px; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink-2) 75%, transparent); font-size: .78rem;
}
.proxy-mock .pm-status {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.proxy-mock .pm-status.off { background: var(--text-faint); box-shadow: none; }

/* Testimonials */
.t-carousel {
  position: relative; margin-top: 2.25rem;
  overflow: hidden;
}
.t-track {
  display: flex; gap: 1.15rem;
  transition: transform .45s var(--ease);
}
.t-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: var(--card-pad);
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--surface);
}
@media (min-width: 800px) {
  .t-card { flex: 0 0 calc(50% - .575rem); }
}
.t-quote {
  font-size: 1.08rem; line-height: 1.6; color: var(--text-2);
  margin: 0 0 1.25rem; font-weight: 520;
}
.t-meta { display: flex; align-items: center; gap: .85rem; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-dim), rgba(30,215,96,.3));
  display: grid; place-items: center; font-weight: 800; color: var(--accent); font-size: .9rem;
}
.t-who strong { display: block; font-size: .95rem; }
.t-who span { font-size: .85rem; color: var(--text-muted); }
.t-example {
  display: inline-block; margin-top: .35rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-faint);
}
.t-nav {
  display: flex; gap: .6rem; margin-top: 1.25rem; align-items: center;
}
.t-nav button {
  width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--line);
  background: transparent; color: var(--text); cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, border-color .2s;
}
.t-nav button:hover { background: var(--accent-dim); border-color: rgba(30,215,96,.35); }
.t-nav button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.t-dots { display: flex; gap: .4rem; margin-left: .5rem; }
.t-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
  background: var(--line-strong); cursor: pointer;
}
.t-dots button.is-active { background: var(--accent); width: 22px; border-radius: 4px; }

/* Pricing */
.billing-toggle {
  display: inline-flex; padding: .3rem; border-radius: 16px; border: 1px solid var(--line);
  background: var(--surface); gap: .2rem; margin: 1.5rem 0 .5rem;
}
.billing-toggle button {
  border: 0; background: transparent; color: var(--text-muted); font: inherit; font-weight: 650;
  padding: .7rem 1.2rem; border-radius: 12px; cursor: pointer;
  transition: background .2s, color .2s;
}
.billing-toggle button.is-active {
  background: linear-gradient(135deg, var(--accent), #16b34a);
  color: #04120f;
  box-shadow: 0 6px 20px var(--accent-glow);
}
.save-badge {
  display: inline-block; margin-left: .4rem; font-size: .72rem; padding: .15rem .45rem;
  border-radius: 999px; background: rgba(4,18,15,.15); color: inherit; font-weight: 750;
}
.billing-toggle button:not(.is-active) .save-badge {
  background: var(--accent-dim); color: var(--accent);
}
.plan {
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  display: flex; flex-direction: column; gap: .9rem;
  position: relative;
  transition: transform .28s var(--ease), box-shadow .28s;
}
.plan:hover { transform: translateY(-4px); }
.plan.is-hot {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent),
    0 0 48px rgba(30, 215, 96, 0.18),
    var(--shadow);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30,215,96,.14), transparent 55%),
    var(--surface);
}
.plan-badge {
  position: absolute; top: -11px; right: 1.15rem;
  background: linear-gradient(135deg, var(--accent), #16b34a);
  color: #04120f;
  font-size: .72rem; font-weight: 780; padding: .3rem .7rem; border-radius: 999px;
  box-shadow: 0 6px 18px var(--accent-glow);
  letter-spacing: .02em;
}
.plan-ribbon {
  position: absolute; top: 18px; left: -8px;
  background: var(--accent); color: #04120f;
  font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 12px var(--accent-glow);
}
.plan h3 { margin: 0; font-size: 1.4rem; }
.plan-price {
  font-family: var(--font-display); font-size: 2.35rem; font-weight: 800;
  letter-spacing: -0.03em;
}
.plan-price span {
  font-size: .95rem; font-weight: 560; color: var(--text-muted); font-family: var(--font-body);
}
.plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.plan li {
  color: var(--text-muted); font-size: .95rem; padding-left: 1.3rem; position: relative;
}
.plan li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .5rem; height: .5rem; border-radius: 50%; background: var(--accent);
}
.plan .btn { margin-top: auto; width: 100%; }

/* Forms */
.form-shell {
  max-width: 460px; margin: 2rem auto; padding: 2rem 1.5rem;
  border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface);
}
.form-shell h1 { font-size: 1.85rem; }
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 650; font-size: .92rem; }
.field input, .field textarea, .field select, .faq-search input {
  width: 100%; padding: .85rem 1rem; border-radius: 14px;
  border: 1px solid var(--line); background: color-mix(in srgb, var(--ink) 70%, transparent);
  color: var(--text); font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus, .faq-search input:focus {
  outline: none; border-color: rgba(30,215,96,.45);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-msg { padding: .75rem 1rem; border-radius: 12px; margin-bottom: 1rem; font-size: .95rem; }
.form-msg.ok { background: var(--accent-dim); color: var(--accent); }
.form-msg.err { background: rgba(239, 107, 107, 0.15); color: var(--danger); }
.form-alt { color: var(--text-muted); font-size: .95rem; text-align: center; margin-top: 1rem; }

/* FAQ */
.faq-search { margin-bottom: 1.5rem; max-width: 480px; position: relative; }
.faq-search svg {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; stroke: var(--text-muted); pointer-events: none;
}
.faq-search input { padding-left: 2.75rem; }
.faq-item {
  border-bottom: 1px solid var(--line); padding: .15rem 0;
}
.faq-item[hidden] { display: none; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 0;
  font-weight: 700; font-family: var(--font-display);
  font-size: 1.08rem; letter-spacing: -0.02em;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-weight: 400; font-size: 1.35rem; color: var(--accent);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--text-muted); padding-bottom: 1.15rem; font-size: 1rem; }
.faq-empty { color: var(--text-muted); padding: 1rem 0; display: none; }
.faq-empty.is-visible { display: block; }

/* Docs / blog */
.doc-card, .post-card {
  padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-card);
  background: var(--surface);
  transition: transform .25s var(--ease), border-color .25s;
}
.doc-card:hover, .post-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}
.doc-card h3, .post-card h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.doc-card p, .post-card p { color: var(--text-muted); margin: 0; font-size: .98rem; }
.post-meta { color: var(--text-muted); font-size: .85rem; margin-bottom: .5rem; }
.prose { max-width: 720px; }
.prose h2 { margin-top: 2rem; font-size: 1.55rem; }
.prose h3 { margin-top: 1.4rem; font-size: 1.2rem; }
.prose ul { padding-left: 1.2rem; color: var(--text-muted); }
.prose code {
  font-size: .9em; padding: .1em .35em; border-radius: 6px;
  background: var(--accent-dim); color: var(--accent);
}

/* Dashboard */
.dash {
  max-width: var(--max); margin: 0 auto; padding: 2rem 1.5rem 4rem;
  display: grid; gap: 1.25rem;
}
.dash-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: end; }
.dash-grid { display: grid; gap: 1rem; }
.dash-panel {
  padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface);
}
.dash-panel h2 { font-size: 1.2rem; margin-bottom: .8rem; }
.table-list { display: grid; gap: .55rem; }
.table-row {
  display: grid; grid-template-columns: 1fr auto; gap: .5rem; padding: .75rem .9rem;
  border: 1px solid var(--line); border-radius: 12px; font-size: .95rem;
}
.muted { color: var(--text-muted); }
.page-hero {
  padding: 4rem 1.5rem 1.75rem; max-width: var(--max); margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  max-width: 18ch; font-weight: 800;
}
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Footer */
.site-footer {
  position: relative; margin-top: 2rem; border-top: 1px solid var(--line);
  padding: 4.5rem 1.5rem 1.75rem; overflow: hidden;
  background: color-mix(in srgb, var(--ink-2) 55%, var(--ink));
}
.footer-glow {
  position: absolute; inset: auto 8% -45% 8%; height: 260px;
  background: radial-gradient(ellipse, rgba(30, 215, 96, 0.16), transparent 70%);
  pointer-events: none;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 2.5rem;
}
.footer-tag { color: var(--text-muted); margin: .85rem 0; font-size: 1.02rem; }
.footer-isa { color: var(--text-muted); font-size: .95rem; max-width: 44ch; line-height: 1.6; }
.footer-isa a { font-weight: 650; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.footer-cols h3, .footer-news h3 {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: .95rem; font-weight: 750;
}
.footer-cols a {
  display: block; color: var(--text-2); padding: .35rem 0; font-size: .95rem;
  transition: color .2s, padding-left .2s;
}
.footer-cols a:hover { color: var(--accent); padding-left: .2rem; }
.news-form { display: flex; flex-wrap: wrap; gap: .55rem; margin: .9rem 0; }
.news-form input {
  flex: 1; min-width: 180px; padding: .85rem 1rem; border-radius: 14px;
  border: 1px solid var(--line); background: var(--surface); color: var(--text); font: inherit;
}
.news-note { font-size: .82rem; color: var(--text-faint); margin: 0; }
.footer-bottom {
  max-width: var(--max); margin: 3rem auto 0; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem;
  color: var(--text-muted); font-size: .9rem;
}
.footer-bottom p { margin: 0; }
.footer-links-inline { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; }
.footer-links-inline a { color: var(--text-muted); }
.footer-links-inline a:hover { color: var(--accent); }

.cta-band {
  margin: 1rem auto 0; max-width: var(--max); padding: 2.75rem 1.75rem;
  border-radius: calc(var(--radius-card) + 4px);
  background:
    radial-gradient(ellipse at 85% 15%, rgba(30, 215, 96, 0.28), transparent 50%),
    linear-gradient(135deg, var(--ink-4), var(--ink-2));
  border: 1px solid var(--line);
  display: grid; gap: 1.25rem; align-items: center;
}
.cta-band h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.15rem); max-width: 18ch; }
.legal-nav { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin: 1rem 0 2rem; }
.legal-nav a { color: var(--text-muted); font-size: .9rem; }
.legal-nav a.is-active { color: var(--accent); }

/* Differentiator callout */
.diff-band {
  padding: var(--card-pad);
  border-radius: var(--radius-card);
  border: 1px solid rgba(30,215,96,.25);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(30,215,96,.12), transparent 55%),
    var(--surface);
  display: grid; gap: 1rem;
}
@media (min-width: 800px) {
  .diff-band { grid-template-columns: 1.2fr .8fr; align-items: center; gap: 2rem; }
}
.diff-band h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin: 0 0 .5rem; }
.diff-band p { margin: 0; color: var(--text-muted); }

.hide-sm { display: none !important; }

@media (max-width: 539px) {
  .header-actions > a.btn-primary { display: none; }
  .brand-word { font-size: 1.12rem; }
  .header-inner { padding: 0 1rem; gap: .55rem; }
  .hero-inner { padding: 3rem 1rem 2.5rem; }
  .hero-visual { min-height: 300px; }
  .hero-stage { aspect-ratio: 4 / 3.6; }
  .mock-phone { inset: 6% 8% 8% 8%; }
  .float-card.fc-proxy { right: 2%; top: 2%; min-width: 120px; padding: .65rem .75rem; }
  .float-card.fc-iso { left: 2%; bottom: 4%; }
  .country-chips { display: none; }
  .hero-ctas .btn { min-height: 48px; flex: 1 1 auto; }
  .page-hero { padding: 2.75rem 1rem 1.25rem; }
  .section { padding: 4.5rem 1rem; }
  --section-y: 4.5rem;
  .billing-toggle { width: 100%; max-width: 100%; }
  .billing-toggle button { flex: 1; text-align: center; padding: .65rem .7rem; }
  .form-shell { margin: 1.25rem 1rem; padding: 1.5rem 1.15rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .nav-drawer a { min-height: 52px; }
}

@media (min-width: 720px) {
  .hide-sm { display: inline-flex !important; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .use-grid, .doc-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
  .dash-grid { grid-template-columns: 1.2fr .8fr; }
  .cta-band { grid-template-columns: 1fr auto; padding: 3rem 2.5rem; }
}
@media (min-width: 980px) {
  .nav-desktop { display: flex; }
  .nav-burger, .nav-drawer { display: none !important; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1.15fr 2fr 1.1fr; align-items: start; }
}
@media (min-width: 1280px) {
  .plan-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .plan { padding: 1.65rem 1.15rem; }
  .plan-price { font-size: 1.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
