:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --panel: rgba(255, 255, 255, 0.8);
  --panel-strong: #ffffff;
  --text: #12151a;
  --muted: #5d6570;
  --line: rgba(18, 21, 26, 0.12);
  --accent: #0c63b3;
  --accent-soft: rgba(12, 99, 179, 0.12);
  --accent-2: #b56b14;
  --copper: #c27b2c;
  --teal: #1c8a8d;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(12, 99, 179, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(12, 99, 179, 0.06) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(194, 123, 44, 0.12), transparent 30%),
    radial-gradient(circle at 14% 20%, rgba(28, 138, 141, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.topbar-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: right;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.58fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0 18px;
}

.hero-copy,
.hero-panel,
.card,
.bullet,
.stat {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 12ch;
}

.lede {
  margin-bottom: 28px;
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: white;
  border-color: transparent;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
}

.hero-panel {
  border-radius: 28px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  align-self: start;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -28% -30% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 123, 44, 0.22), transparent 64%);
  pointer-events: none;
}

.hero-panel-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-panel-title {
  margin: 14px 0 10px;
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  max-width: 20ch;
}

.hero-panel-copy {
  margin: 0;
  color: var(--muted);
  max-width: 24ch;
  font-size: 0.92rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 44px;
}

.stat {
  border-radius: 20px;
  padding: 18px 18px 20px;
}

.stat strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  margin: 0 0 44px;
}

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

.section-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  max-width: 16ch;
}

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

.card {
  border-radius: 24px;
  padding: 22px;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

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

.bullet {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-radius: 22px;
  padding: 18px 20px;
}

.bullet-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 99, 179, 0.12), rgba(194, 123, 44, 0.12));
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.bullet p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer p {
  margin-bottom: 0;
}

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

  .topbar,
  .footer {
    display: grid;
  }

  .topbar-note {
    text-align: left;
  }

  .stat-strip,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 8px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 12px;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .bullet,
  .stat {
    border-radius: 20px;
  }

  .hero-copy {
    padding: 24px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .hero-panel-title {
    max-width: 100%;
  }
}
