:root {
  color-scheme: light;
  --bg: #f4f7f6;
  --surface: #ffffff;
  --surface-soft: #e8f5f2;
  --text: #132224;
  --muted: #526568;
  --line: #d6e1df;
  --teal: #087f76;
  --teal-dark: #075f59;
  --amber: #f2a528;
  --navy: #0c1830;
  --content: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", sans-serif;
  line-height: 1.75;
}

a {
  color: var(--teal-dark);
  text-underline-offset: 0.18em;
}

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

.page {
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand span {
  display: grid;
  line-height: 1.25;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.links a {
  color: var(--muted);
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 64px;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.12;
}

h2 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.3;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.4;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 640px;
}

.app-icon {
  position: absolute;
  top: 11%;
  right: 0;
  width: min(58%, 360px);
  border-radius: 22%;
  box-shadow: 0 22px 56px rgba(12, 24, 48, 0.2);
}

.phone-shot {
  position: absolute;
  right: 34%;
  bottom: -9%;
  width: min(52%, 310px);
  border: 8px solid var(--navy);
  border-radius: 38px;
  box-shadow: 0 28px 70px rgba(12, 24, 48, 0.24);
}

.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 26px;
  color: var(--muted);
  font-weight: 650;
}

.feature-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

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

.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.steps article {
  border-top: 3px solid var(--teal);
  padding-top: 18px;
}

.steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 24px;
  font-weight: 900;
}

.steps p,
.product p,
.prose p,
.prose li {
  color: var(--muted);
}

.steps p {
  margin: 0;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 80px;
  align-items: center;
}

.product-copy > p:not(.eyebrow) {
  font-size: 17px;
}

.product-shot {
  border: 8px solid var(--navy);
  border-radius: 38px;
  box-shadow: 0 24px 64px rgba(12, 24, 48, 0.2);
}

.specs,
.support-table {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.specs div,
.support-table div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.specs dt,
.support-table dt {
  color: var(--text);
  font-weight: 800;
}

.specs dd,
.support-table dd {
  margin: 0;
  color: var(--muted);
}

.privacy-band {
  background: var(--navy);
  color: #ffffff;
}

.privacy-band .eyebrow {
  color: #6dd6c6;
}

.privacy-band .lead {
  max-width: 760px;
  color: #c7d1dc;
}

.action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}

.action-links a {
  color: #ffffff;
  font-weight: 800;
}

.primary-link,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 7px;
  background: var(--teal);
  color: #ffffff;
  text-decoration: none;
}

.document {
  max-width: 880px;
}

.document-header {
  padding: 72px 0 54px;
}

.document-header h1 {
  font-size: clamp(38px, 6vw, 58px);
}

.updated {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.document .section {
  border-top: 1px solid var(--line);
  padding-top: 46px;
  padding-bottom: 46px;
}

.document .section h2 {
  font-size: 25px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  margin-bottom: 48px;
  padding: 28px;
  border: 1px solid #b7d8d3;
  border-radius: 8px;
  background: var(--surface-soft);
}

.contact-panel h2,
.contact-panel p {
  margin: 0;
}

.contact-panel p {
  color: var(--muted);
}

.contact-panel .notice {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid #c9dedb;
  font-size: 14px;
}

.contact-link {
  white-space: nowrap;
}

.prose > :first-child {
  margin-top: 0;
}

.prose > :last-child {
  margin-bottom: 0;
}

.prose ol,
.prose ul {
  padding-left: 1.4em;
}

.prose li {
  margin: 8px 0;
}

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

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

.faq summary {
  padding: 18px 32px 18px 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  margin: 0;
  padding: 0 0 20px;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.privacy-summary div {
  display: grid;
  gap: 8px;
  padding: 22px 18px;
  background: var(--surface);
}

.privacy-summary strong {
  font-size: 13px;
}

.privacy-summary span {
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 900;
}

.operator {
  padding-bottom: 72px !important;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 820px) {
  .page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .links {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .hero-copy {
    padding: 54px 0 18px;
  }

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

  .app-icon {
    top: 7%;
    width: 58%;
  }

  .phone-shot {
    right: 36%;
    bottom: -4%;
    width: 52%;
  }

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

  .product {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-shot {
    width: min(78%, 360px);
    margin: 0 auto;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: 43px;
  }

  .privacy-page .document-header h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 27px;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

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

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

  .steps {
    gap: 30px;
  }

  .specs div,
  .support-table div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-panel .notice {
    grid-column: auto;
  }

  .contact-link {
    width: 100%;
    white-space: normal;
  }

  .footer {
    flex-direction: column;
    gap: 4px;
  }
}

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