/* ---------- Tokens ---------- */
:root {
  --red: #8f1d20;
  --light-blue: #b8ddf9;
  --blue: #2a3076;
  --dark-blue: #234a71;
  --black: #1b1b1b;
  --paper: #eaf0f9; /* very subtle blue-tinted paper for sections */
  --white: #ffffff;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:
    "Avenir", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;

  /* spacing scale (rem) */
  --pad-x: 1.5rem;
  --pad-x-lg: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--black);
  background: var(--blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
a {
  color: inherit;
}

/* Helpers */
.serif {
  font-family: var(--serif);
}
.italic {
  font-style: italic;
}
.red {
  color: var(--red);
}
.blue {
  color: var(--blue);
}
.light-blue {
  color: var(--light-blue);
}
.text-light-blue {
  color: rgb(184, 221, 249);
}
.font-montserrat {
  font-family: "Montserrat", sans-serif;
}
.feature-title-gap {
  gap: 12px;
}
.steps-reset {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.visually-hidden-offscreen {
  position: absolute;
  left: -9999px;
}
.gtm-noscript-frame {
  display: none;
  visibility: hidden;
}
.fybu-scroll-padding {
  background: var(--white);
  padding: 4rem 0 0;
}

/* ============================================================
     GOV BANNER
  ============================================================ */
.usa-banner {
  background: #1b1b1b;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.4;
  position: relative;
  width: 100%;
  z-index: 3;
}
.usa-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.usa-banner__flag {
  flex-shrink: 0;
  display: inline-flex;
  width: 16px;
  height: 11px;
}
.usa-banner__text {
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.usa-banner__text-main {
  color: #ffffff;
}
.usa-banner__button {
  background: transparent;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  color: #005ea2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.usa-banner__button-label {
  color: #b8ddf9;
}
.usa-banner__button:hover,
.usa-banner__button:focus-visible {
  color: #1a4480;
}
.usa-banner__chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.usa-banner__button[aria-expanded="true"] .usa-banner__chevron {
  transform: rotate(180deg);
}
.usa-banner__content {
  background: #f0f0f0;
  padding: 16px;
  border-top: 1px solid #dfe1e2;
}
.usa-banner__guidance {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) {
  .usa-banner__guidance {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.usa-banner__guidance-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}
.usa-banner__icon {
  width: 40px;
  height: 40px;
}
.usa-banner__guidance-item p {
  margin: 0;
  font-size: 12px;
  color: #1b1b1b;
}

/* ============================================================
     FRAME 01 — HERO
  ============================================================ */
.hero-sticky-wrap {
  position: relative;
  z-index: 1;
  height: 200vh; /* extra room so sticky child pins while frame 02 scrolls over */
}
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 39rem; /* 660px */
  color: #fff;
  overflow: hidden;
}
.hero__left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 113px var(--pad-x-lg) 113px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 40.87%,
    rgba(255, 255, 255, 0.75) 50.89%,
    rgba(255, 255, 255, 0) 64.42%
  );
}
.hero_right {
  position: absolute;
  width: 100%;
  z-index: 50;
}
.hero__logo {
  width: 38rem;
  margin-left: -1.75rem;
}
.hero__brand {
  font-family: var(--sans);
  color: #fff;
  align-self: flex-start;
}
.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.hero__brand-name {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}
.hero__brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: Italic;
  font-size: clamp(1.25rem, 6vw + 1rem, 3.45rem);
  letter-spacing: 0%;
  color: var(--blue);
  margin: 4rem 0 0;
}
.hero__title .em {
  font-style: italic;
  color: var(--light-blue);
  font-weight: 400;
}
.hero__lede {
  font-family: var(--sans);
  font-size: 3rem; /* 48px */
  font-weight: 300;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.95);
}
.hero__lede-underline {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.1em;
}
.hero__lede .together {
  font-style: italic;
  color: var(--light-blue);
}

.btn-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  position: absolute;
  left: var(--pad-x-lg);
  bottom: 80px;
}
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 1rem 1.5rem 0.875rem 1.5rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  line-height: 1;
}
.btn--white {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}
.btn--white:hover {
  background: #f3f3f3;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
  border-width: 2.81px;
}
.btn--accent {
  background: var(--light-blue);
  color: var(--black);
  border-color: var(--light-blue);
}
.btn--accent:hover {
  background: #a3d2f5;
  transform: none;
}

.hero__right {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a3d6c;
  overflow: hidden;
}
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.2);
  transform-origin: bottom right;
}

/* ============================================================
     FRAME 02 — A NEW WAY FORWARD
  ============================================================ */
