:root {
  --navy-950: #081a2d;
  --navy-900: #102a43;
  --navy-800: #16395b;
  --teal-500: #17c7d1;
  --green-500: #34d96c;
  --lime-400: #d7f205;
  --sky-100: #eef6fb;
  --paper: rgba(255, 255, 255, 0.86);
  --paper-strong: rgba(255, 255, 255, 0.94);
  --ink: #0f2236;
  --ink-soft: #5d6877;
  --line: rgba(16, 42, 67, 0.12);
  --shadow: 0 22px 60px rgba(8, 26, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: #ecf3fa;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(23, 199, 209, 0.26), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(52, 217, 108, 0.18), transparent 22%),
    radial-gradient(circle at 78% 72%, rgba(215, 242, 5, 0.14), transparent 18%),
    linear-gradient(180deg, #f7fbff 0%, #eaf2fb 100%);
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.compact-topbar {
  margin-bottom: 18px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brandmark img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(14, 35, 58, 0.18);
}

.brandmark strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.1;
}

.brandmark small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topnav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  margin-top: 22px;
}

.hero-copy,
.visual-card,
.trust-item,
.content-card,
.legal-header,
.legal-content {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 44px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  font-weight: 900;
}

.lede,
.content-card p,
.trust-item p,
.legal-header p,
.legal-content p,
.feature-stack li {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.58;
}

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

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 800;
}

.primary-link {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: white;
}

.secondary-link {
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.inline-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 42, 67, 0.06);
  color: var(--navy-800);
  font-weight: 700;
  font-size: 0.96rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.visual-card {
  overflow: hidden;
}

.visual-brand {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(23, 199, 209, 0.14), transparent 35%),
    linear-gradient(160deg, rgba(8, 26, 45, 0.98) 0%, rgba(22, 57, 91, 0.95) 100%);
  color: white;
}

.brand-logo {
  width: 164px;
  height: 164px;
  border-radius: 34px;
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.28);
}

.visual-copy h2,
.panel-title {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.05;
}

.visual-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.visual-kicker,
.metric-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  font-weight: 900;
}

.visual-metrics {
  padding: 22px;
  display: grid;
  gap: 16px;
  background: var(--paper-strong);
}

.visual-metrics strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.04rem;
  line-height: 1.35;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.trust-item {
  padding: 24px;
}

.trust-title {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-900);
  font-weight: 800;
  font-size: 1.05rem;
}

.section-block {
  margin-top: 32px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2,
.content-card h2,
.legal-content h2,
.legal-header h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

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

.step-card,
.content-card {
  padding: 28px;
}

.step-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(23, 199, 209, 0.16), transparent 66%);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-500), var(--green-500));
  color: var(--navy-950);
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
  line-height: 1.1;
}

.step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.dual-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.accent-card {
  background:
    radial-gradient(circle at top right, rgba(52, 217, 108, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 249, 255, 0.95));
}

.feature-stack {
  margin: 18px 0 0;
  padding-left: 20px;
}

.feature-stack li + li {
  margin-top: 10px;
}

.support-callout {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: white;
}

.support-callout span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 900;
}

.support-callout a {
  display: inline-block;
  margin-top: 8px;
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.18rem;
}

.text-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.text-link {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: none;
}

.legal-shell {
  max-width: 920px;
}

.legal-header,
.legal-content {
  padding: 32px;
}

.legal-header {
  margin-top: 18px;
}

.legal-content {
  margin-top: 18px;
}

.legal-content section + section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 20px 6px 0;
  color: var(--ink-soft);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  max-width: 36ch;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .trust-band,
  .steps-grid,
  .dual-panel {
    grid-template-columns: 1fr;
  }

  .visual-brand {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 124px;
    height: 124px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 22px, 1160px);
    padding-top: 18px;
  }

  .topbar,
  .hero-copy,
  .visual-card,
  .trust-item,
  .content-card,
  .step-card,
  .legal-header,
  .legal-content {
    border-radius: 24px;
  }

  .topbar,
  .hero-copy,
  .visual-brand,
  .visual-metrics,
  .trust-item,
  .content-card,
  .step-card,
  .legal-header,
  .legal-content {
    padding: 22px;
  }

  .topbar,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    align-items: flex-start;
  }

  .hero-copy h1,
  .legal-header h1 {
    font-size: 2.65rem;
  }

  .topnav {
    gap: 14px;
  }

  .hero-actions,
  .text-actions {
    flex-direction: column;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }
}
