:root {
  --ink: #1f2430;
  --muted: #657080;
  --brand: #0f5965;
  --brand-dark: #0a4049;
  --teal-soft: #e8f2f2;
  --warm: #f3b65b;
  --coral: #d96f52;
  --paper: #ffffff;
  --page: #f4f7f6;
  --line: #dce4e2;
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 21px;
  font-weight: 700;
  gap: 10px;
  justify-self: start;
}

.brand img {
  border-radius: var(--radius);
}

nav {
  display: flex;
  gap: 28px;
}

nav a,
footer a,
.text-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

nav a:hover,
footer a:hover,
.text-link:hover {
  color: var(--brand);
}

.header-action {
  background: var(--brand);
  border-radius: var(--radius);
  color: white;
  font-size: 14px;
  font-weight: 700;
  justify-self: end;
  padding: 12px 18px;
}

.hero {
  align-items: end;
  display: flex;
  min-height: min(700px, calc(100svh - 138px));
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 43%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(7, 25, 29, 0.72) 0%, rgba(7, 25, 29, 0.5) 48%, rgba(7, 25, 29, 0.2) 100%);
}

.hero-content {
  color: white;
  margin: 0 auto;
  max-width: 1180px;
  padding: 64px 24px 72px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brand);
}

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

h1 {
  font-size: 66px;
  line-height: 1;
  margin: 0 0 20px;
}

.hero-lead {
  font-size: 21px;
  line-height: 1.5;
  margin: 0;
  max-width: 650px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
}

.button-primary {
  background: var(--warm);
  color: #172126;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.64);
  color: white;
}

.button-light {
  background: white;
  color: var(--brand-dark);
}

.hero-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin: 13px 0 0;
}

.proof-strip {
  background: white;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
}

.proof-strip div {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 28px 30px;
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  font-size: 16px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 100px 24px;
}

.intro-section {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
}

.section-heading h2,
.product-copy h2,
.taxi-copy h2,
.beta-section h2 {
  font-size: 42px;
  line-height: 1.12;
  margin: 0 0 18px;
}

.section-heading > p:last-child,
.product-copy > p,
.taxi-copy > p,
.beta-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 44px 1fr;
  padding: 24px 0;
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  color: white;
  display: flex;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  width: 36px;
}

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

.steps p {
  color: var(--muted);
  line-height: 1.55;
  margin: 6px 0 0;
}

.product-band,
.taxi-band {
  align-items: center;
  display: grid;
  min-height: 700px;
}

.product-band {
  background: #e8efee;
  grid-template-columns: 1fr 1fr;
  padding: 90px max(24px, calc((100vw - 1080px) / 2));
}

.product-copy {
  padding-right: 80px;
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.check-list li {
  align-items: center;
  display: flex;
  gap: 12px;
}

.check-list li::before {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  color: white;
  content: "✓";
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.phone-stage {
  display: flex;
  justify-content: center;
  max-height: 620px;
  overflow: hidden;
}

.analysis-mock,
.taxi-visual img {
  border: 8px solid #1d2225;
  border-radius: 38px;
  box-shadow: 0 32px 70px rgba(20, 42, 44, 0.2);
  max-width: 310px;
  width: 100%;
}

.analysis-mock {
  background: #f8f6ee;
  min-height: 590px;
  padding: 24px 20px;
}

.mock-bar {
  align-items: center;
  display: grid;
  font-size: 14px;
  grid-template-columns: 30px 1fr 30px;
  text-align: center;
}

.mock-bar span:first-child {
  font-size: 28px;
  text-align: left;
}

.progress-ring {
  align-items: center;
  border: 13px solid #d7e4e3;
  border-right-color: var(--brand);
  border-top-color: var(--brand);
  border-radius: 50%;
  display: flex;
  height: 150px;
  justify-content: center;
  margin: 46px auto 30px;
  transform: rotate(18deg);
  width: 150px;
}

.progress-ring span {
  color: var(--brand);
  font-size: 23px;
  font-weight: 700;
  transform: rotate(-18deg);
}

.analysis-mock h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 8px;
  text-align: center;
}

.analysis-mock > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 auto 28px;
  max-width: 230px;
  text-align: center;
}

.analysis-mock ul {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  list-style: none;
  margin: 0;
  padding: 6px 16px;
}

.analysis-mock li {
  border-bottom: 1px solid var(--line);
  color: #8c949f;
  font-size: 13px;
  padding: 13px 0 13px 27px;
  position: relative;
}

.analysis-mock li:last-child {
  border-bottom: 0;
}

.analysis-mock li::before {
  border: 2px solid #bac3c9;
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  top: 14px;
  width: 12px;
}

.analysis-mock li.done,
.analysis-mock li.active {
  color: var(--ink);
  font-weight: 700;
}

.analysis-mock li.done::before {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: inset 0 0 0 3px white;
}

.analysis-mock li.active::before {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 3px #f8f6ee;
}

.taxi-band {
  background: white;
  gap: 100px;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 100px max(24px, calc((100vw - 1080px) / 2));
}

.taxi-visual {
  display: flex;
  justify-content: center;
  max-height: 650px;
  overflow: hidden;
}

.taxi-details {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.taxi-details div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding: 18px 0;
}

.taxi-details div:last-child {
  border-bottom: 1px solid var(--line);
}

.taxi-details span {
  color: var(--muted);
  line-height: 1.5;
}

.beta-section {
  align-items: center;
  background: var(--brand);
  color: white;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.4fr 0.6fr;
  padding: 78px max(24px, calc((100vw - 1080px) / 2));
}

.beta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
}

.beta-actions {
  align-items: center;
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.beta-actions .text-link {
  color: white;
  text-align: center;
}

.faq-section {
  display: grid;
  gap: 70px;
  grid-template-columns: 0.7fr 1.3fr;
}

.section-heading.compact {
  max-width: 360px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style-position: outside;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.6;
  margin: 14px 0 0;
}

footer {
  align-items: center;
  background: #172126;
  color: white;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
}

footer p {
  color: #aeb9bc;
  font-size: 13px;
  margin: 0;
}

footer > div {
  display: flex;
  gap: 20px;
  justify-self: end;
}

footer a {
  color: #d4dcde;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 10px 18px;
  }

  nav {
    display: none;
  }

  .header-action {
    padding: 11px 14px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-image {
    object-position: 52% 42%;
  }

  .hero-shade {
    background: rgba(7, 25, 29, 0.5);
  }

  .hero-content {
    padding: 48px 22px 54px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-strip,
  .intro-section,
  .product-band,
  .taxi-band,
  .beta-section,
  .faq-section,
  footer {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    padding: 20px 24px;
  }

  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section,
  .product-band,
  .taxi-band {
    padding: 72px 22px;
  }

  .intro-section,
  .faq-section {
    gap: 42px;
  }

  .section-heading h2,
  .product-copy h2,
  .taxi-copy h2,
  .beta-section h2 {
    font-size: 34px;
  }

  .product-copy {
    padding: 0 0 46px;
  }

  .product-band,
  .taxi-band {
    gap: 50px;
  }

  .taxi-visual {
    order: 2;
  }

  .beta-section {
    gap: 34px;
    padding: 66px 22px;
  }

  footer {
    justify-items: start;
  }

  footer > div {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .brand span {
    font-size: 18px;
  }

  .header-action {
    font-size: 13px;
  }

  .hero {
    min-height: 670px;
  }

  .hero-image {
    object-position: 50% 42%;
  }

  .analysis-mock,
  .taxi-visual img {
    max-width: 275px;
  }
}

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