:root {
  --bg: #07111f;
  --bg-soft: #0d1b31;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4f1ea;
  --muted: rgba(244, 241, 234, 0.74);
  --accent: #f0b15f;
  --accent-2: #88d4c1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(240, 177, 95, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(136, 212, 193, 0.15), transparent 25%),
    linear-gradient(180deg, #091322 0%, var(--bg) 40%, #050a13 100%);
}

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

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-logo {
  display: block;
  width: 128px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
}

.brand p,
.brand span,
.topbar nav a,
.eyebrow,
.section-kicker,
.stat-label,
.card-head span,
.card-footer p {
  margin: 0;
  letter-spacing: 0.02em;
}

.brand p {
  font-weight: 800;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.topbar nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.topbar nav a:hover {
  color: var(--text);
}

main {
  padding: 28px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  padding: 40px 0 18px;
}

.hero-copy,
.hero-card,
.content-card,
.info-card,
.timeline-step,
.panel,
.contact-section {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
}

.hero-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
}

h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 5vw, 5.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.5rem;
}

.lede,
.content-card p,
.info-card p,
.timeline-step p,
.panel p,
.contact-copy {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.lede {
  max-width: 62ch;
  margin: 22px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #e09845);
  color: #07111f;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.95rem;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.card-head span {
  color: var(--muted);
}

.card-head strong,
.stat-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.stat-grid {
  display: grid;
  gap: 16px;
  padding: 20px 0;
}

.stat-grid > div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.stat-label {
  display: block;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 4px;
}

.pulse {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(136, 212, 193, 0.7);
  animation: pulse 2s infinite;
}

.section {
  padding: 28px 0;
}

.split,
.contact-section,
.dual-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

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

.content-card,
.info-card,
.timeline-step,
.panel,
.contact-section {
  padding: 28px;
}

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

.info-card {
  min-height: 220px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-step span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(240, 177, 95, 0.12);
  border: 1px solid rgba(240, 177, 95, 0.28);
  color: var(--accent);
  font-weight: 800;
}

.panel-dark {
  background: linear-gradient(180deg, rgba(10, 19, 34, 0.95), rgba(18, 28, 47, 0.92));
}

.panel-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.contact-section {
  align-items: center;
  margin-top: 10px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(136, 212, 193, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(136, 212, 193, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(136, 212, 193, 0);
  }
}

@media (max-width: 960px) {
  .hero,
  .split,
  .dual-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-copy,
  .hero-card,
  .content-card,
  .info-card,
  .timeline-step,
  .panel,
  .contact-section,
  .topbar {
    padding: 20px;
    border-radius: 22px;
  }

  .topbar nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand-logo {
    width: 112px;
    height: 40px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }
}
