:root {
  --ink: #07100f;
  --ink-soft: #1a2422;
  --muted: #66706d;
  --paper: #f7f8f3;
  --white: #ffffff;
  --brand-lime: #c7f41b;
  --brand-lime-line: #b6e600;
  --brand-lime-text: #9fd100;
  --lime: var(--brand-lime);
  --lime-dark: var(--brand-lime-text);
  --line: rgba(7, 16, 15, 0.1);
  --wide-mobile-shell: 1120px;
  --wide-mobile-gutter: 22px;
  --desktop-content-shell: 1480px;
  --desktop-support-shell: 1180px;
  --desktop-content-gutter: clamp(32px, 4.8vw, 72px);
  --mobile-section-gap: clamp(56px, 8vh, 88px);
  --mobile-note-gap: clamp(64px, 9vh, 104px);
  /*
   * Mobile screen sections reserve at least one full Safari large viewport so
   * there is a scroll position where the viewport contains only that chapter
   * while the browser chrome floats above it. Keep this as min-height so taller
   * content can grow naturally. Do not add compensating margins or scroll
   * snapping; adjacent content should stay as close as that isolation allows.
   * Used by How It Works, Results & Sessions, and Real-Time Feedback.
   */
  --touch-section-min-height: max(620px, 100vh);
  --touch-section-pad-y: clamp(48px, 7vh, 76px);
  --touch-content-gap: clamp(24px, 5vh, 40px);
}

@supports (height: 100svh) {
  :root {
    --mobile-section-gap: clamp(56px, 8svh, 88px);
    --mobile-note-gap: clamp(64px, 9svh, 104px);
    --touch-section-min-height: max(620px, 100svh);
    --touch-section-pad-y: clamp(48px, 7svh, 76px);
    --touch-content-gap: clamp(24px, 5svh, 40px);
  }
}

@supports (height: 100lvh) {
  :root {
    --touch-section-min-height: max(620px, 100lvh);
    --touch-section-pad-y: clamp(48px, 7lvh, 76px);
    --touch-content-gap: clamp(24px, 5lvh, 40px);
  }
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

main {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0;
  font-size: 1rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 10px 24px rgba(199, 244, 27, 0.24);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
}

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

.arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--brand-lime);
  border-right: 2px solid var(--brand-lime);
  transform: rotate(45deg);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-lime-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

h1 {
  max-width: 9.4ch;
  margin-bottom: 14px;
  font-size: clamp(2.18rem, 9.8vw, 2.74rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
}

.section-heading,
.intro-workflow,
.real-ui,
.setup-guide {
  position: relative;
}

.workflow-title-desktop,
.intro-card-title-desktop,
.intro-card-copy-desktop,
.proof-copy-desktop,
.capability-label-desktop,
.capability-copy-desktop {
  display: none;
}

.workflow-title-mobile,
.intro-card-title-mobile,
.intro-card-copy-mobile,
.proof-copy-mobile,
.capability-label-mobile,
.capability-copy-mobile {
  display: inline;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.intro-hero {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: calc(88px + env(safe-area-inset-top, 0px)) 22px 118px;
  border-radius: 0;
}

.intro-hero::before,
.intro-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.intro-hero::before {
  z-index: 0;
  background: url("assets/hero-bg-mobile-light-1.jpg") center bottom / cover no-repeat;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 64%,
    rgba(0, 0, 0, 0.92) 72%,
    rgba(0, 0, 0, 0.56) 84%,
    rgba(0, 0, 0, 0.14) 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 64%,
    rgba(0, 0, 0, 0.92) 72%,
    rgba(0, 0, 0, 0.56) 84%,
    rgba(0, 0, 0, 0.14) 96%,
    transparent 100%
  );
}

.intro-hero::after {
  top: auto;
  bottom: -1px;
  z-index: 1;
  height: clamp(160px, 21svh, 250px);
  background:
    radial-gradient(ellipse 54% 40% at 16% 62%, rgba(247, 248, 243, 0.42) 0%, rgba(247, 248, 243, 0.14) 50%, rgba(247, 248, 243, 0) 78%),
    radial-gradient(ellipse 42% 38% at 82% 56%, rgba(247, 248, 243, 0.34) 0%, rgba(247, 248, 243, 0.1) 52%, rgba(247, 248, 243, 0) 80%),
    radial-gradient(ellipse 90% 68% at 50% 100%, var(--paper) 0%, rgba(247, 248, 243, 0.58) 36%, rgba(247, 248, 243, 0.06) 74%, rgba(247, 248, 243, 0) 100%),
    linear-gradient(180deg, rgba(247, 248, 243, 0) 0%, rgba(247, 248, 243, 0.06) 30%, rgba(247, 248, 243, 0.34) 64%, rgba(247, 248, 243, 0.84) 88%, var(--paper) 100%);
}

.hero-topline {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top, 0px));
  right: 22px;
  left: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  isolation: isolate;
}

.hero-brand {
  display: inline-flex;
  color: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: block;
  align-self: flex-start;
  min-height: 0;
  max-width: min(29rem, 100%);
  padding-top: 0;
  transform: translateY(clamp(48px, 9vh, 76px));
  transform: translateY(clamp(48px, 9svh, 76px));
}

