:root {
  color-scheme: light;
  --navy: #062e5f;
  --navy-dark: #031d3d;
  --orange: #ff8908;
  --orange-deep: #d96b00;
  --steel: #656b72;
  --ink: #17202a;
  --muted: #66717c;
  --line: #dfe5ea;
  --soft: #f4f6f8;
  --paper: #ffffff;
  --shadow: 0 18px 44px rgba(13, 28, 48, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eef2f5 0, #ffffff 440px, #f4f6f8 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 34px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 258px;
  max-height: 76px;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

nav a:hover { color: var(--orange-deep); }

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px 40px 90px;
}

section { margin-bottom: 88px; }

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(340px, .7fr);
  gap: 44px;
  align-items: stretch;
  padding: 68px;
  background:
    linear-gradient(135deg, rgba(6, 46, 95, .96), rgba(3, 29, 61, .98)),
    var(--navy);
  box-shadow: var(--shadow);
}

.hero h1 {
  max-width: 900px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 56px;
  line-height: 1.02;
}

.hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
  line-height: 1.58;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-panel {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 137, 8, .12), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
}

.status-panel span,
.progress-list span,
.work-grid span,
.library-grid span,
.next-grid span,
.engagement-path span,
.insight-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.status-panel strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 26px;
  line-height: 1.16;
}

.status-panel p {
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
}

.section-title { margin-bottom: 24px; }
.section-title h2 {
  max-width: 980px;
  margin: 0 0 10px;
  color: var(--navy-dark);
  font-size: 38px;
  line-height: 1.1;
}
.section-title p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.update-section,
.client-preview,
.library-section,
.next-section {
  padding: 58px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.update-grid,
.experience-frame {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, .82fr);
  gap: 34px;
}

.update-letter {
  padding: 34px;
  background: #f8fafb;
  border-left: 6px solid var(--orange);
}

.update-letter p {
  margin: 0 0 18px;
  color: var(--steel);
  font-size: 18px;
  line-height: 1.64;
}
.update-letter p:last-child { margin-bottom: 0; }

.progress-list,
.engagement-path {
  display: grid;
  gap: 14px;
}

.progress-list div,
.insight-grid article,
.audience-grid article,
.work-grid article,
.library-grid article,
.next-grid article,
.engagement-path article {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(13, 28, 48, .055);
}

.progress-list div,
.engagement-path article {
  padding: 24px;
}

strong {
  display: block;
  margin-bottom: 9px;
  color: var(--navy-dark);
  font-size: 19px;
  line-height: 1.22;
}

p {
  color: var(--muted);
  line-height: 1.52;
}

.insight-grid,
.audience-grid,
.work-grid,
.library-grid,
.next-grid {
  display: grid;
  gap: 18px;
}

.insight-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.audience-grid,
.next-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.library-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.insight-grid article,
.audience-grid article,
.work-grid article,
.library-grid article,
.next-grid article {
  min-height: 220px;
  padding: 26px;
  border-top: 5px solid var(--navy);
}

.insight-grid article:nth-child(2n),
.work-grid .current,
.next-grid article:nth-child(2n) {
  border-top-color: var(--orange);
}

.work-grid .included {
  border-top-color: #848b92;
}

.client-preview {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 137, 8, .12), transparent 26%),
    #ffffff;
}

.mini-site {
  overflow: hidden;
  background: #fff;
  border: 1px solid #cfd8df;
  box-shadow: 0 18px 38px rgba(13, 28, 48, .12);
}

.mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mini-top img {
  width: 210px;
  max-height: 60px;
  object-fit: contain;
}

button {
  padding: 12px 16px;
  color: #fff;
  background: var(--orange);
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.mini-hero {
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 46, 95, .94), rgba(3, 29, 61, .96)),
    var(--navy);
}

.mini-hero p {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mini-hero h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 34px;
  line-height: 1.06;
}

.mini-hero span {
  display: block;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}

.checklist {
  display: grid;
  gap: 12px;
  padding: 28px 34px 34px;
}

.checklist label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--steel);
}

.audience-section {
  padding: 54px;
  color: #fff;
  background: var(--navy-dark);
}

.audience-section .section-title h2,
.audience-section .section-title p { color: #fff; }
.audience-grid article {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}
.audience-grid strong { color: #fff; }
.audience-grid p { color: rgba(255, 255, 255, .74); }

.library-grid a {
  display: inline-flex;
  margin-top: 10px;
  padding: 10px 13px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.library-grid a:hover { background: var(--orange-deep); }

@media (max-width: 1120px) {
  .hero,
  .update-grid,
  .experience-frame {
    grid-template-columns: 1fr;
  }
  .insight-grid,
  .work-grid,
  .library-grid,
  .audience-grid,
  .next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }
  .brand img { width: 220px; }
  nav { justify-content: flex-start; }
  main { padding: 24px 16px 56px; }
  section { margin-bottom: 54px; }
  .hero,
  .update-section,
  .client-preview,
  .library-section,
  .next-section,
  .audience-section {
    padding: 28px;
  }
  .hero h1 { font-size: 34px; }
  .section-title h2 { font-size: 28px; }
  .insight-grid,
  .work-grid,
  .library-grid,
  .audience-grid,
  .next-grid {
    grid-template-columns: 1fr;
  }
  .mini-top {
    align-items: flex-start;
    flex-direction: column;
  }
}
