:root {
  --bg: #eef2f7;
  --text: #0f1722;
  --muted: #5f6977;
  --panel: #ffffff;
  --panel-dark: #0f1f33;
  --panel-dark-2: #142843;
  --line: rgba(15, 23, 34, 0.1);
  --red: #ff4d5a;
  --blue: #3a7cff;
  --sky: #cfe2ff;
  --shadow: 0 22px 50px rgba(18, 38, 63, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(58, 124, 255, 0.12), transparent 22%),
    radial-gradient(circle at left center, rgba(255, 77, 90, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 34, 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

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

.brand-badge {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--red), var(--blue));
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.site-nav a,
.eyebrow,
.button,
.facts-row span,
.checklist-grid span {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.site-nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #5d97ff);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.hero-panel,
.mosaic-section,
.split-band,
.page-hero,
.editorial-grid,
.team-layout,
.feature-card,
.side-card,
.topic-card,
.light-card,
.dark-card,
.info-box,
.facts-row article,
.checklist-grid article,
.principles-row article {
  margin-bottom: 28px;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
}

.hero-copy,
.hero-media,
.light-card,
.dark-card,
.feature-card,
.split-band,
.page-hero,
.feature-story,
.info-box,
.topic-card,
.side-card,
.team-main,
.facts-row article,
.checklist-grid article,
.principles-row article {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy,
.light-card,
.page-hero,
.info-box,
.topic-card,
.side-card,
.facts-row article,
.checklist-grid article,
.principles-row article {
  background: var(--panel);
  border: 1px solid var(--line);
}

.hero-copy,
.page-hero,
.feature-story-copy,
.info-box,
.topic-card div,
.split-copy,
.team-main-copy,
.side-card,
.facts-row article,
.checklist-grid article,
.principles-row article,
.light-card,
.dark-card {
  padding: 30px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lead,
.hero-copy p,
.light-card p,
.dark-card p,
.feature-copy p,
.split-copy p,
.feature-story-copy p,
.info-box p,
.topic-card p,
.team-main-copy p,
.side-card p,
.facts-row p,
.checklist-grid p,
.principles-row p,
.site-footer p {
  color: var(--muted);
  line-height: 1.78;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.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 22px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #ff7a4d);
}

.button.ghost {
  border: 1px solid var(--line);
  background: #fff;
}

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

.status-row article {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7faff, #eef5ff);
  border: 1px solid rgba(58, 124, 255, 0.14);
}

.status-row strong,
.feature-copy h3,
.info-box h3,
.facts-row h3,
.checklist-grid h3,
.principles-row h3,
.side-card h3 {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
}

.hero-media {
  position: relative;
  background: var(--panel-dark);
}

.hero-media img,
.split-media img,
.feature-card img,
.feature-story img,
.topic-card img,
.team-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  min-height: 520px;
}

.hero-sticker {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15, 31, 51, 0.88);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-sticker span {
  display: block;
  margin-bottom: 6px;
  color: #95bcff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mosaic-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.dark-card {
  background:
    linear-gradient(135deg, rgba(255, 77, 90, 0.22), transparent 40%),
    linear-gradient(160deg, var(--panel-dark), var(--panel-dark-2));
  color: #fff;
}

.dark-card .eyebrow {
  color: #95bcff;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.76);
}

.dark-card h2,
.light-card h2,
.split-copy h2,
.feature-story-copy h2,
.team-main-copy h2,
.section-head h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
}

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

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

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
}

.feature-card img {
  height: 230px;
}

.feature-copy {
  padding: 22px;
}

.split-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: linear-gradient(145deg, #0f1f33, #152949);
}

.split-copy {
  color: #fff;
}

.split-copy .eyebrow {
  color: #9dbfff;
}

.split-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.split-media img {
  min-height: 420px;
}

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

.facts-row span,
.checklist-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red));
}

.page-hero.alt {
  background:
    linear-gradient(135deg, rgba(58, 124, 255, 0.08), rgba(255, 77, 90, 0.06)),
    #fff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.feature-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--panel);
  border: 1px solid var(--line);
}

.feature-story img {
  min-height: 360px;
}

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

.topic-card img {
  height: 220px;
}

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

.team-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.team-main {
  background: var(--panel);
  border: 1px solid var(--line);
}

.team-main img {
  height: 360px;
}

.team-side {
  display: grid;
  gap: 18px;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 4px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--blue);
}

@media (max-width: 980px) {
  .hero-panel,
  .mosaic-section,
  .feature-grid,
  .split-band,
  .facts-row,
  .editorial-grid,
  .cards-grid,
  .principles-row,
  .team-layout,
  .checklist-grid,
  .feature-story {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .feature-story img,
  .split-media img,
  .team-main img {
    min-height: 300px;
  }
}

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

  .site-header {
    top: 10px;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .site-nav.nav-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero-copy,
  .page-hero,
  .feature-story-copy,
  .info-box,
  .topic-card div,
  .split-copy,
  .team-main-copy,
  .side-card,
  .facts-row article,
  .checklist-grid article,
  .principles-row article,
  .light-card,
  .dark-card {
    padding: 24px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .status-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