.hero-kicker {
  position: relative;
  z-index: 0;
  display: inline-block;
  isolation: isolate;
  margin-bottom: 10px;
  color: var(--brand-lime-text);
  font-size: clamp(0.88rem, 3.8vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-kicker::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: clamp(220px, 34vw, 360px);
  height: clamp(72px, 11vw, 124px);
  content: "";
  background: radial-gradient(
    ellipse at center,
    rgba(247, 248, 243, 0.78) 0%,
    rgba(247, 248, 243, 0.52) 38%,
    rgba(247, 248, 243, 0.22) 64%,
    rgba(247, 248, 243, 0) 100%
  );
  filter: blur(18px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.intro-hero h1 {
  max-width: 100%;
  font-size: clamp(1.95rem, 9vw, 2.74rem);
  line-height: 1.02;
}

.intro-hero h1 span {
  display: block;
  color: inherit;
  white-space: nowrap;
}

.hero-text {
  max-width: 18.5rem;
  margin-bottom: 22px;
  color: rgba(7, 16, 15, 0.68);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-visual {
  display: none;
}

@supports (-webkit-touch-callout: none) and (height: 100lvh) {
  :root {
    --ios-stable-viewport-height: 100lvh;
    --ios-hero-height: 100lvh;
    --ios-hero-bleed: 48px;
  }

  html {
    background: var(--paper);
  }

  .intro-hero {
    min-height: max(660px, calc(var(--ios-hero-height) + var(--ios-hero-bleed)));
  }
}

/* Shared section typography */
.intro-workflow .intro-statement .eyebrow,
.data-capability-item .capability-eyebrow,
.real-ui .product-proof-heading .eyebrow {
  display: block;
  margin-bottom: 2px;
  color: var(--brand-lime-text);
  font-size: clamp(0.78rem, 3.6vw, 0.9rem);
  font-weight: 600;
  line-height: 1.35;
}

.intro-workflow .intro-statement h2,
.data-capability-item h2,
.real-ui .product-proof-heading h2,
.beta-cta .closing-cta-copy h2 {
  max-width: 16ch;
  color: var(--ink);
  font-size: clamp(1.62rem, 7vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: normal;
}

.intro-workflow .intro-statement p:last-child,
.workflow-support-copy,
.data-capability-item .capability-item-copy > p:not(.eyebrow),
.real-ui .product-proof-heading > p:not(.eyebrow),
.beta-cta .closing-cta-copy > p:not(.eyebrow) {
  max-width: 22rem;
  margin-bottom: 0;
  color: rgba(7, 16, 15, 0.56);
  font-size: clamp(0.92rem, 4vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
}

/* Intro workflow */
.intro-workflow {
  display: grid;
  align-content: center;
  scroll-margin-top: 76px;
  min-height: var(--touch-section-min-height);
  margin-top: 0;
  overflow: hidden;
  padding: var(--touch-section-pad-y) 0;
  background: var(--paper);
  box-shadow: 0 -6px 0 var(--paper);
}

.intro-workflow-layout {
  display: grid;
  width: 100%;
  gap: var(--touch-content-gap);
  margin-inline: auto;
}

.intro-workflow .intro-statement {
  display: grid;
  width: min(100%, var(--wide-mobile-shell));
  max-width: var(--wide-mobile-shell);
  justify-items: start;
  gap: 10px;
  margin-inline: auto;
  padding-inline: 22px;
  text-align: left;
}

.intro-card-track {
  display: flex;
  width: 100%;
  gap: 14px;
  margin: 0;
  overflow-x: auto;
  padding: 0 22px 2px;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.intro-card-track::-webkit-scrollbar {
  display: none;
}

.intro-card,
.intro-card-main,
.intro-card-detail {
  position: relative;
  display: grid;
  flex: 0 0 clamp(318px, 88vw, 360px);
  aspect-ratio: 5 / 6;
  min-height: 0;
  align-content: end;
  overflow: hidden;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.intro-card figure {
  position: absolute;
  inset: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #07100f;
}

.intro-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.intro-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.02) 0%, rgba(2, 3, 3, 0.04) 42%, rgba(2, 3, 3, 0.44) 78%, rgba(2, 3, 3, 0.76) 100%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.18) 0%, rgba(2, 3, 3, 0) 50%, rgba(2, 3, 3, 0.08) 100%);
}

.intro-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.intro-card-main img {
  object-position: center 50%;
}

.intro-card-phone img {
  object-position: center 44%;
  filter: brightness(1.04) saturate(0.96) contrast(0.98);
}

.intro-card-swing img {
  object-position: center 48%;
}

.intro-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 0;
  align-content: end;
  gap: 5px;
  padding: 18px 18px 16px;
  color: var(--white);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.intro-card h4 {
  max-width: 16rem;
  margin: 0;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.16;
  text-shadow: 0 2px 14px rgba(2, 3, 3, 0.42);
}

.intro-card p {
  display: block;
  max-width: 15.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.34;
  text-shadow: 0 2px 12px rgba(2, 3, 3, 0.4);
}

.intro-carousel-indicators,
.intro-carousel-nav {
  display: none;
}

/* Real UI proof */
.real-ui {
  display: grid;
  align-content: center;
  min-height: var(--touch-section-min-height);
  margin-top: 0;
  overflow: hidden;
  padding: var(--touch-section-pad-y) 22px;
  color: var(--ink);
  background: var(--paper);
  isolation: isolate;
}

.product-proof {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1180px);
  gap: 16px;
  margin-inline: auto;
}

.product-proof-copy,
.product-proof-heading,
.product-proof-details,
.product-proof-visual {
  grid-area: auto;
  align-self: auto;
}

.product-proof-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.product-proof-heading {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: min(100%, 25rem);
  gap: 10px;
}

.product-proof-details-mobile {
  display: none;
}

.proof-orbit,
.real-ui .proof-device-result {
  display: none;
}

.proof-device-stack {
  display: contents;
}

.product-proof-visual {
  display: grid;
  min-height: 0;
  justify-items: center;
  gap: 0;
  margin: 2px 0 0;
}

.proof-device {
  position: relative;
  margin: 0;
  user-select: none;
}

.proof-device img {
  width: 100%;
  max-width: none;
  height: auto;
}

.proof-session-pair {
  display: block;
  width: min(52vw, 225px);
  aspect-ratio: 430 / 900;
  margin: 4px auto 0;
}

.proof-device-session {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  filter: none;
  transform: none;
}

/*
 * Mobile proof mirrors the tablet/desktop two-device composition. Keep the
 * canvas tight around both devices so lifting the phone does not create dead
 * space or push the neighboring full-screen chapter unnecessarily far away.
 */
@media (max-width: 699px) {
  .real-ui .product-proof-visual {
    position: relative;
    display: block;
    width: min(100%, 380px);
    height: clamp(264px, 81.5vw, 350px);
    margin: 2px auto 0;
    overflow: visible;
  }

  .real-ui .proof-device-stack {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .real-ui .proof-device {
    position: absolute;
  }

  .real-ui .proof-device-result {
    top: clamp(20px, 5.6vw, 24px);
    right: 0;
    left: auto;
    z-index: 1;
    display: block;
    width: 94%;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .real-ui .proof-session-pair {
    position: absolute;
    bottom: clamp(4px, 1.4vw, 6px);
    right: auto;
    left: 0;
    z-index: 2;
    display: block;
    width: clamp(98px, 36%, 138px);
    margin: 0;
  }

  .real-ui .proof-device-session {
    position: relative;
    width: 100%;
  }

  /* Scale the physical chrome with the smaller mockups; desktop-sized fixed
     bezels look disproportionately heavy when these devices are roughly halved. */
  .real-ui .device-shell-ipad {
    padding: 5px;
    border-width: 0.5px;
    border-radius: 13px;
    box-shadow:
      0 12px 22px rgba(7, 16, 15, 0.16),
      inset 0 0 0 0.5px rgba(255, 255, 255, 0.2),
      inset 0 0 0 1.5px rgba(0, 0, 0, 0.46),
      inset 0 0 0 2px rgba(255, 255, 255, 0.035);
  }

  .real-ui .device-shell-ipad::before {
    inset: 2px;
    border-width: 0.5px;
    border-radius: 11.5px;
  }

  .real-ui .device-shell-ipad::after {
    inset: 1px;
    border-width: 0.5px;
    border-radius: 12px;
  }

  .real-ui .device-shell-ipad .device-screen {
    border-radius: 9px;
  }

  .real-ui .device-shell-portrait {
    padding: 4.5px;
    border-width: 0.5px;
    border-radius: 21px;
    box-shadow:
      inset 0 0 0 0.5px rgba(255, 255, 255, 0.26),
      inset 0 0 0 2.25px rgba(0, 0, 0, 0.52),
      inset 0 0 0 3.25px rgba(255, 255, 255, 0.055);
  }

  .real-ui .device-shell-portrait::before {
    inset: 2.75px;
    border-width: 0.5px;
    border-radius: 18.5px;
  }

  .real-ui .device-shell-phone::after {
    inset: 1.5px;
    border-width: 1px;
    border-radius: 19.5px;
  }

  .real-ui .device-shell-portrait .device-screen {
    border-radius: 17px;
  }

  .real-ui .device-shell .device-island {
    top: 7px;
    height: 10px;
    box-shadow:
      inset 0 0.5px 0 rgba(255, 255, 255, 0.07),
      0 0 0 0.5px rgba(0, 0, 0, 0.16);
  }

  .real-ui .device-side-button {
    width: 2px;
  }

  .real-ui .device-side-button-left {
    left: -1px;
    height: 25px;
  }

  .real-ui .device-side-button-right {
    right: -1px;
    height: 32px;
  }
}

.proof-device-session::before {
  position: absolute;
  right: -18%;
  bottom: -8%;
  left: -18%;
  z-index: -1;
  height: 28%;
  content: "";
  background:
    radial-gradient(
      ellipse at center,
      rgba(7, 16, 15, 0.14) 0%,
      rgba(7, 16, 15, 0.08) 42%,
      rgba(7, 16, 15, 0) 74%
    );
  border-radius: 999px;
  pointer-events: none;
}

.device-shell {
  position: relative;
  width: 100%;
  overflow: visible;
  background: linear-gradient(145deg, #3b4140 0%, #050606 18%, #020303 74%, #2f3534 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.device-shell::before {
  position: absolute;
  inset: 8px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.device-shell-ipad {
  aspect-ratio: 4 / 3;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 7%, rgba(0, 0, 0, 0.18) 18%, rgba(0, 0, 0, 0.05) 50%, rgba(255, 255, 255, 0.08) 90%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(145deg, #505755 0%, #232827 11%, #070808 30%, #070808 72%, #3b4240 100%);
  box-shadow:
    0 24px 42px rgba(7, 16, 15, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 0 0 3px rgba(0, 0, 0, 0.46),
    inset 0 0 0 4px rgba(255, 255, 255, 0.035);
}

.device-shell-ipad::before {
  inset: 4px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 23px;
}

.device-shell-ipad::after {
  position: absolute;
  inset: 2px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(0, 0, 0, 0.58);
  border-radius: 24px;
  pointer-events: none;
}

.device-shell-phone {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.05) 7%, rgba(0, 0, 0, 0.28) 18%, rgba(0, 0, 0, 0.06) 50%, rgba(255, 255, 255, 0.12) 88%, rgba(255, 255, 255, 0.34) 100%),
    linear-gradient(145deg, #545b59 0%, #242928 10%, #080909 28%, #070808 72%, #3f4644 100%);
}

.device-shell-phone::after {
  position: absolute;
  inset: 3px;
  z-index: 0;
  content: "";
  border: 2px solid rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

.device-shell-portrait {
  aspect-ratio: 430 / 900;
  padding: 8px;
  border-radius: 38px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.26),
    inset 0 0 0 4px rgba(0, 0, 0, 0.52),
    inset 0 0 0 6px rgba(255, 255, 255, 0.055);
  backface-visibility: hidden;
}

.device-shell-portrait::before {
  inset: 5px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 33px;
}

.device-shell-portrait::after {
  border-radius: 35px;
}

.device-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f5f7f2;
}

.device-shell-ipad .device-screen {
  border-radius: 18px;
}

.device-shell-portrait .device-screen {
  border-radius: 30px;
}

.device-screen img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.device-shell .device-island {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 3;
  display: block;
  width: 25%;
  height: 18px;
  background: #050606;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(0, 0, 0, 0.16);
  transform: translateX(-50%);
}

.device-side-button {
  position: absolute;
  z-index: 0;
  display: block;
  width: 4px;
  background: linear-gradient(180deg, #2d3332, #060707 42%, #1f2524);
  border-radius: 999px;
}

.device-side-button-left {
  top: 22%;
  left: -2px;
  height: 44px;
}

.device-side-button-right {
  top: 29%;
  right: -2px;
  height: 58px;
}

/* Capability */
.capability-transition {
  display: grid;
  min-height: var(--touch-section-min-height);
  align-content: center;
  margin-top: 0;
  overflow: visible;
  padding: var(--touch-section-pad-y) 22px;
  background: var(--paper);
}

.capability-transition .data-capability-line {
  display: grid;
  width: min(100%, var(--wide-mobile-shell));
  margin: 0 auto;
  color: var(--ink);
}

.data-capability-item {
  display: grid;
  gap: var(--touch-content-gap);
  padding: 0;
  text-align: left;
}

.capability-item-copy {
  display: grid;
  max-width: min(100%, 25rem);
  gap: 10px;
  padding-top: 0;
}

.capability-proof {
  display: block;
  min-height: 0;
  margin: 4px 0 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.capability-proof-scene {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 16, 15, 0.06);
}

.capability-proof-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.96) contrast(1.02);
}

/* Why theGOLFapp */
.story-sequence {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 150vh;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: clamp(160px, 22vh, 210px);
  overflow: hidden;
  padding: clamp(72px, 10vh, 112px) 22px;
  background: var(--paper);
}

@supports (height: 100svh) {
  .story-sequence {
    min-height: 150svh;
    gap: clamp(160px, 22svh, 210px);
    padding-block: clamp(72px, 10svh, 112px);
  }
}

/* Story height follows the same full-screen basis as adjacent screen sections. */
@supports (height: 100lvh) {
  .story-sequence {
    min-height: 150lvh;
  }
}

.story-sequence::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(
      ellipse 78% 20% at 86% 13%,
      rgba(199, 244, 27, 0.075) 0%,
      rgba(199, 244, 27, 0.02) 44%,
      rgba(199, 244, 27, 0) 74%
    ),
    radial-gradient(
      ellipse 68% 20% at 10% 49%,
      rgba(143, 183, 0, 0.05) 0%,
      rgba(143, 183, 0, 0.014) 46%,
      rgba(143, 183, 0, 0) 76%
    ),
    radial-gradient(
      ellipse 80% 23% at 76% 82%,
      rgba(199, 244, 27, 0.07) 0%,
      rgba(199, 244, 27, 0.018) 46%,
      rgba(199, 244, 27, 0) 76%
    ),
    linear-gradient(
      180deg,
      var(--paper) 0%,
      #f5f8ed 23%,
      #f1f6e8 50%,
      #eef5e6 76%,
      #f3f7ea 100%
    );
  pointer-events: none;
}

.story-sequence > section {
  position: relative;
  z-index: 1;
}

.why-product {
  position: relative;
  display: grid;
  min-height: 0;
  align-content: center;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.why-product-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1120px);
  gap: clamp(42px, 10vw, 56px);
  margin-inline: auto;
}

.why-product-heading {
  text-align: center;
}

.why-product-heading h2 {
  max-width: 16ch;
  margin-inline: auto;
  color: var(--ink);
  font-size: clamp(1.62rem, 7vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.why-product-grid {
  display: grid;
  gap: clamp(34px, 10vw, 48px);
}

.why-product-block {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 16, 15, 0.14);
}

.why-product-block h3 {
  margin: 0;
  color: var(--brand-lime-text);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.why-product-block p {
  max-width: 40rem;
  margin: 0;
  color: rgba(7, 16, 15, 0.68);
  font-size: clamp(1rem, 4.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.68;
}

/* CTA, vision quote, setup note, ecosystem */
.closing-cta {
  display: grid;
  width: min(100%, 1120px);
  margin-inline: auto;
  gap: clamp(18px, 6vw, 26px);
  padding: clamp(58px, 14vw, 76px) 22px clamp(64px, 15vw, 84px);
  color: var(--ink);
}

.beta-cta {
  position: relative;
  isolation: isolate;
  grid-template-columns: 1fr;
  min-height: 0;
  align-content: center;
  align-items: center;
  justify-items: center;
  gap: clamp(96px, 12vh, 124px);
  margin-top: 0;
  overflow: visible;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
}

.story-sequence .beta-cta {
  width: min(100%, 1120px);
}

@supports (height: 100svh) {
  .beta-cta {
    gap: clamp(96px, 12svh, 124px);
  }
}

.beta-cta::before {
  position: absolute;
  inset: -84px -18% -104px;
  z-index: -1;
  content: "";
  background: radial-gradient(
    ellipse 54% 58% at 50% 34%,
    rgba(199, 244, 27, 0.105) 0%,
    rgba(199, 244, 27, 0.035) 48%,
    rgba(199, 244, 27, 0) 76%
  );
  filter: blur(42px);
  pointer-events: none;
}

.beta-cta .closing-cta-copy {
  display: grid;
  max-width: 560px;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.cta-action {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: clamp(18px, 5vw, 26px);
}

.beta-cta .closing-cta-copy .eyebrow {
  display: none;
}

.beta-cta .closing-cta-copy h2 {
  max-width: 22ch;
}

.beta-cta .closing-cta-panel {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.beta-cta .footer-button {
  width: auto;
  min-width: 220px;
  min-height: 52px;
  padding-inline: 26px 22px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(7, 16, 15, 0.12);
  box-shadow: 0 16px 36px rgba(7, 16, 15, 0.16);
}

.vision-quote {
  width: min(100%, 980px);
  margin: 0;
}

.vision-quote p {
  max-width: 30ch;
  margin: 0 auto;
  color: #5e7b00;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.25rem, 5.4vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.38;
  text-align: center;
  text-shadow: 0 10px 30px rgba(7, 16, 15, 0.04);
  text-wrap: balance;
}

.setup-guide {
  display: grid;
  width: min(100%, 1120px);
  gap: 18px;
  margin: var(--mobile-note-gap) auto 0;
  padding: clamp(52px, 15vw, 78px) 22px 36px;
}

.setup-guide .setup-guide-copy {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-inline: auto;
  padding-top: 0;
}

.setup-guide #setup-title {
  max-width: none;
  margin: 0;
  color: rgba(7, 16, 15, 0.82);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.24;
  text-align: left;
}

.setup-requirements {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.setup-guide-copy .setup-requirements p {
  display: block;
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  color: rgba(7, 16, 15, 0.52);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.5;
}

.ecosystem {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 78vh;
  align-content: start;
  margin-top: clamp(-56px, -4.5vh, -40px);
  overflow: hidden;
  padding-top: clamp(52px, 14vw, 64px);
  padding-right: max(22px, env(safe-area-inset-right, 0px));
  padding-bottom: calc(clamp(84px, 12vh, 112px) + env(safe-area-inset-bottom, 0px));
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  background: var(--paper);
}

@supports (height: 100svh) {
  .ecosystem {
    min-height: 78svh;
    margin-top: clamp(-56px, -4.5svh, -40px);
  }
}

@media (max-width: 699px) {
  .ecosystem {
    --ecosystem-contact-reduction: clamp(98px, calc(14vw + 50px), 114px);

    min-height: calc(
      var(--touch-section-min-height) - var(--ecosystem-contact-reduction)
    );
    margin-top: clamp(-52px, -6vh, -48px);
    padding-bottom: calc(
      max(
        24px,
        calc(clamp(120px, 16vh, 152px) - var(--ecosystem-contact-reduction))
      ) + env(safe-area-inset-bottom, 0px)
    );
  }

  @supports (height: 100svh) {
    .ecosystem {
      min-height: calc(
        var(--touch-section-min-height) - var(--ecosystem-contact-reduction)
      );
      margin-top: clamp(-52px, -6svh, -48px);
      padding-bottom: calc(
        max(
          24px,
          calc(clamp(120px, 16svh, 152px) - var(--ecosystem-contact-reduction))
        ) + env(safe-area-inset-bottom, 0px)
      );
    }
  }
}

.ecosystem-inner {
  display: grid;
  width: min(100%, 1120px);
  gap: clamp(32px, 9vw, 40px);
  margin-inline: auto;
}

.ecosystem-heading {
  display: grid;
  width: 100%;
  max-width: 42rem;
  justify-items: center;
  gap: 0;
  margin-inline: auto;
  text-align: center;
}

.ecosystem-heading h2 {
  display: block;
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.62rem, 7vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
}

.ecosystem-panel {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(7, 16, 15, 0.14);
  list-style: none;
}

.ecosystem-card {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 20px 0 24px;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid rgba(7, 16, 15, 0.14);
}

.ecosystem-card-copy {
  display: grid;
  align-self: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.ecosystem-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 4.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.ecosystem-card p {
  max-width: 29rem;
  margin: 0 auto;
  color: rgba(7, 16, 15, 0.56);
  font-size: clamp(0.92rem, 4vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 699px) {
  .ecosystem-inner {
    gap: clamp(32px, 9vw, 40px);
  }

  .ecosystem-panel {
    border-top: 0;
  }

  .ecosystem-card {
    position: relative;
    padding: clamp(40px, 6vh, 52px) 0;
    border-bottom: 0;
  }

  .ecosystem-card::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(64%, 240px);
    height: 2px;
    content: "";
    background: var(--brand-lime-line);
    transform: translateX(-50%);
  }

  .ecosystem-card:not(:first-child)::before {
    width: 28px;
  }

  .ecosystem-card-copy {
    gap: 12px;
  }

  .ecosystem-card h3 {
    max-width: 12ch;
    font-size: clamp(1.5rem, 7.4vw, 1.9rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .ecosystem-card p {
    max-width: 20rem;
    font-size: clamp(0.94rem, 4vw, 1rem);
    line-height: 1.5;
    text-wrap: balance;
  }

  @supports (height: 100svh) {
    .ecosystem-card {
      padding-block: clamp(40px, 6svh, 52px);
    }
  }
}

.contact-section {
  --contact-footer-reserve: 100px;

  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(var(--touch-section-min-height) - var(--contact-footer-reserve));
  align-content: center;
  padding-top: clamp(88px, 22vw, 124px);
  padding-right: max(22px, env(safe-area-inset-right, 0px));
  padding-bottom: clamp(132px, 32vw, 172px);
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  color: var(--ink);
  background: var(--paper);
}

@media (max-width: 699px) {
  .contact-section {
    margin-top: 0;
  }
}

.contact-section-inner {
  display: grid;
  width: min(100%, var(--desktop-support-shell));
  justify-items: center;
  gap: clamp(30px, 8vw, 38px);
  margin-inline: auto;
  text-align: center;
}

.contact-section-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.62rem, 7vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.contact-section-note {
  max-width: 32rem;
  margin: 0;
  color: rgba(7, 16, 15, 0.62);
  font-size: clamp(0.96rem, 4vw, 1.05rem);
  line-height: 1.55;
  text-wrap: balance;
}

.contact-section-link {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 2px 8px;
  color: var(--ink);
  font-size: clamp(1.08rem, 5vw, 1.3rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.contact-section-link::before,
.contact-section-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  pointer-events: none;
}

.contact-section-link::before {
  left: 0;
  background: rgba(7, 16, 15, 0.22);
  transition: background-color 180ms ease;
}

.contact-section-link::after {
  width: clamp(36px, 12vw, 48px);
  background: var(--brand-lime-line);
  transition: width 180ms ease;
}

.contact-section-link > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-section-arrow {
  color: rgba(7, 16, 15, 0.56);
  font-size: 1.1em;
  line-height: 1;
  transition: transform 180ms ease;
}

.contact-section-link:hover {
  --contact-line-tail-width: clamp(52px, 16vw, 66px);
}

.contact-section-link:hover::before {
  background: rgba(7, 16, 15, 0.34);
}

.contact-section-link:hover::after {
  width: var(--contact-line-tail-width);
}

.contact-section-link:hover .contact-section-arrow {
  transform: translate(3px, -3px);
}

.contact-section-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
}

.site-footer {
  position: relative;
  z-index: 3;
  padding-top: 16px;
  padding-right: max(22px, env(safe-area-inset-right, 0px));
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  color: rgba(7, 16, 15, 0.62);
  background: var(--paper);
  border-top: 1px solid rgba(7, 16, 15, 0.08);
}

.site-footer-inner {
  display: grid;
  width: min(100%, var(--desktop-support-shell));
  gap: 10px;
  margin-inline: auto;
}

.site-footer-identity {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.site-footer-brand {
  color: rgba(7, 16, 15, 0.68);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.site-footer-tagline {
  margin: 0;
  color: rgba(7, 16, 15, 0.6);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.5;
}

.site-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer-copyright {
  margin: 0;
  color: rgba(7, 16, 15, 0.6);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.5;
}

.site-footer-back-to-top {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 6px;
  color: rgba(7, 16, 15, 0.62);
  font-size: 0.7rem;
  font-weight: 550;
}

.site-footer-back-to-top span {
  color: inherit;
  font-size: 0.88rem;
  line-height: 1;
}

.site-footer-brand:focus-visible,
.site-footer-back-to-top:focus-visible {
  outline: 2px solid var(--brand-lime-text);
  outline-offset: 4px;
}

@media (min-width: 700px) {
  .ecosystem {
    padding-top: var(--tablet-section-pad-y, clamp(56px, 7.2vh, 92px));
    padding-right: max(var(--wide-mobile-gutter), env(safe-area-inset-right, 0px));
    padding-bottom: calc(
      clamp(84px, 10vh, 112px) + env(safe-area-inset-bottom, 0px)
    );
    padding-left: max(var(--wide-mobile-gutter), env(safe-area-inset-left, 0px));
  }

  .ecosystem-inner {
    gap: var(--tablet-layout-gap, clamp(34px, 5vh, 54px));
  }

  .ecosystem-heading {
    justify-items: center;
    gap: 0;
    margin-inline: auto;
    text-align: center;
  }

  .ecosystem-heading h2 {
    display: block;
    max-width: 22ch;
    font-size: var(--tablet-heading-size, clamp(2.08rem, 4.8vw, 3.35rem));
    line-height: 1.06;
    text-align: center;
  }

  .ecosystem-panel {
    width: min(100%, 940px);
    margin-inline: auto;
  }

  .ecosystem-card {
    grid-template-columns: minmax(0, 1fr);
    padding-block: clamp(24px, 3.2vw, 32px);
  }

  .ecosystem-card-copy {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .ecosystem-card h3 {
    font-size: clamp(1.12rem, 2vw, 1.28rem);
  }

  .ecosystem-card p {
    max-width: 32rem;
    font-size: clamp(0.96rem, 1.6vw, 1.06rem);
  }

  .contact-section {
    --contact-footer-reserve: 77px;

    padding-top: clamp(104px, 11vw, 144px);
    padding-right: max(var(--wide-mobile-gutter), env(safe-area-inset-right, 0px));
    padding-bottom: clamp(152px, 15vw, 200px);
    padding-left: max(var(--wide-mobile-gutter), env(safe-area-inset-left, 0px));
  }

  .contact-section-inner {
    gap: clamp(34px, 4vw, 46px);
  }

  .contact-section-heading {
    gap: 14px;
  }

  .contact-section h2 {
    font-size: var(--tablet-heading-size, clamp(2.08rem, 4.8vw, 3.35rem));
    line-height: 0.98;
  }

  .contact-section-note {
    font-size: clamp(1rem, 1.25vw, 1.12rem);
  }

  .contact-section-link {
    font-size: clamp(1.18rem, 1.55vw, 1.42rem);
  }

  .site-footer {
    padding-top: 18px;
    padding-right: max(var(--wide-mobile-gutter), env(safe-area-inset-right, 0px));
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    padding-left: max(var(--wide-mobile-gutter), env(safe-area-inset-left, 0px));
  }

  .site-footer-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 48px;
  }

  .site-footer-identity {
    justify-content: flex-start;
    gap: 22px;
  }
}

@media (min-width: 700px) and (max-width: 1180px),
  (min-width: 1181px) and (max-width: 1366px) and (hover: none),
  (min-width: 1181px) and (max-width: 1366px) and (pointer: coarse) {
  .contact-section {
    margin-top: 0;
  }

  .ecosystem {
    --ecosystem-contact-reduction: clamp(126px, calc(8vw + 70px), 150px);

    min-height: calc(
      var(--tablet-section-min-height, var(--touch-section-min-height)) -
        var(--ecosystem-contact-reduction)
    );
    align-content: start;
    padding-bottom: calc(
      max(
        24px,
        calc(clamp(112px, 13vh, 156px) - var(--ecosystem-contact-reduction))
      ) + env(safe-area-inset-bottom, 0px)
    );
  }

  .ecosystem-inner {
    width: min(100%, 820px);
    gap: clamp(40px, 5vh, 60px);
  }

  .ecosystem-panel {
    width: min(100%, 720px);
    border-top: 0;
  }

  .ecosystem-card {
    position: relative;
    padding: clamp(56px, 7.2vh, 76px) 0;
    border-bottom: 0;
  }

  .ecosystem-card::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(64%, 360px);
    height: 2px;
    content: "";
    background: var(--brand-lime-line);
    transform: translateX(-50%);
  }

  .ecosystem-card:not(:first-child)::before {
    width: 32px;
  }

  .ecosystem-card-copy {
    gap: 14px;
  }

  .ecosystem-card h3 {
    max-width: 14ch;
    font-size: clamp(1.65rem, 3.6vw, 2.05rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .ecosystem-card p {
    max-width: 28rem;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    line-height: 1.52;
    text-wrap: balance;
  }

  @supports (height: 100svh) {
    .ecosystem {
      padding-bottom: calc(
        max(
          24px,
          calc(clamp(112px, 13svh, 156px) - var(--ecosystem-contact-reduction))
        ) + env(safe-area-inset-bottom, 0px)
      );
    }

    .ecosystem-card {
      padding-block: clamp(56px, 7.2svh, 76px);
    }
  }
}

@media (min-width: 1000px) and (min-height: 1000px) and (max-width: 1400px) and (hover: none),
  (min-width: 1000px) and (min-height: 1000px) and (max-width: 1400px) and (pointer: coarse) {
  .ecosystem {
    --ecosystem-contact-reduction: 190px;
  }
}

@media (min-width: 1181px) and (hover: hover) and (pointer: fine) {
  .ecosystem {
    min-height: clamp(600px, 60vh, 720px);
    min-height: clamp(600px, 60svh, 720px);
    padding-top: var(--pc-core-section-pad-y, clamp(56px, 6vh, 84px));
    padding-right: max(var(--desktop-content-gutter), env(safe-area-inset-right, 0px));
    padding-bottom: calc(
      clamp(88px, 9vh, 120px) + env(safe-area-inset-bottom, 0px)
    );
    padding-left: max(var(--desktop-content-gutter), env(safe-area-inset-left, 0px));
  }

  .ecosystem-inner {
    width: min(100%, var(--desktop-support-shell));
    gap: clamp(52px, 4.2vw, 68px);
  }

  .ecosystem-heading h2 {
    max-width: none;
    font-size: var(--pc-core-heading-size, clamp(2.45rem, 2.55vw, 3.45rem));
    line-height: 1.04;
  }

  .ecosystem-panel {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(48px, 5vw, 84px);
    border-top: 0;
  }

  .ecosystem-card {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    padding: 24px 0 0;
    border-top: 1px solid rgba(7, 16, 15, 0.14);
    border-bottom: 0;
  }

  .ecosystem-card-copy {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .ecosystem-card h3 {
    font-size: clamp(1.28rem, 1.35vw, 1.5rem);
  }

  .ecosystem-card p {
    max-width: 25rem;
    color: rgba(7, 16, 15, 0.6);
    font-size: clamp(1rem, 0.95vw, 1.1rem);
  }
}

.play-with-pros {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  align-content: center;
  margin-top: clamp(-80px, -10vh, -64px);
  overflow: hidden;
  padding-top: var(--touch-section-pad-y);
  padding-right: max(22px, env(safe-area-inset-right, 0px));
  padding-bottom: calc(var(--touch-section-pad-y) + env(safe-area-inset-bottom, 0px));
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  color: var(--ink);
  background:
    radial-gradient(
      ellipse 84% 54% at 50% 32%,
      rgba(199, 244, 27, 0.085) 0%,
      rgba(199, 244, 27, 0.024) 48%,
      rgba(199, 244, 27, 0) 74%
    ),
    linear-gradient(
      180deg,
      #f3f7ea 0%,
      #eef5e6 44%,
      #f3f7ea 72%,
      var(--paper) 100%
    );
}

/* Play with Pros follows the same mobile screen-section contract above. */
@supports (height: 100lvh) {
  .play-with-pros {
    min-height: 100lvh;
  }
}

.play-with-pros-inner {
  display: grid;
  width: min(100%, 1120px);
  justify-items: center;
  gap: clamp(22px, 6vw, 30px);
  margin-inline: auto;
  transform: translateY(clamp(-104px, -12vh, -80px));
}

@supports (height: 100svh) {
  .play-with-pros-inner {
    transform: translateY(clamp(-104px, -12svh, -80px));
  }
}

.play-with-pros-heading {
  display: grid;
  width: min(100%, 42rem);
  max-width: 42rem;
  justify-items: center;
  gap: 10px;
  margin-inline: auto;
  text-align: center;
}

.play-with-pros-heading .eyebrow {
  margin: 0;
  color: var(--brand-lime-text);
  font-size: clamp(0.78rem, 3.6vw, 0.9rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.play-with-pros-heading h3 {
  max-width: 18ch;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.62rem, 7vw, 2.15rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.14;
  text-align: center;
  text-wrap: balance;
}

.play-with-pros-heading h3 span {
  display: block;
}

/*
 * Preserve the display size on narrow phones while allowing this short title
 * to use part of the section gutter. The body copy keeps the full 22px gutter.
 */
@media (max-width: 359px) {
  .play-with-pros-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .play-with-pros-heading {
    width: min(calc(100vw - 14px), 18rem);
    max-width: none;
    justify-self: center;
    margin-inline: 0;
  }
}

.play-with-pros-copy {
  display: grid;
  width: min(100%, 38rem);
  max-width: 38rem;
  justify-self: center;
  gap: clamp(22px, 6vw, 30px);
  text-align: center;
}

.play-with-pros-copy p {
  margin-block: 0;
}

.play-with-pros-description {
  max-width: 36rem;
  margin-inline: auto;
  color: rgba(7, 16, 15, 0.68);
  font-size: clamp(1.02rem, 4.4vw, 1.12rem);
  font-weight: 500;
  line-height: 1.6;
  text-wrap: balance;
}

.play-with-pros-closing {
  max-width: 36ch;
  margin-inline: auto;
  padding-top: 0;
  color: rgba(7, 16, 15, 0.82);
  border-top: 0;
  font-size: clamp(1.1rem, 4.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.42;
  text-align: center;
  text-wrap: balance;
}

@media (min-width: 700px) {
  .play-with-pros {
    padding-top: var(--tablet-section-pad-y, clamp(56px, 7.2vh, 92px));
    padding-right: max(var(--wide-mobile-gutter), env(safe-area-inset-right, 0px));
    padding-bottom: calc(
      var(--tablet-section-pad-y, clamp(56px, 7.2vh, 92px)) +
        env(safe-area-inset-bottom, 0px)
    );
    padding-left: max(var(--wide-mobile-gutter), env(safe-area-inset-left, 0px));
  }

  .play-with-pros-inner {
    width: min(100%, var(--wide-mobile-shell));
    gap: clamp(24px, 3.4vw, 32px);
  }

  .play-with-pros-heading {
    max-width: 44rem;
    justify-items: center;
    margin-inline: auto;
    text-align: center;
  }

  .play-with-pros-heading .eyebrow {
    font-size: clamp(0.92rem, 1.65vw, 1.08rem);
    text-align: center;
  }

  .play-with-pros-heading h3 {
    max-width: 18ch;
    font-size: var(--tablet-heading-size, clamp(2.08rem, 4.8vw, 3.35rem));
    line-height: 1.12;
    text-align: center;
  }

  .play-with-pros-copy {
    max-width: 38rem;
    justify-self: center;
    gap: clamp(24px, 3.2vw, 30px);
    padding-top: 0;
    text-align: center;
  }

  .play-with-pros-description {
    max-width: 40rem;
    font-size: clamp(1.08rem, 2.1vw, 1.28rem);
    line-height: 1.58;
  }

  .play-with-pros-closing {
    max-width: 36ch;
    margin-inline: auto;
    padding-top: 0;
    font-size: clamp(1.18rem, 2.2vw, 1.4rem);
    line-height: 1.42;
  }
}

@media (min-width: 1181px) and (hover: hover) and (pointer: fine) {
  .play-with-pros {
    padding-top: var(--pc-core-section-pad-y, clamp(56px, 6vh, 84px));
    padding-right: max(var(--desktop-content-gutter), env(safe-area-inset-right, 0px));
    padding-bottom: calc(
      var(--pc-core-section-pad-y, clamp(56px, 6vh, 84px)) +
        env(safe-area-inset-bottom, 0px)
    );
    padding-left: max(var(--desktop-content-gutter), env(safe-area-inset-left, 0px));
  }

  .play-with-pros-inner {
    width: min(100%, var(--desktop-support-shell));
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: clamp(26px, 2.4vw, 34px);
  }

  .play-with-pros-heading {
    width: min(100%, 48rem);
    max-width: 48rem;
    justify-items: center;
    margin-inline: 0;
    text-align: center;
  }

  .play-with-pros-heading .eyebrow {
    font-size: var(--pc-core-eyebrow-size, clamp(0.95rem, 0.82vw, 1.08rem));
    text-align: center;
  }

  .play-with-pros-heading h3 {
    max-width: 18ch;
    font-size: var(--pc-core-heading-size, clamp(2.45rem, 2.55vw, 3.45rem));
    line-height: 1.12;
    text-align: center;
  }

  .play-with-pros-copy {
    width: min(100%, 48rem);
    max-width: 48rem;
    justify-self: center;
    gap: clamp(26px, 2.2vw, 32px);
    padding-top: 0;
    text-align: center;
  }

  .play-with-pros-description {
    max-width: 46rem;
    margin-inline: auto;
    font-size: clamp(1.08rem, 1.1vw, 1.24rem);
    line-height: 1.62;
  }

  .play-with-pros-closing {
    max-width: 36ch;
    margin-inline: auto;
    padding-top: 0;
    font-size: clamp(1.25rem, 1.5vw, 1.55rem);
    line-height: 1.42;
  }
}

@media (max-width: 899px) {
  html.is-ios-safari .intro-hero::before {
    background:
      radial-gradient(ellipse 86% 66% at 18% 0%, rgba(247, 248, 243, 0.9) 0%, rgba(247, 248, 243, 0.48) 42%, rgba(247, 248, 243, 0) 74%),
      linear-gradient(180deg, var(--paper) 0%, rgba(247, 248, 243, 0.9) 42px, rgba(247, 248, 243, 0.42) 104px, rgba(247, 248, 243, 0) 172px),
      url("assets/hero-bg-mobile-light-1.jpg") center bottom / cover no-repeat;
  }
}

@media (min-width: 501px) and (max-width: 899px) {
  .hero-topline {
    right: max(var(--wide-mobile-gutter), calc((100vw - var(--wide-mobile-shell)) / 2 + var(--wide-mobile-gutter)));
    left: max(var(--wide-mobile-gutter), calc((100vw - var(--wide-mobile-shell)) / 2 + var(--wide-mobile-gutter)));
    justify-content: space-between;
  }

  .intro-hero {
    min-height: clamp(620px, 84vh, 760px);
    min-height: clamp(620px, 84svh, 760px);
    align-items: flex-start;
    padding:
      calc(88px + env(safe-area-inset-top, 0px))
      max(var(--wide-mobile-gutter), calc((100vw - var(--wide-mobile-shell)) / 2 + var(--wide-mobile-gutter)))
      118px;
  }

  .intro-hero::after {
    height: 230px;
  }

  .hero-copy {
    max-width: min(32rem, 100%);
    transform: translateY(clamp(48px, 7vh, 64px));
    transform: translateY(clamp(48px, 7svh, 64px));
  }

  .intro-hero h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 7vw, 3.35rem);
  }

  .intro-hero .hero-text {
    max-width: 24rem;
    font-size: 1.08rem;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .intro-workflow .intro-statement,
  .capability-item-copy,
  .real-ui .product-proof-heading {
    justify-items: center;
    max-width: min(100%, 42rem);
    margin-inline: auto;
    text-align: center;
  }

  .intro-workflow .intro-statement .eyebrow,
  .data-capability-item .capability-eyebrow,
  .real-ui .product-proof-heading .eyebrow {
    text-align: center;
  }

  .intro-workflow .intro-statement h2,
  .data-capability-item h2,
  .real-ui .product-proof-heading h2 {
    max-width: none;
    font-size: clamp(1.62rem, 3.85vw, 2.08rem);
    line-height: 1.08;
    text-align: center;
    white-space: nowrap;
  }

  .intro-workflow .intro-statement p:last-child,
  .workflow-support-copy,
  .data-capability-item p,
  .real-ui .product-proof-heading > p:not(.eyebrow) {
    max-width: 34rem;
    font-size: clamp(0.96rem, 2.6vw, 1.08rem);
    line-height: 1.55;
    text-align: center;
  }

  .intro-card-track {
    padding-inline: clamp(22px, 5vw, 40px);
  }

  .intro-card,
  .intro-card-main,
  .intro-card-detail {
    flex: 0 0 clamp(286px, calc((100vw - 72px) * 0.46), 360px);
    aspect-ratio: 5 / 6;
    border-radius: 16px;
  }

  .intro-card-body {
    padding: 16px 16px 14px;
  }

  .intro-card h4 {
    font-size: 0.88rem;
  }

  .intro-card p {
    font-size: 0.68rem;
  }

  .capability-proof {
    width: min(86%, 680px);
    margin-inline: auto;
  }

  .real-ui .product-proof-visual {
    position: relative;
    display: block;
    width: min(100%, 680px);
    height: clamp(420px, 56vw, 460px);
    min-height: clamp(340px, 42vw, 460px);
    margin: clamp(18px, 3vw, 28px) auto 0;
    overflow: visible;
  }

  .real-ui .proof-device {
    position: absolute;
  }

  .real-ui .proof-device-result {
    display: block;
    top: clamp(18px, 3vw, 28px);
    right: 0;
    z-index: 1;
    width: min(68vw, 520px);
    filter: drop-shadow(0 18px 34px rgba(7, 16, 15, 0.14));
    opacity: 0.95;
    transform: none;
  }

  .real-ui .proof-session-pair {
    position: absolute;
    bottom: 0;
    left: clamp(24px, 8vw, 62px);
    z-index: 2;
    display: block;
    width: min(25vw, 190px);
    margin: 0;
  }

  .real-ui .proof-device-session {
    position: relative;
    width: 100%;
    filter: none;
  }
}

@media (min-width: 700px) and (max-width: 799px) {
  .real-ui .product-proof-visual {
    width: min(100%, 610px);
    height: clamp(360px, 51vw, 392px);
    min-height: 0;
    margin-top: clamp(12px, 2vw, 18px);
  }

  .real-ui .proof-device-result {
    top: clamp(8px, 1.4vw, 12px);
    right: clamp(0px, 1.8vw, 14px);
    width: min(62vw, 476px);
  }

  .real-ui .proof-session-pair {
    left: clamp(20px, 7vw, 44px);
    width: min(22vw, 168px);
  }
}

@media (min-width: 1181px) and (hover: hover) and (pointer: fine) {
  :root {
    --wide-mobile-gutter: 22px;
    --pc-section-pad-y: clamp(50px, 5.8svh, 78px);
    --pc-section-pad-y-compact: clamp(34px, 3.8vw, 54px);
    --pc-section-gap: clamp(72px, 8svh, 116px);
    --pc-core-section-gap: clamp(72px, 9svh, 124px);
    --pc-core-section-min-height: clamp(720px, 88svh, 920px);
    --pc-core-section-pad-y: clamp(56px, 6svh, 84px);
    --pc-core-copy-width: 600px;
    --pc-core-visual-width: 740px;
    --pc-core-heading-size: clamp(2.45rem, 2.55vw, 3.45rem);
    --pc-core-body-size: clamp(1.08rem, 1vw, 1.24rem);
    --pc-core-eyebrow-size: clamp(0.95rem, 0.82vw, 1.08rem);
    --pc-hero-gutter: clamp(72px, 7vw, 144px);
    --pc-hero-copy-left: clamp(150px, 23vw, 520px);
  }

  .workflow-title-mobile,
  .intro-card-title-mobile,
  .intro-card-copy-mobile,
  .proof-copy-mobile,
  .capability-label-mobile,
  .capability-copy-mobile {
    display: none;
  }

  .workflow-title-desktop,
  .intro-card-title-desktop,
  .intro-card-copy-desktop,
  .proof-copy-desktop,
  .capability-label-desktop,
  .capability-copy-desktop {
    display: inline;
  }

  .intro-hero {
    display: grid;
    min-height: max(720px, 100svh);
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    overflow: hidden;
    padding:
      calc(84px + env(safe-area-inset-top, 0px))
      0
      clamp(42px, 5vw, 64px);
    background: var(--paper);
    isolation: isolate;
  }

  .intro-hero::before,
  .intro-hero::after {
    display: none;
  }

  .intro-hero::before {
    z-index: 1;
    display: block;
    background:
      radial-gradient(
        ellipse 68% 58% at 17% 17%,
        rgba(247, 248, 243, 0.9) 0%,
        rgba(247, 248, 243, 0.68) 27%,
        rgba(247, 248, 243, 0.32) 53%,
        rgba(247, 248, 243, 0) 78%
      ),
      linear-gradient(
        90deg,
        rgba(247, 248, 243, 0.74) 0%,
        rgba(247, 248, 243, 0.46) 18%,
        rgba(247, 248, 243, 0.15) 39%,
        rgba(247, 248, 243, 0) 62%
      ),
      linear-gradient(
        180deg,
        rgba(247, 248, 243, 0.8) 0%,
        rgba(247, 248, 243, 0.44) 17%,
        rgba(247, 248, 243, 0.08) 42%,
        rgba(247, 248, 243, 0) 62%
      );
  }

  .intro-hero .hero-topline {
    top: calc(clamp(34px, 3.8svh, 46px) + env(safe-area-inset-top, 0px));
    right: var(--pc-hero-gutter);
    left: var(--pc-hero-copy-left);
    justify-content: flex-start;
  }

  .intro-hero .brand {
    font-size: 1.25rem;
  }

  .intro-hero .hero-copy {
    grid-column: 1;
    z-index: 2;
    isolation: isolate;
    width: 100%;
    max-width: min(790px, calc(100vw - var(--pc-hero-copy-left) - var(--pc-hero-gutter)));
    margin-top: clamp(126px, 15svh, 184px);
    margin-left: var(--pc-hero-copy-left);
    transform: none;
  }

  .intro-hero .hero-copy::before {
    position: absolute;
    inset: -46px -90px -56px -62px;
    z-index: -1;
    content: "";
    background:
      radial-gradient(
        ellipse at 34% 44%,
        rgba(247, 248, 243, 0.72) 0%,
        rgba(247, 248, 243, 0.44) 42%,
        rgba(247, 248, 243, 0) 78%
      );
    filter: blur(20px);
    pointer-events: none;
  }

  .intro-hero h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 3.65vw, 4rem);
    font-weight: 700;
    line-height: 0.98;
  }

  .intro-hero h1 span {
    text-shadow:
      0 0 26px rgba(247, 248, 243, 0.96),
      0 0 12px rgba(247, 248, 243, 0.82),
      0 2px 5px rgba(247, 248, 243, 0.54);
  }

  .intro-hero .hero-text {
    max-width: 27rem;
    color: rgba(7, 16, 15, 0.7);
    font-size: clamp(1.16rem, 1.16vw, 1.34rem);
    line-height: 1.48;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: transparent;
    pointer-events: none;
  }

  .hero-visual img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 114%;
    max-width: none;
    height: 108%;
    object-fit: cover;
    object-position: right bottom;
    transform: none;
  }

  .hero-visual::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: clamp(190px, 20vw, 320px);
    content: "";
    pointer-events: none;
    background:
      radial-gradient(ellipse 20% 54% at 7% 98%, var(--paper) 0%, rgba(247, 248, 243, 0.86) 42%, rgba(247, 248, 243, 0) 70%),
      radial-gradient(ellipse 26% 58% at 25% 106%, var(--paper) 0%, rgba(247, 248, 243, 0.92) 46%, rgba(247, 248, 243, 0) 73%),
      radial-gradient(ellipse 30% 52% at 48% 94%, var(--paper) 0%, rgba(247, 248, 243, 0.82) 40%, rgba(247, 248, 243, 0) 68%),
      radial-gradient(ellipse 24% 60% at 70% 108%, var(--paper) 0%, rgba(247, 248, 243, 0.9) 47%, rgba(247, 248, 243, 0) 75%),
      radial-gradient(ellipse 22% 50% at 92% 96%, var(--paper) 0%, rgba(247, 248, 243, 0.86) 43%, rgba(247, 248, 243, 0) 70%),
      linear-gradient(180deg, rgba(247, 248, 243, 0) 0%, rgba(247, 248, 243, 0.08) 34%, rgba(247, 248, 243, 0.42) 72%, var(--paper) 100%);
  }

  .intro-workflow {
    min-height: var(--pc-core-section-min-height);
    margin-top: var(--pc-core-section-gap);
    padding-top: var(--pc-core-section-pad-y);
    padding-bottom: var(--pc-core-section-pad-y);
    overflow: hidden;
    background: var(--paper);
    isolation: isolate;
  }

  .intro-workflow::before {
    position: absolute;
    inset: clamp(84px, 12svh, 132px) 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(118deg, rgba(247, 248, 243, 0) 0%, rgba(247, 248, 243, 0) 33%, rgba(199, 244, 27, 0.052) 49%, rgba(143, 183, 0, 0.02) 62%, rgba(247, 248, 243, 0) 79%);
    filter: blur(24px);
  }

  .intro-workflow-layout,
  .capability-transition .data-capability-line,
  .real-ui .product-proof,
  .beta-cta {
    width: min(calc(100% - 2 * var(--desktop-content-gutter)), var(--desktop-content-shell));
  }

  .intro-workflow-layout {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    justify-items: stretch;
    gap: clamp(52px, 5vw, 84px);
    padding-inline: 0;
  }

  .intro-workflow .intro-statement {
    width: min(100%, var(--pc-core-copy-width));
    max-width: var(--pc-core-copy-width);
    justify-self: center;
    justify-items: start;
    gap: 14px;
    padding: 0;
    text-align: left;
  }

  .intro-workflow .intro-statement .eyebrow,
  .data-capability-item .capability-eyebrow,
  .real-ui .product-proof-heading .eyebrow {
    font-size: var(--pc-core-eyebrow-size);
  }

  .intro-workflow .intro-statement h2 {
    max-width: 19ch;
    font-size: var(--pc-core-heading-size);
    line-height: 1.04;
  }

  .contact-section {
    min-height: clamp(500px, 68vh, 620px);
    min-height: clamp(500px, 68svh, 620px);
    margin-top: 0;
  }

  .contact-section h2 {
    font-size: var(--pc-core-heading-size);
  }

  .intro-workflow .intro-statement p:last-child,
  .workflow-support-copy {
    max-width: 34rem;
    font-size: var(--pc-core-body-size);
    line-height: 1.58;
  }

  .intro-card-track {
    position: relative;
    display: block;
    width: min(100%, var(--pc-core-visual-width));
    aspect-ratio: 16 / 10.4;
    justify-self: center;
    overflow: hidden;
    padding: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: 0 26px 72px rgba(7, 16, 15, 0.1);
    isolation: isolate;
  }

  .intro-card,
  .intro-card-main,
  .intro-card-detail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: inherit;
    filter: none;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transform: none;
    transition: opacity 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity;
    contain: paint;
  }

  .intro-card.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }

  .intro-card.is-exiting {
    opacity: 1;
    pointer-events: none;
    z-index: 3;
    transition: opacity 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .intro-card.is-exiting.is-leaving {
    opacity: 0;
  }

  .intro-card figure,
  .intro-card-main figure,
  .intro-card-detail figure {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: inherit;
  }

  .intro-card figure::after {
    background: linear-gradient(180deg, rgba(2, 3, 3, 0) 40%, rgba(2, 3, 3, 0.68) 100%);
  }

  .intro-card img {
    transform: none;
    transition: none;
    will-change: auto;
  }

  .intro-card-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    gap: 5px;
    padding: clamp(20px, 2vw, 28px);
    padding-right: clamp(92px, 8vw, 124px);
    opacity: 0;
    transform: none;
    transition: opacity 180ms cubic-bezier(0.22, 0.61, 0.36, 1) 70ms;
    will-change: opacity;
  }

  .intro-card.is-active .intro-card-body {
    opacity: 1;
  }

  .intro-card.is-exiting .intro-card-body {
    opacity: 0;
    transition: opacity 120ms ease-out;
  }

  .intro-card h4,
  .intro-card-main h4 {
    max-width: 18rem;
    color: var(--white);
    font-size: clamp(1rem, 0.9vw, 1.18rem);
    line-height: 1.18;
    text-shadow: 0 2px 16px rgba(2, 3, 3, 0.36);
  }

  .intro-card p,
  .intro-card-main p {
    max-width: 24rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.86rem, 0.78vw, 0.98rem);
    font-weight: 500;
    line-height: 1.44;
    text-shadow: 0 2px 14px rgba(2, 3, 3, 0.34);
  }

  .intro-carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    padding: 0;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(7, 16, 15, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(2, 3, 3, 0.12);
    cursor: pointer;
    opacity: 0.54;
    transform: translateY(-50%);
    transition:
      background 180ms ease,
      border-color 180ms ease,
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(10px);
  }

  .intro-carousel-nav::before {
    width: 8px;
    height: 8px;
    content: "";
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
  }

  .intro-carousel-nav-prev {
    left: clamp(14px, 1.6vw, 20px);
  }

  .intro-carousel-nav-prev::before {
    transform: translateX(2px) rotate(-135deg);
  }

  .intro-carousel-nav-next {
    right: clamp(14px, 1.6vw, 20px);
  }

  .intro-carousel-nav-next::before {
    transform: translateX(-2px) rotate(45deg);
  }

  .intro-carousel-nav:hover,
  .intro-carousel-nav:focus-visible {
    background: rgba(7, 16, 15, 0.28);
    border-color: rgba(255, 255, 255, 0.34);
    opacity: 0.92;
  }

  .intro-carousel-nav:hover {
    transform: translateY(-50%) scale(1.04);
  }

  .intro-carousel-nav:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
  }

  .intro-carousel-indicators {
    position: absolute;
    right: clamp(20px, 2vw, 28px);
    bottom: clamp(22px, 2vw, 30px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .intro-carousel-indicator {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    cursor: pointer;
    opacity: 0.78;
    transition:
      width 220ms ease,
      background 220ms ease,
      opacity 220ms ease;
  }

  .intro-carousel-indicator.is-active {
    width: 24px;
    background: var(--brand-lime);
    border-color: rgba(199, 244, 27, 0.82);
    opacity: 1;
  }

  .intro-carousel-indicator:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
  }

  .capability-transition {
    position: relative;
    display: grid;
    min-height: var(--pc-core-section-min-height);
    align-content: center;
    overflow: hidden;
    margin-top: var(--pc-core-section-gap);
    padding: var(--pc-core-section-pad-y) 0;
    background: var(--paper);
    isolation: isolate;
  }

  .capability-transition::before {
    position: absolute;
    inset: clamp(84px, 12svh, 132px) 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(74deg, rgba(247, 248, 243, 0) 0%, rgba(247, 248, 243, 0) 28%, rgba(199, 244, 27, 0.048) 47%, rgba(143, 183, 0, 0.02) 60%, rgba(247, 248, 243, 0) 77%);
    filter: blur(24px);
  }

  .capability-transition .data-capability-item {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(52px, 5vw, 84px);
  }

  .capability-item-copy,
  .product-proof-copy,
  .product-proof-heading {
    max-width: var(--pc-core-copy-width);
  }

  .capability-item-copy,
  .product-proof-copy {
    width: min(100%, var(--pc-core-copy-width));
    justify-self: center;
  }

  .capability-transition .data-capability-item h2,
  .real-ui .product-proof-heading h2 {
    font-size: var(--pc-core-heading-size);
    line-height: 1.04;
  }

  .capability-transition .data-capability-item .capability-item-copy > p:not(.eyebrow),
  .real-ui .product-proof-heading > p:not(.eyebrow) {
    max-width: 34rem;
    font-size: var(--pc-core-body-size);
    line-height: 1.58;
  }

  .capability-proof-scene {
    justify-self: center;
    width: min(100%, var(--pc-core-visual-width));
  }

  .real-ui {
    display: grid;
    min-height: var(--pc-core-section-min-height);
    align-content: center;
    margin-top: var(--pc-core-section-gap);
    padding: var(--pc-core-section-pad-y) 0;
    background: var(--paper);
    isolation: isolate;
  }

  .real-ui::before {
    position: absolute;
    inset: clamp(84px, 12svh, 132px) 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(104deg, rgba(247, 248, 243, 0) 0%, rgba(199, 244, 27, 0.056) 25%, rgba(143, 183, 0, 0.02) 43%, rgba(247, 248, 243, 0) 65%),
      linear-gradient(252deg, rgba(247, 248, 243, 0) 0%, rgba(199, 244, 27, 0.034) 38%, rgba(247, 248, 243, 0) 68%);
    filter: blur(24px);
  }

  .real-ui .product-proof {
    min-height: clamp(520px, 38vw, 680px);
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    column-gap: clamp(52px, 5vw, 84px);
  }

  .product-proof-copy {
    grid-column: 2;
    grid-row: 1;
    justify-items: start;
  }

  .real-ui .product-proof-visual {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    display: block;
    width: min(100%, calc(var(--pc-core-visual-width) + 40px));
    height: clamp(470px, 34vw, 620px);
    justify-self: center;
    overflow: visible;
    transform: none;
  }

  .proof-orbit {
    position: absolute;
    top: -1%;
    right: 2%;
    z-index: 0;
    display: block;
    width: min(24vw, 270px);
    height: auto;
    overflow: visible;
  }

  .proof-orbit path,
  .proof-orbit circle {
    fill: none;
    stroke: rgba(143, 183, 0, 0.68);
    stroke-width: 1.5;
    stroke-linecap: round;
  }

  .proof-orbit path {
    stroke-dasharray: 8 9;
  }

  .real-ui .proof-device {
    position: absolute;
  }

  .real-ui .proof-device-stack {
    position: absolute;
    top: 7%;
    right: clamp(14px, 2vw, 32px);
    display: block;
    width: min(96%, 760px);
    aspect-ratio: 4 / 3;
  }

  .real-ui .proof-device-result {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    filter: none;
    transform: none;
  }

  .real-ui .proof-session-pair {
    position: absolute;
    bottom: -8%;
    left: 2.4%;
    z-index: 3;
    display: block;
    width: 29.1667%;
    margin: 0;
  }

  .real-ui .proof-device-session {
    position: relative;
    width: 100%;
    filter: none;
  }

  .beta-cta {
    width: min(calc(100% - 2 * var(--desktop-content-gutter)), var(--desktop-content-shell));
    gap: clamp(104px, 12svh, 124px);
    margin-top: 0;
    padding: 0;
  }

  .beta-cta .footer-button {
    min-width: clamp(280px, 20vw, 320px);
    min-height: clamp(60px, 4.5vw, 66px);
    gap: 14px;
    padding-inline: 38px 32px;
    font-size: clamp(1.06rem, 1vw, 1.15rem);
  }

  .beta-cta .footer-button .arrow {
    width: 12px;
    height: 12px;
  }

  .beta-cta .closing-cta-copy h2 {
    font-size: var(--pc-core-heading-size);
    line-height: 1.04;
  }

  .beta-cta .closing-cta-copy > p:not(.eyebrow) {
    max-width: 34rem;
    font-size: var(--pc-core-body-size);
    line-height: 1.58;
  }

  .setup-guide {
    width: min(calc(100% - 2 * var(--desktop-content-gutter)), var(--desktop-support-shell));
    padding-inline: 0;
  }

  .setup-guide {
    gap: clamp(34px, 4vw, 72px);
    margin-top: var(--pc-section-gap);
    padding-top: var(--pc-section-pad-y-compact);
    padding-bottom: var(--pc-section-pad-y-compact);
  }

  .setup-guide .setup-guide-copy {
    grid-template-columns: minmax(12rem, 0.28fr) minmax(0, 1fr);
  }

  .setup-guide .setup-guide-copy {
    align-items: start;
    justify-items: stretch;
    gap: clamp(28px, 4vw, 64px);
  }

  .setup-requirements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .setup-guide-copy .setup-requirements p {
    padding-inline: 18px;
    font-size: clamp(0.84rem, 0.82vw, 0.94rem);
    line-height: 1.56;
  }

}

@media (min-width: 700px) and (max-width: 1180px),
  (min-width: 1181px) and (max-width: 1366px) and (hover: none),
  (min-width: 1181px) and (max-width: 1366px) and (pointer: coarse) {
  :root {
    --wide-mobile-gutter: clamp(34px, 6vw, 72px);
    --tablet-copy-width: 44rem;
    --tablet-visual-width: 720px;
    /*
     * Preserve the full-screen chapter contract on tablets as well. In
     * particular, do not cap tall 12.9–13" iPad portrait viewports.
     */
    --tablet-section-min-height: var(--touch-section-min-height);
    --tablet-section-pad-y: clamp(56px, 7.2vh, 92px);
    --tablet-hero-pad-bottom: clamp(112px, 13vh, 148px);
    --tablet-hero-fade-height: clamp(220px, 26vh, 310px);
    --tablet-hero-copy-offset: clamp(64px, 7.5vh, 88px);
    --tablet-layout-gap: clamp(34px, 5vh, 54px);
    --tablet-proof-gap: clamp(28px, 5vh, 48px);
    --tablet-heading-size: clamp(2.08rem, 4.8vw, 3.35rem);
    --tablet-body-size: clamp(1.02rem, 2vw, 1.24rem);
  }

  @supports (height: 100svh) {
    :root {
      --tablet-section-pad-y: clamp(56px, 7.2svh, 92px);
      --tablet-hero-pad-bottom: clamp(112px, 13svh, 148px);
      --tablet-hero-fade-height: clamp(220px, 26svh, 310px);
      --tablet-hero-copy-offset: clamp(64px, 7.5svh, 88px);
      --tablet-layout-gap: clamp(34px, 5svh, 54px);
      --tablet-proof-gap: clamp(28px, 5svh, 48px);
    }
  }

  @supports (height: 100lvh) {
    :root {
      --tablet-section-pad-y: clamp(56px, 7.2lvh, 92px);
      --tablet-hero-pad-bottom: clamp(112px, 13lvh, 148px);
      --tablet-hero-fade-height: clamp(220px, 26lvh, 310px);
      --tablet-hero-copy-offset: clamp(64px, 7.5lvh, 88px);
      --tablet-layout-gap: clamp(34px, 5lvh, 54px);
      --tablet-proof-gap: clamp(28px, 5lvh, 48px);
    }
  }

  .hero-topline {
    right: var(--wide-mobile-gutter);
    left: var(--wide-mobile-gutter);
    justify-content: flex-start;
  }

  .intro-hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-start;
    padding:
      calc(92px + env(safe-area-inset-top, 0px))
      var(--wide-mobile-gutter)
      var(--tablet-hero-pad-bottom);
  }

  html.is-ios-safari .intro-hero {
    min-height: max(720px, var(--ios-stable-viewport-height));
  }

  .intro-hero::before,
  html.is-ios-safari .intro-hero::before {
    background:
      radial-gradient(
        ellipse 96% 38% at 50% -4%,
        rgba(247, 248, 243, 0.5) 0%,
        rgba(247, 248, 243, 0.24) 44%,
        rgba(247, 248, 243, 0) 100%
      ),
      linear-gradient(
        180deg,
        rgba(247, 248, 243, 0.56) 0%,
        rgba(247, 248, 243, 0.32) 10%,
        rgba(247, 248, 243, 0.14) 20%,
        rgba(247, 248, 243, 0.04) 29%,
        rgba(247, 248, 243, 0) 38%
      ),
      url("assets/hero-bg-mobile-light-1.jpg") center bottom / cover no-repeat;
  }

  .intro-hero::after {
    height: var(--tablet-hero-fade-height);
  }

  .hero-copy {
    max-width: min(100%, var(--tablet-copy-width));
    margin-inline: auto;
    text-align: center;
    transform: translateY(var(--tablet-hero-copy-offset));
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: clamp(1.08rem, 2.25vw, 1.2rem);
  }

  .hero-kicker::before {
    width: clamp(260px, 38vw, 360px);
    height: clamp(88px, 12vw, 120px);
    content: "";
    background: radial-gradient(
      ellipse at center,
      rgba(247, 248, 243, 0.42) 0%,
      rgba(247, 248, 243, 0.22) 40%,
      rgba(247, 248, 243, 0.07) 68%,
      rgba(247, 248, 243, 0) 100%
    );
    filter: blur(22px);
  }

  .intro-hero h1 {
    max-width: 14ch;
    margin-inline: auto;
    font-size: clamp(2.75rem, 5.2vw, 3.7rem);
    text-wrap: balance;
  }

  .intro-hero .hero-text {
    max-width: 32rem;
    margin-inline: auto;
    font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  }

  .intro-workflow,
  .real-ui,
  .capability-transition {
    display: grid;
    min-height: var(--tablet-section-min-height);
    align-content: center;
    margin-top: 0;
    padding-top: var(--tablet-section-pad-y);
    padding-bottom: var(--tablet-section-pad-y);
  }

  .intro-workflow {
    padding-inline: 0;
  }

  .intro-workflow,
  .real-ui,
  .capability-transition,
  .beta-cta,
  .setup-guide {
    overflow-x: hidden;
    overflow-x: clip;
  }

  .intro-workflow-layout,
  .capability-transition .data-capability-line,
  .real-ui .product-proof,
  .beta-cta,
  .setup-guide {
    width: min(calc(100% - 2 * var(--wide-mobile-gutter)), var(--wide-mobile-shell));
  }

  .intro-workflow-layout {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: var(--tablet-layout-gap);
    padding-inline: 0;
  }

  .intro-workflow .intro-statement,
  .capability-item-copy,
  .real-ui .product-proof-heading {
    width: min(100%, var(--tablet-copy-width));
    max-width: var(--tablet-copy-width);
    justify-items: center;
    margin-inline: auto;
    padding-inline: 0;
    text-align: center;
  }

  .intro-workflow .intro-statement .eyebrow,
  .data-capability-item .capability-eyebrow,
  .real-ui .product-proof-heading .eyebrow {
    font-size: clamp(0.92rem, 1.65vw, 1.08rem);
    text-align: center;
  }

  .intro-workflow .intro-statement h2,
  .data-capability-item h2,
  .real-ui .product-proof-heading h2,
  .beta-cta .closing-cta-copy h2 {
    max-width: 22ch;
    margin-inline: auto;
    font-size: var(--tablet-heading-size);
    line-height: 1.06;
    text-align: center;
    text-wrap: balance;
    white-space: normal;
  }

  .intro-workflow .intro-statement p:last-child,
  .workflow-support-copy,
  .data-capability-item .capability-item-copy > p:not(.eyebrow),
  .real-ui .product-proof-heading > p:not(.eyebrow),
  .beta-cta .closing-cta-copy > p:not(.eyebrow) {
    max-width: 38rem;
    margin-inline: auto;
    font-size: var(--tablet-body-size);
    line-height: 1.58;
    text-align: center;
  }

  .intro-card-track {
    display: flex;
    width: 100%;
    max-width: none;
    gap: clamp(18px, 2.4vw, 26px);
    margin: 0;
    overflow-x: auto;
    padding: 0 var(--wide-mobile-gutter) 4px;
  }

  .intro-card,
  .intro-card-main,
  .intro-card-detail {
    width: auto;
    min-width: 0;
    flex: 0 0 clamp(420px, 72%, 600px);
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  .intro-card-body {
    padding: clamp(18px, 2.4vw, 24px);
  }

  .intro-card h4 {
    font-size: clamp(1rem, 1.7vw, 1.18rem);
  }

  .intro-card p {
    font-size: clamp(0.76rem, 1.3vw, 0.9rem);
  }

  .capability-transition .data-capability-item,
  .real-ui .product-proof {
    grid-template-columns: 1fr;
    gap: var(--tablet-proof-gap);
    text-align: center;
  }

  .capability-proof {
    width: min(100%, var(--tablet-visual-width));
    margin-inline: auto;
  }

  .capability-proof-scene {
    width: 100%;
    margin-inline: auto;
  }

  .product-proof-copy {
    justify-items: center;
    max-width: none;
  }

  .real-ui .product-proof-visual {
    position: relative;
    display: block;
    width: min(100%, var(--tablet-visual-width));
    height: clamp(500px, 64vw, 650px);
    min-height: 0;
    margin: clamp(14px, 2.4vw, 24px) auto 0;
    overflow: visible;
  }

  .real-ui .proof-device {
    position: absolute;
  }

  .real-ui .proof-device-result {
    display: block;
    top: clamp(10px, 2vw, 24px);
    right: auto;
    left: 50%;
    z-index: 1;
    width: min(82vw, 680px);
    filter: none;
    opacity: 1;
    transform: translateX(-50%);
  }

  .real-ui .proof-session-pair {
    position: absolute;
    z-index: 2;
    display: block;
    margin: 0;
  }

  .real-ui .proof-device-session {
    position: relative;
    width: 100%;
    filter: none;
  }

  /*
   * Tablet previews render the devices between the compact mobile size and
   * the much larger desktop composition. Scale the physical chrome to that
   * middle size so fixed desktop bezels and stacked soft shadows do not make
   * the hardware look inflated.
   */
  .real-ui .device-shell-ipad {
    padding: 6px;
    border-width: 0.75px;
    border-radius: 20px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.025) 9%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.04) 50%, rgba(255, 255, 255, 0.06) 88%, rgba(255, 255, 255, 0.14) 100%),
      linear-gradient(145deg, #454b49 0%, #171b1a 12%, #050606 34%, #050606 72%, #2d3331 100%);
    box-shadow:
      0 15px 28px rgba(7, 16, 15, 0.14),
      inset 0 0 0 0.75px rgba(255, 255, 255, 0.18),
      inset 0 0 0 1.75px rgba(0, 0, 0, 0.5),
      inset 0 0 0 2.5px rgba(255, 255, 255, 0.035);
  }

  .real-ui .device-shell-ipad::before {
    inset: 2.5px;
    border-width: 0.5px;
    border-radius: 17.5px;
  }

  .real-ui .device-shell-ipad::after {
    inset: 1.25px;
    border-width: 0.75px;
    border-radius: 18.75px;
  }

  .real-ui .device-shell-ipad .device-screen {
    border-radius: 14px;
  }

  .real-ui .device-shell-portrait {
    padding: 5px;
    border-width: 0.75px;
    border-radius: 22px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.035) 8%, rgba(0, 0, 0, 0.3) 19%, rgba(0, 0, 0, 0.05) 50%, rgba(255, 255, 255, 0.08) 88%, rgba(255, 255, 255, 0.22) 100%),
      linear-gradient(145deg, #464d4b 0%, #1a1e1d 11%, #050606 30%, #050606 73%, #303634 100%);
    box-shadow:
      0 11px 22px rgba(7, 16, 15, 0.14),
      inset 0 0 0 0.75px rgba(255, 255, 255, 0.22),
      inset 0 0 0 2px rgba(0, 0, 0, 0.58),
      inset 0 0 0 2.75px rgba(255, 255, 255, 0.045);
  }

  .real-ui .device-shell-portrait::before {
    inset: 3px;
    border-width: 0.5px;
    border-radius: 19.5px;
  }

  .real-ui .device-shell-phone::after {
    inset: 1.5px;
    border-width: 1px;
    border-radius: 20.5px;
  }

  .real-ui .device-shell-portrait .device-screen {
    border-radius: 18px;
  }

  .real-ui .device-shell .device-island {
    top: 8px;
    height: 11px;
    box-shadow:
      inset 0 0.5px 0 rgba(255, 255, 255, 0.07),
      0 0 0 0.5px rgba(0, 0, 0, 0.18);
  }

  .real-ui .device-side-button {
    width: 2.5px;
  }

  .real-ui .device-side-button-left {
    left: -1.25px;
    height: 29px;
  }

  .real-ui .device-side-button-right {
    right: -1.25px;
    height: 38px;
  }

  .beta-cta .closing-cta-copy,
  .setup-guide .setup-guide-copy {
    justify-items: center;
    text-align: center;
  }

  .setup-guide .setup-guide-copy {
    grid-template-columns: 1fr;
  }

  .setup-guide #setup-title {
    text-align: center;
  }
}

@media (min-width: 700px) and (max-width: 1180px) and (max-height: 820px),
  (min-width: 1181px) and (max-width: 1366px) and (hover: none) and (max-height: 820px),
  (min-width: 1181px) and (max-width: 1366px) and (pointer: coarse) and (max-height: 820px) {
  :root {
    --tablet-section-pad-y: clamp(42px, 6vh, 64px);
    --tablet-layout-gap: clamp(26px, 4vh, 36px);
    --tablet-proof-gap: clamp(26px, 4vh, 36px);
  }

  @supports (height: 100svh) {
    :root {
      --tablet-section-pad-y: clamp(42px, 6svh, 64px);
      --tablet-layout-gap: clamp(26px, 4svh, 36px);
      --tablet-proof-gap: clamp(26px, 4svh, 36px);
    }
  }

  @supports (height: 100lvh) {
    :root {
      --tablet-section-pad-y: clamp(42px, 6lvh, 64px);
      --tablet-layout-gap: clamp(26px, 4lvh, 36px);
      --tablet-proof-gap: clamp(26px, 4lvh, 36px);
    }
  }

  .intro-card,
  .intro-card-main,
  .intro-card-detail {
    flex-basis: clamp(360px, 56%, 500px);
  }

  .real-ui .product-proof-visual {
    height: clamp(390px, 50vw, 470px);
  }

  .real-ui .proof-device-result {
    width: min(66vw, 500px);
  }

  .real-ui .proof-session-pair {
    width: clamp(136px, 18vw, 160px);
  }
}

@media (min-width: 1360px) and (hover: hover) and (pointer: fine) {
  .intro-workflow-layout {
    width: min(calc(100% - 2 * var(--desktop-content-gutter)), var(--desktop-content-shell));
  }
}

@media (min-width: 1600px) and (hover: hover) and (pointer: fine) {
  .hero-visual img {
    right: 0;
    bottom: 0;
    width: 112%;
    height: 108%;
    object-position: right bottom;
  }

  .contact-section {
    min-height: clamp(540px, 68vh, 660px);
    min-height: clamp(540px, 68svh, 660px);
  }
}

/*
 * Mobile story rhythm:
 * Why + CTA keeps the deliberate one-viewport landing. The quote is shorter
 * so the three related beats read as one continuous chapter without padding
 * the final thought merely to fill another complete viewport. Why mirrors the
 * responsive top inset of the centered Real-Time chapter so their content
 * starts stay one large viewport apart without scroll snapping.
 */
@media (max-width: 699px) and (min-height: 620px) {
  .story-sequence {
    /*
     * Half a viewport minus half the estimated Real-Time copy + 3:2 proof
     * height. The width term follows that responsive content; the nested clamp
     * is half of --touch-content-gap.
     */
    --story-entry-offset: clamp(
      40px,
      calc(50vh - 48vw - 28px - clamp(12px, 2.5vh, 20px)),
      220px
    );
    --story-beat-gap: clamp(128px, 18vh, 168px);
    min-height: calc(150vh + var(--story-beat-gap));
    grid-template-rows:
      minmax(66vh, max-content)
      34vh
      calc(50vh + var(--story-beat-gap));
    align-content: start;
    gap: 0;
    padding-block: 0;
  }

  .story-sequence .why-product {
    grid-row: 1;
    align-content: start;
    padding-top: var(--story-entry-offset);
    /* This participates in the row's max-content size, adding space only when
       the viewport leaves less breathing room than the larger simulator does. */
    padding-bottom: 48px;
  }

  .story-sequence .why-product-inner {
    gap: clamp(20px, 3.2vh, 28px);
  }

  .story-sequence .why-product-heading h2 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .story-sequence .why-product-grid {
    gap: clamp(18px, 2.7vh, 24px);
  }

  .story-sequence .why-product-block {
    gap: 8px;
    padding-top: 12px;
  }

  .story-sequence .why-product-block p {
    font-size: clamp(0.84rem, 3.65vw, 0.95rem);
    line-height: 1.52;
  }

  .story-sequence .beta-cta {
    grid-row: 2 / span 2;
    grid-template-rows: 34vh 50vh;
    align-content: start;
    column-gap: 0;
    row-gap: var(--story-beat-gap);
  }

  .story-sequence .cta-action {
    grid-row: 1;
    align-self: center;
  }

  .story-sequence .vision-quote {
    grid-row: 2;
    align-self: center;
  }

  @supports (height: 100svh) {
    .story-sequence {
      --story-entry-offset: clamp(
        40px,
        calc(50svh - 48vw - 28px - clamp(12px, 2.5svh, 20px)),
        220px
      );
      --story-beat-gap: clamp(128px, 18svh, 168px);
      min-height: calc(150svh + var(--story-beat-gap));
      grid-template-rows:
        minmax(66svh, max-content)
        34svh
        calc(50svh + var(--story-beat-gap));
    }

    .story-sequence .why-product-inner {
      gap: clamp(20px, 3.2svh, 28px);
    }

    .story-sequence .why-product-grid {
      gap: clamp(18px, 2.7svh, 24px);
    }

    .story-sequence .beta-cta {
      grid-template-rows: 34svh 50svh;
    }
  }

  @supports (height: 100lvh) {
    .story-sequence {
      --story-entry-offset: clamp(
        40px,
        calc(50lvh - 48vw - 28px - clamp(12px, 2.5lvh, 20px)),
        220px
      );
      --story-beat-gap: clamp(128px, 18lvh, 168px);
      min-height: calc(150lvh + var(--story-beat-gap));
      grid-template-rows:
        minmax(66lvh, max-content)
        34lvh
        calc(50lvh + var(--story-beat-gap));
    }

    .story-sequence .beta-cta {
      grid-template-rows: 34lvh 50lvh;
    }
  }
}

@media (min-width: 700px) {
  .story-sequence {
    padding-inline: var(--wide-mobile-gutter);
  }

  .vision-quote p {
    max-width: 30ch;
    font-size: clamp(1.75rem, 3.8vw, 2.1rem);
    line-height: 1.34;
  }

  .why-product {
    min-height: 0;
    padding: 0;
  }

  .why-product-inner {
    gap: clamp(46px, 6vw, 60px);
  }

  .why-product-heading h2 {
    max-width: none;
    font-size: var(--tablet-heading-size);
    line-height: 1.06;
  }

  .why-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(38px, 6vw, 58px);
  }

  .why-product-block p {
    font-size: clamp(1rem, 2vw, 1.12rem);
  }
}

@media (min-width: 700px) and (min-height: 700px) {
  .story-sequence {
    min-height: 150vh;
    grid-template-rows: repeat(3, minmax(0, 50vh));
    align-content: start;
    gap: 0;
    padding-block: 0;
  }

  .story-sequence .why-product {
    grid-row: 1;
  }

  .story-sequence .beta-cta {
    grid-row: 2 / span 2;
    grid-template-rows: repeat(2, minmax(0, 50vh));
    align-content: start;
    gap: 0;
  }

  .story-sequence .cta-action {
    grid-row: 1;
    align-self: center;
  }

  .story-sequence .vision-quote {
    grid-row: 2;
    align-self: center;
  }

  @supports (height: 100svh) {
    .story-sequence {
      min-height: 150svh;
      grid-template-rows: repeat(3, minmax(0, 50svh));
    }

    .story-sequence .beta-cta {
      grid-template-rows: repeat(2, minmax(0, 50svh));
    }
  }

  @supports (height: 100lvh) {
    .story-sequence {
      min-height: 150lvh;
      grid-template-rows: repeat(3, minmax(0, 50lvh));
    }

    .story-sequence .beta-cta {
      grid-template-rows: repeat(2, minmax(0, 50lvh));
    }
  }
}

/*
 * Portrait iPads follow the mobile reading direction for the longer Problem /
 * Solution copy. Landscape iPads and desktop keep the comparative two-column
 * layout supplied by the wider tablet/desktop rules.
 */
@media (orientation: portrait) and (min-width: 700px) and (max-width: 1180px),
  (orientation: portrait) and (min-width: 1181px) and (max-width: 1366px) and (hover: none),
  (orientation: portrait) and (min-width: 1181px) and (max-width: 1366px) and (pointer: coarse) {
  /*
   * Tall portrait iPads need slightly tighter chapter rhythm than phones.
   * Keep the first two chapters near-full-screen while allowing the centered
   * content to grow naturally when it needs more than the reserved height.
   * Second Screen retains the full viewport to preserve its transition.
   */
  .intro-workflow,
  .real-ui {
    min-height: max(720px, calc(100vh - 100px));
  }

  .story-sequence {
    grid-template-rows:
      minmax(50vh, max-content)
      minmax(0, 50vh)
      minmax(0, 50vh);
  }

  .story-sequence .why-product-inner {
    width: min(82vw, 52.5rem);
    gap: clamp(32px, 4vh, 46px);
  }

  .story-sequence .why-product-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(24px, 3vh, 34px);
    margin-inline: auto;
  }

  .story-sequence .why-product-block p {
    max-width: none;
  }

  @supports (height: 100svh) {
    .intro-workflow,
    .real-ui {
      min-height: max(720px, calc(100svh - 100px));
    }

    .story-sequence {
      grid-template-rows:
        minmax(50svh, max-content)
        minmax(0, 50svh)
        minmax(0, 50svh);
    }
  }

  @supports (height: 100lvh) {
    .intro-workflow,
    .real-ui {
      min-height: max(720px, calc(100lvh - 100px));
    }

    .story-sequence {
      grid-template-rows:
        minmax(50lvh, max-content)
        minmax(0, 50lvh)
        minmax(0, 50lvh);
    }
  }
}

@media (min-width: 1181px) {
  .story-sequence {
    /* Give Why its own chapter entrance after the Second Screen proof. */
    margin-top: clamp(96px, 12vh, 128px);
    margin-top: clamp(96px, 12svh, 128px);
    padding-inline: clamp(72px, 7vw, 144px);
  }

  .vision-quote p {
    max-width: 30ch;
    font-size: clamp(2rem, 2.15vw, 2.25rem);
    line-height: 1.3;
  }

  .why-product {
    min-height: 0;
    margin-top: 0;
    padding: 0;
  }

  .why-product-inner {
    gap: clamp(52px, 4.2vw, 68px);
  }

  .why-product-heading h2 {
    font-size: clamp(2.45rem, 2.55vw, 3.45rem);
    line-height: 1.04;
  }

  .why-product-grid {
    gap: clamp(64px, 6vw, 96px);
  }

  .why-product-block {
    gap: 18px;
    padding-top: 24px;
  }

  .why-product-block h3 {
    font-size: clamp(0.94rem, 0.78vw, 1.04rem);
  }

  .why-product-block p {
    font-size: clamp(1.08rem, 1.05vw, 1.22rem);
    line-height: 1.7;
  }
}

/*
 * iPad landscape is a wide but height-constrained canvas. Treat it as a
 * compact layout rather than scaling the portrait tablet composition up.
 * Use the available landscape canvas as the structural signal so simulator
 * and touch-device input capabilities cannot select different layouts.
 */
@media (orientation: landscape) and (min-width: 900px) and (max-width: 1366px) {
  :root {
    --wide-mobile-gutter: clamp(34px, 4vw, 56px);
    --tablet-copy-width: 32rem;
    --tablet-visual-width: 620px;
    --tablet-section-pad-y: clamp(48px, 6.5vh, 64px);
    --tablet-hero-pad-bottom: clamp(72px, 9vh, 96px);
    --tablet-hero-fade-height: clamp(180px, 24vh, 250px);
    --tablet-hero-copy-offset: clamp(8px, 2vh, 18px);
    --tablet-layout-gap: clamp(36px, 5vw, 56px);
    --tablet-proof-gap: clamp(40px, 5vw, 60px);
    --tablet-heading-size: clamp(2.25rem, 3.6vw, 2.75rem);
    --tablet-body-size: clamp(1rem, 1.5vw, 1.12rem);
  }

  .intro-hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding:
      calc(76px + env(safe-area-inset-top, 0px))
      var(--wide-mobile-gutter)
      var(--tablet-hero-pad-bottom);
  }

  html.is-ios-safari .intro-hero {
    min-height: max(680px, var(--ios-stable-viewport-height));
  }

  .hero-copy {
    max-width: min(100%, 38rem);
    transform: translateY(var(--tablet-hero-copy-offset));
  }

  .intro-hero h1 {
    max-width: 13ch;
    font-size: clamp(2.75rem, 4.6vw, 3.15rem);
    line-height: 1;
  }

  .intro-hero .hero-text {
    font-size: clamp(1rem, 1.55vw, 1.14rem);
  }

  .intro-workflow,
  .real-ui,
  .capability-transition {
    min-height: var(--tablet-section-min-height);
    align-content: center;
    margin-top: clamp(48px, 7vh, 72px);
    padding-top: var(--tablet-section-pad-y);
    padding-bottom: var(--tablet-section-pad-y);
  }

  .intro-workflow-layout {
    width: min(calc(100% - 2 * var(--wide-mobile-gutter)), 1120px);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: var(--tablet-layout-gap);
    margin-inline: auto;
  }

  .intro-workflow .intro-statement {
    width: 100%;
    max-width: 32rem;
    justify-self: center;
    justify-items: start;
    padding-inline: 0;
    text-align: left;
  }

  .intro-workflow .intro-statement .eyebrow,
  .intro-workflow .intro-statement h2,
  .intro-workflow .intro-statement p:last-child,
  .intro-workflow .workflow-support-copy {
    margin-inline: 0;
    text-align: left;
  }

  .intro-workflow .intro-statement .eyebrow,
  .data-capability-item .capability-eyebrow,
  .real-ui .product-proof-heading .eyebrow,
  .play-with-pros-heading .eyebrow {
    font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  }

  .intro-workflow .intro-statement h2,
  .data-capability-item h2,
  .real-ui .product-proof-heading h2,
  .beta-cta .closing-cta-copy h2,
  .why-product-heading h2,
  .ecosystem-heading h2 {
    font-size: var(--tablet-heading-size);
    line-height: 1.06;
  }

  .intro-workflow .intro-statement p:last-child,
  .workflow-support-copy,
  .data-capability-item .capability-item-copy > p:not(.eyebrow),
  .real-ui .product-proof-heading > p:not(.eyebrow),
  .beta-cta .closing-cta-copy > p:not(.eyebrow) {
    font-size: var(--tablet-body-size);
    line-height: 1.52;
  }

  .intro-card-track {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10.4;
    justify-self: center;
    gap: 0;
    overflow: hidden;
    padding: 0;
    background: transparent;
    border-radius: 8px;
    box-shadow: 0 22px 58px rgba(7, 16, 15, 0.1);
    isolation: isolate;
  }

  .intro-card,
  .intro-card-main,
  .intro-card-detail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    flex: none;
    aspect-ratio: auto;
    margin: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .intro-card.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
  }

  .intro-card.is-exiting {
    z-index: 3;
    opacity: 1;
    pointer-events: none;
  }

  .intro-card.is-exiting.is-leaving {
    opacity: 0;
  }

  .intro-card-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    gap: 5px;
    padding: clamp(18px, 2vw, 24px);
    padding-right: clamp(78px, 8vw, 104px);
    opacity: 0;
    transition: opacity 180ms cubic-bezier(0.22, 0.61, 0.36, 1) 70ms;
  }

  .intro-card.is-active .intro-card-body {
    opacity: 1;
  }

  .intro-card.is-exiting .intro-card-body {
    opacity: 0;
  }

  .intro-card h4 {
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  }

  .intro-card p {
    font-size: clamp(0.78rem, 1vw, 0.88rem);
  }

  .intro-carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    padding: 0;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(7, 16, 15, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    opacity: 0.64;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
  }

  .intro-carousel-nav::before {
    width: 8px;
    height: 8px;
    content: "";
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
  }

  .intro-carousel-nav-prev {
    left: 16px;
  }

  .intro-carousel-nav-prev::before {
    transform: translateX(2px) rotate(-135deg);
  }

  .intro-carousel-nav-next {
    right: 16px;
  }

  .intro-carousel-nav-next::before {
    transform: translateX(-2px) rotate(45deg);
  }

  .intro-carousel-indicators {
    position: absolute;
    right: clamp(18px, 2vw, 24px);
    bottom: clamp(18px, 2vw, 24px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .intro-carousel-indicator {
    width: 7px;
    height: 7px;
    padding: 0;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
  }

  .intro-carousel-indicator.is-active {
    width: 22px;
    background: var(--brand-lime);
    border-color: rgba(199, 244, 27, 0.82);
  }

  .real-ui .product-proof,
  .capability-transition .data-capability-line {
    width: min(calc(100% - 2 * var(--wide-mobile-gutter)), 1120px);
  }

  .real-ui .product-proof {
    min-height: 0;
    grid-template-columns: minmax(460px, 1.1fr) minmax(270px, 0.9fr);
    align-items: center;
    gap: var(--tablet-proof-gap);
    text-align: left;
  }

  .capability-transition .data-capability-item {
    grid-template-columns: minmax(270px, 0.82fr) minmax(460px, 1.18fr);
    align-items: center;
    gap: var(--tablet-proof-gap);
    text-align: left;
  }

  .real-ui .product-proof-copy {
    grid-column: 2;
    grid-row: 1;
    max-width: 32rem;
    justify-items: start;
  }

  .real-ui .product-proof-heading,
  .capability-item-copy {
    width: 100%;
    max-width: 32rem;
    justify-items: start;
    margin-inline: 0;
    text-align: left;
  }

  .real-ui .product-proof-heading .eyebrow,
  .data-capability-item .capability-eyebrow,
  .real-ui .product-proof-heading h2,
  .data-capability-item h2,
  .real-ui .product-proof-heading > p:not(.eyebrow),
  .data-capability-item .capability-item-copy > p:not(.eyebrow) {
    margin-inline: 0;
    text-align: left;
  }

  .real-ui .product-proof-visual {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: clamp(340px, 38vw, 430px);
    margin: 0;
  }

  .capability-proof,
  .capability-proof-scene {
    width: 100%;
    margin: 0;
  }

  .story-sequence {
    min-height: clamp(960px, 135vh, 1120px);
    grid-template-rows: repeat(3, minmax(0, 1fr));
    align-content: start;
    gap: 0;
    margin-top: clamp(144px, 18vh, 192px);
    padding-top: 0;
    padding-right: var(--wide-mobile-gutter);
    padding-bottom: 0;
    padding-left: var(--wide-mobile-gutter);
  }

  .story-sequence .why-product {
    grid-row: 1;
    align-content: center;
  }

  .why-product-inner {
    gap: clamp(30px, 4vh, 42px);
  }

  .why-product-grid {
    gap: clamp(30px, 4vw, 52px);
  }

  .why-product-block {
    gap: 10px;
    padding-top: 16px;
  }

  .why-product-block p {
    font-size: clamp(0.96rem, 1.35vw, 1.06rem);
    line-height: 1.58;
  }

  .story-sequence .beta-cta {
    width: min(100%, 1060px);
    grid-row: 2 / span 2;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 0;
  }

  .story-sequence .cta-action {
    grid-row: 1;
    align-self: center;
  }

  .story-sequence .vision-quote {
    grid-row: 2;
    align-self: center;
  }

  .beta-cta .closing-cta-copy {
    gap: 6px;
  }

  .cta-action {
    gap: 18px;
  }

  .vision-quote p {
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    line-height: 1.32;
  }

  .play-with-pros {
    min-height: clamp(600px, 82vh, 720px);
    align-content: center;
    margin-top: 0;
    padding-top: var(--tablet-section-pad-y);
    padding-bottom: calc(
      var(--tablet-section-pad-y) + env(safe-area-inset-bottom, 0px)
    );
  }

  .play-with-pros-inner {
    width: min(100%, 56rem);
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-items: center;
    gap: clamp(28px, 4vh, 38px);
    transform: none;
  }

  .play-with-pros-heading {
    justify-items: center;
    margin-inline: auto;
    text-align: center;
  }

  .play-with-pros-heading .eyebrow,
  .play-with-pros-heading h3 {
    text-align: center;
  }

  .play-with-pros-heading h3 {
    max-width: 18ch;
    font-size: var(--tablet-heading-size);
    line-height: 1.1;
  }

  .play-with-pros-copy {
    width: min(100%, 44rem);
    max-width: 44rem;
    justify-self: center;
    gap: clamp(22px, 3vh, 28px);
    text-align: center;
  }

  .play-with-pros-description,
  .play-with-pros-closing {
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
  }

  .play-with-pros-description {
    font-size: clamp(1rem, 1.45vw, 1.12rem);
    line-height: 1.56;
  }

  .play-with-pros-closing {
    font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  }

  .ecosystem {
    min-height: max(
      514px,
      calc(
        clamp(640px, 88vh, 740px) -
          var(--ecosystem-contact-reduction, 0px)
      )
    );
    min-height: max(
      514px,
      calc(
        clamp(640px, 88svh, 740px) -
          var(--ecosystem-contact-reduction, 0px)
      )
    );
    align-content: center;
    margin-top: 0;
    padding-top: var(--tablet-section-pad-y);
    padding-bottom: calc(
      max(
        24px,
        calc(
          var(--tablet-section-pad-y) -
            var(--ecosystem-contact-reduction, 0px)
        )
      ) + env(safe-area-inset-bottom, 0px)
    );
  }

  .ecosystem-inner {
    width: min(100%, 1120px);
    gap: clamp(44px, 6vh, 60px);
  }

  .ecosystem-heading h2 {
    max-width: none;
  }

  .ecosystem-panel {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 48px);
    border-top: 0;
  }

  .ecosystem-card {
    align-content: start;
    padding: 20px 0 0;
    border-top: 1px solid rgba(7, 16, 15, 0.14);
    border-bottom: 0;
  }

  .ecosystem-card::before {
    content: none;
  }

  .ecosystem-card-copy {
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .ecosystem-card h3 {
    max-width: none;
    font-size: clamp(1.18rem, 1.8vw, 1.4rem);
    line-height: 1.18;
  }

  .ecosystem-card p {
    max-width: 24rem;
    font-size: clamp(0.94rem, 1.3vw, 1.04rem);
    line-height: 1.5;
    text-align: center;
    text-wrap: pretty;
  }

  .contact-section {
    min-height: clamp(500px, 68vh, 620px);
    padding-top: clamp(88px, 12vh, 124px);
    padding-bottom: clamp(96px, 13vh, 132px);
  }

  .contact-section h2 {
    font-size: var(--tablet-heading-size);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-card,
  .intro-card img,
  .intro-card-body,
  .intro-carousel-nav {
    filter: none;
    transform: none;
    transition: none;
  }
}

/*
 * V3 keeps the established V2 visual system. These rules only support the
 * revised story order, the supplied FlightArc visual, and the tighter rhythm
 * requested for both touch and desktop layouts.
 */
.hero-kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 0.42em;
  color: var(--ink);
}

.hero-kicker-brand {
  color: var(--brand-lime-text);
  font-weight: 800;
}

.intro-hero h1 span {
  white-space: normal;
}

.rory-feature {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vh, 96px) 22px;
  background: var(--paper);
}

.rory-feature-inner {
  display: grid;
  width: min(100%, 1120px);
  gap: clamp(34px, 7vw, 72px);
  margin-inline: auto;
}

.rory-feature-quote {
  align-self: center;
}

.rory-feature-quote p {
  max-width: 28ch;
  margin-inline: 0;
  color: rgba(7, 16, 15, 0.86);
  line-height: 1.36;
  text-align: left;
}

.rory-feature-visual {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: none;
}

.rory-feature-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 109.1%;
  max-width: none;
  height: auto;
  transform: translate(-4.167%, -5.319%);
}

.v3-why-sequence {
  display: block;
  min-height: 0;
  margin-top: 0;
  padding: clamp(64px, 8vh, 96px) 22px;
  background: var(--paper);
}

.v3-why-sequence::before {
  display: none;
  content: none;
}

.v3-why-sequence .why-product {
  min-height: 0;
  grid-row: auto;
  margin: 0;
  padding: 0;
}

.v3-why-sequence .why-product-inner {
  gap: clamp(36px, 7vw, 58px);
}

.v3-why-sequence .why-product-heading {
  width: 100%;
  grid-column: 1 / -1;
  justify-self: stretch;
  text-align: center;
}

.v3-why-sequence .why-product-heading h2.chapter-title {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.v3-transition {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  margin: 0;
  padding: clamp(54px, 7vh, 82px) 22px;
  overflow: hidden;
  text-align: center;
  background: var(--paper);
}

.v3-launch-transition {
  isolation: isolate;
  gap: clamp(10px, 1.6vh, 16px);
  padding-block: clamp(32px, 4.5vh, 42px);
  background: var(--paper);
}

.v3-launch-transition::before {
  display: none;
  content: none;
}

.v3-why-sequence h2.chapter-title,
.v3-launch-transition h2.chapter-title,
.play-with-pros h2.chapter-title,
.ecosystem h2.chapter-title {
  display: block;
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.62rem, 7vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
}

.starting-point-chapter h3.chapter-subtitle,
.play-with-pros-heading h3.chapter-subtitle {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(1.42rem, 6vw, 1.85rem);
  line-height: 1.12;
  text-wrap: balance;
  white-space: normal;
}

.starting-point-chapter h3.chapter-subtitle {
  color: var(--ink);
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
}

.foundation-kicker {
  position: relative;
}

.intro-workflow,
.real-ui,
.capability-transition {
  min-height: 0;
  margin-top: 0;
  padding-top: clamp(58px, 8vh, 88px);
  padding-bottom: clamp(58px, 8vh, 88px);
}

.play-with-pros {
  min-height: 0;
  margin-top: 0;
  padding-top: clamp(34px, 4.5vh, 42px);
  padding-bottom: clamp(70px, 9vh, 108px);
  background:
    radial-gradient(
      ellipse 84% 58% at 50% 42%,
      rgba(199, 244, 27, 0.085) 0%,
      rgba(199, 244, 27, 0.024) 48%,
      rgba(199, 244, 27, 0) 76%
    ),
    linear-gradient(
      180deg,
      var(--paper) 0%,
      #f5f8ed 15%,
      #eef5e6 46%,
      #f3f7ea 74%,
      var(--paper) 100%
    );
}

.play-with-pros-inner {
  gap: 0;
  transform: none;
}

.play-with-pros-heading {
  margin-top: clamp(30px, 4vh, 38px);
}

.play-with-pros-heading h3 {
  max-width: 22ch;
}

.play-with-pros-heading .experience-line {
  color: var(--ink);
  font-size: 1em;
}

.play-with-pros-heading .game-changer-line {
  margin-top: 0.08em;
  color: var(--ink);
  font-size: 1em;
}

.play-with-pros-copy {
  gap: 0;
  margin-top: clamp(34px, 5vh, 52px);
}

.play-with-pros-copy > .eyebrow {
  margin: 0 0 clamp(18px, 2.4vh, 26px);
  color: var(--brand-lime-text);
  font-size: clamp(0.78rem, 3.6vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
}

.play-with-pros-description {
  max-width: 42rem;
  color: rgba(7, 16, 15, 0.74);
  font-weight: 500;
  line-height: 1.68;
}

.pros-divider {
  display: block;
  width: 56px;
  height: 1px;
  margin: clamp(30px, 4vh, 42px) auto;
  background: rgba(94, 123, 0, 0.34);
}

.play-with-pros-closing {
  max-width: 30ch;
  font-size: clamp(1.08rem, 4.4vw, 1.22rem);
  font-weight: 600;
  line-height: 1.46;
}

.ecosystem {
  min-height: 0;
  margin-top: 0;
  padding-top: clamp(64px, 8vh, 96px);
  padding-bottom: clamp(72px, 9vh, 108px);
}

.v3-beta-cta {
  width: 100%;
  max-width: none;
  min-height: 0;
  gap: clamp(48px, 7vh, 72px);
  overflow: hidden;
  padding:
    clamp(80px, 10vh, 112px)
    22px
    clamp(126px, 16vh, 172px);
  background: var(--paper);
}

.v3-beta-cta::before {
  display: none;
  content: none;
}

.v3-beta-cta .cta-action {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin-inline: auto;
}

.v3-contact-block {
  gap: clamp(24px, 4vh, 34px);
}

.v3-contact-block h2 {
  margin: 0;
  color: rgba(7, 16, 15, 0.62);
  font-size: clamp(0.92rem, 3.8vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-wrap: balance;
}

.v3-contact-block .contact-section-link {
  font-size: clamp(1.3rem, 5.6vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

@media (max-width: 699px) {
  .intro-hero h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.5rem);
  }

  .rory-feature {
    padding-block: 58px;
  }

  .rory-feature-inner {
    gap: 42px;
  }

  .rory-feature-quote p {
    max-width: 30ch;
    margin-inline: auto;
    font-size: clamp(1.12rem, 5vw, 1.28rem);
    line-height: 1.4;
    text-align: center;
  }

  .rory-feature-visual {
    width: 100%;
    margin-inline: auto;
  }

  .v3-why-sequence {
    min-height: 0;
    grid-template-rows: none;
    padding-block: 58px;
  }

  .v3-why-sequence .why-product {
    grid-row: auto;
    padding: 0;
  }

  .v3-why-sequence .why-product-inner {
    gap: 32px;
  }

  .v3-why-sequence .why-product-grid {
    gap: 28px;
  }

  .v3-why-sequence .why-product-block {
    gap: 12px;
    padding-top: 18px;
  }

  .v3-why-sequence .why-product-block p {
    font-size: clamp(0.96rem, 4vw, 1.06rem);
    line-height: 1.62;
  }

  .intro-workflow,
  .real-ui,
  .capability-transition {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .play-with-pros,
  .ecosystem {
    min-height: 0;
  }
}

@media (min-width: 700px) {
  .v3-launch-transition {
    padding-block: clamp(38px, 4.5vh, 48px);
  }

  .rory-feature {
    padding-right: max(var(--wide-mobile-gutter), env(safe-area-inset-right, 0px));
    padding-left: max(var(--wide-mobile-gutter), env(safe-area-inset-left, 0px));
  }

  .rory-feature-inner {
    width: min(100%, 1040px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .rory-feature-quote p {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
  }

  .v3-why-sequence h2.chapter-title,
  .v3-launch-transition h2.chapter-title,
  .play-with-pros h2.chapter-title,
  .ecosystem h2.chapter-title {
    max-width: 22ch;
    font-size: var(--tablet-heading-size, clamp(2.08rem, 4.8vw, 3.35rem));
    line-height: 1.06;
  }

  .starting-point-chapter h3.chapter-subtitle,
  .play-with-pros-heading h3.chapter-subtitle {
    font-size: clamp(1.75rem, 3.9vw, 2.6rem);
    line-height: 1.1;
  }

  .play-with-pros {
    padding-top: clamp(40px, 5vh, 54px);
  }

  .play-with-pros-heading {
    margin-top: clamp(34px, 4vh, 44px);
  }

  .play-with-pros-copy > .eyebrow {
    font-size: clamp(0.92rem, 1.65vw, 1.08rem);
  }

  .play-with-pros-description {
    font-size: clamp(1.04rem, 1.9vw, 1.18rem);
  }

  .play-with-pros-closing {
    font-size: clamp(1.18rem, 2vw, 1.38rem);
  }

  .v3-contact-block h2 {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.45;
  }

  .v3-contact-block .contact-section-link {
    font-size: clamp(1.75rem, 3.4vw, 2.45rem);
  }
}

@media (min-width: 1181px) and (hover: hover) and (pointer: fine) {
  .v3-launch-transition {
    padding-block: clamp(44px, 5vh, 56px);
  }

  .rory-feature {
    padding-right: var(--desktop-content-gutter);
    padding-left: var(--desktop-content-gutter);
  }

  .rory-feature-inner {
    width: min(100%, var(--desktop-support-shell));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rory-feature-quote p {
    font-size: clamp(1.8rem, 2.15vw, 2.25rem);
  }

  .v3-why-sequence h2.chapter-title,
  .v3-launch-transition h2.chapter-title,
  .play-with-pros h2.chapter-title,
  .ecosystem h2.chapter-title {
    max-width: none;
    font-size: var(--pc-core-heading-size, clamp(2.45rem, 2.55vw, 3.45rem));
    line-height: 1.04;
  }

  .starting-point-chapter h3.chapter-subtitle,
  .play-with-pros-heading h3.chapter-subtitle {
    font-size: clamp(2.05rem, 2.05vw, 2.75rem);
    line-height: 1.08;
  }

  .intro-workflow,
  .real-ui,
  .capability-transition {
    min-height: 0;
    margin-top: 0;
    padding-top: clamp(64px, 7vh, 92px);
    padding-bottom: clamp(64px, 7vh, 92px);
  }

  .play-with-pros {
    min-height: 0;
    margin-top: 0;
    padding-top: clamp(46px, 5.5vh, 60px);
  }

  .play-with-pros-inner {
    transform: none;
  }

  .play-with-pros-heading {
    margin-top: clamp(38px, 4.5vh, 50px);
  }

  .play-with-pros-copy > .eyebrow {
    font-size: var(--pc-core-eyebrow-size, clamp(0.95rem, 0.82vw, 1.08rem));
  }

  .play-with-pros-description {
    max-width: 42rem;
    font-size: clamp(1.02rem, 1.02vw, 1.16rem);
    line-height: 1.68;
  }

  .play-with-pros-closing {
    max-width: 30ch;
    font-size: clamp(1.18rem, 1.28vw, 1.4rem);
    line-height: 1.46;
  }

  .v3-contact-block h2 {
    font-size: clamp(1.05rem, 1vw, 1.2rem);
  }

  .v3-contact-block .contact-section-link {
    font-size: clamp(2rem, 2.2vw, 2.8rem);
  }

  .ecosystem {
    min-height: 0;
    margin-top: 0;
  }
}

/*
 * Keep the three launch-monitor chapters on one shared rhythm. Only the next
 * chapter contributes the space between siblings, so the two gaps cannot
 * accidentally double or diverge.
 */
:root {
  --v3-feature-edge-space: clamp(58px, 8vh, 88px);
  --v3-feature-chapter-gap: clamp(72px, 10vh, 112px);
}

.intro-workflow {
  padding-block-start: var(--v3-feature-edge-space);
  padding-block-end: 0;
}

.real-ui {
  padding-block-start: var(--v3-feature-chapter-gap);
  padding-block-end: 0;
}

.capability-transition {
  padding-block-start: var(--v3-feature-chapter-gap);
  padding-block-end: var(--v3-feature-edge-space);
}

@media (max-width: 699px) {
  :root {
    --v3-feature-edge-space: 58px;
    --v3-feature-chapter-gap: 72px;
  }

  .real-ui {
    padding-block-end: clamp(12px, 3vw, 18px);
  }
}

@media (orientation: portrait) and (min-width: 700px) and (max-width: 1180px),
  (orientation: portrait) and (min-width: 1181px) and (max-width: 1366px) and (hover: none),
  (orientation: portrait) and (min-width: 1181px) and (max-width: 1366px) and (pointer: coarse) {
  .real-ui {
    padding-block-end: clamp(16px, 2vh, 24px);
  }
}

@media (min-width: 1181px) and (hover: hover) and (pointer: fine) {
  :root {
    --v3-feature-edge-space: clamp(64px, 7vh, 92px);
    --v3-feature-chapter-gap: clamp(88px, 10vh, 128px);
  }
}

/*
 * Give the three launch-monitor chapters one visual canvas. The Results &
 * Sessions devices sit inside that canvas, while the iPhone is allowed to
 * break slightly past its left edge.
 */
@media (min-width: 700px) {
  .intro-workflow,
  .real-ui,
  .capability-transition {
    --v3-feature-visual-width: var(--tablet-visual-width, 720px);
    --v3-feature-visual-ratio: 16 / 10.4;
  }

  .real-ui .product-proof-visual,
  .capability-proof-scene {
    width: min(100%, var(--v3-feature-visual-width));
    aspect-ratio: var(--v3-feature-visual-ratio);
    height: auto;
    min-height: 0;
    justify-self: center;
  }

  .real-ui .product-proof-visual {
    overflow: visible;
  }

  .real-ui .proof-device-stack {
    --proof-phone-edge-offset: -14px;

    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    display: block;
    width: 86.6667%;
    aspect-ratio: 4 / 3;
  }

  .real-ui .proof-device-result {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    transform: none;
  }

  .real-ui .proof-session-pair {
    bottom: 0;
    left: var(--proof-phone-edge-offset);
    width: 29.1667%;
  }
}

@media (min-width: 700px) and (max-width: 1180px),
  (min-width: 1181px) and (max-width: 1366px) and (hover: none),
  (min-width: 1181px) and (max-width: 1366px) and (pointer: coarse) {
  .real-ui .proof-device-stack {
    top: 50%;
    right: auto;
    left: 50%;
    width: 82%;
    transform: translate(-50%, -50%);
  }

  .real-ui .proof-session-pair {
    bottom: 2.5%;
  }

  .real-ui .device-shell-portrait {
    box-shadow:
      inset 0 0 0 0.75px rgba(255, 255, 255, 0.22),
      inset 0 0 0 2px rgba(0, 0, 0, 0.58),
      inset 0 0 0 2.75px rgba(255, 255, 255, 0.045);
  }
}

@media (orientation: landscape) and (min-width: 900px) and (max-width: 1366px) {
  .intro-workflow-layout,
  .real-ui .product-proof,
  .capability-transition .data-capability-line {
    width: min(calc(100% - 2 * var(--wide-mobile-gutter)), 1180px);
  }

  .intro-workflow-layout,
  .real-ui .product-proof,
  .capability-transition .data-capability-item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(44px, 5vw, 68px);
  }

  .intro-workflow .intro-statement,
  .real-ui .product-proof-copy,
  .real-ui .product-proof-heading,
  .capability-item-copy {
    width: 100%;
    max-width: 34rem;
  }

  .starting-point-chapter h3.chapter-subtitle {
    font-size: clamp(2.05rem, 2.5vw, 2.35rem);
    line-height: 1.08;
  }

  .intro-workflow .intro-statement .eyebrow,
  .real-ui .product-proof-heading .eyebrow,
  .data-capability-item .capability-eyebrow {
    font-size: clamp(0.9rem, 1vw, 0.98rem);
  }

  .intro-workflow .intro-statement p:last-child,
  .workflow-support-copy,
  .real-ui .product-proof-heading > p:not(.eyebrow),
  .data-capability-item .capability-item-copy > p:not(.eyebrow) {
    font-size: clamp(1.02rem, 1.2vw, 1.12rem);
    line-height: 1.58;
  }
}

@media (min-width: 1181px) and (hover: hover) and (pointer: fine) {
  .intro-workflow,
  .real-ui,
  .capability-transition {
    --v3-feature-visual-width: var(--pc-core-visual-width, 740px);
  }

  .intro-workflow-layout,
  .real-ui .product-proof,
  .capability-transition .data-capability-item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .real-ui .proof-session-pair {
    bottom: -7%;
    left: var(--proof-phone-edge-offset);
  }
}

/* Keep all three chapter visuals flush with the page, without floating shadows. */
.intro-card-track,
.capability-proof-scene,
.real-ui .device-shell-ipad {
  box-shadow: none;
}

.real-ui .proof-device-result,
.real-ui .proof-device-session {
  filter: none;
}

.real-ui .proof-device-session::before {
  display: none;
}

@media (min-width: 700px) and (max-width: 1180px),
  (min-width: 1181px) and (max-width: 1366px) and (hover: none),
  (min-width: 1181px) and (max-width: 1366px) and (pointer: coarse) {
  .real-ui .device-shell-ipad {
    aspect-ratio: auto;
    box-shadow:
      inset 0 0 0 0.75px rgba(255, 255, 255, 0.18),
      inset 0 0 0 1.75px rgba(0, 0, 0, 0.5),
      inset 0 0 0 2.5px rgba(255, 255, 255, 0.035);
  }

  .real-ui .device-shell-ipad .device-screen {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

@media (min-width: 700px) and (max-width: 1366px) {
  html.is-ios .real-ui .device-shell-ipad {
    aspect-ratio: auto;
    padding: 4px;
    border-width: 0.5px;
    border-radius: 18px;
    box-shadow:
      inset 0 0 0 0.5px rgba(255, 255, 255, 0.16),
      inset 0 0 0 1px rgba(0, 0, 0, 0.48);
  }

  html.is-ios .real-ui .device-shell-ipad::before {
    inset: 1.5px;
    border-width: 0.5px;
    border-radius: 16.5px;
  }

  html.is-ios .real-ui .device-shell-ipad::after {
    display: none;
  }

  html.is-ios .real-ui .device-shell-ipad .device-screen {
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 13.5px;
  }

  html.is-ios .real-ui .device-shell-portrait {
    padding: 3.5px;
    border-width: 0.5px;
    border-radius: 18px;
    box-shadow:
      inset 0 0 0 0.5px rgba(255, 255, 255, 0.18),
      inset 0 0 0 1.25px rgba(0, 0, 0, 0.54);
  }

  html.is-ios .real-ui .device-shell-portrait::before {
    inset: 2px;
    border-width: 0.5px;
    border-radius: 16.5px;
  }

  html.is-ios .real-ui .device-shell-phone::after {
    display: none;
  }

  html.is-ios .real-ui .device-shell-portrait .device-screen {
    border-radius: 15px;
  }

  html.is-ios .real-ui .device-shell .device-island {
    top: 6px;
    height: 8px;
  }
}

@media (orientation: landscape) and (min-width: 900px) and (max-width: 1366px) {
  html.is-ios .intro-workflow-layout,
  html.is-ios .real-ui .product-proof,
  html.is-ios .capability-transition .data-capability-line {
    width: min(calc(100% - 2 * var(--wide-mobile-gutter)), 1180px);
  }

  html.is-ios .intro-workflow-layout,
  html.is-ios .real-ui .product-proof,
  html.is-ios .capability-transition .data-capability-item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(44px, 5vw, 68px);
  }

  html.is-ios .intro-workflow .intro-statement,
  html.is-ios .real-ui .product-proof-copy,
  html.is-ios .real-ui .product-proof-heading,
  html.is-ios .capability-item-copy {
    width: 100%;
    max-width: 34rem;
  }

  html.is-ios .starting-point-chapter h3.chapter-subtitle {
    font-size: clamp(2.05rem, 2.5vw, 2.35rem);
    line-height: 1.08;
  }
}

/*
 * Safari's responsive iPad canvas can retain the host Mac's fine-pointer
 * media features. Use the tablet-sized 4:3 viewport itself as the final
 * authority so 11–13" landscape iPads cannot fall back to the PC offsets.
 */
@media (orientation: landscape) and (min-width: 900px) and (max-width: 1366px) and
  (min-height: 700px) and (max-aspect-ratio: 3 / 2) {
  .real-ui .proof-device-stack {
    top: 50%;
    right: auto;
    left: 50%;
    width: 82%;
    transform: translate(-50%, -50%);
  }

  .real-ui .proof-session-pair {
    bottom: 2.5%;
    left: var(--proof-phone-edge-offset);
    width: 29.1667%;
  }

  .real-ui .device-shell-ipad {
    aspect-ratio: auto;
    padding: 4px;
    border-width: 0.5px;
    border-radius: 18px;
    box-shadow:
      inset 0 0 0 0.5px rgba(255, 255, 255, 0.16),
      inset 0 0 0 1px rgba(0, 0, 0, 0.48);
  }

  .real-ui .device-shell-ipad::before {
    inset: 1.5px;
    border-width: 0.5px;
    border-radius: 16.5px;
  }

  .real-ui .device-shell-ipad::after {
    display: none;
  }

  .real-ui .device-shell-ipad .device-screen {
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 13.5px;
  }

  .real-ui .device-shell-portrait {
    padding: 3.5px;
    border-width: 0.5px;
    border-radius: 18px;
    box-shadow:
      inset 0 0 0 0.5px rgba(255, 255, 255, 0.18),
      inset 0 0 0 1.25px rgba(0, 0, 0, 0.54);
  }

  .real-ui .device-shell-portrait::before {
    inset: 2px;
    border-width: 0.5px;
    border-radius: 16.5px;
  }

  .real-ui .device-shell-phone::after {
    display: none;
  }

  .real-ui .device-shell-portrait .device-screen {
    border-radius: 15px;
  }

  .real-ui .device-shell .device-island {
    top: 6px;
    height: 8px;
  }
}
