:root {
  --bg: #f7fbff;
  --card: #ffffff;
  --card-soft: #eef6ff;
  --ink: #16324f;
  --muted: #587492;
  --line: #dce7f5;
  --gold: #ffd86b;
  --navy: #16324f;
  --navy-soft: #274566;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 223, 132, 0.45), transparent 20rem),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
}

.site-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.feature-card,
.story-card,
.support-template,
.cta-banner {
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: var(--card);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: var(--card-soft);
}

.hero-support .hero-copy {
  background: #fff7df;
}

.hero-card {
  padding: 2rem;
  background: var(--navy);
  color: #ffffff;
}

.eyebrow,
.feature-kicker,
.card-label {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.eyebrow,
.feature-kicker {
  color: var(--muted);
}

.card-label {
  color: #cfe0ff;
}

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

h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1.1;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.lead,
.hero-card p,
.feature-card p,
.story-card p,
.support-template p,
.cta-banner p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-card p,
.cta-banner p {
  color: #dbe8fb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  transition: transform 140ms ease, opacity 140ms ease;
}

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

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

.button-secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.hero-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #dbe8fb;
  line-height: 1.8;
}

.feature-strip,
.story-section,
.cta-banner {
  margin-top: 1.2rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card,
.story-card,
.support-template {
  padding: 1.4rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--navy);
}

.support-template {
  background: var(--card-soft);
}

@media (max-width: 900px) {
  .hero,
  .feature-strip,
  .story-grid,
  .cta-banner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-banner {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 1120px);
    padding-top: 1rem;
  }

  .hero-copy,
  .hero-card,
  .feature-card,
  .story-card,
  .support-template,
  .cta-banner {
    padding: 1.3rem;
    border-radius: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
