:root {
  color-scheme: dark;
  --bg: #08090d;
  --panel: #11131a;
  --panel-strong: #171923;
  --text: #f6f4ef;
  --muted: #b9b6ad;
  --faint: #817f78;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #e8c978;
  --mint: #8de4c7;
  --coral: #ff8f70;
  --ink: #08090d;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-shell {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 13, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

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

.nav-links a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 10%, rgba(141, 228, 199, 0.16), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(232, 201, 120, 0.14), transparent 28%),
    linear-gradient(135deg, #08090d 0%, #11131a 54%, #19151a 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 680px;
  padding: 72px 22px 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(44px, 7vw, 82px);
}

h2 {
  font-size: clamp(30px, 4.2vw, 48px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  max-width: 690px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: var(--gold);
  color: var(--ink);
}

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

.hero-proof {
  display: grid;
  gap: 12px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 15px;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.proof-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--mint);
}

.phone-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 19, 26, 0.74);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  padding: 24px;
}

.phone-screen {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0d0f15;
  padding: 18px;
}

.app-logo-large {
  width: 86px;
  height: 86px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 22px;
}

.scan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  padding: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.metric strong {
  display: block;
  font-size: 24px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  border-bottom: 1px solid var(--line);
  padding: 78px 22px;
}

.section.alt {
  background: #0c0d12;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

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

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card,
.article-link,
.note,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.card p,
.article-link p,
.note p,
.faq-item p {
  margin-top: 10px;
  color: var(--muted);
}

.article-link {
  display: block;
  text-decoration: none;
}

.article-link:hover {
  border-color: rgba(232, 201, 120, 0.46);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
}

.article-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 143, 112, 0.14), transparent 34%),
    linear-gradient(135deg, #08090d 0%, #10131a 100%);
}

.article-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 84px 22px 72px;
}

.article-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
}

.article-meta {
  margin-top: 18px;
  color: var(--faint);
  font-size: 14px;
}

.article {
  max-width: 860px;
  margin: 0 auto;
  padding: 58px 22px 84px;
}

.article h2 {
  margin-top: 42px;
  font-size: clamp(28px, 4vw, 38px);
}

.article h3 {
  margin-top: 28px;
}

.article p,
.article li {
  color: var(--muted);
  font-size: 18px;
}

.article p {
  margin-top: 14px;
}

.article ul,
.article ol {
  margin: 18px 0 0;
  padding-left: 24px;
}

.article li + li {
  margin-top: 10px;
}

.article a:not(.button) {
  color: var(--gold);
  font-weight: 760;
  text-decoration: none;
}

.article a:not(.button):hover {
  text-decoration: underline;
}

.comparison {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison th,
.comparison td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: var(--panel-strong);
  color: var(--text);
}

.comparison td {
  color: var(--muted);
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.callout {
  margin-top: 34px;
  border: 1px solid rgba(141, 228, 199, 0.32);
  border-radius: 8px;
  background: rgba(141, 228, 199, 0.08);
  padding: 22px;
}

.callout p {
  color: var(--text);
}

.footer {
  padding: 34px 22px;
  color: var(--faint);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .grid.three,
  .grid.two,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .section {
    padding: 58px 18px;
  }

  .article,
  .article-hero-inner,
  .hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