.section {
}
.section--paper {
  background: var(--paper);
}
.section--over-hero {
  position: relative;
  z-index: 2;
  margin-top: -100vh; /* frame 02 starts at top of wrapper, slides up over the pinned hero */
}
.section > .container {
  padding: 6rem 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  margin: 0 0 1.5rem;
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 3.5rem; /* 100px */
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 3rem;
  color: var(--black);
  text-wrap: balance;
}
.h-display .em {
  font-style: italic;
}
.h-display .em-red {
  font-style: italic;
  color: var(--red);
}
.h-display .em-blue {
  font-style: italic;
  color: var(--blue);
}
.h-display .em-light-blue {
  font-style: italic;
  color: var(--light-blue);
}

.container {
  max-width: 90rem; /* 1440px */
  margin: 0 auto;
}
.container--narrow {
  max-width: 50rem;
}
.container--wide {
  max-width: 90rem;
}

.video-placeholder {
  width: calc(100% - 25.75rem); /* 206px L + 206px R */
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Courier New", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  margin: 0 auto 2.5rem;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem; /* 48px between feature columns */
  max-width: none;
  padding: 0 11.25rem; /* 180px L/R within 1440 container */
  margin: 0 auto;
}
.feature {
  color: var(--black);
}
.feature__title {
  font-family: var(--serif);
  font-size: 2.5rem; /* 40px */
  font-weight: 500;
  color: var(--blue);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.1;
}
.feature__body {
  font-family: var(--sans);
  font-size: 1.125rem; /* 18px */
  line-height: 1.4;
  font-weight: 500;
  color: var(--black);
  margin: 0;
}

/* ============================================================
     FRAME 02 — LAUNCHING / STATS / FOR YOU
  ============================================================ */
.launching {
  margin: 0;
  padding: 6rem 0;
  background: #ffffff;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 36rem;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
/* red connecting line — from center of first circle to center of last circle */
.steps::before {
  content: "";
  position: absolute;
  left: 1.625rem; /* center of 3.25rem circle */
  top: 1.625rem;
  bottom: 4.875rem;
  width: 0.0625rem;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s ease-out;
}
.steps.is-visible::before {
  transform: scaleY(1);
}

.step {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
}
.step > .step__num {
  padding: 0;
}
.step > div {
  padding: 0;
}
/* old flex-based steps::before replaced above */
.steps__noop1 {
}
.step__num {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--red);
  color: var(--red);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700; /* bold */
  line-height: 1;
  position: relative;
  z-index: 1;
}
.step__title {
  font-family: var(--serif);
  font-size: 2.5rem; /* 40px */
  font-weight: 500;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.step__body {
  font-family: var(--sans);
  font-size: 1.5rem; /* 24px */
  font-weight: 500;
  color: var(--black);
  margin: 0;
  line-height: 1.4;
}

.we-spoke {
  padding: 0 2rem;
}
.we-spoke .h-display {
  font-size: 6.25rem;
}
.we-spoke .h-display em {
  color: var(--blue);
  font-style: italic;
}
.stats {
  margin-top: 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0;
  justify-content: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.stat:first-child {
  padding-left: 14.8125rem; /* 237px */
}
.stat:last-child {
  padding-right: 7.8125rem; /* 125px */
}
.stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.stat__label {
  font-family: var(--sans);
  font-size: 3rem; /* 48px */
  font-weight: 500;
  line-height: 1.1;
  color: var(--black);
}

/* ============================================================
     FYBU — For You By You rolodex
  ============================================================ */
.fybu {
  position: relative;
  --fybu-card-spacing: 0.65;
  --fybu-transition-gap: 0;
}
.fybu-stage {
  position: relative;
  height: auto;
}
.fybu-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  z-index: 1;
  overflow: hidden;
}
.fybu-header {
  text-align: center;
  background: #ffffff;
  position: relative;
  z-index: 2;
  flex: none;
  padding: 2rem 0 0rem 0;
}
.fybu-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 100px;
  line-height: 0.9;
  margin: 0 0 18px;
  color: var(--black);
}
.fybu-header h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}
.fybu-header p {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.fybu-list {
  padding-left: 1.5rem;
  margin: 2.5rem auto 0;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  text-align: left;
  will-change: transform, opacity;
}
.fybu-tag {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--black);
  margin: 0 0 6px;
  line-height: 1.4;
}
.fybu-cta-line {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--black);
  margin: 0;
  line-height: 1.4;
}
.rolodex {
  position: relative;
  width: 860px;
  max-width: calc(100% - 64px);
  flex: 1;
  margin: 0 auto;
  overflow: hidden;
}
.fybu-dots {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  pointer-events: none;
}
.fybu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(35, 74, 113, 0.25);
  transition:
    background 220ms ease,
    transform 220ms ease;
}
.fybu-dot.is-active {
  background: var(--red);
  transform: scale(1.35);
}
.story {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  will-change: transform, opacity;
}
.story-photo {
  width: 100%;
  /*aspect-ratio: 4 / 3;*/
  border-radius: 16px;
  overflow: hidden;
  background: var(--black);
  will-change: transform, opacity;
}
.story-photo img,
.story-photo video,
.story-photo iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.story-text {
  display: flex;
  flex-direction: column;
  will-change: transform, opacity;
}
.story[data-i="0"] .story-photo {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.story[data-i="2"] .story-photo,
.story[data-i="4"] .story-photo,
.story[data-i="6"] .story-photo {
  order: 2;
}
.story[data-i="2"] .story-text,
.story[data-i="4"] .story-text,
.story[data-i="6"] .story-text {
  order: 1;
}
.story-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 6px;
}
.story-label.we-listened {
  margin-top: 20px;
}
.story-body {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--black);
  margin: 0;
}
.story-body + .story-body {
  margin-top: 1.25rem;
}
.story-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  line-height: 1.35;
  color: var(--black);
  margin: 0 0 1.5rem;
}
.story-citation {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.6;
  text-align: right;
}
.story-citation__name {
  color: var(--red);
}
.story-citation__role {
  color: var(--red);
  display: block;
}

