:root {
  --page-bg: #ffffff;
  --paper: #f5f3ef;
  --paper-strong: #ebe7e0;
  --ink: #181818;
  --ink-soft: #4f4d4b;
  --ink-muted: #78726a;
  --charcoal: #3f3d3d;
  --charcoal-soft: rgba(63, 61, 61, 0.74);
  --accent: #f16908;
  --line: rgba(255, 255, 255, 0.42);
  --section-shadow: 0 26px 70px rgba(12, 18, 28, 0.12);
  --radius-xl: 2.25rem;
  --radius-lg: 1.6rem;
  --radius-md: 1rem;
  --max-width: 1220px;
  --max-width-wide: 1710px;
  --gutter: clamp(1.25rem, 3vw, 2.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}

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

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

button,
a,
input {
  font: inherit;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.1rem, 2vw, 2rem);
  background: var(--charcoal-soft);
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(44, 42, 42, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-icon {
  display: block;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(241, 105, 8, 0.2));
}

.brand-icon--small {
  width: 2.2rem;
}

.brand-icon--hero {
  width: clamp(5.1rem, 7vw, 7.2rem);
}

.brand-wordmark {
  display: block;
  width: 4.65rem;
  height: auto;
}

.brand-wordmark--footer {
  width: 5.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button--accent {
  background: var(--accent);
  color: #fff;
}

.button--accent:hover,
.button--accent:focus-visible {
  box-shadow: 0 16px 30px rgba(241, 105, 8, 0.24);
}

.button--dark {
  background: #4d4a4a;
  color: #fff;
  border-radius: 0.92rem;
  padding-inline: 1.65rem;
  box-shadow: 0 14px 28px rgba(19, 20, 22, 0.14);
}

.button--dark span {
  margin-left: 0.2rem;
  color: var(--accent);
}

.header-cta {
  flex: 0 0 auto;
  min-height: 2.8rem;
  padding-inline: 1.05rem;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  background: #101418;
  color: #fff;
}

.hero-media,
.hero-inner {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(0.62);
  transform-origin: center center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 17, 23, 0.6) 0%, rgba(11, 17, 23, 0.28) 32%, rgba(11, 17, 23, 0.44) 58%, rgba(11, 17, 23, 0.5) 72%, rgba(11, 17, 23, 0.82) 100%);
}

.hero-sheen {
  position: absolute;
  inset: 10% 16% auto auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0.2;
  filter: blur(20px);
}

.hero-inner {
  display: grid;
  place-items: center;
  padding: 6.5rem var(--gutter) 2rem;
}

.hero-stack {
  position: relative;
  width: min(100%, 52rem);
  min-height: 24rem;
}

.hero-beat {
  position: absolute;
  inset: 50% 0 auto;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.hero-beat.is-active {
  opacity: 1;
}

.hero-beat h1,
.hero-beat h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.55rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-beat p {
  max-width: 41rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
}

.eyebrow {
  display: inline-flex;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: inline-block;
  width: 2.8rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.54);
}

.section {
  position: relative;
  z-index: 2;
}

.section--lift {
  margin-top: -4rem;
}

.section-shell {
  width: min(calc(100% - 2 * var(--gutter)), var(--max-width));
  margin-inline: auto;
}

.section-shell--wide {
  width: min(calc(100% - 2 * var(--gutter)), var(--max-width-wide));
  margin-inline: auto;
}

.section-shell--intro {
  width: min(calc(100% - 2 * var(--gutter)), 1426px);
}

.intro {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  padding: 5.7rem 0 2.8rem;
}

.intro-grid {
  display: flex;
  width: min(calc(100% - 2 * var(--gutter)), 1426px);
  margin-inline: auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(6rem, 9vw, 10rem);
  transform-origin: center top;
  will-change: transform, opacity;
}

