:root {
  color-scheme: dark;
  --bg: #050706;
  --bg-soft: #0b1110;
  --surface: #151816;
  --surface-2: #1f2321;
  --line: rgba(255, 255, 255, 0.12);
  --ink: #f4f7f4;
  --ink-muted: #aeb7b1;
  --ink-soft: #7f8a83;
  --green: #30d158;
  --green-ink: #041e0c;
  --red: #ff453a;
  --amber: #d48916;
  --blue: #1294ff;
  --indigo: #6a5cff;
  --slate: #79909f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 10;
  padding: 10px 14px;
  background: var(--green);
  color: var(--green-ink);
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(5, 7, 6, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.compact {
  position: relative;
}

.nav {
  max-width: 1120px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand img {
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: var(--ink-muted);
  font-size: 14px;
}

.nav-links [aria-current="page"] {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  padding: 0 18px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  background: var(--green);
  color: var(--green-ink);
}

.nav-cta:hover,
.button.primary:hover {
  background: #46e56d;
  color: var(--green-ink);
}

.app-store-link {
  gap: 9px;
}

.app-store-link::before {
  content: "";
  width: 18px;
  height: 20px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 384 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 384 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 28px 88px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.14;
  pointer-events: none;
}

.hero-bg img {
  position: absolute;
  width: min(760px, 85vw);
  right: 14%;
  top: 40px;
  filter: blur(1px);
  transform: rotate(-12deg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 42%, rgba(48, 209, 88, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.1), var(--bg) 94%);
  pointer-events: none;
}

.hero-content,
.phone-preview {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(64px, 11vw, 132px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--ink-muted);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.phone-preview {
  display: flex;
  justify-content: center;
}

.phone-shell {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 390 / 780;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 46px;
  background: #0b0c0b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 106px;
  height: 30px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: #000;
  padding: 50px 16px 18px;
}

.map-preview {
  height: 152px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 52px 52px,
    #314253;
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 18px;
  color: #e7eef7;
  font-weight: 800;
}

.map-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 44%, rgba(48, 209, 88, 0.92) 45% 47%, transparent 48%),
    linear-gradient(35deg, transparent 58%, rgba(255, 255, 255, 0.22) 59% 61%, transparent 62%);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 1;
  width: 58px;
  height: 58px;
  border: 7px solid #fff;
  border-radius: 18px;
  background: #a8b3bd;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 22px;
}

.thumb-row span {
  aspect-ratio: 1;
  border-radius: 15px;
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 216, 127, 0.8), transparent 20%),
    linear-gradient(150deg, #293f50, #101514 48%, #75593c);
  position: relative;
}

.thumb-row span::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
}

.panel-label {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.metadata-panel {
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface);
}

.meta-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.meta-row:last-child {
  border-bottom: 0;
}

.meta-row strong {
  font-size: 15px;
}

.meta-row em {
  color: var(--ink-muted);
  font-style: normal;
  font-size: 14px;
}

.icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.red {
  background: var(--red);
}

.amber {
  background: var(--amber);
}

.blue {
  background: var(--blue);
}

.green {
  background: var(--green);
  color: var(--green-ink);
}

.indigo {
  background: var(--indigo);
}

.slate {
  background: var(--slate);
}

.clean-button {
  margin-top: 14px;
  min-height: 58px;
  border-radius: 18px;
  background: var(--green);
  color: var(--green-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.section {
  padding: 90px 24px;
}

.band {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2,
.final-cta h2 {
  max-width: 790px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy {
  max-width: 720px;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 1.5;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature-card,
.plan-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.feature-card h3,
.plan-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.feature-card p,
.plan-card li,
.privacy-block p,
.doc-shell p,
.doc-shell li {
  color: var(--ink-muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: start;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.steps li::before {
  content: counter(steps);
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--green);
  color: var(--green-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.steps strong,
.steps span {
  grid-column: 2;
}

.steps strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.steps span {
  color: var(--ink-muted);
  line-height: 1.55;
}

.privacy-block {
  max-width: 920px;
}

.privacy-block p {
  font-size: 21px;
}

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

.plan-card {
  min-height: 280px;
}

.plan-card.featured {
  border-color: rgba(48, 209, 88, 0.65);
  background: rgba(48, 209, 88, 0.1);
}

.price {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.final-cta {
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 24px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 22px 44px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-muted);
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 10px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
}

.doc-shell {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px 70px;
}

.doc-shell h1 {
  margin-bottom: 12px;
  font-size: clamp(44px, 9vw, 76px);
  line-height: 0.96;
}

.doc-shell h2 {
  margin: 44px 0 10px;
  font-size: 26px;
}

.doc-shell h3 {
  margin-bottom: 6px;
}

.doc-shell a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.updated,
.lead {
  color: var(--ink-muted);
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-list p {
  margin-bottom: 0;
}

.doc-footer {
  max-width: 780px;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
  }

  .phone-shell {
    max-width: 360px;
  }

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

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

@media (max-width: 680px) {
  .nav {
    min-height: 64px;
    gap: 12px;
    padding-inline: 16px;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    display: block;
    width: 100%;
    max-width: none;
    overflow: hidden;
    padding: 44px 16px 68px;
  }

  .hero-content,
  .phone-preview {
    min-width: 0;
    width: 100%;
  }

  .hero-bg img {
    right: -150px;
    width: 520px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 20px;
  }

  .button,
  .nav-cta {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .phone-shell {
    width: min(calc(100vw - 32px), 360px);
    margin-top: 34px;
    border-radius: 38px;
    padding: 12px;
  }

  .phone-screen {
    border-radius: 29px;
    padding-inline: 12px;
  }

  .meta-row {
    grid-template-columns: 42px 1fr;
  }

  .meta-row em {
    grid-column: 2;
    margin-top: -8px;
  }

  .section {
    padding: 66px 16px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .doc-shell {
    padding-top: 54px;
  }
}
