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

:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #121212;
  --bg4: #181818;
  --surface: rgba(255,255,255,0.03);
  --surface2: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.10);
  --primary: #f2f2f2;
  --text: #f2f2f2;
  --muted: #888;
  --muted2: #555;
  --accent: #e53e3e;
  --warning: #f6c90e;
  --danger: #e53e3e;
  --blue: #60a5fa;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --radius-pill: 999px;
  --nav-h: 58px;
  --ease: 0.18s ease;
  --max-w: 1520px;

  --mono: 'Space Mono', ui-monospace, monospace;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
img { display: block; max-width: 100%; }
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}
footer { margin-top: auto; }

.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

.fog {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 15% -5%, rgba(96,165,250,0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 10%, rgba(229,62,62,0.08), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 50% 110%, rgba(255,255,255,0.03), transparent 60%);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

main, header, footer { position: relative; z-index: 2; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(8,8,8,0.72);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 30px; height: 30px; filter: drop-shadow(0 0 10px rgba(96,165,250,0.35)); }
.brand span { font-family: var(--mono); font-weight: 700; font-size: 15px; letter-spacing: 0.02em; }
.brand span em { font-style: normal; color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color var(--ease);
  font-family: var(--mono);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-family: var(--mono);
  font-size: 12.5px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border2);
  color: var(--text);
  white-space: nowrap;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.nav-cta:hover { border-color: var(--blue); background: var(--surface2); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(14px);
  padding: 28px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 26px; }
.mobile-menu-links a {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--text);
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { width: 100%; justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(96,165,250,0.08);
  border: 1px solid rgba(96,165,250,0.18);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero {
  padding: 92px 0 60px;
  position: relative;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 20px 0 20px;
}
.hero h1 .cut { color: var(--accent); }
.hero h1 .strike { color: var(--muted2); text-decoration: line-through; text-decoration-color: var(--accent); text-decoration-thickness: 3px; }
.hero p.lead {
  font-size: 17px;
  line-height: 1.65;
  color: #bdbdbd;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(229,62,62,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -6px rgba(229,62,62,0.7); }
.btn-ghost {
  border: 1px solid var(--border2);
  color: var(--text);
  background: var(--surface);
}
.btn-ghost:hover { border-color: var(--blue); background: var(--surface2); transform: translateY(-2px); }

.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-trust div { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); font-family: var(--mono); }
.hero-trust svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .halo {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(96,165,250,0.16), transparent 70%);
  filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-visual img {
  position: relative;
  width: min(360px, 80%);
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 14px 0;
  overflow: hidden;
}
.strip .track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll 26s linear infinite;
}
.strip span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.strip span em { color: var(--muted); font-style: normal; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-family: var(--mono);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-head p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  background: var(--bg2);
  padding: 32px 26px;
  position: relative;
  transition: background var(--ease);
}
.step:hover { background: var(--bg3); }
.step .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
  border: 1px solid rgba(96,165,250,0.3);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
}
.step h3 { font-family: var(--mono); font-size: 15.5px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.step-arrow {
  position: absolute; top: 32px; right: -1px;
  color: var(--muted2); font-size: 14px;
  display: none;
}

.flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.flow-node {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 18px 12px;
}
.flow-node .icon {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border2);
  background: var(--surface);
}
.flow-node .icon svg { width: 20px; height: 20px; color: var(--blue); }
.flow-node.warn .icon { border-color: rgba(246,201,14,0.4); }
.flow-node.warn .icon svg { color: var(--warning); }
.flow-node.danger .icon { border-color: rgba(229,62,62,0.4); }
.flow-node.danger .icon svg { color: var(--accent); }
.flow-node h4 { font-family: var(--mono); font-size: 13px; margin-bottom: 6px; }
.flow-node p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.flow-sep { display: flex; align-items: center; color: var(--muted2); padding: 0 4px; font-size: 20px; }

.honest {
  background: linear-gradient(160deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.honest::before {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(246,201,14,0.10), transparent 70%);
}
.honest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
  position: relative;
}
.honest-card {
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid var(--border2);
}
.honest-card.ok { background: rgba(96,165,250,0.06); border-color: rgba(96,165,250,0.22); }
.honest-card.risk { background: rgba(229,62,62,0.06); border-color: rgba(229,62,62,0.22); }
.honest-card .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 14px;
}
.honest-card.ok .tag { background: rgba(96,165,250,0.15); color: var(--blue); }
.honest-card.risk .tag { background: rgba(229,62,62,0.15); color: var(--accent); }
.honest-card h4 { font-family: var(--mono); font-size: 15px; margin-bottom: 10px; line-height: 1.4; }
.honest-card p { font-size: 13.5px; color: #c7c7c7; line-height: 1.65; }
.honest-note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.honest-note strong { color: var(--text); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}
.feature:hover { transform: translateY(-3px); border-color: var(--border2); background: var(--surface2); }
.feature .icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-xs);
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature .icon svg { width: 19px; height: 19px; color: var(--blue); }
.feature h3 { font-family: var(--mono); font-size: 15px; margin-bottom: 10px; }
.feature p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--mono);
  font-size: 14.5px;
  text-align: left;
  color: var(--text);
}
.faq-q .plus {
  font-size: 18px;
  color: var(--muted);
  transition: transform var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-q .plus { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  padding: 0 4px 22px;
  font-size: 13.8px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}

.cta-final {
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 500px 260px at 50% 0%, rgba(229,62,62,0.10), transparent 70%),
    var(--bg2);
  position: relative;
}
.cta-final h2 { font-family: var(--mono); font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 16px; }
.cta-final p { color: var(--muted); max-width: 480px; margin: 0 auto 30px; font-size: 15px; line-height: 1.6; }
.cta-final .btn-primary { font-size: 14.5px; padding: 16px 30px; }

footer {
  border-top: 1px solid var(--border);
  padding: 46px 0 30px;
  background: var(--bg2);
}
.foot-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.foot-brand { max-width: 320px; }
.foot-brand .brand { margin-bottom: 12px; }
.foot-brand p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.foot-links { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13.5px; color: #ccc; margin-bottom: 10px; transition: color var(--ease); }
.foot-col a:hover { color: var(--blue); }
.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted2);
  font-family: var(--mono);
}

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 10px; }
  .hero-visual img { width: 220px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .honest-grid { grid-template-columns: 1fr; }
  .honest { padding: 32px; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .hero-visual { display: none; }
  .hero { padding: 48px 0 40px; }
  .hero p.lead { font-size: 15.5px; }
  .hero-trust { flex-direction: column; gap: 12px; }
  section { padding: 60px 0; }
  .section-head h2 { font-size: 26px; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .flow { flex-direction: column; padding: 24px; }
  .flow-sep { transform: rotate(90deg); padding: 6px 0; align-self: center; }
  .honest { padding: 24px; }
  .honest-grid { grid-template-columns: 1fr; }
  .cta-final { padding: 44px 24px; }
  .foot-top { flex-direction: column; gap: 30px; }
  .foot-links { gap: 30px; }
  .foot-bottom { flex-direction: column; text-align: center; }
}