:root {
  color-scheme: light;
  --ink: #101820;
  --ink-soft: #243241;
  --muted: #647386;
  --line: #dfe6ee;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --green: #35c759;
  --green-dark: #168a37;
  --blue: #2563eb;
  --coral: #ff6b4a;
  --yellow: #f5b544;
  --shadow: 0 22px 60px rgba(16, 24, 32, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--surface);
  background: var(--ink);
  transition: top 160ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(223, 230, 238, 0.72);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 40px, var(--max));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  font-size: 1.06rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.8) 0 10%, transparent 11%),
    linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 64px;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 33%, rgba(255, 255, 255, 0.48) 61%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 32%);
}

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

.hero-copy {
  width: min(550px, 100%);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: 5.6rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 510px;
  color: var(--ink-soft);
  font-size: 1.22rem;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(16, 24, 32, 0.22);
}

.button-secondary {
  border: 1px solid rgba(16, 24, 32, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.availability {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.95rem;
}

.availability::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(245, 181, 68, 0.16);
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-green {
  background:
    linear-gradient(135deg, rgba(53, 199, 89, 0.13), rgba(37, 99, 235, 0.1)),
    #f8fbff;
}

.section-head {
  width: min(710px, 100%);
  margin-bottom: 40px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.35rem;
}

.section-copy {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.stat-grid,
.feature-grid,
.trust-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

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

.stat,
.feature,
.trust-item,
.step-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.05);
}

.stat {
  padding: 22px;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 650;
}

.feature,
.trust-item,
.step-item {
  padding: 26px;
}

.feature-marker,
.trust-marker,
.step-number {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-weight: 820;
  font-size: 0.86rem;
}

.feature:nth-child(2n) .feature-marker,
.trust-item:nth-child(2n) .trust-marker,
.step-item:nth-child(2n) .step-number {
  background: var(--blue);
}

.feature:nth-child(3n) .feature-marker,
.trust-item:nth-child(3n) .trust-marker,
.step-item:nth-child(3n) .step-number {
  background: var(--coral);
}

.feature p,
.trust-item p,
.step-item p {
  margin-top: 12px;
  color: var(--muted);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.phone-panel {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 22% 20%, rgba(53, 199, 89, 0.34), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(37, 99, 235, 0.22), transparent 32%),
    #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-shell {
  position: absolute;
  inset: 42px 74px 42px auto;
  width: 258px;
  border: 10px solid #161b22;
  border-radius: 38px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(16, 24, 32, 0.2);
  overflow: hidden;
}

.phone-ui {
  padding: 28px 20px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.ring {
  width: 174px;
  height: 174px;
  margin: 30px auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) 0 304deg, #e9eef4 304deg 360deg);
}

.ring-inner {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  text-align: center;
}

.ring-inner strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
}

.ring-inner span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.mini-metric {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
}

.mini-metric strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.floating-note {
  position: absolute;
  left: 42px;
  bottom: 56px;
  width: 230px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.13);
  backdrop-filter: blur(16px);
}

.floating-note strong {
  display: block;
  margin-bottom: 8px;
}

.floating-note span {
  color: var(--muted);
}

.list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.list-item {
  padding-left: 22px;
  border-left: 3px solid var(--green);
}

.list-item:nth-child(2) {
  border-color: var(--blue);
}

.list-item:nth-child(3) {
  border-color: var(--coral);
}

.list-item strong {
  display: block;
  margin-bottom: 5px;
}

.list-item span {
  color: var(--muted);
}

.cta-band,
.launch-band {
  padding: 76px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(53, 199, 89, 0.32), transparent 32%),
    radial-gradient(circle at 84% 22%, rgba(255, 107, 74, 0.22), transparent 28%),
    #101820;
}

.cta-inner,
.launch-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta-inner p,
.launch-inner p {
  margin-top: 14px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions,
.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cta-actions .button-secondary,
.launch-actions .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

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

.footer-links a {
  color: var(--ink-soft);
  font-weight: 680;
}

.legal-hero {
  padding: 142px 0 70px;
  background:
    linear-gradient(135deg, rgba(53, 199, 89, 0.12), rgba(37, 99, 235, 0.1)),
    #f8fbff;
}

.legal-hero h1 {
  margin: 0;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0;
}

.legal-hero p {
  margin-top: 18px;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-layout {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 56px 0 92px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
}

.legal-nav {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.legal-nav a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 680;
}

.legal-content {
  max-width: 820px;
}

.legal-content section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 1.55rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content p {
  margin-top: 12px;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

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

.meta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero {
    min-height: 820px;
    align-items: flex-start;
    padding-top: 128px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.18) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.2));
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .stat-grid,
  .feature-grid,
  .trust-grid,
  .steps-grid,
  .experience,
  .cta-inner,
  .launch-inner,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .cta-actions,
  .launch-actions {
    justify-content: flex-start;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav-links {
    gap: 12px;
    font-size: 0.86rem;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero-content,
  .container,
  .cta-inner,
  .launch-inner,
  .footer-inner,
  .legal-layout {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 760px;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-lede {
    font-size: 1.06rem;
  }

  .section {
    padding: 68px 0;
  }

  h2 {
    font-size: 2.2rem;
  }

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

  .phone-panel {
    min-height: 520px;
    border-radius: 22px;
  }

  .phone-shell {
    inset: 34px 24px auto auto;
    width: 236px;
  }

  .floating-note {
    left: 22px;
    bottom: 28px;
    width: 210px;
  }

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

  .legal-hero {
    padding-top: 112px;
  }

  .legal-hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 560px) {
  .nav-links {
    display: none;
  }

  .hero-copy,
  .hero-actions {
    width: min(362px, calc(100vw - 28px));
    max-width: min(362px, calc(100vw - 28px));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    max-width: 100%;
  }
}

@media (max-width: 460px) {
  .hero {
    min-height: 720px;
  }

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

  .phone-shell {
    width: 218px;
  }

  .ring {
    width: 150px;
    height: 150px;
  }

  .ring-inner {
    width: 110px;
    height: 110px;
  }

  .ring-inner strong {
    font-size: 1.85rem;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}
