:root {
  --navy-950: #081d2c;
  --navy-900: #102a3e;
  --navy-800: #173d55;
  --ink: #142536;
  --muted: #60778a;
  --teal-700: #087a78;
  --teal-600: #0d8c88;
  --teal-100: #dff3f1;
  --paper: #ffffff;
  --mist: #eef4f6;
  --line: #d6e2e7;
  --shadow: 0 24px 70px rgba(7, 31, 47, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 42, 62, 0.96);
  color: white;
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 16px;
  font-weight: 760;
  letter-spacing: -0.015em;
  text-decoration: none;
}

.brand img { border-radius: 10px; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 9px 12px;
  border-radius: 9px;
  color: #d7e8ef;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 102px;
  background:
    radial-gradient(circle at 15% 10%, rgba(25, 161, 153, 0.17), transparent 32%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 66%, #123c4b);
  color: white;
}

.hero::after {
  position: absolute;
  right: -180px;
  bottom: -310px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(146, 233, 225, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal-600);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.closing-card .eyebrow,
.page-hero .eyebrow { color: #7de1d9; }

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

h1, h2, h3 {
  margin-top: 0;
  color: inherit;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 72px);
}

.hero-lede {
  max-width: 650px;
  margin: 0;
  color: #c7d8e1;
  font-size: 19px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary { background: #21a69f; color: #071f2d; }
.button-primary:hover { background: #49c0ba; }

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.button-secondary:hover { border-color: rgba(255, 255, 255, 0.42); }

.button-light { background: white; color: var(--navy-900); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 26px 0 0;
  padding: 0;
  color: #a9c1cd;
  font-size: 13px;
  list-style: none;
}

.trust-list li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #59d4cb;
  content: "";
}

.hero-visual { position: relative; }

.hero-visual img {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.visual-glow {
  position: absolute;
  inset: 15% 10%;
  border-radius: 50%;
  background: rgba(34, 194, 184, 0.27);
  filter: blur(70px);
}

.section { padding: 100px 0; }
.section-light { background: var(--mist); }

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.compact { margin-bottom: 42px; }

.section-heading h2,
.feature-copy h2,
.closing-card h2,
.support-content h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 48px);
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 9px;
  background: var(--navy-900);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.steps h3 { margin-bottom: 10px; font-size: 21px; }
.steps p { margin: 0; color: var(--muted); }

.feature-section { background: white; }

.feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 68px;
  align-items: center;
}

.feature-image img {
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-copy > p:not(.eyebrow) { color: var(--muted); }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 34px;
}

.feature-list article {
  padding-top: 19px;
  border-top: 2px solid var(--teal-100);
}

.feature-list h3 { margin-bottom: 8px; font-size: 17px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 14px; }

.privacy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.privacy-cards article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.card-icon {
  width: fit-content;
  margin-bottom: 24px;
  padding: 5px 9px;
  border-radius: 7px;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.privacy-cards h3 { margin-bottom: 9px; font-size: 20px; }
.privacy-cards p { margin: 0; color: var(--muted); }

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: white;
}

.notice h3 { margin-bottom: 5px; font-size: 18px; }
.notice p { margin: 0; color: #bfd0d9; font-size: 14px; }
.notice a { flex: 0 0 auto; color: #74ded6; font-weight: 750; }

.closing-section { padding: 80px 0; background: white; }

.closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 48px 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-900), #0c6769);
  color: white;
}

.closing-card h2 { margin-bottom: 0; }

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-brand img { border-radius: 8px; }
.footer-brand div { display: grid; }
.footer-brand strong { font-size: 14px; }
.footer-brand span { color: var(--muted); font-size: 12px; }

.site-footer nav { display: flex; gap: 22px; }
.site-footer nav a { color: var(--muted); font-size: 13px; font-weight: 700; text-decoration: none; }
.site-footer nav a:hover { color: var(--teal-700); }

.page-hero {
  padding: 76px 0 70px;
  background: linear-gradient(140deg, var(--navy-950), var(--navy-800));
  color: white;
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(44px, 6vw, 68px);
}

.page-hero p:last-child { margin: 0; color: #c4d6df; font-size: 17px; }

.policy-shell { max-width: 850px; }
.policy-section { padding: 60px 0 100px; background: var(--mist); }

.policy-summary {
  margin-bottom: 24px;
  padding: 25px 28px;
  border-left: 4px solid var(--teal-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: #e0f3f2;
}

.policy-summary strong { display: block; margin-bottom: 5px; color: var(--teal-700); }
.policy-summary p { margin: 0; font-weight: 620; }

.policy-content {
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 16px 45px rgba(16, 42, 62, 0.06);
}

.policy-content h2 {
  margin: 34px 0 10px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin: 0 0 15px; color: #425a6c; }
.policy-content a { color: var(--teal-700); font-weight: 700; }

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #eaf0f2;
  color: var(--navy-800);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.92em;
}

.support-section { padding: 70px 0 105px; background: var(--mist); }

.support-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.support-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 5px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.support-aside strong { margin-bottom: 8px; font-size: 13px; }
.support-aside a {
  padding: 7px 9px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.support-aside a:hover { background: var(--teal-100); color: var(--teal-700); }

.support-content { min-width: 0; }
.support-content > section { margin-bottom: 78px; scroll-margin-top: 110px; }
.support-content h2 { margin-bottom: 28px; }

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

.faq-list article {
  padding: 24px 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.faq-list h3 { margin-bottom: 8px; font-size: 18px; }
.faq-list p { margin: 0; color: var(--muted); }

.status-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.status-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.status-row:first-child { border-top: 0; }
.status-row span { color: var(--muted); }
.status-head { background: var(--navy-900); color: white; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.status-head span { color: white; }

.support-note {
  margin: 16px 0 0;
  padding: 17px 20px;
  border-left: 4px solid var(--teal-600);
  background: #e1f2f1;
  color: #31535c;
}

.limit-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.limit-list li {
  display: grid;
  gap: 4px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.limit-list strong { color: var(--teal-700); font-size: 22px; }
.limit-list span { color: var(--muted); font-size: 12px; }

.report-card {
  margin-bottom: 0 !important;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: white;
}

.report-card h2 { margin-bottom: 16px; }
.report-card p, .report-card li { color: #c9d8e0; }
.report-card li + li { margin-top: 5px; }
.report-card strong { color: white; }

:focus-visible { outline: 3px solid #52c9c1; outline-offset: 3px; }

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; }
  .hero-copy { max-width: 760px; }
  .feature-image { order: 2; }
  .feature-copy { order: 1; }
  .support-grid { grid-template-columns: 1fr; gap: 30px; }
  .support-aside { position: static; grid-template-columns: repeat(4, auto); align-items: center; }
  .support-aside strong { grid-column: 1 / -1; }
  .limit-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { position: static; }
  .header-inner { min-height: auto; padding: 14px 0; }
  .brand span { max-width: 150px; line-height: 1.15; }
  .nav { gap: 0; }
  .nav a { padding: 8px; font-size: 12px; }
  .hero { padding: 64px 0 72px; }
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: clamp(40px, 13vw, 59px); }
  .hero-lede { font-size: 17px; }
  .section { padding: 72px 0; }
  .steps,
  .privacy-cards { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .notice,
  .closing-card,
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .closing-card { padding: 35px 27px; }
  .page-hero { padding: 55px 0 52px; }
  .policy-section,
  .support-section { padding: 38px 0 70px; }
  .policy-content { padding: 28px 24px; }
  .support-aside { grid-template-columns: 1fr 1fr; }
  .status-row { grid-template-columns: 1fr; gap: 5px; }
  .status-head { display: none; }
  .limit-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .header-inner { align-items: flex-start; flex-direction: column; gap: 10px; }
  .nav { width: 100%; justify-content: space-between; }
  .nav a { padding-inline: 5px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; }
  .section-heading { text-align: left; }
  .limit-list { grid-template-columns: 1fr; }
  .support-aside { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
