:root {
  color-scheme: light;
  --bg-top: #0d1822;
  --bg-bottom: #edf3f6;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: #113743;
  --border: rgba(18, 57, 69, 0.14);
  --text: #17303a;
  --muted: #56727b;
  --accent: #0d5c63;
  --accent-bright: #1b8691;
  --accent-soft: rgba(13, 92, 99, 0.09);
  --warm: #d7a64b;
  --shadow: 0 18px 44px rgba(10, 30, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font: 16px/1.6 "Segoe UI Variable Text", "Aptos", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(215, 166, 75, 0.18), transparent 24%),
    radial-gradient(circle at left 18% top 14%, rgba(27, 134, 145, 0.18), transparent 20%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 42%);
}

a {
  color: inherit;
}

.site-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}

.hero {
  padding: 10px 0 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  font: 700 1.05rem/1 "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f5fcfd;
}

.toplinks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.toplinks a {
  color: rgba(245, 252, 253, 0.88);
  text-decoration: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(15, 92, 99, 0.9), rgba(17, 35, 51, 0.92));
  color: #f4fffe;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font: 700 clamp(2.2rem, 4vw, 4.1rem)/1.02 "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  letter-spacing: -0.03em;
}

.hero-copy .lede {
  max-width: 42rem;
  color: rgba(244, 255, 254, 0.88);
  font-size: 1.06rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--warm);
  font: 700 0.82rem/1.2 "Bahnschrift", "Aptos Display", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-row,
.subcta-row,
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-row {
  margin-top: 24px;
}

.subcta-row {
  margin-top: 16px;
}

.subcta-row a {
  color: rgba(244, 255, 254, 0.86);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(90deg, #f2bb5c, #ffd57c);
  color: #1b262d;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f4fffe;
}

.button-static {
  cursor: default;
  text-decoration: none;
}

.hero-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.signal-card,
.signal-list div,
.info-card,
.trust-card {
  border-radius: 22px;
}

.signal-card {
  padding: 20px;
  background: linear-gradient(180deg, rgba(13, 92, 99, 0.1), rgba(13, 92, 99, 0.03));
  border: 1px solid var(--border);
}

.signal-card h2 {
  margin: 4px 0 8px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.signal-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.signal-list div {
  padding: 14px 16px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.signal-list span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-list strong {
  display: block;
  margin-top: 3px;
}

main {
  display: grid;
  gap: 22px;
}

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

.section-accent {
  background:
    linear-gradient(135deg, rgba(13, 92, 99, 0.08), rgba(215, 166, 75, 0.08)),
    var(--surface-strong);
}

.section-heading h2 {
  margin: 0;
  font: 700 clamp(1.7rem, 2.5vw, 2.5rem)/1.08 "Bahnschrift", "Aptos Display", sans-serif;
}

.card-grid,
.trust-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

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

.info-card,
.trust-card {
  padding: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.info-card h3,
.trust-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.steps {
  margin: 18px 0 0;
  padding-left: 22px;
}

.steps li + li {
  margin-top: 12px;
}

.section-note {
  margin-top: 16px;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 24px 6px 6px;
  color: rgba(23, 48, 58, 0.9);
}

.footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .card-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .section {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 16px 14px 40px;
  }

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

  .hero-copy h1 {
    font-size: 2.1rem;
  }
}
