:root {
  --blue: #101cff;
  --blue-dark: #0813c9;
  --cyan: #00b7ff;
  --yellow: #ffd12f;
  --ink: #101426;
  --muted: #5f6475;
  --paper: #ffffff;
  --soft: #f3f5ff;
  --line: rgba(16, 20, 38, 0.12);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: white;
}

.header-inner,
.section-inner,
.footer-inner,
.timeline,
.hero-inner {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.15;
}

.brand-name strong {
  display: block;
  font-family: var(--display);
  font-size: 1.06rem;
  letter-spacing: 0.08em;
}

.brand-number {
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--yellow);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  padding-top: 86px;
  color: white;
  background: linear-gradient(128deg, #101cff 0%, #101cff 54%, #0588ff 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    radial-gradient(circle at 83% 22%, transparent 0 115px, rgba(255,255,255,.22) 116px 118px, transparent 119px 200px),
    linear-gradient(35deg, transparent 46%, rgba(0,183,255,.5) 47% 54%, transparent 55%),
    linear-gradient(145deg, transparent 55%, rgba(4,13,199,.35) 56% 67%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 3rem;
  padding-block: 5rem 2.25rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 0.45rem 0.7rem;
  color: var(--ink);
  background: var(--yellow);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.77;
  text-transform: uppercase;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 2px white;
  text-stroke: 2px white;
}

.hero-message {
  max-width: 480px;
  margin: 2.1rem 0 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.3;
}

.hero-actions,
.follow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 610px;
}

.hero-photo-wrap {
  position: absolute;
  right: 1rem;
  bottom: 0;
  width: min(76%, 440px);
  overflow: hidden;
  border-radius: 220px 220px 26px 26px;
  background: var(--cyan);
  box-shadow: 32px 32px 0 rgba(0, 183, 255, 0.48);
}

.hero-photo-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.number-card {
  position: absolute;
  right: 0;
  bottom: 1.7rem;
  display: grid;
  width: 210px;
  padding: 1rem 1.15rem 0.9rem;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 12px 12px 0 rgba(8, 19, 201, 0.9);
  transform: rotate(-3deg);
}

.number-card span,
.number-card small {
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.number-card strong {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.95;
}

.number-card small {
  margin-top: 0.25rem;
  font-size: 0.72rem;
}

.icon-strip {
  position: relative;
  z-index: 2;
  display: flex;
  height: 64px;
  overflow: hidden;
  color: rgba(16, 20, 38, 0.28);
  background: var(--yellow);
}

.icon-strip span {
  display: grid;
  min-width: 150px;
  flex: 1;
  place-items: center;
  border-right: 1px solid rgba(16, 20, 38, 0.12);
  font-family: var(--display);
  font-size: 1.2rem;
}

.section {
  padding-block: 7rem;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.portrait-card {
  position: relative;
  min-height: 560px;
}

.portrait-card::before,
.portrait-card::after {
  position: absolute;
  content: "";
}

.portrait-card::before {
  inset: 8% 10% 0 0;
  border-radius: 180px 180px 24px 24px;
  background: var(--yellow);
}

.portrait-card::after {
  right: -8%;
  bottom: 8%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 24px solid var(--blue);
}

.portrait-card img {
  position: absolute;
  z-index: 1;
  inset: 0 auto auto 9%;
  width: 70%;
  height: 82%;
  border-radius: 160px 160px 20px 20px;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
}

.portrait-badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  max-width: 300px;
  padding: 1.25rem 1.4rem;
  color: white;
  background: var(--blue);
  box-shadow: 12px 12px 0 var(--cyan);
}

.portrait-badge strong {
  font-size: 1.05rem;
}

.portrait-badge span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}

.section-kicker {
  color: var(--blue);
}

.section-kicker::before {
  width: 28px;
  height: 3px;
  background: currentColor;
  content: "";
}

.section-kicker.light {
  color: var(--yellow);
}

