:root {
  --paper: #f4f1ea;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --ink: #171a24;
  --ink-soft: #24324d;
  --muted: #63708a;
  --line: #d8deea;
  --accent: #f28b21;
  --accent-soft: #ffe2bf;
  --navy: #0f3563;
  --navy-soft: #dfe8f6;
  --shadow: 0 24px 80px rgba(20, 34, 58, 0.1);
  --shadow-soft: 0 12px 36px rgba(20, 34, 58, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 139, 33, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 53, 99, 0.12), transparent 26%),
    linear-gradient(180deg, #fbfaf7 0%, var(--paper) 38%, #f7f9fc 100%);
  font-family:
    "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

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

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

::selection {
  background: #ffe0b7;
  color: var(--ink);
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 222, 234, 0.7);
  background: rgba(250, 249, 246, 0.86);
  backdrop-filter: blur(18px);
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-row {
  padding: 16px 0;
}

.brand,
.footer-meta,
.eyebrow,
.section-kicker,
.panel-kicker,
.approach-step,
.timeline-date,
.audience-kicker {
  font-family:
    "IBM Plex Mono", "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-link:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-1px);
}

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 56px 0 22px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.92;
  pointer-events: none;
}

.hero-glow-left {
  top: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(242, 139, 33, 0.25), transparent 70%);
}

.hero-glow-right {
  top: -80px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(15, 53, 99, 0.22), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 42px;
  align-items: end;
}

.hero-grid-wide {
  align-items: stretch;
}

.hero-copy h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(2.9rem, 6.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 620;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.approach-step,
.timeline-date,
.audience-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid rgba(216, 222, 234, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(20, 34, 58, 0.04);
}

.hero-mark {
  margin-top: 24px;
}

.hero-logo {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(20, 34, 58, 0.08);
}

.hero-text,
.section-text,
.card p,
.contact-text,
.panel-block p,
.panel-note p,
.metric-card span,
.timeline-card p,
.audience-card p,
.legal-note p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 700px;
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.9;
}

.hero-text-large {
  font-size: 1.02rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

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

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button-light {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
}

.button-light:hover {
  border-color: var(--navy);
}

.button-accent {
  background: var(--accent);
  color: #fff;
}

.hero-panel,
.card,
.contact-box,
.timeline-shell {
  border: 1px solid rgba(216, 222, 234, 0.9);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 22px;
  border-radius: 28px;
  backdrop-filter: blur(14px);
}

.hero-panel-legal {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92)),
    var(--surface);
}

.panel-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(216, 222, 234, 0.9);
}

.panel-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.panel-block,
.panel-note {
  margin-top: 18px;
}

.panel-block p:last-child,
.panel-note p:last-child {
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.8;
}

.metric-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.metric-card {
  padding: 14px 16px;
  border: 1px solid rgba(216, 222, 234, 0.9);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
}

.metric-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--navy);
}

.metric-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.panel-note {
  padding: 16px 15px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15, 53, 99, 0.05), rgba(15, 53, 99, 0.02));
}

.section {
  padding: 26px 0;
}

.section-topline .container {
  padding-top: 44px;
  border-top: 1px solid rgba(216, 222, 234, 0.9);
}

.section-bottom {
  padding-bottom: 96px;
}

.section-head {
  display: grid;
  gap: 20px;
  align-items: end;
}

.section-head h2,
.contact-box h2 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 4.1vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 620;
}

.section-text {
  max-width: 580px;
  font-size: 0.98rem;
  line-height: 1.85;
}

.card-grid,
.timeline-grid,
.audience-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 253, 255, 0.88));
}

.card-accent {
  width: 64px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--navy));
}

.card h3,
.timeline-card h3,
.audience-card h3 {
  margin-top: 16px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.card p,
.timeline-card p,
.audience-card p {
  margin-top: 12px;
  font-size: 0.96rem;
  line-height: 1.8;
}

.audience-shell {
  padding: 30px 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--navy), #112945);
  box-shadow: var(--shadow);
}

.section-kicker-inverse,
.audience-kicker {
  color: rgba(255, 255, 255, 0.56);
}

.audience-head h2,
.audience-text {
  color: #fff;
}

.audience-text {
  opacity: 0.78;
}

.audience-card {
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.audience-card h3,
.audience-card p {
  color: #fff;
}

.audience-card p {
  opacity: 0.78;
}

.timeline-shell {
  padding: 30px 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.88));
}

.timeline-card {
  padding: 20px 18px;
  border: 1px solid rgba(216, 222, 234, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.timeline-date {
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
}

.legal-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.legal-note p {
  line-height: 1.8;
}

.contact-box {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 252, 0.9));
}

.contact-box-legal {
  border-color: rgba(15, 53, 99, 0.12);
}

.contact-text {
  max-width: 780px;
  margin-top: 16px;
  font-size: 0.98rem;
  line-height: 1.85;
}

.contact-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.site-footer {
  border-top: 1px solid rgba(216, 222, 234, 0.8);
  background: rgba(255, 255, 255, 0.72);
}

.footer-row {
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

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

.footer-meta {
  font-size: 0.76rem;
}

@media (min-width: 920px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  }

  .section-head {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 580px);
  }

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

  .contact-box {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 919px) {
  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1160px, calc(100% - 28px));
  }

  .hero {
    padding-top: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
    line-height: 1.04;
  }

  .footer-row {
    display: grid;
    justify-content: stretch;
  }

  .footer-links {
    justify-content: space-between;
  }
}
