
@font-face { font-family: "Inter"; src: url("/fonts/inter-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/fonts/inter-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/fonts/inter-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/fonts/inter-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/fonts/poppins-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/fonts/poppins-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Sora"; src: url("/fonts/sora-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Sora"; src: url("/fonts/sora-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Sora"; src: url("/fonts/sora-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Sora"; src: url("/fonts/sora-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }

:root {
  --ink: #161441;
  --ink-deep: #17162d;
  --coral: #ee4037;
  --teal: #71cfcc;
  --white: #ffffff;
  --mist: #f5f7f9;
  --muted: #67677d;
  --line-dark: rgba(22, 20, 65, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --font-display: var(--font-sora), "Sora", Arial, sans-serif;
  --font-sans: var(--font-inter), "Inter", Arial, sans-serif;
  --font-signal: var(--font-poppins), "Poppins", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 5vw, 5.5rem);
  --section-space: clamp(5.5rem, 10vw, 9rem);
  --max-width: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--teal);
  color: var(--ink);
}

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

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

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

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

.site-header {
  align-items: center;
  background: rgba(22, 20, 65, 0.96);
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 78px;
  left: 0;
  padding: 0 var(--page-pad);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  display: inline-flex;
  width: 138px;
}

.main-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.main-nav a,
.nav-cta {
  font-family: var(--font-signal);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-cta {
  align-items: center;
  display: inline-flex;
  gap: 0.65rem;
  justify-self: end;
}

.nav-cta span {
  color: var(--coral);
  font-size: 0.9rem;
}

.hero {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(22rem, 0.72fr);
  min-height: 88svh;
  padding: clamp(9rem, 16vh, 11rem) var(--page-pad) 7rem;
  position: relative;
}

.hero-copy {
  align-self: center;
  max-width: 48rem;
}

.eyebrow {
  color: var(--teal);
  font-family: var(--font-signal);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--coral);
}

.hero h1,
.section-intro h2,
.outcomes h2,
.partners h2,
.insights h2,
.closing h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.75rem, 6.7vw, 7.1rem);
  line-height: 0.96;
}

.hero-intro {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
  margin: 2.25rem 0 0;
  max-width: 38rem;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.button {
  align-items: center;
  display: inline-flex;
  font-family: var(--font-signal);
  font-size: 0.7rem;
  font-weight: 600;
  gap: 2rem;
  justify-content: space-between;
  letter-spacing: 0.1em;
  min-height: 3.6rem;
  padding: 0 1.25rem;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  min-width: 14.5rem;
}

.button-primary:hover {
  background: var(--white);
  color: var(--ink);
}

.text-link {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-family: var(--font-signal);
  font-size: 0.68rem;
  font-weight: 600;
  gap: 0.65rem;
  letter-spacing: 0.09em;
  padding-bottom: 0.3rem;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.text-link-light {
  color: var(--white);
}

.hero-model {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 35rem;
  width: 100%;
}

.model-header,
.model-footer {
  align-items: center;
  display: flex;
  font-family: var(--font-signal);
  font-size: 0.54rem;
  justify-content: space-between;
  letter-spacing: 0.12em;
  padding: 1rem 1.2rem;
  text-transform: uppercase;
}

.model-header {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
}

.model-header span:first-child {
  color: var(--teal);
}

.model-row {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 1rem;
  grid-template-columns: 2rem 1fr auto;
  min-height: 5.6rem;
  padding: 1rem 1.2rem;
}

.model-row > span:first-child {
  color: var(--coral);
  font-family: var(--font-signal);
  font-size: 0.62rem;
}

.model-row strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 500;
}

.model-status {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.model-status::before {
  background: var(--teal);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 0.36rem;
  margin-right: 0.5rem;
  width: 0.36rem;
}

.model-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
}

.hero-proof {
  border-top: 1px solid var(--line-light);
  bottom: 0;
  display: grid;
  font-family: var(--font-signal);
  font-size: 0.58rem;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  left: var(--page-pad);
  letter-spacing: 0.09em;
  padding: 1.35rem 0;
  position: absolute;
  right: var(--page-pad);
  text-transform: uppercase;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.55);
}

.platform,
.partners,
.insights {
  padding: var(--section-space) var(--page-pad);
}

.section-intro {
  display: grid;
  gap: 2rem 4rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(20rem, 0.65fr);
  margin: 0 auto 4.5rem;
  max-width: var(--max-width);
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.5rem;
}

.section-intro h2,
.outcomes h2,
.partners h2,
.insights h2 {
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
  line-height: 1.02;
}

.section-intro > p,
.partner-heading > p,
.outcomes-copy > p {
  align-self: end;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  margin: 0;
}

.platform-grid {
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: var(--max-width);
}

.platform-card {
  border-bottom: 1px solid var(--line-dark);
  min-height: 24rem;
  padding: 2.25rem clamp(1.5rem, 2.5vw, 2.75rem) 2rem 0;
  position: relative;
}

.platform-card:not(:last-child) {
  border-right: 1px solid var(--line-dark);
  margin-right: clamp(1.5rem, 2.5vw, 2.75rem);
}

.card-number {
  color: var(--coral);
  font-family: var(--font-signal);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.platform-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 3rem 0 1.25rem;
}

.platform-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.card-outcome {
  bottom: 2rem;
  color: var(--ink);
  font-family: var(--font-signal);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: absolute;
  text-transform: uppercase;
}

.card-outcome::before {
  color: var(--coral);
  content: "→";
  margin-right: 0.6rem;
}

.outcomes {
  display: grid;
  gap: clamp(4rem, 10vw, 9rem);
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.25fr);
  padding: var(--section-space) var(--page-pad);
}

.outcomes-copy {
  align-self: start;
  max-width: 37rem;
}

.outcomes-copy > p {
  color: rgba(255, 255, 255, 0.62);
  margin: 2rem 0;
}

.outcomes-grid {
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.outcome-card {
  border-bottom: 1px solid var(--line-light);
  min-height: 15rem;
  padding: 2rem;
}

.outcome-card:nth-child(odd) {
  border-right: 1px solid var(--line-light);
  padding-left: 0;
}

.outcome-card > span {
  color: var(--teal);
  font-family: var(--font-signal);
  font-size: 0.6rem;
}

.outcome-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  margin: 2rem 0 0.8rem;
}

.outcome-card p {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  margin: 0;
}

.partner-heading {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.2fr 0.7fr;
  margin: 0 auto 4rem;
  max-width: var(--max-width);
}

.partner-grid {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: 0 auto 2.5rem;
  max-width: var(--max-width);
}

.partner-logo {
  align-items: center;
  border-right: 1px solid var(--line-dark);
  display: flex;
  height: 9rem;
  justify-content: center;
  padding: 1.35rem;
}

.partner-logo:last-child {
  border-right: 0;
}

.partner-logo img {
  filter: grayscale(1);
  height: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: filter 160ms ease, opacity 160ms ease;
  width: 100%;
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.insights-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 4rem;
  max-width: var(--max-width);
}

.story-list {
  border-top: 1px solid var(--line-dark);
  margin: 0 auto;
  max-width: var(--max-width);
}

.story-row {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: 14rem 1fr 2rem;
  padding: 1.5rem 0;
}

.story-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.story-image img {
  object-fit: cover;
  transition: transform 220ms ease;
}

.story-row:hover .story-image img {
  transform: scale(1.025);
}

.story-copy p {
  color: var(--coral);
  font-family: var(--font-signal);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.story-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0;
}

.story-arrow {
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.story-row:hover .story-arrow {
  transform: translate(3px, -3px);
}

.closing {
  align-items: center;
  background: var(--teal);
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr auto;
  padding: clamp(5rem, 8vw, 7rem) var(--page-pad);
}

.closing .eyebrow {
  color: var(--ink);
  margin-bottom: 1rem;
}

.closing h2 {
  font-size: clamp(2.75rem, 5vw, 5.3rem);
  line-height: 1.02;
  max-width: 15ch;
}

footer {
  background: var(--ink-deep);
  color: var(--white);
  padding: 4.5rem var(--page-pad) 2rem;
}

.footer-brand {
  align-items: end;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  width: 12rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-details {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 0.65fr 1.2fr;
  padding: 3.5rem 0;
}

.footer-details > div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-details span {
  color: var(--teal);
  font-family: var(--font-signal);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.footer-details p,
.footer-details a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

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

.footer-bottom {
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.36);
  display: flex;
  font-family: var(--font-signal);
  font-size: 0.52rem;
  justify-content: space-between;
  letter-spacing: 0.09em;
  padding-top: 1.35rem;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .hero {
    gap: 4rem;
    grid-template-columns: 1fr 0.78fr;
  }

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

  .partner-logo {
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 70px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 8rem;
  }

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

  .hero-model {
    max-width: none;
  }

  .hero-proof {
    display: none;
  }

  .section-intro,
  .outcomes,
  .partner-heading {
    grid-template-columns: 1fr;
  }

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

  .platform-card {
    min-height: 19rem;
  }

  .platform-card:not(:last-child) {
    border-right: 0;
    margin-right: 0;
  }

  .story-row {
    grid-template-columns: 10rem 1fr 1.5rem;
  }

  .closing {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-details {
    grid-template-columns: 1fr 1fr;
  }

  .footer-details > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand {
    width: 7rem;
  }

  .nav-cta {
    font-size: 0;
  }

  .nav-cta span {
    font-size: 1rem;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary {
    min-width: 0;
    width: 100%;
  }

  .model-row {
    grid-template-columns: 1.5rem 1fr;
  }

  .model-status {
    display: none;
  }

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

  .outcome-card,
  .outcome-card:nth-child(odd) {
    border-right: 0;
    min-height: 13rem;
    padding: 2rem 0;
  }

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

  .partner-logo {
    height: 7rem;
  }

  .insights-heading {
    align-items: start;
    flex-direction: column;
    gap: 2rem;
  }

  .story-row {
    gap: 1rem;
    grid-template-columns: 1fr 1.5rem;
  }

  .story-image {
    grid-column: 1 / -1;
  }

  .footer-brand {
    align-items: start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-details {
    grid-template-columns: 1fr;
  }

  .footer-details > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.7rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


.site-header { transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease; }
.site-header.is-scrolled { background: rgba(22, 20, 65, 0.94); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18); }
.js-ready .reveal { opacity: 0; transform: translateY(24px); }
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity 650ms ease var(--reveal-delay, 0ms), transform 650ms cubic-bezier(.2,.75,.2,1) var(--reveal-delay, 0ms); }