.section h2 {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-copy p,
.section-heading p,
.follow-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin-top: 0.75rem;
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.timeline {
  display: grid;
  margin-top: 6rem;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  min-height: 230px;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-index,
.card-number {
  display: block;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.timeline-item h3 {
  margin: 2rem 0 0.5rem;
  font-family: var(--display);
  font-size: 1.55rem;
  text-transform: uppercase;
}

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

.commitments {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--blue);
}

.commitments::before {
  position: absolute;
  inset: auto -120px -250px auto;
  width: 520px;
  aspect-ratio: 1;
  border: 80px solid rgba(0, 183, 255, 0.26);
  border-radius: 50%;
  content: "";
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  column-gap: 4rem;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 800px;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.commitment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 3.5rem;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.commitment-card {
  min-height: 430px;
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
}

.commitment-card:last-child {
  border-right: 0;
}

.commitment-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
}

.commitment-card .card-number {
  color: var(--yellow);
}

.commitment-card svg {
  width: 54px;
  height: 54px;
  margin: 4.5rem 0 1.4rem;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commitment-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.commitment-card p {
  color: rgba(255, 255, 255, 0.72);
}

.commitment-card a {
  display: inline-flex;
  gap: 0.35rem;
  margin-top: 0.6rem;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.follow {
  background: var(--soft);
}

.follow-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.follow-mark {
  position: relative;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 15rem);
  letter-spacing: -0.1em;
  line-height: 0.72;
}

.follow-mark::before {
  position: absolute;
  z-index: 0;
  inset: 18% auto auto 9%;
  width: 58%;
  height: 80%;
  background: var(--yellow);
  content: "";
  transform: rotate(-8deg);
}

.follow-mark span,
.follow-mark {
  isolation: isolate;
}

.follow-mark span {
  position: relative;
  color: transparent;
  -webkit-text-stroke: 4px var(--blue);
  text-stroke: 4px var(--blue);
}

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

.button-outline {
  border-color: rgba(16, 20, 38, 0.22);
  color: var(--ink);
  background: transparent;
}

.site-footer {
  padding-block: 2rem;
  color: white;
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand,
.footer-legal {
  display: flex;
  gap: 0.6rem 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand strong {
  font-family: var(--display);
  text-transform: uppercase;
}

.footer-brand span,
.footer-legal {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

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

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

@media (max-width: 900px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .timeline,
  .hero-inner {
    width: min(100% - 2rem, 720px);
  }

  .menu-button {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 22;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.8rem;
    visibility: hidden;
    background: var(--blue);
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease;
  }

  .main-nav.is-open {
    z-index: 20;
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    font-size: 1.35rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .split,
  .follow-inner,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 5rem;
  }

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

  .hero-visual {
    min-height: 560px;
  }

  .hero-photo-wrap {
    left: 5%;
    right: auto;
    width: 70%;
  }

  .number-card {
    right: 5%;
  }

  .section-heading p {
    margin-top: 0;
  }

  .timeline,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .commitment-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .commitment-card {
    border-bottom-color: rgba(255,255,255,.2);
  }

  .timeline-item:last-child,
  .commitment-card:last-child {
    border-bottom: 0;
  }

  .commitment-card svg {
    margin-top: 2.5rem;
  }

  .follow-mark {
    max-width: 560px;
  }
}

@media (max-width: 580px) {
  .header-inner {
    min-height: 74px;
  }

  .brand-name {
    display: none;
  }

  .brand-number {
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-inner {
    padding-top: 3.25rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15.5vw, 4.2rem);
    letter-spacing: -0.06em;
  }

  .hero-message {
    margin-top: 1.5rem;
  }

  .hero-actions,
  .follow-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 455px;
    margin-top: 1rem;
  }

  .hero-photo-wrap {
    left: 0;
    width: 82%;
    box-shadow: 18px 18px 0 rgba(0,183,255,.48);
  }

  .number-card {
    right: 0;
    bottom: 1.2rem;
    width: 154px;
  }

  .number-card strong {
    font-size: 2.8rem;
  }

  .section {
    padding-block: 5rem;
  }

  .section h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .portrait-card {
    min-height: 460px;
  }

  .portrait-card img {
    width: 78%;
    height: 78%;
  }

  .portrait-badge {
    max-width: 255px;
  }

  .timeline {
    margin-top: 4rem;
  }

  .timeline-item,
  .commitment-card {
    padding: 1.5rem;
  }

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