:root {
  --bg: #f7f4ed;
  --bg-soft: #fffdf8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #172033;
  --muted: #5e6779;
  --line: rgba(18, 35, 67, 0.1);
  --navy: #102544;
  --navy-2: #18345f;
  --gold: #b78a32;
  --gold-soft: rgba(183, 138, 50, 0.14);
  --green: #1d7a63;
  --green-soft: rgba(29, 122, 99, 0.12);
  --shadow: 0 24px 80px rgba(13, 27, 52, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(183, 138, 50, 0.14), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(16, 37, 68, 0.1), transparent 24%),
    linear-gradient(180deg, #fcfaf5 0%, #f6f1e7 100%);
  font-family: "Manrope", "Avenir Next", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-shell-narrow {
  width: min(900px, calc(100% - 32px));
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 45px rgba(16, 37, 68, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), #244d86);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--navy);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.hero-copy,
.hero-card,
.trust-strip,
.feature-card,
.showcase-card,
.page-hero,
.legal-card,
.support-card,
.faq-item,
.footer {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 12px 24px rgba(16, 37, 68, 0.22);
}

.button-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(16, 37, 68, 0.12);
}

.hero-points,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
  color: var(--navy);
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #55a18d);
  box-shadow: 0 0 0 5px var(--green-soft);
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-xl);
}

.hero-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(16, 37, 68, 0.08);
  color: var(--navy);
  font-weight: 800;
}

.status-soft {
  background: var(--green-soft);
  color: var(--green);
}

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

.metric-card,
.coverage-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid rgba(16, 37, 68, 0.08);
}

.metric-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.metric-card-accent {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(183, 138, 50, 0.14), rgba(255, 255, 255, 0.94));
}

.coverage-card {
  background: linear-gradient(180deg, rgba(16, 37, 68, 0.05), rgba(255, 255, 255, 0.98));
}

.coverage-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--navy);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0;
  padding: 24px;
  border-radius: 28px;
}

.trust-strip article {
  padding-right: 10px;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.02rem;
}

.section {
  margin-top: 26px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.section-heading h2,
.showcase-copy h2,
.legal-card h2,
.support-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.feature-grid,
.support-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-card h3,
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--navy);
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  padding: 32px;
  border-radius: 30px;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.showcase-list {
  display: grid;
  gap: 14px;
}

.showcase-list div {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16, 37, 68, 0.08);
}

.showcase-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.page-hero,
.legal-card,
.support-card,
.faq-item {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.legal-page,
.support-page {
  display: grid;
  gap: 18px;
}

.legal-highlight {
  background: linear-gradient(135deg, rgba(29, 122, 99, 0.08), rgba(255, 255, 255, 0.96));
}

.support-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.support-card-emphasis {
  background: linear-gradient(145deg, rgba(16, 37, 68, 0.96), rgba(26, 58, 98, 0.92));
  color: #fff;
}

.support-card-emphasis h2,
.support-card-emphasis p,
.support-card-emphasis small {
  color: #fff;
}

.support-card-emphasis .button-primary {
  background: linear-gradient(135deg, #f4efe2, #d9c189);
  color: var(--navy);
  box-shadow: none;
}

.support-card small {
  display: block;
  margin-top: 14px;
  line-height: 1.6;
}

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

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: 24px 26px;
  border-radius: 24px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .showcase-card,
  .support-grid,
  .trust-strip,
  .feature-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

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

  .nav,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell,
  .site-shell-narrow {
    width: min(100% - 20px, 100%);
    padding-top: 14px;
    padding-bottom: 28px;
  }

  .topbar,
  .hero-copy,
  .hero-card,
  .trust-strip,
  .feature-card,
  .showcase-card,
  .page-hero,
  .legal-card,
  .support-card,
  .faq-item,
  .footer {
    padding: 22px;
    border-radius: 22px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }
}