.intro-kicker {
  margin: 0 0 0.95rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-kicker--light {
  color: rgba(255, 255, 255, 0.62);
}

.intro-copy {
  flex: 0 0 31.5rem;
  max-width: 31.5rem;
  padding-top: 0.55rem;
}

.agents-copy h2,
.faq-heading h2 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.intro-copy h2 {
  margin: 0 0 1.7rem;
  max-width: 31rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 0.55vw + 1.4rem, 2.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.intro-copy h3 {
  margin: 0 0 1.45rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 0.4vw + 1.05rem, 1.82rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.intro-copy p {
  max-width: 31.25rem;
  margin: 0 0 1.25rem;
  color: #1f1f1f;
  font-size: clamp(0.97rem, 0.12vw + 0.93rem, 1rem);
  line-height: 1.3;
}

.intro-note {
  margin-top: 0.6rem;
}

.intro-note a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.intro-copy .button {
  margin-top: 2.25rem;
  min-width: 12.8rem;
  min-height: 3.35rem;
  padding-inline: 2rem;
  font-size: 1.02rem;
}

.media-card {
  position: relative;
  flex: 0 1 740px;
  width: min(100%, 740px);
  align-self: flex-start;
  justify-self: end;
  margin-top: 1.35rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--section-shadow);
  background: #efebe6;
  transform-origin: center top;
  will-change: transform, opacity;
}

.media-card img {
  width: 100%;
  height: auto;
}

.agents {
  padding: 5.75rem 0 4.5rem;
  background: linear-gradient(180deg, #fffdfa 0%, #f5f2ec 100%);
}

.agents-stage {
  display: grid;
  gap: 2.6rem;
  transform-origin: center top;
  will-change: transform, opacity;
}

.agents-copy {
  text-align: center;
}

.agents-gallery {
  display: flex;
  gap: clamp(0.95rem, 1vw, 1.35rem);
  min-height: clamp(23rem, 28vw, 25.5rem);
  padding: clamp(0.2rem, 0.8vw, 0.45rem);
  transform-origin: center top;
  will-change: transform, opacity;
}

.agent-card {
  --agent-image-transform: scale(1);
  --agent-image-transform-active: scale(1.02);
  --agent-image-position: center center;
  position: relative;
  display: block;
  flex: 1 1 0;
  min-width: 0;
  border: 0;
  border-radius: clamp(1.5rem, 2.2vw, 2rem);
  padding: 0;
  appearance: none;
  overflow: hidden;
  background: #101317;
  box-shadow:
    0 24px 52px rgba(20, 24, 30, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  cursor: pointer;
  isolation: isolate;
  color: inherit;
  font: inherit;
  text-align: left;
  transition: flex 260ms ease, transform 220ms ease, box-shadow 220ms ease,
    filter 220ms ease;
}

.agent-card:hover,
.agent-card:focus-visible {
  transform: translateY(-4px);
  box-shadow:
    0 32px 70px rgba(20, 24, 30, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.agent-card:focus-visible {
  outline: 3px solid rgba(241, 105, 8, 0.42);
  outline-offset: 4px;
}

.agent-card::before,
.agent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.agent-card::before {
  background: linear-gradient(180deg, rgba(8, 12, 16, 0) 28%, rgba(8, 12, 16, 0.22) 64%, rgba(8, 12, 16, 0.68) 100%);
}

.agent-card::after {
  background: linear-gradient(180deg, rgba(7, 11, 15, 0.16) 0%, rgba(7, 11, 15, 0.52) 38%, rgba(7, 11, 15, 0.92) 100%);
  opacity: 0;
}

.agent-card.is-active {
  flex: 1.18 1 0;
}

.agent-card.is-active::after {
  opacity: 1;
}

.agent-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--agent-image-position);
  transform: var(--agent-image-transform);
  transition: transform 280ms ease, filter 280ms ease;
}

.agent-card.is-active .agent-card__image {
  transform: var(--agent-image-transform-active);
  filter: saturate(0.88) brightness(0.64);
}

.agent-card--audience {
  --agent-image-transform: scale(1.5);
  --agent-image-transform-active: scale(1.55);
  --agent-image-position: center center;
}

.agent-card--genius {
  --agent-image-transform: scale(1.34);
  --agent-image-transform-active: scale(1.39);
  --agent-image-position: center center;
}

.agent-card--author {
  --agent-image-transform: scale(1.34);
  --agent-image-transform-active: scale(1.39);
  --agent-image-position: center 48%;
}

.agent-card--flow {
  --agent-image-transform: scale(1.34);
  --agent-image-transform-active: scale(1.39);
  --agent-image-position: center center;
}

.agent-card--insight {
  --agent-image-transform: scale(1.34);
  --agent-image-transform-active: scale(1.39);
  --agent-image-position: center center;
}

.agent-card__detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 2vw, 2.15rem);
  color: #fff;
  text-align: left;
}

.agent-card__detail-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.agent-card__detail h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 2.05vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.agent-card__arrow {
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  line-height: 1;
}

.agent-card__detail-kicker,
.agent-card__detail-copy {
  margin: 0 auto;
  max-width: 17.5rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.agent-card__detail-kicker {
  font-size: clamp(1.02rem, 1.15vw, 1.32rem);
  font-weight: 800;
  line-height: 1.2;
}

.agent-card__detail-copy {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  line-height: 1.34;
}

/* Active card: lift the name + arrow to the top and reveal the full,
   centered detail copy, matching the expanded card in the reference. */
.agent-card.is-active .agent-card__detail {
  justify-content: flex-start;
  text-align: center;
}

.agent-card.is-active .agent-card__detail-head {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.agent-card.is-active .agent-card__detail-kicker,
.agent-card.is-active .agent-card__detail-copy {
  opacity: 1;
  max-height: 14rem;
  transform: translateY(0);
}

.agent-card.is-active .agent-card__detail-kicker {
  margin-bottom: 0.7rem;
}

.platform {
  padding: 2.9rem 0 3.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
}

.platform-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.1rem, 3.2vw, 2.4rem)
    clamp(0.8rem, 1.8vw, 1.3rem);
  border-radius: clamp(2.1rem, 3vw, 3.2rem);
  background: linear-gradient(180deg, #f1efea 0%, #efede8 100%);
  box-shadow: 0 34px 76px rgba(14, 18, 24, 0.1);
  transform-origin: center top;
  will-change: transform, opacity;
}

.platform-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: inherit;
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.platform-frame {
  position: relative;
  z-index: 1;
  max-width: 1213px;
  margin: 0 auto;
  transform-origin: center top;
  will-change: transform, opacity;
}

.platform-frame img {
  width: 100%;
  height: auto;
}

.platform-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 1213px;
  margin: clamp(0.25rem, 1vw, 0.5rem) auto 0;
}

.platform-cta {
  min-width: 12.7rem;
}

.faq {
  padding: 5rem 0 0;
  background: #101315;
  color: #fff;
}

.faq-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.94;
}

.faq-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.38) saturate(0.82);
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 18, 0.72) 0%, rgba(12, 14, 18, 0.52) 34%, rgba(12, 14, 18, 0.82) 100%),
    linear-gradient(180deg, rgba(12, 14, 18, 0.24) 0%, rgba(12, 14, 18, 0.82) 100%);
}

