﻿:root {
  --bg: #031d1b;
  --bg-deep: #06121c;
  --panel: #0e1828;
  --panel-2: #112336;
  --ink: #edf5ff;
  --muted: #9fb0c5;
  --soft: #6f839b;
  --line: rgba(160, 186, 220, 0.18);
  --line-strong: rgba(78, 165, 255, 0.38);
  --mint: #35d2b8;
  --blue: #4ea5ff;
  --gold: #f6c34f;
  --danger: #ff6a7a;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 5%, rgba(78, 165, 255, 0.24), transparent 34rem),
    radial-gradient(circle at 6% 28%, rgba(53, 210, 184, 0.15), transparent 28rem),
    linear-gradient(145deg, #031d1b 0%, #07131f 58%, #050914 100%);
  font-family: "Aptos", "Segoe UI Variable Display", "Bahnschrift", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 70%);
}

img { max-width: 100%; display: block; }

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(3, 29, 27, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 22px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 14px 30px rgba(0,0,0,0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: linear-gradient(135deg, var(--mint), var(--blue));
  color: #031019;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(53, 210, 184, 0.18);
}

.button.secondary {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
}

.hero {
  padding: 86px 0 72px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 24px rgba(53, 210, 184, 0.9);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 24px 0 22px;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Bahnschrift", sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-copy {
  max-width: 670px;
  color: #c0ccdc;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
}

.proof-chip {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.phone-stage {
  position: relative;
  min-height: 650px;
}

.phone-card {
  position: absolute;
  right: 0;
  top: 0;
  width: min(360px, 86vw);
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(16, 34, 53, 0.88), rgba(6, 18, 28, 0.95));
  border: 1px solid rgba(150, 190, 235, 0.18);
  box-shadow: var(--shadow);
}

.phone-card.secondary {
  right: 210px;
  top: 86px;
  transform: rotate(-4deg) scale(0.9);
  opacity: 0.72;
}

.phone-card img { border-radius: 30px; }

.float-note {
  position: absolute;
  left: 0;
  bottom: 86px;
  max-width: 330px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(12, 25, 40, 0.92);
  border: 1px solid rgba(53, 210, 184, 0.26);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}

.float-note strong { color: var(--mint); display: block; margin-bottom: 5px; }
.float-note span { color: var(--muted); font-weight: 700; }

section { padding: 82px 0; position: relative; }

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.kicker {
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.section-head p, .lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tile {
  min-height: 260px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(17,35,54,0.9), rgba(12,23,36,0.92));
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(0,0,0,0.18);
}

.tile .num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #031019;
  font-weight: 950;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  margin-bottom: 24px;
}

.tile h3 { font-size: 24px; letter-spacing: -0.03em; margin-bottom: 10px; }
.tile p { color: var(--muted); margin-bottom: 0; }

.workflow {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

.workflow-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: rgba(8, 20, 33, 0.84);
  padding: 26px;
  box-shadow: var(--shadow);
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step b { color: var(--ink); font-size: 17px; }
.step p { color: var(--muted); margin: 5px 0 0; }
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(78, 165, 255, 0.12);
  border: 1px solid rgba(78, 165, 255, 0.24);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 950;
}

.screenshot-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.screenshot-stack img {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.trust-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(8, 24, 35, 0.96), rgba(14, 24, 40, 0.92));
  border: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  box-shadow: inset 0 0 0 7px rgba(3, 29, 27, 0.58);
}

.cta {
  margin: 70px 0 30px;
  padding: 44px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 85% 12%, rgba(78,165,255,0.3), transparent 24rem),
    linear-gradient(135deg, rgba(16, 35, 55, 0.96), rgba(6, 27, 25, 0.95));
  border: 1px solid rgba(53, 210, 184, 0.22);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.cta p { color: var(--muted); margin-bottom: 0; font-size: 18px; }

.footer {
  padding: 36px 0 54px;
  color: var(--soft);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer a { color: var(--muted); font-weight: 800; }
.footer a:hover { color: var(--ink); }

.legal-page {
  padding: 72px 0;
}

.legal-shell {
  max-width: 900px;
  padding: 34px;
  border-radius: 30px;
  background: rgba(12, 23, 36, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-shell h1 { font-size: clamp(40px, 6vw, 68px); }
.legal-shell h2 { font-size: 28px; margin-top: 34px; }
.legal-shell p, .legal-shell li { color: var(--muted); }
.legal-shell a { color: var(--mint); font-weight: 900; }
.notice {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(246, 195, 79, 0.38);
  background: rgba(246, 195, 79, 0.08);
  color: #ffe2a1;
}

.reveal { animation: rise 700ms ease both; }
.reveal:nth-child(2) { animation-delay: 80ms; }
.reveal:nth-child(3) { animation-delay: 160ms; }

@keyframes rise {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

@media (max-width: 960px) {
  .hero-grid, .workflow, .split, .cta { grid-template-columns: 1fr; }
  .phone-stage { min-height: 560px; }
  .phone-card { right: 5%; }
  .phone-card.secondary { right: auto; left: 0; top: 60px; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-inner { min-height: 68px; }
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 56px; }
  .hero-proof { grid-template-columns: 1fr; }
  .phone-stage { min-height: 500px; }
  .phone-card { width: 280px; }
  .phone-card.secondary { width: 230px; top: 76px; }
  .float-note { left: 12px; right: 12px; bottom: 24px; }
  .screenshot-stack { grid-template-columns: 1fr; }
  .cta { padding: 28px; }
}
