/* ── Tokens ───────────────────────────────────────────── */
:root {
  --bg: #040C12;
  --bg2: #07131C;
  --surface: rgba(8, 22, 34, 0.88);
  --surface2: rgba(12, 28, 42, 0.55);
  --border: rgba(0, 255, 135, 0.10);
  --bsoft: rgba(255, 255, 255, 0.06);
  --text: #DFF0F7;
  --muted: #A1B6C4;
  --muted2: #7A96A8;
  --green: #00FF87;
  --cyan: #00D4FF;
  --danger: #FF4D6A;
  --warn: #FFAA00;
  --f-d: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji';
  --f-b: 'Inter', system-ui, -apple-system, sans-serif;
  --f-m: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Monaco, Consolas, 'JetBrains Mono', monospace;
  --rx: 24px;
  --rl: 16px;
  --rm: 10px;
  --max: 1160px;
  /* Dynamic Tokens */
  --grade-color: var(--green);
  --grade-glow: rgba(0, 255, 135, 0.3);
  --imp-color: var(--muted);
  --imp-bg: rgba(154, 167, 182, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: 0;
}

/* ── Grid BG ──────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 135, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 135, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 212, 255, 0.06), transparent),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(0, 255, 135, 0.04), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(0, 80, 160, 0.05), transparent);
  pointer-events: none;
  z-index: 0;
}

/* ── Layout ───────────────────────────────────────────── */
.wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, var(--max));
  margin-inline: auto;
}

/* ── Nav ──────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 13px 0;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bsoft);
  background: rgba(4, 12, 18, 0.82);
}

.nav-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 1.04rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #030F09;
  box-shadow: 0 0 24px rgba(0, 255, 135, 0.2);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 19px;
  height: 19px;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-badge {
  display: none;
  font-family: var(--f-m);
  font-size: 0.71rem;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 135, 0.18);
  background: rgba(0, 255, 135, 0.06);
  color: var(--green);
}

@media(min-width:600px) {
  .nav-badge {
    display: block;
  }
}

.lang-btn {
  font-family: var(--f-m);
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--bsoft);
  background: transparent;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}

.lang-btn:hover {
  border-color: rgba(0, 255, 135, 0.25);
  color: var(--green);
}

.nav-cta {
  font-family: var(--f-d);
  font-weight: 700;
  font-size: 0.87rem;
  padding: 8px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), #00DC74);
  color: #030F09;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 4px 18px rgba(0, 255, 135, 0.2);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(0, 255, 135, 0.3);
}

/* ── Buttons ──────────────────────────────────────────── */
.btn-fill {
  font-family: var(--f-d);
  font-weight: 700;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green), #00DC74);
  color: #030F09;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 6px 22px rgba(0, 255, 135, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-fill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 255, 135, 0.3);
}

.btn-ghost {
  font-family: var(--f-d);
  font-weight: 600;
  border-radius: 14px;
  border: 1px solid var(--bsoft);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.btn-ghost:hover {
  border-color: rgba(0, 255, 135, 0.28);
  color: var(--green);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  padding: 60px 0 20px;
}

.hero .hero-tag {
  margin-bottom: 12px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-m);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 135, 0.2);
  background: rgba(0, 255, 135, 0.05);
  animation: fadeUp .45s ease both;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 135, .6);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 255, 135, 0);
  }
}

h1.hero-h1 {
  font-family: var(--f-d);
  font-weight: 800;
  font-size: clamp(2.4rem, 9vw, 5.2rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
  margin-top: 20px;
  max-width: 14ch;
  animation: fadeUp .5s .08s ease both;
}

h1.hero-h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(.98rem, 2.5vw, 1.12rem);
  font-weight: 300;
  max-width: 54ch;
  animation: fadeUp .5s .16s ease both;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 500;
}

/* ── Scan widget ──────────────────────────────────────── */
.scan-widget {
  margin-top: 30px;
  padding: 20px;
  border-radius: var(--rx);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: fadeUp .5s .24s ease both;
}

