:root {
  color-scheme: light;
  --navy: #14214b;
  --navy-deep: #0b1536;
  --paper: #fffdf8;
  --paper-warm: #fff4cf;
  --white: #ffffff;
  --ink-soft: #5b6275;
  --line: rgba(20, 33, 75, 0.14);
  --yellow: #ffbd08;
  --yellow-deep: #f4aa00;
  --blue: #02a5ec;
  --shadow: 0 26px 70px rgba(20, 33, 75, 0.12);
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 1rem auto 0;
  padding: 0.65rem 0.75rem 0.65rem 0.8rem;
  border: 1px solid rgba(20, 33, 75, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 8px 30px rgba(20, 33, 75, 0.06);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 12px 36px rgba(20, 33, 75, 0.12);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wordmark img {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
}

.wordmark span span,
.product-wordmark span {
  color: var(--yellow-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
}

.language-switch {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--navy);
  font: inherit;
  font-weight: 760;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  border-color: var(--yellow-deep);
  background: var(--paper-warm);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(23rem, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  width: min(calc(100% - 3rem), var(--max-width));
  min-height: min(900px, 100svh);
  margin: 0 auto;
  padding: 10rem 0 6rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 0.22rem;
  border-radius: 999px;
  background: var(--yellow);
}

h1,
h2,
h3,
p,
blockquote {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.55rem, 6.8vw, 7rem);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero-intro {
  max-width: 41rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.2rem;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(20, 33, 75, 0.18);
}

.button-quiet {
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--white);
}

.button-yellow {
  width: max-content;
  margin-top: 2rem;
  background: var(--yellow);
  color: var(--navy-deep);
  box-shadow: 0 14px 30px rgba(255, 189, 8, 0.2);
}

.hero-visual {
  position: relative;
  min-height: 36rem;
}

.visual-card {
  position: absolute;
  border-radius: 2.6rem;
}

.visual-card-back {
  inset: 4rem 1.5rem 0 0;
  background: var(--navy);
  transform: rotate(7deg);
}

.visual-card-main {
  inset: 0 1rem 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2.1rem;
  overflow: hidden;
  border: 1px solid rgba(244, 170, 0, 0.24);
  background: linear-gradient(145deg, #fff9e5, #ffedaa);
  box-shadow: var(--shadow);
  transform: rotate(-2.5deg);
}

.visual-card-main::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(20, 33, 75, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(20, 33, 75, 0.025), 0 0 0 6rem rgba(20, 33, 75, 0.02);
}

.visual-card-main img {
  position: relative;
  z-index: 1;
  width: min(78%, 23rem);
  height: auto;
  margin: auto 0;
  filter: drop-shadow(0 18px 24px rgba(92, 64, 0, 0.13));
}

.visual-kicker {
  align-self: flex-start;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-style: italic;
}

.visual-caption {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 33, 75, 0.14);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-shell {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  border-top: 1px solid var(--line);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(22rem, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.section-heading h2,
.support-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.story-body {
  align-self: end;
}

.story-body > p {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.story-body blockquote {
  margin: 2rem 0 0;
  padding: 0 0 0 1.4rem;
  border-left: 0.28rem solid var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.7vw, 2.3rem);
  line-height: 1.32;
}

.story-beats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.story-beats article {
  min-height: 13rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1.65rem;
  background: var(--white);
}

.story-beats article:nth-child(2) {
  background: var(--paper-warm);
}

.beat-mark {
  color: var(--yellow-deep);
}

.story-beats h3 {
  margin: 2.2rem 0 0.45rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

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

.recognition {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 1.22fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.recognition-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.7vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.recognition-list {
  display: grid;
  gap: 0.85rem;
}

.recognition-card {
  padding: 1.45rem 1.55rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--white);
}

.recognition-card-featured {
  border-color: rgba(244, 170, 0, 0.35);
  background: var(--paper-warm);
}

.recognition-type {
  margin: 0 0 0.45rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recognition-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}

.recognition-card > p:last-child {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
}

.people {
  display: block;
}

.people-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.people-heading .eyebrow {
  margin-top: 0.7rem;
}

.people-heading h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.25rem, 4.1vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.people-card {
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-left: 0.42rem solid var(--yellow);
  border-radius: 1.4rem;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(20, 33, 75, 0.06);
}

.people-role {
  margin: 0 0 0.35rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.people-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  letter-spacing: -0.035em;
}

.people-profile > p {
  max-width: 48rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.people-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.people-focus span {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-warm);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 720;
}

.product-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 3rem;
  min-height: 35rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  border-radius: 3rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.product-copy {
  position: relative;
  z-index: 2;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.65);
}

.product-wordmark {
  margin: 1.7rem 0 2rem;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.product-panel h2 {
  max-width: 11ch;
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.product-panel p {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.product-mark {
  align-self: center;
  justify-self: end;
  display: grid;
  place-items: center;
  width: min(100%, 25rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4rem;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(3deg);
}

.product-mark img {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.18));
}

.future {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.future-body {
  align-self: end;
}

.future-body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.principles {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.principles span {
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  font-weight: 720;
}

.support {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.support-heading h2 {
  font-size: clamp(2.3rem, 4.3vw, 4.4rem);
}

.ecosystem-strip {
  align-self: center;
  min-height: 9rem;
  display: flex;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1.65rem;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(20, 33, 75, 0.06);
}

.ecosystem-strip img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.82);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  padding: 3.5rem max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.66);
}

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

.footer-brand > p {
  margin: 1rem 0 0;
}

.footer-meta {
  text-align: right;
  font-size: 0.8rem;
}

.footer-meta p {
  margin: 0.25rem 0 0;
}

.legal {
  color: rgba(255, 255, 255, 0.42);
}

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

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-visual {
    width: min(100%, 35rem);
    min-height: 35rem;
    justify-self: center;
  }

  .story,
  .recognition,
  .future,
  .support {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .people-heading,
  .people-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .people-heading .eyebrow {
    margin-top: 0;
  }

  .product-panel {
    grid-template-columns: 1fr;
  }

  .product-mark {
    position: absolute;
    z-index: -1;
    right: -5rem;
    bottom: -6rem;
    width: 24rem;
    opacity: 0.22;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 1.5rem);
    margin-top: 0.75rem;
  }

  .hero,
  .section-shell {
    width: calc(100% - 2.5rem);
  }

  .hero {
    padding-top: 8.8rem;
  }

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

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 29rem;
  }

  .visual-card {
    border-radius: 2rem;
  }

  .visual-card-main {
    right: 0;
    padding: 1.5rem;
  }

  .story-beats {
    grid-template-columns: 1fr;
  }

  .story-beats article {
    min-height: 11rem;
  }

  .product-panel {
    min-height: 34rem;
    border-radius: 2rem;
  }

  .product-mark {
    right: -7rem;
    bottom: -5rem;
  }

  .ecosystem-strip {
    overflow-x: auto;
  }

  .ecosystem-strip img {
    width: 55rem;
    max-width: none;
  }

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

  .footer-meta {
    text-align: left;
  }
}

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

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