@media (width > 55rem) and (max-height: 48rem) {
  .fybu {
    --fybu-card-spacing: 0.78;
    --fybu-transition-gap: 0.18;
  }
}

@media (width > 55rem) and (max-height: 42rem) {
  .fybu {
    --fybu-card-spacing: 0.88;
    --fybu-transition-gap: 0.26;
  }
}

@media (width > 55rem) and (max-height: 37.5rem) {
  .fybu {
    --fybu-card-spacing: 0.98;
    --fybu-transition-gap: 0.35;
  }
}

/* ============================================================
     FRAME 03 — QUOTE
  ============================================================ */
.quote-section {
  background: var(--dark-blue);
  color: #fff;
  text-align: center;
  height: 250vh;
  position: relative;
}
.quote-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--pad-x-lg);
}
.quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.625rem, 3.2vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  max-width: 56rem;
  margin: 0 auto 2.25rem;
  text-wrap: balance;
}
.quote em {
  font-style: italic;
  color: var(--light-blue);
  font-weight: 400;
}
.quote-attr {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.quote-attr::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.6);
}

/* ============================================================
     FRAME 04 — SIGNUP
  ============================================================ */
.signup {
  background: var(--blue);
  color: #fff;
  padding: 6rem var(--pad-x-lg);
  text-align: center;
}
.signup__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 6.25rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
  color: #fff;
}
.signup__title em {
  font-style: italic;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: from-font;
  text-decoration-color: var(--red);
}
.signup__body {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.55;
  color: #fff;
}
.signup__form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 32rem;
  margin: 0 auto 0.875rem;
}
.signup__form input[type="email"] {
  flex: 1;
  min-width: 0;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 1rem;
  border-radius: 0.25rem;
  border: 0;
  background: #fff;
  color: var(--black);
  outline: none;
}
.signup__form input[type="email"]::placeholder {
  color: #8a8a8a;
}
.signup__form .btn {
  flex-shrink: 0;
}
.signup__form input[type="email"]:focus {
  box-shadow: 0 0 0 0.1875rem rgba(184, 221, 249, 0.6);
}
.signup__fineprint {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ============================================================
     FRAME 05 — PARTNERS
  ============================================================ */
.partners {
  background: #ffffff;
  padding: 5rem var(--pad-x-lg);
  text-align: center;
}
.partners__logos {
  display: flex;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.partner-logo {
  align-items: center;
  background: transparent;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  max-height: 13.25rem;
  max-width: 17.0625rem;
  padding: 2rem;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 180ms cubic-bezier(0.2, 0.7, 0.3, 1),
    box-shadow 180ms ease;
  will-change: transform;
}
.partner-logo:nth-child(2) img,
.partner-logo:nth-child(3) img {
  transform: scale(0.8);
}
.partner-logo:hover {
  transform: translateY(-3px);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 180ms cubic-bezier(0.2, 0.7, 0.3, 1),
    box-shadow 180ms ease;
  background-color: var(--paper);
  box-shadow:
    0 8px 16px rgba(28, 29, 32, 0.1),
    0 2px 4px rgba(28, 29, 32, 0.06);
}

/* ============================================================
     FRAME 06 — FOOTER
  ============================================================ */
.footer {
  background: var(--paper);
  color: var(--black);
  padding: 6rem var(--pad-x-lg) 5rem;
  position: relative;
}
.footer__top {
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
.footer__dot {
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: 50%;
  border: 0.0625rem solid rgba(255, 255, 255, 0.6);
  background: transparent;
}
.footer__dot--filled {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
}

.footer__brand {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.95);
}
.footer__rule {
  border: 0;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 0 1.75rem;
}
.footer__feedback-link:link,
.footer__feedback-link:visited .footer__feedback-link:hover,
.footer__feedback-link:active {
  text-decoration-line: underline;
  text-decoration-skip-ink: auto;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.footer__feedback-link:focus {
  /* For accessibility */
  outline: 2px solid #000;
  outline-offset: 2px;
}
.footer__copy {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9375rem;
  margin: 0;
  color: var(--black);
  font-weight: 500;
}
.footer__logo {
  margin: 0 0 16px -9px;
}

div.stat-highlights {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  max-width: 60rem;
  margin: 7rem auto 0;
  justify-content: space-between;
}
div.stat-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
span.stat-number {
  color: var(--blue);
  font-family: var(--sans);
  font-size: 7.5rem;
  line-height: 1;
}
span.stat-desc {
  color: var(--black);
  font-family: var(--sans);
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  text-align: center;
}

/* CSS for ~3 second introduction clip
  ***************************************/
#intro-container {
  background: #000;
  left: 0;
  height: 100vh;
  position: fixed;
  top: 0;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  z-index: 9999;
}
#intro-container.slide-up {
  transform: translateY(-100%);
}
#intro-video-desktop,
#intro-video-mobile {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
#intro-video-desktop {
  display: block;
}
#intro-video-mobile {
  display: none;
}
span.red-underline {
  border-bottom: 2px solid var(--red);
}

