:root {
  --midnight: #091a2c;
  --navy: #102c45;
  --ice: #eaf8ff;
  --teal: #35d4c0;
  --turf: #76e16f;
  --orange: #ff7b32;
  --peach: #ffd7bf;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(9, 26, 44, 0.12);
  --text: #eef7ff;
  --text-dark: #102337;
  --muted: #86a7be;
  --shadow: 0 32px 70px rgba(4, 15, 28, 0.28);
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(53, 212, 192, 0.25), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(255, 123, 50, 0.18), transparent 16%),
    linear-gradient(160deg, #071321 0%, #0d2236 52%, #13324f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.3;
  pointer-events: none;
}

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

.site-bg {
  position: fixed;
  inset: auto auto 8% 50%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(118, 225, 111, 0.14), rgba(118, 225, 111, 0) 64%);
  transform: translateX(-50%);
  filter: blur(6px);
  pointer-events: none;
}

.layout-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.site-header,
.site-footer,
.panel {
  backdrop-filter: blur(18px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 24, 40, 0.75);
  box-shadow: var(--shadow);
}

.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(--teal), var(--turf));
  color: var(--midnight);
  font-family: "Teko", sans-serif;
  font-size: 1.85rem;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong,
.top-nav a,
.eyebrow,
h1,
h2,
h3,
.button,
.ticker span,
.score-label {
  font-family: "Teko", sans-serif;
  letter-spacing: 0.04em;
}

.brand-text strong {
  font-size: 1.7rem;
  line-height: 1;
}

.brand-text em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.top-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.1rem;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(53, 212, 192, 0.16);
  outline: none;
}

.hero-grid,
.content-grid,
.tracker-grid,
.culture-columns,
.feature-band {
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: 1.35fr 0.9fr;
  align-items: stretch;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.tracker-grid,
.culture-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.06));
}

.panel-dark,
.panel-light,
.panel-accent {
  padding: 28px;
}

.panel-dark {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(7, 19, 33, 0.95), rgba(13, 34, 54, 0.88)),
    linear-gradient(120deg, rgba(53, 212, 192, 0.12), transparent 50%);
}

.panel-light {
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 248, 255, 0.92)),
    linear-gradient(120deg, rgba(53, 212, 192, 0.12), rgba(255, 123, 50, 0.08));
}

.panel-accent {
  color: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, var(--turf), var(--teal) 62%, #9df3eb);
}

.hero-copy {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-score {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inner-main {
  display: grid;
  gap: 22px;
}

.inner-hero {
  min-height: 280px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 0.95;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

p,
li {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.72;
}

.lead {
  max-width: 65ch;
  font-size: 1.1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 18px;
  font-size: 1.2rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), #ff9a55);
  color: #fff7f0;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ticker span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1rem;
}

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

.score-stack {
  display: grid;
  gap: 14px;
}

.score-item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.68);
}

.score-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #22506d;
  font-size: 1rem;
  text-transform: uppercase;
}

.feature-band {
  margin-top: 22px;
}

.wide-panel {
  grid-column: 1 / -1;
}

.compact-panel {
  align-self: start;
}

.bullet-list {
  margin: 6px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.timeline-panel {
  margin-top: 22px;
}

.timeline-list,
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.timeline-list article,
.check-grid > div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.checklist-panel .check-grid > div {
  border-color: rgba(9, 26, 44, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 24, 40, 0.72);
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .content-grid,
  .tracker-grid,
  .culture-columns,
  .timeline-list,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .inner-hero {
    min-height: auto;
  }

  .wide-panel {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .layout-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
  }

  .site-header,
  .site-footer,
  .panel-dark,
  .panel-light,
  .panel-accent {
    padding: 20px;
  }

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

  .top-nav {
    width: 100%;
  }

  .top-nav a {
    flex: 1 1 120px;
    text-align: center;
  }

  h1 {
    max-width: none;
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .button {
    width: 100%;
  }
}
