:root {
  color-scheme: dark;
  --ink: #0a0a0b;
  --ink-soft: #14141a;
  --ink-raised: #1c1c24;
  --border: #2a2a35;
  --text: #f4f4f5;
  --text-dim: #a1a1aa;
  --orange: #ff6b1a;
  --orange-soft: #ff8a4a;
  --amber: #ffb020;
  --cyan: #18d4ff;
  --teal: #0e7490;
  --green: #4ade80;
  --red: #f87171;
  --radius: 10px;
  --header-h: 72px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; }

.mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.page {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 8%, rgba(24, 212, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 12% 88%, rgba(255, 107, 26, 0.12), transparent 30rem),
    var(--ink);
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(42, 42, 53, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 53, 0.55) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 28%, transparent 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(16px);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  display: block;
  height: 36px;
  width: auto;
}

.brand-word {
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.brand-word span { color: var(--teal); }

.brand-sub {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px 18px;
}

.nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav a.active { color: var(--text); }

.nav-toggle {
  display: none;
  appearance: none;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, transform 120ms ease, color 160ms ease;
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover { transform: translateY(-1px); }

.btn {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 16px 36px -18px rgba(255, 107, 26, 0.85);
}

.btn:hover {
  background: var(--orange-soft);
  border-color: var(--orange-soft);
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(255, 107, 26, 0.7);
  background: rgba(255, 107, 26, 0.08);
}

.btn-ghost {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  min-height: 40px;
}

.nav .btn {
  min-height: 40px;
  color: var(--ink);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 107, 26, 0.42);
  border-radius: 999px;
  background: rgba(255, 107, 26, 0.08);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 107, 26, 0.95);
  animation: pulse 1.5s ease-in-out infinite;
}

h1, h2, h3 { margin: 0; letter-spacing: 0; }

h1 {
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 900;
  line-height: 0.96;
}

h1 .accent { color: var(--orange); }

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.05;
}

h3 {
  font-size: 20px;
  font-weight: 800;
}

.lede,
.muted { color: var(--text-dim); }

.lede {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.6;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-head .muted {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.6;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
  padding: 56px 0 80px;
  min-height: calc(100vh - var(--header-h) - 72px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 700;
}

.hero-meta b { color: var(--text); }

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card,
.plan,
.step,
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(28, 28, 36, 0.86), rgba(20, 20, 26, 0.78));
}

.card,
.plan,
.step { padding: 22px; }

.card.featured,
.plan.featured {
  border-color: rgba(255, 107, 26, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 107, 26, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(28, 28, 36, 0.96), rgba(20, 20, 26, 0.88));
}

.badge {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 176, 32, 0.14);
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card ul,
.plan ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.card li,
.plan li {
  position: relative;
  padding-left: 18px;
  margin-top: 9px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.card li::before,
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.card p,
.plan p,
.step p { margin: 10px 0 0; line-height: 1.55; }

.price {
  margin: 8px 0 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 600;
}

.plan .btn { width: 100%; margin-top: 22px; }

.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(20, 20, 26, 0.72);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0;
}

.stats strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.steps { counter-reset: step; }

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 800;
}

.phone {
  width: min(340px, 100%);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid #2a2a35;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 22%),
    #0d0d12;
  box-shadow:
    0 36px 90px -42px rgba(0, 0, 0, 0.95),
    0 0 80px -45px rgba(255, 107, 26, 0.7);
}

.phone-notch {
  width: 108px;
  height: 16px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: #050507;
}

.phone-screen {
  display: grid;
  gap: 10px;
  min-height: 520px;
  padding: 16px 12px 14px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(42, 42, 53, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 53, 0.4) 1px, transparent 1px),
    #0b0b10;
  background-size: 22px 22px, 22px 22px, auto;
}

.phone-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.phone-brand span { color: var(--teal); }

.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #bbf7d0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.9);
}

.phone-card {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(20, 20, 26, 0.86);
}

.phone-card .row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
}

.ok { color: var(--green); font-weight: 700; }
.pro { color: var(--amber); font-weight: 700; }

.ptt {
  display: grid;
  place-items: center;
  height: 86px;
  margin-top: 4px;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 28%, #ff9a4a, var(--orange) 58%, #c2410c);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 28px rgba(255, 107, 26, 0.28);
}

.faq { max-width: 760px; }

.faq details { padding: 16px 18px; margin-bottom: 10px; }

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  margin: 12px 0 2px;
  color: var(--text-dim);
  line-height: 1.6;
}

.cta {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(255, 107, 26, 0.14), transparent 46%),
    linear-gradient(300deg, rgba(24, 212, 255, 0.08), var(--ink-soft));
}

.cta .lede { margin-top: 12px; }

.legal-page { padding: 64px 0 88px; }

.legal {
  max-width: 760px;
}

.legal h1 { font-size: clamp(36px, 6vw, 52px); }

.legal h2 {
  margin-top: 40px;
  font-size: 24px;
}

.legal h3 {
  margin-top: 24px;
  font-size: 18px;
}

.legal p,
.legal li {
  color: var(--text-dim);
  line-height: 1.7;
}

.legal p { margin: 0 0 14px; }

.legal ul,
.legal ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal ul li { list-style: disc; margin-bottom: 6px; }
.legal ol li { list-style: decimal; margin-bottom: 6px; }

.legal strong { color: var(--text); }

.legal a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.callout {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--ink-soft);
}

.callout-orange {
  border-color: rgba(255, 107, 26, 0.35);
  background: rgba(255, 107, 26, 0.06);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 42px;
  color: var(--text-dim);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer a:hover { color: var(--text); }

.footer-copy { margin-top: 28px; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.42; transform: scale(0.78); }
}

@media (max-width: 980px) {
  .hero,
  .grid-3,
  .grid-4,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 36px;
  }

  .section { padding: 64px 0; }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 28px, var(--wrap)); }

  .nav-toggle { display: inline-flex; align-items: center; }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink);
    border-bottom: 1px solid var(--border);
  }

  .site-header.open .nav { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }

  .actions,
  .cta .actions { display: grid; }

  .cta { padding: 24px; }

  h1 { font-size: 40px; }
}
