:root {
  color-scheme: dark;
  --ink: #f7fbf8;
  --muted: #b6c9c0;
  --muted-2: #819a8f;
  --forest-950: #08110f;
  --forest-900: #0d1c18;
  --forest-850: #11231f;
  --forest-800: #1c4437;
  --forest-700: #326b56;
  --accent-deep: #40a97a;
  --accent: #4bc08d;
  --accent-light: #5bcf9e;
  --warm: #f3d66b;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --glass: rgba(255, 255, 255, 0.065);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --max-width: 1180px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 0%, rgba(75, 192, 141, 0.16), transparent 31rem),
    linear-gradient(145deg, var(--forest-950) 0%, var(--forest-900) 44%, #15362b 100%);
  min-height: 100vh;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--forest-950);
  background: var(--accent-light);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 15, 0.74);
  backdrop-filter: blur(22px) saturate(140%);
}

.nav-row {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  overflow: visible;
}

.brand-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.site-header .brand-icon,
.site-header .brand-icon img {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(91, 207, 158, 0.28);
  border-radius: 999px;
  color: var(--ink) !important;
  background: rgba(75, 192, 141, 0.13);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--glass);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  content: "";
  background: currentColor;
}

.hero {
  display: grid;
  min-height: min(820px, calc(100vh - 74px));
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  padding-block: clamp(72px, 10vw, 132px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--accent-light);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--accent-light);
  box-shadow: 0 0 18px var(--accent-light);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 7.3vw, 6.9rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.accent-text {
  color: var(--accent-light);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.26rem);
  line-height: 1.68;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #07130e;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  box-shadow: 0 14px 36px rgba(75, 192, 141, 0.2);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--glass);
}

.button-small {
  min-height: 46px;
  border-radius: 13px;
}

.availability-note {
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-orbit {
  position: absolute;
  inset: 7% -3% 4% 2%;
  border: 1px solid rgba(91, 207, 158, 0.17);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 192, 141, 0.13), transparent 62%);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 13%;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: inherit;
  content: "";
}

.hero-orbit::after {
  inset: 28%;
}

.hero-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(340px, 77%);
  aspect-ratio: 0.479;
  padding: 12px;
  transform: translate(-50%, -50%) rotate(3deg);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 53px;
  background: linear-gradient(150deg, #26312d, #050706 42%);
  box-shadow: var(--shadow), 0 0 0 7px rgba(255, 255, 255, 0.025);
}

.hero-screen {
  position: relative;
  height: 100%;
  border-radius: 42px;
  background: #14251c;
  overflow: hidden;
}

.hero-screen::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 84px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  content: "";
  background: #050706;
}

