:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6f7c;
  --line: #dde5e8;
  --paper: #fbf8f1;
  --surface: #ffffff;
  --navy: #172033;
  --orange: #f26b3a;
  --gold: #f7c85b;
  --green: #216b57;
  --shadow: 0 18px 50px rgb(23 32 42 / 14%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}

a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgb(251 248 241 / 88%);
  border-bottom: 1px solid rgb(221 229 232 / 70%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 900;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 26px);
  font-size: 14px;
}

main {
  overflow: hidden;
}

.hero {
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.7fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  padding: clamp(42px, 8vw, 86px) clamp(18px, 6vw, 88px) 64px;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 820px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy p:not(.eyebrow),
.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  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-radius: 8px;
  border: 1px solid var(--line);
}

.button:hover {
  text-decoration: none;
}

.button.primary {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
}

.phone-preview {
  width: min(100%, 360px);
  min-height: 620px;
  justify-self: center;
  padding: 22px;
  background: #f7f2e7;
  border: 10px solid var(--navy);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 86px;
  height: 6px;
  margin: 0 auto 24px;
  background: #263145;
  border-radius: 999px;
}

.app-card {
  padding: 18px;
  margin-bottom: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.app-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.app-card strong {
  display: block;
  margin: 12px 0 18px;
  color: white;
  font-size: 28px;
  line-height: 1.18;
}

.app-card.dark {
  min-height: 212px;
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.pills,
.option-grid {
  display: grid;
  gap: 8px;
}

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

.pills span,
.option-grid b {
  min-height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-size: 13px;
}

.option-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 14px;
}

.option-grid b {
  background: #f1f5f2;
}

.app-card.list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  padding: 74px clamp(18px, 6vw, 88px);
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 34px;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.info-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.info-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 900;
}

dd {
  margin: 0;
  font-weight: 700;
}

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

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

.card {
  min-height: 240px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgb(23 32 42 / 8%);
}

.card p,
.policy p,
.faq-list p {
  color: var(--muted);
}

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

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
}

.privacy {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.policy {
  max-width: 960px;
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 6vw, 88px);
  color: white;
  background: var(--navy);
}

.site-footer a {
  color: white;
}

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

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

  .hero {
    padding-top: 34px;
  }

  .phone-preview {
    min-height: auto;
  }

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

  .info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 520px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 42px;
  }

  .section {
    padding-block: 56px;
  }

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