:root {
  --navy: #071b33;
  --navy-soft: #0d2848;
  --blue: #2864ff;
  --blue-dark: #1749c6;
  --white: #ffffff;
  --mist: #f4f7fb;
  --muted: #5f6f83;
  --line: rgba(7, 27, 51, 0.14);
  --pad: clamp(1.25rem, 4.6vw, 5rem);
  --section-space: clamp(5.5rem, 11vw, 10rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.section-shell {
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.site-header {
  min-height: 82px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-box {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--navy);
  border-radius: 2px;
}

.brand-mark {
  width: 23px;
  height: 23px;
  fill: var(--white);
}

nav {
  display: flex;
  gap: clamp(1.25rem, 2.7vw, 3rem);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a,
.header-cta,
.text-link {
  transition: color 180ms ease;
}

nav a:hover,
.header-cta:hover,
.text-link:hover {
  color: var(--blue);
}

.header-cta {
  justify-self: end;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta span,
.button span,
.text-link span {
  color: var(--blue);
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero {
  min-height: min(850px, calc(100svh - 82px));
  padding-top: clamp(3.75rem, 8vh, 7rem);
  padding-bottom: clamp(3rem, 6vh, 5.5rem);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--white);
}

.hero-copy,
.hero-bottom {
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  max-width: 42rem;
}

.hero h1 {
  max-width: 1300px;
  margin: clamp(2.5rem, 5vh, 4.75rem) 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.75rem, 9.5vw, 9.75rem);
  font-weight: 700;
  letter-spacing: -0.082em;
  line-height: 0.84;
}

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

.hero h1 .hero-long {
  display: inline-block;
  color: var(--navy);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 630px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.hero-bottom > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
}

.button {
  min-width: 176px;
  min-height: 54px;
  padding: 0.95rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid transparent;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

.button-primary:hover {
  background: var(--blue);
}

.button-primary span {
  color: var(--white);
}

.button-secondary {
  border-color: var(--navy);
  background: var(--white);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-motif {
  position: absolute;
  right: -0.05em;
  top: 46%;
  transform: translateY(-50%);
  color: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-size: min(65vw, 820px);
  font-weight: 700;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(40, 100, 255, 0.075);
  user-select: none;
}

.credibility-strip {
  min-height: 74px;
  padding: 1.3rem var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2rem;
  background: var(--navy);
  color: var(--white);
  font-size: clamp(0.64rem, 0.8vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.credibility-strip span:nth-child(2) {
  text-align: center;
}

.credibility-strip span:last-child {
  text-align: right;
}

.positioning {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) 3.2fr;
  gap: clamp(2rem, 6vw, 7rem);
  background: var(--mist);
}

.positioning-copy h2,
.section-intro h2,
.system-heading h2,
.door h2,
.experience h2,
.contact h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.positioning-copy h2 {
  max-width: 1100px;
  font-size: clamp(3rem, 7vw, 7.3rem);
}

.positioning-copy h2 span {
  color: var(--blue);
}

.positioning-copy > p:not(.positioning-line) {
  max-width: 680px;
  margin: clamp(2rem, 4vw, 4rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.6;
}

.positioning-line {
  max-width: 860px;
  margin: clamp(2.5rem, 5vw, 5rem) 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.creator-fit {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.8fr 2fr 1.1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.section-intro h2 {
  font-size: clamp(2.8rem, 5.4vw, 5.7rem);
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.fit-grid {
  margin-top: clamp(4rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fit-card {
  min-height: 320px;
  padding: clamp(1.5rem, 2.7vw, 2.8rem);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.fit-card:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-6px);
}

.fit-card > span,
.system-row > span {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.fit-card h3,
.system-row h3 {
  margin: auto 0 1.1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.fit-card h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.fit-card p,
.system-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fit-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.system {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--navy);
  color: var(--white);
}

.system-heading {
  position: sticky;
  top: 135px;
  align-self: start;
}

.system-heading h2 {
  margin-top: 1.6rem;
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.system-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.system-row {
  min-height: 148px;
  padding: 1.7rem 0;
  display: grid;
  grid-template-columns: 52px minmax(150px, 0.8fr) 1.35fr;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.system-row h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
}

.system-row p {
  color: rgba(255, 255, 255, 0.65);
}

.two-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.door {
  min-height: 680px;
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.door-creator {
  background: var(--mist);
}

.door-brand {
  background: var(--blue);
  color: var(--white);
}

.door-brand .eyebrow {
  color: var(--white);
}

.door h2 {
  margin-top: 2rem;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
}

.door > p:not(.eyebrow) {
  max-width: 590px;
  margin: 2rem 0 3.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.door-brand > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  margin-top: auto;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.door-brand .text-link span {
  color: var(--white);
}

.experience {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(3rem, 8vw, 10rem);
}

.experience h2 {
  max-width: 800px;
  margin-top: 2rem;
  font-size: clamp(3.2rem, 6vw, 6.7rem);
}

.experience-copy {
  padding-top: 2.5rem;
}

.experience-copy > p:first-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.list-label {
  margin: clamp(3rem, 6vw, 6rem) 0 1rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.talent-list {
  border-top: 1px solid var(--line);
}

.talent-list span {
  padding: 1.05rem 0;
  display: block;
  border-bottom: 1px solid var(--line);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.principle {
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
  background: var(--mist);
  text-align: center;
}

.principle blockquote {
  margin: 2rem auto 0;
  max-width: 1100px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 7.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.principle blockquote span {
  color: var(--blue);
}

.contact {
  min-height: 650px;
  padding-top: clamp(5rem, 10vw, 10rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--navy);
  color: var(--white);
}

.contact h2 {
  max-width: 1100px;
  margin: 2rem 0 clamp(3rem, 6vw, 6rem);
  font-size: clamp(3.25rem, 8vw, 8rem);
}

.contact-actions {
  display: flex;
  gap: 0.75rem;
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-light:hover {
  background: var(--blue);
  color: var(--white);
}

.button-light:hover span {
  color: var(--white);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

footer {
  min-height: 110px;
  padding: 2rem var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

footer .brand-box {
  background: var(--white);
}

footer .brand-mark {
  fill: var(--navy);
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

footer p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 190ms;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}

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

  .site-header nav {
    display: none;
  }

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

  .hero-actions {
    justify-self: start;
  }

  .section-intro {
    grid-template-columns: 0.7fr 2fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

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

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

  .system-heading {
    position: static;
  }

  .experience {
    grid-template-columns: 1fr 0.85fr;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 1.15rem;
    --section-space: 5.2rem;
  }

  .site-header {
    min-height: 70px;
    gap: 1rem;
  }

  .brand-box {
    width: 31px;
    height: 31px;
  }

  .brand-mark {
    width: 21px;
    height: 21px;
  }

  .header-cta {
    font-size: 0.67rem;
  }

  .hero {
    min-height: auto;
    padding-top: 3.2rem;
    padding-bottom: 2.75rem;
  }

  .hero h1 {
    margin: 3rem 0 3.75rem;
    font-size: clamp(3rem, 15.8vw, 5rem);
    letter-spacing: -0.075em;
    line-height: 0.89;
  }

  .hero h1 .hero-long {
    font-size: 0.78em;
    letter-spacing: -0.065em;
  }

  .hero-bottom {
    gap: 2rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-motif {
    top: 39%;
    font-size: 100vw;
  }

  .credibility-strip {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .credibility-strip span,
  .credibility-strip span:nth-child(2),
  .credibility-strip span:last-child {
    text-align: left;
  }

  .positioning {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .positioning-copy h2 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .section-intro > p:last-child {
    grid-column: auto;
  }

  .section-intro h2,
  .system-heading h2,
  .door h2,
  .experience h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .fit-grid {
    margin-top: 3.5rem;
    grid-template-columns: 1fr;
  }

  .fit-card {
    min-height: 260px;
  }

  .system-row {
    min-height: 0;
    padding: 1.75rem 0;
    grid-template-columns: 34px 1fr;
    gap: 0.5rem 1rem;
  }

  .system-row p {
    grid-column: 2;
  }

  .two-doors {
    grid-template-columns: 1fr;
  }

  .door {
    min-height: 560px;
  }

  .experience {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .experience-copy {
    padding-top: 0;
  }

  .principle {
    text-align: left;
  }

  .principle blockquote {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .contact {
    min-height: 570px;
  }

  .contact h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  footer p:last-child {
    justify-self: start;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.85rem;
  }

  .hero h1 .hero-long {
    font-size: 0.72em;
  }
}
