:root {
  color-scheme: light;
  --navy: #0b1f3a;
  --navy-soft: #17345b;
  --blue: #2f80ff;
  --blue-deep: #1264ea;
  --teal: #00b894;
  --paper: #eef1f5;
  --paper-deep: #e3e8ef;
  --surface: #f7f8fa;
  --white: #ffffff;
  --ink: #0b1f3a;
  --muted: #58677b;
  --line: #cbd4df;
  --display: "Avenir Next", "Century Gothic", "Helvetica Neue", sans-serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
  font-family: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 2%, rgb(47 128 255 / 10%), transparent 28rem),
    var(--paper);
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 20;
  padding: 11px 15px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  top: 18px;
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 102px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: block;
  width: min(290px, 52vw);
}

.brand img,
footer img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.header-link {
  padding: 11px 15px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: clamp(44px, 8vw, 108px);
  min-height: 690px;
  align-items: center;
  padding: 88px 0 100px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 2px;
  background: var(--blue);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  max-width: 800px;
  margin: 22px 0 28px;
  font-size: clamp(3.7rem, 7vw, 6.85rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

h1 span {
  color: var(--blue-deep);
}

.hero-intro {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--blue-deep);
  border-radius: 6px;
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: 0 10px 25px rgb(18 100 234 / 18%);
  font-weight: 780;
  text-decoration: none;
}

.text-link {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 750;
  text-underline-offset: 5px;
}

.brand-story {
  position: relative;
  padding: 48px 40px 38px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(145deg, var(--navy) 0 72%, var(--navy-soft) 72% 100%);
  box-shadow: 0 28px 65px rgb(11 31 58 / 20%);
}

.brand-story::after {
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border: 32px solid rgb(47 128 255 / 32%);
  border-radius: 50%;
  content: "";
}

.brand-story p {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 650;
  line-height: 1.25;
}

.brand-story span {
  position: relative;
  z-index: 1;
  color: #afcfff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audience-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-strip ul {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-strip li {
  font-weight: 750;
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.sell-sheet h2,
.pilot-cta h2 {
  margin: 17px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  letter-spacing: -0.052em;
  line-height: 1;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(55px, 10vw, 130px);
  align-items: start;
}

.story-copy {
  padding-top: 42px;
}

.story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.story-copy p:first-child {
  color: var(--ink);
  font-size: 1.18rem;
}

.section-heading.compact {
  max-width: 760px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.outcome-grid article {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(247 248 250 / 78%);
}

.outcome-grid article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: 0 7px 20px rgb(11 31 58 / 8%);
  font-size: 0.75rem;
  font-weight: 850;
}

.outcome-grid h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.outcome-grid p,
.sell-sheet-intro > p:last-child,
.pilot-cta > div > p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.sell-sheet {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
  gap: clamp(50px, 9vw, 120px);
}

.sell-sheet h2 {
  margin-bottom: 24px;
}

.sell-sheet dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.sell-sheet dl > div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.sell-sheet dt {
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sell-sheet dd {
  margin: 0;
  font-weight: 650;
  line-height: 1.5;
}

.pilot-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 60px;
  align-items: end;
  margin: 82px 0;
  padding: clamp(38px, 6vw, 68px);
  border-radius: 18px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 26px 70px rgb(11 31 58 / 18%);
}

.pilot-cta .eyebrow,
.pilot-cta > div > p:last-child {
  color: #afcfff;
}

.pilot-cta h2 {
  margin-bottom: 18px;
}

.pilot-note {
  padding: 24px;
  border: 1px solid rgb(175 207 255 / 25%);
  border-radius: 10px;
  background: rgb(47 128 255 / 10%);
}

.pilot-note strong {
  display: block;
  margin-bottom: 8px;
}

.pilot-note p {
  margin: 0;
  color: #d5e5ff;
  line-height: 1.55;
}

footer {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
}

footer img {
  width: min(230px, 48vw);
}

footer div {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-story {
    max-width: 620px;
  }

  .story,
  .sell-sheet,
  .pilot-cta {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 700px;
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 82px;
  }

  .brand {
    width: min(225px, 58vw);
  }

  .header-link {
    padding: 9px 10px;
    font-size: 0.72rem;
  }

  .hero {
    gap: 45px;
    padding: 62px 0 70px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .brand-story {
    padding: 36px 28px 30px;
  }

  .audience-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .audience-strip ul {
    width: 100%;
    flex-direction: column;
    gap: 9px;
  }

  .section {
    padding: 70px 0;
  }

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

  .outcome-grid article {
    min-height: auto;
  }

  .outcome-grid article > span {
    margin-bottom: 32px;
  }

  .sell-sheet dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pilot-cta {
    gap: 34px;
    margin: 54px 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer div {
    flex-direction: column;
    gap: 5px;
  }
}

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