.hero-city-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-fill {
  display: block;
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(13, 28, 24, 0.84);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.float-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.float-card span {
  color: var(--muted);
  font-size: 0.75rem;
}

.float-one {
  top: 17%;
  left: -2%;
}

.float-two {
  right: -2%;
  bottom: 18%;
}

.section {
  padding-block: clamp(86px, 11vw, 148px);
}

.section-tight {
  padding-block: clamp(58px, 8vw, 94px);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  margin-bottom: clamp(44px, 7vw, 76px);
}

.section-heading h2,
.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading p {
  align-self: end;
  max-width: 600px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.step-card,
.feature-card,
.support-card,
.legal-card {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.step-card {
  min-height: 280px;
  padding: 30px;
  border-radius: var(--radius-md);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 64px;
  place-items: center;
  border: 1px solid rgba(91, 207, 158, 0.25);
  border-radius: 13px;
  color: var(--accent-light);
  background: rgba(75, 192, 141, 0.1);
  font-weight: 850;
}

.step-card h3,
.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  letter-spacing: -0.025em;
}

.step-card p,
.feature-card p,
.support-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.screenshot-stage {
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 100%, rgba(75, 192, 141, 0.22), transparent 45%),
    rgba(5, 12, 10, 0.48);
  overflow: hidden;
}

.phone-row {
  display: grid;
  max-width: 910px;
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: clamp(14px, 3vw, 32px);
}

.phone-shot {
  position: relative;
  margin: 0;
}

.phone-device {
  aspect-ratio: 0.479;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: clamp(26px, 4vw, 44px);
  background: linear-gradient(145deg, #26312d, #060908 48%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.shot-screen {
  display: flex;
  position: relative;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  border-radius: clamp(21px, 3.6vw, 36px);
  text-align: center;
  background: linear-gradient(155deg, #10231d, #204e3f);
  overflow: hidden;
}

.shot-screen::before {
  position: absolute;
  top: -18%;
  width: 112%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.shot-screen-image {
  display: block;
  padding: 0;
}

.shot-screen-image::before {
  content: none;
}

.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-caption {
  display: grid;
  gap: 7px;
  justify-items: center;
  padding: 20px 4px 0;
  text-align: center;
}

.shot-symbol {
  display: grid;
  position: relative;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: var(--accent-light);
  background: rgba(0, 0, 0, 0.18);
  font-size: 1.4rem;
  font-weight: 900;
}

.shot-title {
  position: relative;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: -0.03em;
}

.shot-note {
  position: relative;
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.66rem, 1.2vw, 0.8rem);
  line-height: 1.5;
}

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

.feature-card {
  min-height: 260px;
  padding: 34px;
  border-radius: var(--radius-md);
}

.feature-card-wide {
  grid-column: 1 / -1;
  display: grid;
  min-height: 330px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
}

.feature-tag {
  display: inline-flex;
  margin-bottom: 54px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-city {
  display: grid;
  position: relative;
  min-height: 230px;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  transform: rotateX(56deg) rotateZ(-38deg);
  transform-style: preserve-3d;
}

.city-block {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(75, 192, 141, 0.18);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.13);
}

.city-block:nth-child(3n) {
  transform: translateZ(40px);
  background: rgba(243, 214, 107, 0.19);
}

.city-block:nth-child(4n) {
  transform: translateZ(22px);
  background: rgba(91, 207, 158, 0.28);
}

.privacy-callout,
.download-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(91, 207, 158, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, rgba(75, 192, 141, 0.13), rgba(255, 255, 255, 0.035));
}

.privacy-callout h2,
.download-callout h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.privacy-callout p,
.download-callout p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-hero {
  max-width: 900px;
  padding-block: clamp(86px, 12vw, 150px) clamp(58px, 8vw, 100px);
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-intro {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 11px;
  border: 1px solid rgba(243, 214, 107, 0.24);
  border-radius: 999px;
  color: var(--warm);
  background: rgba(243, 214, 107, 0.08);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  padding-bottom: 120px;
}

.support-sidebar {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--glass);
}

.support-sidebar h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.support-sidebar p {
  color: var(--muted);
  line-height: 1.65;
}

.support-sidebar p:last-child {
  margin-bottom: 0;
}

.support-list {
  display: grid;
  gap: 14px;
}

details.support-card {
  border-radius: 18px;
  overflow: hidden;
}

details.support-card summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 780;
  list-style: none;
}

details.support-card summary::-webkit-details-marker {
  display: none;
}

details.support-card summary::after {
  color: var(--accent-light);
  content: "+";
  font-size: 1.4rem;
  font-weight: 500;
}

details.support-card[open] summary::after {
  content: "−";
}

details.support-card p {
  margin: -4px 24px 24px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 120px;
}

.legal-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--glass);
}

.legal-nav strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.87rem;
}

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

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-md);
}

.legal-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card li + li {
  margin-top: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 10, 8, 0.36);
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 36px;
  padding-block: 52px;
}

.footer-tagline {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--muted-2);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-meta {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted-2);
  font-size: 0.78rem;
}

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 670px;
  }

  .section-heading,
  .feature-card-wide,
  .support-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    display: none;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    right: 14px;
    left: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(8, 17, 15, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: 10px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .hero-visual {
    min-height: min(740px, 154vw);
  }

  .float-one {
    left: 0;
  }

  .float-two {
    right: 0;
  }

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

  .feature-card-wide {
    grid-column: auto;
  }

  .step-card {
    min-height: 240px;
  }

  .step-number {
    margin-bottom: 44px;
  }

  .screenshot-stage {
    margin-inline: -5px;
  }

  .phone-row {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .phone-row::-webkit-scrollbar {
    display: none;
  }

  .phone-shot {
    scroll-snap-align: center;
  }

  .privacy-callout,
  .download-callout,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .hero-phone {
    width: 74%;
    border-radius: 42px;
  }

  .hero-screen {
    border-radius: 33px;
  }

  .float-card {
    padding: 11px 13px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