.faq-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding-bottom: 4.5rem;
  transform-origin: center top;
  will-change: transform, opacity;
}

.faq-heading {
  padding-top: 5.6rem;
}

.faq-heading h2 {
  margin-bottom: 0;
}

.faq-content {
  padding-top: 2.8rem;
  transform-origin: center top;
  will-change: transform, opacity;
}

.faq-lede {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.faq-body {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.faq-list {
  display: grid;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-plus {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.9rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.74);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  padding-bottom: 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1rem;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 3rem var(--gutter) 3.3rem;
  background: #474545;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
}

.footer-brand p,
.footer-meta p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-meta {
  display: grid;
  gap: 0.95rem;
}

.socials {
  display: inline-flex;
  justify-content: center;
  gap: 0.6rem;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  transition: transform 180ms ease, opacity 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  opacity: 0.88;
}

.socials img {
  display: block;
  width: 100%;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(2.6rem);
}

.reveal--right {
  transform: translate(2.2rem, 2rem);
}

@media (max-width: 1024px) {
  .site-nav {
    gap: 1rem;
    font-size: 0.88rem;
  }

  .intro-grid,
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intro-copy {
    flex: initial;
    max-width: none;
  }

  .media-card {
    flex: initial;
    justify-self: stretch;
  }

  .agents-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .agent-card,
  .agent-card.is-active {
    flex: auto;
    min-height: 22rem;
  }

  .platform-panel {
    padding-inline: 1rem;
    padding-top: 1.55rem;
  }

  .platform-cta-row {
    justify-content: center;
    margin-top: 1rem;
  }

  .faq-photo-wrap {
    opacity: 0.82;
  }

  .faq-heading,
  .faq-content {
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 0.75rem);
    display: grid;
    gap: 0.25rem;
    padding: 0.65rem;
    border-radius: 1rem;
    background: rgba(33, 31, 31, 0.96);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .site-header.is-open .site-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 0.7rem;
  }

  .site-header.is-open .site-nav a:hover,
  .site-header.is-open .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

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

  .hero-stack {
    min-height: 28rem;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    opacity: 0.88;
  }

  .hero-gradient {
    background:
      linear-gradient(180deg, rgba(11, 17, 23, 0.52) 0%, rgba(11, 17, 23, 0.18) 28%, rgba(11, 17, 23, 0.92) 100%),
      linear-gradient(90deg, rgba(11, 17, 23, 0.16) 0%, rgba(11, 17, 23, 0.82) 100%);
  }

  .section--lift {
    margin-top: -2.5rem;
  }

  .agent-card__detail {
    padding: 1.45rem;
  }
}

@media (max-width: 720px) {
  .hero-beat h1,
  .hero-beat h2 {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  .hero-beat p,
  .intro-copy p,
  .faq-body,
  .faq-answer p {
    font-size: 0.96rem;
  }

  .intro-copy h3 {
    font-size: 1.4rem;
  }

  .intro-copy h2 {
    margin-bottom: 1.45rem;
  }

  .intro-copy h3 {
    margin-bottom: 1.1rem;
  }

  .intro-copy p {
    margin-bottom: 1.1rem;
  }

  .intro-copy .button {
    margin-top: 1.4rem;
  }

  .intro,
  .agents,
  .platform,
  .faq {
    padding-top: 4.25rem;
  }

  .agents-gallery {
    grid-template-columns: 1fr;
  }

  .agent-card,
  .agent-card.is-active {
    min-height: 20rem;
  }

  .agent-card__detail-kicker,
  .agent-card__detail-copy {
    max-width: none;
  }

  .scroll-cue {
    bottom: 1.3rem;
  }

  .faq-photo-wrap {
    opacity: 0.72;
  }
}
