:root {
  --navy: #10243f;
  --navy-soft: #1d3557;
  --ink: #172235;
  --muted: #5f6f82;
  --line: #dbe6ef;
  --bg: #f5f8fb;
  --surface: #ffffff;
  --blue-soft: #e8f1f8;
  --teal: #18a8a6;
  --teal-dark: #0d7678;
  --teal-soft: #dff7f5;
  --shadow: 0 18px 45px rgba(16, 36, 63, 0.11);
  --shadow-soft: 0 10px 28px rgba(16, 36, 63, 0.08);
  --radius: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  max-width: 100%;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 230, 239, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.94rem;
  font-weight: 650;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 999px;
  color: var(--navy-soft);
  padding: 8px 11px;
}

.site-nav a:hover {
  background: var(--blue-soft);
  text-decoration: none;
}

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

.hero {
  padding: 56px 0 44px;
  background:
    linear-gradient(135deg, rgba(232, 241, 248, 0.96) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(223, 247, 245, 0.55) 100%),
    #ffffff;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(24, 168, 166, 0.12);
  border: 1px solid rgba(24, 168, 166, 0.24);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 750;
}

.eyebrow {
  margin-bottom: 12px;
}

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

h1 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 6vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.08rem;
  color: #45566b;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 750;
  line-height: 1.2;
  box-shadow: var(--shadow-soft);
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-panel {
  width: min(100%, 430px);
  justify-self: center;
  border: 1px solid rgba(219, 230, 239, 0.85);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 70px rgba(16, 36, 63, 0.16);
  padding: 12px;
}

.phone-shell {
  border-radius: 30px;
  background: linear-gradient(180deg, #142844 0%, #0e2038 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.phone-status {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: #ffffff;
  font-size: 0.78rem;
}

.phone-status span:first-child {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.phone-status span:last-child {
  justify-self: end;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.app-screen {
  display: grid;
  gap: 12px;
  border-radius: 24px;
  background: #f7fafc;
  padding: 16px;
}

.app-summary {
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4467 100%);
  color: #ffffff;
  padding: 18px;
}

.app-summary span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.app-summary strong {
  display: block;
  margin-top: 4px;
  font-size: 2.4rem;
  line-height: 1;
}

.app-summary p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.quick-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quick-row span {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 750;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-topline strong {
  color: var(--navy);
}

.document-list {
  display: grid;
  gap: 10px;
}

.document-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #ffffff;
  padding: 12px;
}

.document-item.active {
  border-color: rgba(24, 168, 166, 0.35);
  background: linear-gradient(135deg, #ffffff 0%, #edfafa 100%);
}

.document-item strong {
  display: block;
  color: var(--navy);
}

.document-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.doc-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55)),
    var(--blue-soft);
  border: 1px solid var(--line);
  position: relative;
}

.doc-icon::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 12px;
  height: 12px;
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
}

.app-note {
  border: 1px solid rgba(24, 168, 166, 0.2);
  border-radius: 16px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 750;
}

.section {
  padding: 56px 0;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card {
  min-height: 0;
  border: 1px solid rgba(219, 230, 239, 0.95);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.card p {
  margin-bottom: 0;
}

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

.trust h2,
.trust p,
.trust .eyebrow {
  color: #ffffff;
}

.trust .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.trust .button.primary {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.trust .button.primary:hover {
  background: var(--teal-soft);
}

.split {
  display: grid;
  gap: 28px;
}

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

.check-list li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
}

.status-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
}

.status-box p {
  max-width: 720px;
}

.legal-page {
  padding: 42px 0 64px;
}

.page-intro {
  margin-bottom: 34px;
}

.page-intro p {
  margin-bottom: 0;
}

.legal-content {
  max-width: 820px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.legal-content a {
  overflow-wrap: anywhere;
}

.legal-content p {
  max-width: 70ch;
}

.legal-content section + section {
  margin-top: 28px;
}

.legal-content h1 {
  margin: 0 0 8px;
  font-size: clamp(2.05rem, 6vw, 3.4rem);
}

.legal-content h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.legal-content ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

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

address {
  color: var(--muted);
  font-style: normal;
}

.notice {
  border-radius: 18px;
  background: var(--blue-soft);
  padding: 18px;
}

.notice p {
  margin-bottom: 0;
}

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

.footer-inner {
  display: grid;
  gap: 18px;
}

.site-footer strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 650;
}

.site-footer nav a {
  border-radius: 999px;
  padding: 8px 10px;
}

.site-footer nav a:hover {
  background: var(--blue-soft);
  text-decoration: none;
}

@media (max-width: 520px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    justify-content: stretch;
  }

  .site-nav a {
    background: var(--blue-soft);
    padding: 9px 8px;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    border-radius: 28px;
    padding: 8px;
  }

  .phone-shell {
    border-radius: 24px;
    padding: 8px;
  }

  .app-screen {
    border-radius: 20px;
    padding: 12px;
  }

  .quick-row {
    gap: 6px;
  }

  .quick-row span {
    font-size: 0.74rem;
  }
}

@media (min-width: 720px) {
  .hero {
    padding: 76px 0 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
  }

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

  .card {
    min-height: 176px;
    padding: 22px;
  }

  .split {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: start;
  }

  .status-box,
  .legal-content {
    padding: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 76px 0;
  }
}