.scan-lbl {
  font-family: var(--f-m);
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 11px;
}

.scan-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media(min-width:540px) {
  .scan-row {
    flex-direction: row;
    align-items: center;
  }
}

.scan-inp-wrap {
  position: relative;
  flex: 1;
}

.scan-inp-wrap svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted);
  pointer-events: none;
}

.scan-inp {
  width: 100%;
  height: 50px;
  padding: 0 14px 0 40px;
  border-radius: var(--rl);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--f-m);
  font-size: 0.88rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.scan-inp::placeholder {
  color: var(--muted2);
}

.scan-inp:focus {
  border-color: rgba(0, 255, 135, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 255, 135, 0.08);
}

.scan-submit {
  height: 50px;
  padding: 0 22px;
  border-radius: var(--rl);
  font-family: var(--f-d);
  font-weight: 700;
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--green), #00DC74);
  color: #030F09;
  border: 0;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 8px 24px rgba(0, 255, 135, 0.2);
}

.scan-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 255, 135, 0.3);
}

.scan-submit svg {
  width: 15px;
  height: 15px;
}

.scan-chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-m);
  font-size: 0.71rem;
  color: var(--muted);
  letter-spacing: .04em;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cd-g {
  background: var(--green);
  box-shadow: 0 0 6px rgba(0, 255, 135, .5);
}

.cd-c {
  background: var(--cyan);
  box-shadow: 0 0 6px rgba(0, 212, 255, .5);
}

.cd-w {
  background: var(--warn);
  box-shadow: 0 0 6px rgba(255, 170, 0, .5);
}

.scan-err {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--rm);
  border: 1px solid rgba(255, 77, 106, 0.25);
  background: rgba(255, 77, 106, 0.06);
  font-family: var(--f-m);
  font-size: 0.78rem;
  color: var(--danger);
}

/* ── Ticker ───────────────────────────────────────────── */
.ticker {
  margin-top: 32px;
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid var(--bsoft);
  border-bottom: 1px solid var(--bsoft);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: tick 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.tick-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-m);
  font-size: 0.76rem;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: .03em;
}

.tick-item strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Results ──────────────────────────────────────────── */
.results-hero {
  padding: 48px 0 36px;
  display: grid;
  gap: 28px;
}

@media(min-width:700px) {
  .results-hero {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}

.grade-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.grade-badge {
  font-family: var(--f-d);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green);
  text-shadow: 0 0 30px rgba(0, 255, 135, 0.3);
}