/* ============================================================
     RESPONSIVE
  ============================================================ */
@media (max-width: 55rem) {
  :root {
    --pad-x-lg: 1.5rem;
  }
  .hero-sticky-wrap {
    position: static;
    height: auto;
  }
  .hero {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }
  .hero__logo {
    margin-left: -0.5rem;
  }
  .section--over-hero {
    margin-top: 0;
  }
  .hero__left {
    min-height: auto;
    padding: 2.5rem 1.5rem 3rem;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.75);
  }
  .hero__logo {
    left: 1.5rem;
    width: min(378px, calc(100% - 3rem));
  }
  .hero__right {
    order: 2;
    min-height: 22rem;
  }
  .hero__right img {
      object-position: 60% bottom;
  }
  .hero__body {
    margin-top: 3rem;
  }
  .hero__title {
    font-size: 3rem;
  }
  .hero__lede {
    font-size: 1.14rem;
  }
  .btn-row {
    bottom: 7rem;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .video-placeholder {
    width: 100%;
  }
  .launching {
    padding: 4rem 1.5rem;
  }
  .steps {
    margin: 0 auto;
    padding: 0;
  }
  .steps::before {
    left: 1.625rem;
  }
  span.stat-number {
    font-size: 6rem;
  }
  .stat:first-child {
    padding-left: 0;
  }
  .stat:last-child {
    padding-right: 0;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: start;
  }
  .you-headers {
    display: none;
  }
  .you-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .you-row__img {
    max-width: 16rem;
  }
  .you-row__col::before {
    content: attr(data-label);
    display: block;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.5rem;
  }
  .partners__logos {
    flex-direction: column;
    max-width: 22rem;
    margin: 0 auto;
    justify-items: center;
  }
  .footer__brand {
    letter-spacing: 0.12em;
  }
  .section {
    padding: 4rem 0;
  }
  .section > .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .quote-section,
  .signup,
  .partners,
  .footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .stat__label {
    font-size: 1.75rem;
  }
  .h-display {
    font-size: 3.5rem;
  }
  .feature__title {
    font-size: 2rem;
  }
  .feature__title::before {
    font-size: 2rem;
  }
  .feature__body {
    font-size: 1.125rem;
  }
  .step__title {
    font-size: 1.75rem;
  }
  .step__body {
    font-size: 1.125rem;
  }
  .fybu {
    --fybu-card-spacing: 1.1;
    --fybu-transition-gap: 0;
  }
  .fybu-stage {
    height: auto;
  }
  .fybu-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
    padding: 0;
  }
  .fybu-header {
    margin-top: 0;
    padding: clamp(1rem, 3svh, 1.75rem) 1.5rem clamp(0.75rem, 2svh, 1rem);
  }
  .fybu-header h2 {
    font-size: 3.5rem;
  }
  .signup__title {
    font-size: clamp(2.75rem, 10vw, 3.5rem);
    line-height: 0.95;
    margin-bottom: 0.75rem;
  }
  .fybu-header p {
    max-width: 22rem;
    margin: 0 auto;
    font-size: clamp(1rem, 4vw, 1.25rem);
    line-height: 1.35;
  }
  .rolodex {
    position: relative;
    width: min(calc(100% - 3rem), 28rem);
    max-width: none;
    flex: 1;
    height: auto;
    display: block;
    overflow: hidden;
    margin: 0 auto;
  }
  .story {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 3svh, 1.5rem);
    text-align: center;
    will-change: transform, opacity;
  }
  .story-photo {
    width: 100%;
    height: clamp(10rem, 40svh, 19rem);
    aspect-ratio: auto;
  }
  .story[data-i="0"] .story-photo {
    grid-column: auto;
    height: clamp(11rem, 32svh, 17rem);
    aspect-ratio: auto;
  }
  .story[data-i="2"] .story-photo,
  .story[data-i="4"] .story-photo,
  .story[data-i="6"] .story-photo,
  .story[data-i="2"] .story-text,
  .story[data-i="4"] .story-text,
  .story[data-i="6"] .story-text {
    order: 0;
  }
  .story-text {
    width: 100%;
    max-width: 24rem;
  }
  .story-quote {
    font-size: clamp(1.25rem, 5.6vw, 1.75rem);
    line-height: 1.32;
    margin-bottom: 1rem;
  }
  .story-body {
    font-size: clamp(1.1rem, 4.8vw, 1.35rem);
    line-height: 1.4;
  }
  .story-label {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }
  .story-citation {
    font-size: clamp(0.75rem, 3vw, 0.95rem);
    line-height: 1.45;
    text-align: center;
  }
  .fybu-dots {
    display: none;
  }
  .eyebrow {
    font-size: 0.875rem;
  }

  .we-spoke .h-display {
    font-size: 3.5rem;
  }
  div.stat-highlights {
    flex-direction: column;
    align-items: center;
  }
  div.stat-highlight {
    justify-content: flex-start;
  }

  /* INTRO VIDEO CHANGES */
  #intro-video-container {
    margin-top: 2rem;
  }
  #intro-video-desktop {
    display: none;
  }
  #intro-video-mobile {
    display: block;
  }
  .signup__body {
    font-size: 1rem;
    padding-top: 10px;
  }
}

