:root {
  --ink: #10202b;
  --ink-soft: #445761;
  --navy: #0b1b26;
  --navy-light: #16313e;
  --paper: #f7f4ed;
  --paper-deep: #eee8dc;
  --white: #fff;
  --orange: #ef6a3a;
  --orange-dark: #c94b20;
  --teal: #2c7b76;
  --teal-light: #dcecea;
  --line: #d8d2c7;
  --radius: 18px;
  --shadow: 0 22px 60px rgb(15 32 43 / 12%);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(247 244 237 / 94%);
  border-bottom: 1px solid rgb(216 210 199 / 80%);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.6rem 0.72rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--paper-deep);
}

.nav-links .nav-cta {
  margin-left: 0.35rem;
  color: var(--white);
  background: var(--ink);
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--navy-light);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background:
    radial-gradient(circle at 86% 18%, rgb(44 123 118 / 20%), transparent 28%),
    linear-gradient(135deg, var(--navy), #102d3a);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -11rem;
  bottom: -15rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgb(255 255 255 / 3%),
    0 0 0 120px rgb(255 255 255 / 2%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff9a73;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.4rem;
  max-width: 760px;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 2rem;
  color: #c4d1d7;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button-row--spaced {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 20px rgb(239 106 58 / 20%);
}

.button:hover {
  background: var(--orange-dark);
}

.button-secondary {
  border-color: rgb(255 255 255 / 28%);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  background: rgb(255 255 255 / 8%);
}

.button-dark {
  background: var(--ink);
  box-shadow: none;
}

.button-dark:hover {
  background: var(--navy-light);
}

.board-preview {
  padding: 1.15rem;
  background: #f8faf9;
  color: var(--ink);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgb(0 0 0 / 30%);
  transform: rotate(1deg);
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.15rem 0.2rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
}

.live::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #30a46c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(48 164 108 / 13%);
}

.board-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.board-column {
  min-height: 230px;
  padding: 0.65rem;
  background: #e9eeec;
  border-radius: 11px;
}

.column-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.report-card {
  margin-bottom: 0.6rem;
  padding: 0.7rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(15 32 43 / 7%);
}

.report-card strong,
.report-card span {
  display: block;
}

.report-card strong {
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
}

.report-card span {
  color: #66777e;
  font-size: 0.63rem;
}

.badge {
  display: inline-block;
  width: fit-content;
  margin-top: 0.55rem;
  padding: 0.16rem 0.4rem;
  border-radius: 999px;
  color: #9b3d1d;
  background: #ffdfd0;
  font-size: 0.56rem;
  font-weight: 800;
}

.audience-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.audience-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
  font-weight: 750;
}

.audience-list span:first-child {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-tight {
  padding: 3.25rem 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-white {
  background: var(--white);
}

.section-teal {
  background: var(--teal-light);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-heading p,
.lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-dark .section-heading p,
.section-dark .lede {
  color: #b7c8cf;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: clamp(1.3rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgb(15 32 43 / 5%);
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.card-number,
.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  color: var(--orange-dark);
  background: #ffe2d6;
  border-radius: 11px;
  font-weight: 850;
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.problem-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.problem-list b {
  color: var(--orange);
  font-size: 0.82rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgb(255 255 255 / 13%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: var(--radius);
}

.workflow-step {
  position: relative;
  padding: 2rem;
  background: var(--navy-light);
}

.workflow-step small {
  display: block;
  margin-bottom: 1.5rem;
  color: #78b9b3;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-step h3 {
  font-size: 1.7rem;
}

.workflow-step p {
  margin-bottom: 0;
  color: #b7c8cf;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.7rem;
}

.check-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.role-label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.55rem;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-panel {
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--teal-light);
  border-radius: calc(var(--radius) + 6px);
}

.quote-panel blockquote {
  max-width: 850px;
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.5rem);
  font-weight: 780;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--navy);
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero .lede {
  max-width: 720px;
}

.timeline {
  counter-reset: event-step;
  display: grid;
  gap: 0;
  max-width: 850px;
  margin-inline: auto;
}

.timeline-item {
  counter-increment: event-step;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.3rem;
  padding-bottom: 2.2rem;
}

.timeline-item::before {
  content: counter(event-step, decimal-leading-zero);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 42rem);
  gap: 0;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: clamp(2rem, 6vw, 4.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-details {
  padding: 1.5rem;
  background: var(--paper);
  border-radius: 15px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  margin-top: 3rem;
  font-size: 1.7rem;
}

.prose h3 {
  margin-top: 2rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose a {
  color: var(--teal);
  font-weight: 700;
}

.cta-band {
  padding: clamp(2.5rem, 6vw, 4rem);
  background: var(--orange);
  color: var(--white);
  border-radius: 24px;
}

.cta-band-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  max-width: 700px;
  margin-bottom: 0.5rem;
}

.cta-band p {
  max-width: 650px;
  margin: 0;
  color: #1a120f;
}

.cta-band .button {
  flex: 0 0 auto;
  background: var(--ink);
}

.site-footer {
  padding: 3.5rem 0;
  background: var(--navy);
  color: #b7c8cf;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.footer-links strong {
  margin-bottom: 0.4rem;
  color: var(--white);
}

.footer-links a {
  color: #b7c8cf;
  text-decoration: none;
}

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

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .problem-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 4.5rem;
  }

  .board-preview {
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav {
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a {
    padding: 0.45rem 0.55rem;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .workflow,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .workflow {
    gap: 1px;
  }

  .board-columns {
    gap: 0.4rem;
  }

  .board-column {
    min-height: 180px;
    padding: 0.4rem;
  }

  .report-card {
    padding: 0.5rem;
  }

  .report-card strong {
    font-size: 0.62rem;
  }

  .report-card span {
    display: none;
  }

  .cta-band-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