.grade-badge.gb-Ap, .grade-badge.gb-A { color: var(--green); text-shadow: 0 0 30px rgba(0, 255, 135, 0.3); }
.grade-badge.gb-B { color: var(--cyan); text-shadow: 0 0 30px rgba(0, 212, 255, 0.25); }
.grade-badge.gb-C { color: var(--warn); text-shadow: 0 0 30px rgba(255, 170, 0, 0.25); }
.grade-badge.gb-D { color: #FF7700; text-shadow: 0 0 30px rgba(255, 119, 0, 0.25); }
.grade-badge.gb-F { color: var(--danger); text-shadow: 0 0 30px rgba(255, 77, 106, 0.25); }

.grade-sub {
  font-family: var(--f-m);
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.results-meta h2 {
  font-family: var(--f-d);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.results-url {
  font-family: var(--f-m);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 6px 0 14px;
  word-break: break-all;
}

.results-url a {
  color: var(--cyan);
}

.grade-desc {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 300;
  max-width: 50ch;
  margin-bottom: 16px;
}

.results-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rbadge {
  font-family: var(--f-m);
  font-size: 0.72rem;
  letter-spacing: .05em;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid;
}

.rbadge-ok {
  border-color: rgba(0, 255, 135, .25);
  background: rgba(0, 255, 135, .06);
  color: var(--green);
}

.rbadge-ko {
  border-color: rgba(255, 77, 106, .25);
  background: rgba(255, 77, 106, .06);
  color: var(--danger);
}

.rbadge-neu {
  border-color: rgba(0, 212, 255, .2);
  background: rgba(0, 212, 255, .05);
  color: var(--cyan);
}

.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn-sm {
  height: 38px;
  padding: 0 16px;
  font-size: .83rem;
  border-radius: 10px;
}

/* ── Share box ────────────────────────────────────────── */
.share-box {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: var(--rm);
  border: 1px solid var(--bsoft);
  background: var(--surface2);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.share-lbl {
  font-family: var(--f-m);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: .06em;
  white-space: nowrap;
}

.share-url {
  flex: 1;
  min-width: 0;
  font-family: var(--f-m);
  font-size: 0.72rem;
  color: var(--cyan);
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-copy {
  font-family: var(--f-m);
  font-size: 0.7rem;
  padding: 5px 11px;
  border-radius: 7px;
  border: 1px solid var(--bsoft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.share-copy:hover {
  color: var(--green);
  border-color: rgba(0, 255, 135, .25);
}

/* ── Header checks ────────────────────────────────────── */
.section-tag {
  font-family: var(--f-m);
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  padding: 5px 12px;
  border: 1px solid rgba(0, 255, 135, .18);
  border-radius: 999px;
  background: rgba(0, 255, 135, .05);
  display: inline-block;
  margin-bottom: 16px;
}

.section-h {
  font-family: var(--f-d);
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.section-p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 300;
  font-size: 1rem;
  max-width: 52ch;
}

.checks-grid {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

@media(min-width:700px) {
  .checks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width:1000px) {
  .checks-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.check-card {
  border-radius: var(--rl);
  border: 1px solid var(--bsoft);
  background: var(--surface2);
  padding: 20px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.check-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
}

.check-card.status-ok {
  border-color: rgba(0, 255, 135, 0.15);
}

.check-card.status-ok:hover {
  border-color: rgba(0, 255, 135, 0.28);
}

.check-card.status-warn {
  border-color: rgba(255, 170, 0, 0.15);
}

.check-card.status-warn:hover {
  border-color: rgba(255, 170, 0, 0.28);
}

.check-card.status-miss {
  border-color: rgba(255, 77, 106, 0.12);
}

.check-card.status-miss:hover {
  border-color: rgba(255, 77, 106, 0.25);
}

.check-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.check-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.imp-badge {
  font-family: var(--f-m);
  font-size: 0.65rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.imp-badge.ib-critical { color: var(--danger); background: rgba(255, 77, 106, 0.1); border-color: rgba(255, 77, 106, 0.2); }
.imp-badge.ib-high     { color: var(--warn);   background: rgba(255, 170, 0, 0.1); border-color: rgba(255, 170, 0, 0.2); }
.imp-badge.ib-medium   { color: var(--cyan);   background: rgba(0, 212, 255, 0.1); border-color: rgba(0, 212, 255, 0.2); }
.imp-badge.ib-low      { color: var(--muted);  background: rgba(154, 167, 182, 0.1); border-color: rgba(154, 167, 182, 0.2); }

.status-pill {
  font-family: var(--f-m);
  font-size: 0.65rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid;
}

.status-ok {
  color: var(--green);
  border-color: rgba(0, 255, 135, .3);
  background: rgba(0, 255, 135, .06);
}

.status-warn {
  color: var(--warn);
  border-color: rgba(255, 170, 0, .3);
  background: rgba(255, 170, 0, .06);
}

.status-miss {
  color: var(--danger);
  border-color: rgba(255, 77, 106, .3);
  background: rgba(255, 77, 106, .06);
}

/* ── Utilities ───────────────────────────────────────── */
.m40 { margin-bottom: 40px; }
.p48t { padding-top: 48px; }

.tick-sep { color: var(--muted2); margin: 0 4px; }

.cta-section { padding: 60px 0 90px; }
.cta-acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.cta-acts .btn-fill, .cta-acts .btn-ghost { height: 52px; padding: 0 24px; font-size: 0.95rem; }

.legal-box { margin-top: 40px; }
.legal-s { margin-bottom: 32px; }
.legal-s h2 { color: var(--green); font-size: 1.4rem; margin-bottom: 12px; }

.score-ring-circle { transition: stroke-dashoffset 1.2s cubic-bezier(.4,0,.2,1); }

.check-name {
  font-family: var(--f-d);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.check-score {
  font-family: var(--f-m);
  font-size: .7rem;
  color: var(--muted);
}

.check-value {
  font-family: var(--f-m);
  font-size: .72rem;
  color: var(--cyan);
  background: rgba(0, 212, 255, .05);
  border: 1px solid rgba(0, 212, 255, .12);
  border-radius: 7px;
  padding: 6px 10px;
  margin-bottom: 14px;
  word-break: break-all;
  line-height: 1.5;
}

.check-value-lbl {
  color: var(--muted);
  font-size: .68rem;
  display: block;
  margin-bottom: 2px;
}

.check-section {
  margin-bottom: 10px;
}

.cs-lbl {
  font-family: var(--f-m);
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.cs-lbl.risk {
  color: var(--warn);
}

.cs-lbl.benefit {
  color: var(--green);
}

.cs-lbl.tip {
  color: var(--cyan);
}

.cs-text {
  font-size: .84rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}

.cs-tip {
  font-family: var(--f-m);
  font-size: .76rem;
  color: var(--text);
  background: rgba(0, 212, 255, .05);
  border-left: 2px solid var(--cyan);
  padding: 7px 10px;
  border-radius: 0 7px 7px 0;
  line-height: 1.5;
}

.docs-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--f-m);
  font-size: .7rem;
  color: var(--muted2);
  letter-spacing: .04em;
  transition: color .2s;
}

.docs-link:hover {
  color: var(--cyan);
}

.check-divider {
  height: 1px;
  background: var(--bsoft);
  margin: 10px 0;
}

/* ── Sections ─────────────────────────────────────────── */
.section {
  padding: 72px 0;
}

.section-0 {
  padding-top: 0;
}

/* Steps */
.steps {
  margin-top: 42px;
  display: grid;
  gap: 2px;
}

@media(min-width:768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  padding: 26px 22px;
  border: 1px solid var(--bsoft);
  background: var(--surface2);
  transition: background .2s, border-color .2s;
  position: relative;
}

.step:first-child {
  border-radius: var(--rx) var(--rx) 0 0;
}

.step:last-child {
  border-radius: 0 0 var(--rx) var(--rx);
}

@media(min-width:768px) {
  .step:first-child {
    border-radius: var(--rx) 0 0 var(--rx);
  }

  .step:last-child {
    border-radius: 0 var(--rx) var(--rx) 0;
  }

  .step:not(:last-child) {
    border-right: none;
  }
}

.step:hover {
  background: rgba(0, 255, 135, 0.025);
  border-color: rgba(0, 255, 135, .12);
}

.step-num {
  font-family: var(--f-m);
  font-size: .69rem;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 14px;
}

.step-ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-ico svg {
  width: 20px;
  height: 20px;
}

.step-ico-g {
  background: rgba(0, 255, 135, .08);
  color: var(--green);
}

.step-ico-c {
  background: rgba(0, 212, 255, .08);
  color: var(--cyan);
}

.step-ico-y {
  background: rgba(255, 170, 0, .08);
  color: var(--warn);
}

.step h3 {
  font-family: var(--f-d);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.55;
}

/* Features */
.feats {
  margin-top: 42px;
  display: grid;
  gap: 12px;
}

@media(min-width:580px) {
  .feats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:900px) {
  .feats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feat {
  padding: 22px;
  border-radius: var(--rl);
  border: 1px solid var(--bsoft);
  background: var(--surface2);
  backdrop-filter: blur(10px);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.feat:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 135, .16);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .25);
}

.feat-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feat-ico svg {
  width: 19px;
  height: 19px;
}

.fi-g {
  background: rgba(0, 255, 135, .08);
  color: var(--green);
}

.fi-c {
  background: rgba(0, 212, 255, .08);
  color: var(--cyan);
}

.fi-r {
  background: rgba(255, 77, 106, .08);
  color: var(--danger);
}

.fi-y {
  background: rgba(255, 170, 0, .08);
  color: var(--warn);
}

.fi-b {
  background: rgba(100, 149, 255, .08);
  color: #6495FF;
}

.fi-p {
  background: rgba(200, 100, 255, .08);
  color: #C864FF;
}

.feat h3 {
  font-family: var(--f-d);
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feat p {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.55;
}

/* Trust */
.trust {
  padding: 34px 0;
  border-top: 1px solid var(--bsoft);
  border-bottom: 1px solid var(--bsoft);
}

.trust-lbl {
  text-align: center;
  font-family: var(--f-m);
  font-size: .71rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 22px;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 32px;
}

.trust-item {
  font-family: var(--f-m);
  font-size: .78rem;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .04em;
  transition: color .2s;
}

.trust-item:hover {
  color: var(--muted);
}

.trust-item svg {
  width: 15px;
  height: 15px;
}

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 42px;
}

@media(min-width:600px) {
  .metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric {
  padding: 16px;
  border-radius: var(--rl);
  border: 1px solid var(--bsoft);
  background: var(--surface2);
  backdrop-filter: blur(10px);
  transition: border-color .2s, transform .2s;
}

.metric:hover {
  border-color: rgba(0, 255, 135, .14);
  transform: translateY(-2px);
}

.metric-n {
  font-family: var(--f-d);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, .65));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-u {
  font-family: var(--f-m);
  font-size: .69rem;
  color: #00CC6A;
  letter-spacing: .06em;
  margin-top: 2px;
}

.metric-l {
  margin-top: 5px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* CTA box */
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--rx);
  border: 1px solid rgba(0, 255, 135, .14);
  background: linear-gradient(140deg, rgba(0, 28, 18, .9), rgba(4, 12, 18, .95));
  padding: 52px 28px;
  text-align: center;
  margin: 0;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0, 255, 135, .09), transparent),
    radial-gradient(ellipse 40% 30% at 90% 100%, rgba(0, 212, 255, .05), transparent);
}

.cta-inner {
  position: relative;
}

.cta-box h2 {
  font-family: var(--f-d);
  font-weight: 800;
  font-size: clamp(1.8rem, 5.5vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 auto 16px;
}

.cta-box h2 span {
  background: linear-gradient(90deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-box p {
  color: var(--muted);
  font-size: .98rem;
  font-weight: 300;
  max-width: 44ch;
  margin: 0 auto 30px;
}

.cta-acts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.cta-fine {
  margin-top: 18px;
  font-family: var(--f-m);
  font-size: .7rem;
  color: var(--muted2);
  letter-spacing: .04em;
}

/* Footer */
footer {
  padding: 26px 0;
  border-top: 1px solid var(--bsoft);
}

.foot-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-copy {
  font-family: var(--f-m);
  font-size: .7rem;
  color: var(--muted2);
  letter-spacing: .03em;
}

.foot-links {
  display: flex;
  gap: 18px;
}

.foot-links a {
  font-family: var(--f-m);
  font-size: .7rem;
  color: var(--muted2);
  letter-spacing: .03em;
  transition: color .2s;
}

.foot-links a:hover {
  color: var(--green);
}

/* Loading overlay */
#loading {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(4, 12, 18, .92);
  backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#loading.active {
  display: flex;
}

.loading-ring {
  width: 60px;
  height: 60px;
  position: relative;
}

.loading-ring svg {
  width: 100%;
  height: 100%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-family: var(--f-m);
  font-size: .84rem;
  color: var(--muted);
  letter-spacing: .08em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