#building-video-container {
  margin: 0 auto 4.5rem;
}

#video-watch-what-were-building {
  width: calc(100% - 22.5rem);
  aspect-ratio: 16 / 9;
  border: 0;
  height: auto;
  margin: 0 auto 4.5rem;
  display: block;
}

@media (max-width: 30rem) {
  .hero__title {
    font-size: 2rem;
    margin: 0;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .we-spoke .h-display {
    font-size: 2.5rem;
  }
  span.stat-number {
    font-size: 5rem;
  }
}

@media (max-width: 48rem) {
  #video-watch-what-were-building {
    width: 100%;
  }
  .partner-logo {
    margin: 1rem 0;
  }
  .signup__form {
    gap: 0;
  }
  .signup__form input[type="email"] {
    border-radius: 0.25rem 0 0 0.25rem;
  }
  .signup__form .btn {
    border-radius: 0 0.25rem 0.25rem 0;
    max-width: 8.75rem;
  }
}

/* ---------- Quote word-by-word reveal ---------- */
.qword {
  display: inline;
  transition: color 0.4s ease;
  color: rgba(255, 255, 255, 0.18);
}
.qword.lit {
  color: #fff;
}
.qword--em.lit {
  color: var(--light-blue);
  font-style: italic;
}
@media (prefers-reduced-motion: reduce) {
  .qword {
    color: #fff;
    transition: none;
  }
  .qword--em {
    color: var(--light-blue);
    font-style: italic;
  }
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 {
  transition-delay: 0.12s;
}
.reveal--delay-2 {
  transition-delay: 0.24s;
}
.reveal--delay-3 {
  transition-delay: 0.36s;
}

.count-up {
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .steps::before {
    transform: scaleY(1) !important;
    transition: none !important;
  }
}
