/* ---------------------------------------------------------
   Launch Labs — Hero + Hub
   One continuous sky environment. Shared parallax system.
--------------------------------------------------------- */

:root {
  --ink: #0a1322;
  --ink-soft: #35435c;
  --ink-faint: #6b7a93;
  --red: #d92632;
  --red-deep: #b81f2a;
  --white: #ffffff;
  --paper: #fbfaf6;
  --paper-line: #e7e1d4;
  --paper-line-soft: #efe9dd;
  --hero-section2-sky-join: #003ea9;

  --z-sky: 0;
  --z-veil: 1;
  --z-connectors: 3;
  --z-laptop: 8;
  --z-content: 6;
  --z-nav: 20;

  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #050505;
  color: var(--white);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------------------------------------------------------
   Hero background layer
--------------------------------------------------------- */

.sky-layer,
.hub-sky-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
  z-index: var(--z-sky);
  background: #0e3f8f;
}

/* Match the first-paint position before layoutSky() measures the hub. */
.hub-sky-layer { top: 100vh; }

.sky-layer {
  z-index: 1;
  background: linear-gradient(
    180deg,
    #001d6b 0%,
    #00227a 10%,
    #002a8b 20%,
    #003095 30%,
    #00369e 40%,
    #003ea9 50%,
    var(--hero-section2-sky-join) 100%
  );
}

.sky-layer .sky-img {
  visibility: hidden;
}

.section2-background {
  z-index: var(--z-sky);
  background:
    radial-gradient(
      ellipse 44% 19% at 50% 78%,
      rgba(29, 123, 218, .3) 0%,
      rgba(22, 105, 198, .16) 42%,
      rgba(15, 82, 166, .06) 62%,
      transparent 82%
    ),
    linear-gradient(
      180deg,
      var(--hero-section2-sky-join) 0%,
      #0759c7 18%,
      #0d67cd 25%,
      #0c5dbd 36%,
      #0b4da1 48%,
      #0a3b7f 61%,
      #092b5d 74%,
      #071f45 87%,
      #061326 100%
    );
  pointer-events: none;
}

/* Section 2's own full-height gradient now performs the complete handoff:
   cobalt holds through the opening quarter, then the lower 75% resolves
   continuously into Section 3 navy. No second overlay means no visible edge. */
.section2-background::after {
  content: none;
}

.section2-background__media {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  visibility: hidden;
}

.section2-background__sequence {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100vh;
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.section2-background__sequence.is-section3-background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  visibility: visible;
}

body.section3-uses-sequence-background .comparison-bg {
  visibility: hidden;
}

body.section3-shared-sky-active .section2-background {
  position: fixed;
  inset: 0;
  top: 0 !important;
  width: 100vw;
  height: 100vh !important;
  z-index: 4;
}

.seam-cloud-layer {
  position: absolute;
  left: 0;
  right: 0;
  overflow: visible;
  /* A root-level sibling of both sections: it can sit above the sky, then drop
     behind foreground content whenever the travelling image intersects it. */
  z-index: 7;
  pointer-events: none;
  top: calc(84vh + 100px - 9.8vw);
  height: calc(100vh + 1500px);
}

.seam-cloud-layer.is-section3-visible {
  z-index: 8;
  overflow: visible;
}

/* Whenever the travelling cloud intersects foreground content, drop it below
   the page layer so text, cards, and controls remain readable. */
.seam-cloud-layer.is-behind-content {
  z-index: 5;
}

.seam-cloud-img {
  position: absolute;
  top: 0;
  left: -4vw;
  max-width: none;
  filter: drop-shadow(0 18px 24px rgba(35, 69, 112, 0.22));
  width: 30vw;
  height: auto;
  will-change: transform;
}

.sky-img,
.hub-sky-img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, 0);
  will-change: transform;
}

.grain {
  position: fixed;
  inset: -10%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.top-veil {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 200px;
  z-index: var(--z-veil);
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(4, 12, 28, 0.32), rgba(4, 12, 28, 0));
}

body.nav-on-light .top-veil {
  opacity: 0;
}

/* ---------------------------------------------------------
   Navigation
--------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 64px);
}

.logo-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 126px;
}

.logo-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.4px;
  fill: rgba(255, 255, 255, 0.92);
  transition: fill 0.22s ease;
}

.logo-center-dot {
  fill: var(--red);
  filter: drop-shadow(0 0 4px rgba(217, 38, 50, 0.75));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.22s ease;
}

body.nav-on-light .logo-text {
  fill: rgba(10, 19, 34, 0.82);
}

body.nav-on-light .nav-links a {
  color: rgba(10, 19, 34, 0.78);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 84px;
  height: 1.5px;
  background: var(--red);
  transition: right 0.35s var(--ease-out-quart);
}

.nav-links a:hover::after { right: 0; }

/* ---------------------------------------------------------
   Layout shells
--------------------------------------------------------- */

.page {
  position: relative;
  z-index: var(--z-content);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 96px;
  background: #050505;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  padding: 0 clamp(24px, 6vw, 72px);
  max-width: 1520px;
  margin: 0 auto;
  width: 100%;
}

/* ---------------------------------------------------------
   Hero copy
--------------------------------------------------------- */

.hero-copy {
  will-change: transform, opacity;
}

.hero-eyebrow {
  margin: 0 0 86px;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(14.3px, 0.935vw, 15.4px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.22em;
}

.hero-eyebrow span {
  margin: 0 0.35em;
  color: var(--red);
}

.hero-headline {
  position: relative;
  top: -30px;
  margin: 0;
  font-size: clamp(49px, 3.96vw, 61px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  white-space: nowrap;
  transform: scaleX(0.965);
  transform-origin: left top;
}

.hero-headline .line {
  display: block;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  translate: 0 0.72em;
  animation: hero-title-slide-up 1.15s var(--ease-out-quart) forwards;
}

.hero-headline .line + .line {
  margin-top: 0;
  animation-delay: 0.14s;
}

@keyframes hero-title-slide-up {
  to {
    opacity: 1;
    clip-path: inset(-0.15em -0.1em -0.35em -0.1em);
    translate: 0 0;
  }
}

.hero-headline .squiggle-stroke {
  stroke: var(--red);
  stroke-width: 7;
}

.hero-headline__period {
  color: var(--red);
}

.underline-word {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.squiggle {
  position: absolute;
  left: 0;
  bottom: -0.14em;
  width: 100%;
  height: 0.3em;
  overflow: visible;
}

.squiggle-stroke {
  fill: none;
  stroke: var(--red);
  stroke-width: 3.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.92;
}

.hero-sub {
  margin: 32px 0 0;
  max-width: 30ch;
  font-size: clamp(17.5px, 1.2vw, 19.5px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.74;
}

.hero-cta-row {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: var(--white);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 23px;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 12px 26px -13px rgba(4, 10, 24, 0.65);
  transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart), background 0.3s;
}

.btn-primary .arrow {
  transition: transform 0.35s var(--ease-out-quart);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #101c33;
  box-shadow: 0 18px 36px -12px rgba(4, 10, 24, 0.8);
}

.btn-primary:hover .arrow { transform: translateX(4px); }

.hero .btn-primary {
  background: var(--red);
  box-shadow: 0 12px 26px -13px rgba(217, 38, 50, 0.72);
  padding: 13px 21px;
  font-size: 14.25px;
  text-decoration: none;
}

.hero .btn-primary:hover {
  background: #b91f2a;
  box-shadow: 0 18px 36px -12px rgba(217, 38, 50, 0.58);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.4s var(--ease-out-quart), border-color 0.3s, background 0.3s, color 0.3s;
}

.hero .btn-secondary {
  padding: 12px 20px;
  font-size: 14.25px;
}

.btn-secondary .arrow {
  transition: transform 0.35s var(--ease-out-quart);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.btn-secondary:hover .arrow { transform: translateX(4px); }

.cta-micro {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------
   Hero proof row
--------------------------------------------------------- */

.hero-proof {
  position: relative;
  isolation: isolate;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0 clamp(24px, 6vw, 72px) clamp(48px, 7vh, 88px);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  will-change: transform, opacity;
}

.hero-proof::before {
  content: none;
}

.proof-seg {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-size: clamp(12.6px, 1.035vw, 14.85px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px -18px rgba(4, 10, 24, 0.5);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.proof-seg::before {
  content: "";
  position: absolute;
  inset: -60% -35%;
  background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, 0.17) 49%, transparent 64%);
  transform: translateX(-75%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.proof-seg:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.37);
  box-shadow: 0 17px 36px -18px rgba(4, 10, 24, 0.52), 0 0 10px rgba(255, 255, 255, 0.04);
}

.proof-seg:hover::before {
  transform: translateX(75%);
}

.proof-seg b {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
}

.proof-seg--process {
  font-size: clamp(11.7px, 0.945vw, 13.95px);
}

.proof-arrow {
  position: relative;
  top: -0.03em;
  display: inline-block;
  margin-inline: 0.08em;
  font-size: 0.82em;
  font-weight: 500;
  opacity: 0.68;
}

.proof-stars {
  font-size: 0.8em;
  letter-spacing: 1.5px;
  color: #fbbc04;
  margin-right: 1px;
}

.proof-divider {
  display: none;
}

/* ---------------------------------------------------------
   Hero stage (laptop anchor + notifications)
--------------------------------------------------------- */

.hero-stage {
  position: relative;
  height: min(56vh, 520px);
  min-height: 340px;
}

.laptop-anchor {
  position: absolute;
  pointer-events: none;
}

.laptop-anchor--hero {
  top: 48%;
  right: -2%;
  width: clamp(520px, 42vw, 640px);
  aspect-ratio: 1536 / 1024;
  transform: translateY(-42%);
}

.hero-device-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.notification {
  --notification-enter-x: 0px;
  --notification-enter-y: 0px;
  position: absolute;
  translate: var(--notification-enter-x) var(--notification-enter-y);
  opacity: 1;
  clip-path: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14.4px 19.2px;
  border-radius: 15.6px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px -16px rgba(4, 10, 24, 0.5);
}

.notif-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex: none;
  color: var(--white);
}

.notif-icon svg { width: 19.2px; height: 19.2px; }

.notif-icon--meeting { background: rgba(52, 199, 89, 0.35); }
.notif-icon--enquiry { background: rgba(217, 38, 50, 0.35); }
.notif-icon--whatsapp { background: rgba(37, 211, 102, 0.35); }

.notif-text { display: flex; flex-direction: column; gap: 2.4px; }

.notif-text strong {
  font-size: 15.6px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.notif-text em {
  font-style: normal;
  font-size: 13.8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.notif--meeting { top: 3%; right: 43%; z-index: 5; }
.notif--enquiry { top: 20%; right: 24%; z-index: 6; }
.notif--whatsapp { top: 38%; right: 3%; z-index: 7; }

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ---------------------------------------------------------
   Problems section
--------------------------------------------------------- */

.problems-section {
  position: relative;
  z-index: var(--z-content);
  overflow: hidden;
  color: #fff;
  background: #050505;
}

.problems-section::before {
  content: none;
}

.problems-section__inner {
  position: relative;
  width: min(1280px, calc(100% - clamp(40px, 8vw, 128px)));
  margin: 0 auto;
  padding: clamp(118px, 10vw, 150px) 0 clamp(160px, 12vw, 200px);
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 5.8vw, 90px);
}

.problems-section__title {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
}

.problems-section__title .squiggle-stroke {
  stroke-width: 7;
}

.problems-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 1.8vw, 26px);
}

.problem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  gap: 0;
  min-height: 218px;
  padding: 30px clamp(26px, 2.4vw, 34px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform .3s var(--ease-out-quart),
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

.problem-card > * {
  position: relative;
  z-index: 1;
}

.problem-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -22%;
  bottom: -42%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(217, 38, 50, .13) 0%, rgba(217, 38, 50, .045) 42%, transparent 72%);
  transition: opacity .3s ease;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 14px;
  height: 14px;
  z-index: 2;
  border-radius: 0;
  background:
    linear-gradient(var(--red), var(--red)) center / 14px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) center / 2px 14px no-repeat;
  opacity: 1;
  transform: none;
  box-shadow: 0 0 0 0 rgba(217, 38, 50, 0);
  transition:
    width .3s var(--ease-out-quart),
    height .3s var(--ease-out-quart),
    border-radius .3s ease,
    background-size .3s var(--ease-out-quart),
    box-shadow .3s ease,
    transform .3s var(--ease-out-quart);
}

.problem-card:hover,
.problem-card:focus-visible,
.problem-card.is-expanded {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .23);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

.problem-card:hover::after,
.problem-card:focus-visible::after,
.problem-card.is-expanded::after {
  opacity: 1;
}

.problem-card:hover::before,
.problem-card:focus-visible::before,
.problem-card.is-expanded::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-size: 7px 7px, 7px 7px;
  transform: translate(-3px, 3px);
  box-shadow: 0 0 0 4px rgba(217, 38, 50, .08);
}

.problem-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.problem-card__heading {
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 1.45vw, 21px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  transition:
    color .3s ease,
    font-size .3s var(--ease-out-quart);
}

.problem-card:hover .problem-card__heading,
.problem-card:focus-visible .problem-card__heading,
.problem-card.is-expanded .problem-card__heading {
  color: rgba(255, 255, 255, .42);
  font-size: clamp(15px, 1.1vw, 16.5px);
}

.problem-card__text {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: clamp(17px, 1.3vw, 19.5px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.005em;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    max-height .3s var(--ease-out-quart),
    margin-top .3s var(--ease-out-quart),
    opacity .28s ease,
    transform .3s var(--ease-out-quart),
    color .3s ease;
}

.problem-card:hover .problem-card__text,
.problem-card:focus-visible .problem-card__text,
.problem-card.is-expanded .problem-card__text {
  max-height: 7em;
  margin-top: clamp(24px, 2vw, 30px);
  opacity: 1;
  transform: none;
  color: #fff;
}

@media (min-width: 681px) {
  .problems-section__title { white-space: nowrap; }
}

@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
  .problem-card {
    box-sizing: border-box;
    height: 247px;
    min-height: 247px;
    padding: 30px 26px;
  }

  .problem-card::before {
    top: 24px;
    right: 24px;
  }
}

@media (max-width: 1100px) {
  .problems-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .problems-section__inner {
    width: min(100% - 32px, 560px);
    padding: clamp(88px, 18vw, 108px) 0 clamp(140px, 28vw, 168px);
    gap: clamp(64px, 15vw, 80px);
  }

  .problems-section__title {
    font-size: clamp(32px, 9.5vw, 42px);
    line-height: 1.12;
  }

  .problems-section__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-card {
    min-height: 185px;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .problem-card::before {
    top: 20px;
    right: 20px;
  }
}

/* ---------------------------------------------------------
   Hub section
--------------------------------------------------------- */

.hub {
  position: relative;
  z-index: var(--z-content);
  min-height: 100vh;
  padding: clamp(108px, 14vh, 150px) clamp(24px, 6vw, 72px) clamp(96px, 12vh, 150px);
}

.hub-headline {
  position: relative;
  top: auto;
  translate: none;
}

.sources {
  translate: none;
}

.laptop-anchor--hub {
  translate: none;
}

.hub-headline {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  will-change: transform, opacity;
}

.hub-headline .line { display: block; }

.hub-headline .line + .line {
  margin-top: 10px;
}

.hub-headline .squiggle-stroke {
  stroke-width: 7;
}

@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .hub-headline {
    position: relative;
    top: auto;
    z-index: 4;
    translate: 0;
  }

  .sources {
    position: relative;
    top: auto;
    z-index: 3;
    translate: 0;
  }
}

.hub-sub {
  margin: 26px auto 0;
  max-width: 660px;
  text-align: center;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  line-height: 1.65;
  color: var(--white);
}

/* ---------------------------------------------------------
   Source cards
--------------------------------------------------------- */

.sources {
  margin: clamp(58px, 7.5vh, 88px) auto 0;
  max-width: 1480px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(20px, 2vw, 32px);
  flex-wrap: nowrap;
}

.source-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}

.source-group-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.source-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.source-hr {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.2));
}

.source-row {
  display: flex;
  gap: clamp(12px, 1.2vw, 20px);
  flex-wrap: nowrap;
}

.source-card {
  --glass-glint-x: 14%;
  --glass-glint-y: 8%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: clamp(96px, 7.8vw, 164px);
  min-height: 164px;
  padding: 28px 12px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 46px -24px rgba(0, 24, 76, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 1;
  transform: none;
  transition: transform 0.5s var(--ease-out-quart);
}

/* Light-catching layers sit above the glass body but below its content. */
.source-card::before,
.source-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.source-card::before {
  background:
    radial-gradient(ellipse 105% 72% at var(--glass-glint-x) var(--glass-glint-y),
      rgba(232, 246, 255, 0.13) 0%,
      rgba(219, 240, 255, 0.055) 29%,
      rgba(255, 255, 255, 0) 61%),
    linear-gradient(132deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(226, 244, 255, 0.035) 25%,
      rgba(255, 255, 255, 0) 52%);
}

.source-card::after {
  background:
    linear-gradient(135deg,
      rgba(216, 241, 255, 0.035) 12%,
      rgba(255, 255, 255, 0) 50%,
      rgba(1, 31, 84, 0.09) 100%);
  box-shadow:
    inset 1px 0 0 rgba(240, 249, 255, 0.13),
    inset 0 1px 0 rgba(247, 252, 255, 0.16),
    inset -1px -1px 0 rgba(0, 28, 80, 0.055),
    inset 0 0 20px rgba(185, 226, 255, 0.025);
}

.source-card > * {
  position: relative;
  z-index: 1;
}

.source-card:nth-child(2n) { --glass-glint-x: 20%; --glass-glint-y: 5%; }
.source-card:nth-child(3n) { --glass-glint-x: 10%; --glass-glint-y: 13%; }
.source-card:nth-child(4n) { --glass-glint-x: 25%; --glass-glint-y: 10%; }
.source-group[data-group="offline"] .source-card:nth-child(1) { --glass-glint-x: 18%; --glass-glint-y: 11%; }
.source-group[data-group="offline"] .source-card:nth-child(2) { --glass-glint-x: 12%; --glass-glint-y: 6%; }
.source-group[data-group="offline"] .source-card:nth-child(3) { --glass-glint-x: 23%; --glass-glint-y: 14%; }
.source-group[data-group="offline"] .source-card:nth-child(4) { --glass-glint-x: 16%; --glass-glint-y: 9%; }

.source-card:hover {
  transform: translateY(-4px);
}

.source-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  background: transparent;
}

.source-icon img { width: 100%; height: 100%; }

.source-icon--ink { color: var(--ink); }

.source-icon--ink img {
  filter: brightness(0) invert(1);
}

.source-name {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ---------------------------------------------------------
   Connectors
--------------------------------------------------------- */

.connectors {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: var(--z-connectors);
  pointer-events: none;
}

.connectors path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke 0.4s;
}

/* ---------------------------------------------------------
   Laptop anchors in hub / spacer
--------------------------------------------------------- */

.laptop-anchor--hub {
  position: relative;
  width: min(470px, 70vw);
  aspect-ratio: 1536 / 1024;
  margin: clamp(140px, calc(9vh + 70px), 180px) auto 0;
}

.hub-spacer {
  /* Must leave enough scrollable room below the laptop anchor for the
     synced scroll-trigger (anchorHub reaching 50% viewport) to actually be
     reachable — on tall viewports 12vh wasn't enough and the laptop/sky
     journey could stall short of its final resting state. */
  height: clamp(110px, calc(22vh - 100px), 260px);
}

/* ---------------------------------------------------------
   Founder-led choice section
--------------------------------------------------------- */

.choice-section {
  position: relative;
  z-index: 9;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 34%, rgba(31, 107, 210, 0.28), transparent 32%),
    radial-gradient(circle at 12% 82%, rgba(217, 38, 50, 0.09), transparent 28%),
    linear-gradient(
      180deg,
      #071938 0%,
      #07172f 12%,
      #061326 25%,
      #081a36 62%,
      #071226 100%
    );
  border-top: 0;
}

.choice-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 76%, transparent);
}

.choice-section__glow {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -260px;
  top: 18%;
  border-radius: 50%;
  background: rgba(30, 112, 235, 0.16);
  filter: blur(90px);
  pointer-events: none;
}

.choice-section__inner {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: min(1380px, calc(100% - clamp(48px, 8vw, 128px)));
  margin: 0 auto;
  padding: clamp(92px, 10vw, 148px) 0 clamp(88px, 9vw, 132px);
  display: grid;
  grid-template-columns: 241px minmax(430px, 610px);
  column-gap: clamp(18px, 1.8vw, 30px);
  row-gap: 60px;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.choice-section__title {
  grid-column: 2;
  grid-row: 1;
  width: 80%;
  max-width: none;
  margin: 0;
  color: var(--white);
  text-align: left;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.choice-section__founder {
  display: contents;
}

.choice-founder {
  position: relative;
  left: -30px;
  display: flex;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.choice-founder__photo {
  width: 241px;
  height: 241px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 24%;
  border: 2px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 0 7px rgba(72, 145, 244, 0.11), 0 20px 46px rgba(0, 0, 0, 0.3);
}

.choice-founder__caption { margin: 0; text-align: center; text-transform: uppercase; line-height: 1.2; }
.choice-founder__caption strong,
.choice-founder__caption span { display: block; }
.choice-founder__caption strong { font-size: 14px; letter-spacing: .2em; }
.choice-founder__caption span { margin-top: 5px; color: rgba(255,255,255,.56); font-size: 10px; font-weight: 700; letter-spacing: .28em; }

.choice-section__copy {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  width: 80%;
  max-width: none;
  margin-top: 0;
  color: var(--white);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.78;
}

.choice-section__copy p { margin: 0; }
.choice-question-list { display: block; margin-top: 14px; margin-left: 15px; }
.choice-question-list > span { display: block; position: relative; padding-left: 20px; }
.choice-question-list > span + span { margin-top: 5px; }
.choice-question-list > span::before { content: "•"; position: absolute; left: 0; color: rgba(218,226,237,.62); }
.choice-section__beat,
.choice-section__beat:not(.choice-section__beat--final) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(22.5px, 1.53vw, 24.3px);
}
.choice-section__beat--principle p + p { margin-top: clamp(14px, 1.2vw, 18px); }
.choice-section__bullet-list {
  margin: 0.45em 0 0;
  padding: 0 0 0 1.25em;
  list-style: none;
}
.choice-section__bullet-list li { position: relative; padding-left: 1.1em; }
.choice-section__bullet-list li::before { content: "\2014"; position: absolute; left: 0; }
.choice-section__beat + .choice-section__beat { margin-top: clamp(28px, 2.1vw, 34px); }
.choice-section__copy em { color: #fff; font-weight: 600; }
.choice-section__copy .choice-section__question { color: rgba(255,255,255,.94); font-weight: 600; }
.choice-section__final-setup,
.choice-section__final-conclusion { display: inline; }
.choice-section__final-setup { color: #fff; }
.choice-section__final-conclusion { color: #fff; font-size: 1em; font-weight: 400; }

@media (min-width: 981px) {
  .choice-section { min-height: 175vh; min-height: 175svh; }
  .choice-section__inner {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding: clamp(34px, 5vh, 58px) 0;
    grid-template-columns: 241px minmax(620px, 700px);
    grid-template-rows: auto auto;
    row-gap: clamp(28px, 4vh, 44px);
  }
  .choice-section__title { font-size: clamp(32px, 2.65vw, 44px); }
  .choice-founder { grid-row: 1 / span 2; align-self: center; }
  .choice-section__copy {
    max-width: 560px;
    font-size: clamp(28px, 1.68vw, 32px);
    line-height: 1.48;
  }
  .choice-section__beat + .choice-section__beat { margin-top: 40px; }
  .choice-section__beat--principle + .choice-section__beat { margin-top: clamp(38px, 3.6vh, 44px); }
  .choice-question-list { margin-top: clamp(18px, 1.8vh, 22px); }
  .choice-question-list > span + span { margin-top: clamp(16px, 1.7vh, 20px); line-height: 1.4; }
}

@media (min-width: 981px) and (max-width: 1366px) {
  .choice-section__copy { max-width: 416px; }
}

@media (min-width: 981px) and (max-height: 920px) {
  .choice-section__inner {
    padding: 26px 0;
    row-gap: 22px;
  }
  .choice-section__title { font-size: clamp(29px, 2.5vw, 38px); line-height: 1.12; }
  .choice-founder__photo { width: 190px; height: 190px; }
  .choice-section__copy { max-width: 416px; font-size: clamp(21px, 1.55vw, 25px); line-height: 1.48; }
  .choice-section__beat + .choice-section__beat { margin-top: 28px; }
  .choice-question-list { margin-top: 14px; }
  .choice-question-list > span + span { margin-top: 12px; line-height: 1.4; }
  .choice-section__final-conclusion { margin-top: 6px; }
}

.decision-framework {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  width: calc(100% - 80px);
  max-width: 760px;
  margin-left: 80px;
  margin-right: 0;
  padding-left: 30px;
  justify-self: center;
  text-align: left;
}
.decision-framework__line {
  position: absolute;
  left: 4px;
  top: 100px;
  bottom: 0;
  width: 1px;
  background: rgba(225, 231, 240, .28);
  transform-origin: top center;
}
.decision-framework__heads {
  padding: 0 0 20px;
  color: rgba(255,255,255,.9);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.02em;
}
.decision-framework__rows { margin: 0; padding: 0; list-style: none; }
.decision-row {
  position: relative;
  min-height: 114px;
  padding: 17px 0 16px;
  display: flex;
  align-items: center;
}
.decision-row__dot {
  position: absolute;
  z-index: 1;
  left: -29px;
  top: 30px;
  bottom: auto;
  width: 7px;
  height: 7px;
  translate: 0 -50%;
  border: 1px solid rgba(239, 243, 248, .72);
  border-radius: 50%;
  background: #0a1931;
  transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
}
.decision-row__customer { width: min(100%, 54ch); }
.decision-row__customer p { margin: 0; color: rgba(205,213,224,.62); font-size: clamp(12px, .82vw, 15px); font-weight: 600; line-height: 1.25; letter-spacing: -.015em; transition: font-size .24s ease, color .24s ease; }
.decision-row__customer span { display: block; max-width: 52ch; margin-top: 7px; color: rgba(225,232,242,.5); font-size: clamp(11px, .82vw, 13px); line-height: 1.48; transition: opacity .24s ease, transform .24s ease, color .24s ease, font-size .24s ease; }
.decision-row--conversion .decision-row__dot { border-color: rgba(239, 243, 248, .72); background: #0a1931; }

@media (hover: hover) and (pointer: fine) {
  .decision-row__customer span { opacity: 0; transform: translateY(3px); }
  .decision-row:hover .decision-row__customer span,
  .decision-row:focus-within .decision-row__customer span { opacity: 1; transform: translateY(0); color: #fff; font-size: clamp(14px, 1.05vw, 17px); }
  .decision-row:hover .decision-row__customer p,
  .decision-row:focus-within .decision-row__customer p { color: #fff; font-size: clamp(18px, 1.42vw, 22px); }
  .decision-row:hover .decision-row__dot,
  .decision-row:focus-within .decision-row__dot { border-color: var(--red); background: var(--red); transform: scale(2); }
}

@media (max-width: 1080px) {
  .choice-section__inner { grid-template-columns: 176px minmax(400px, 560px); column-gap: 24px; }
  .choice-section__founder { display: contents; }
  .choice-founder__photo { width: 176px; height: 176px; }
  .decision-framework__heads { font-size: 18px; }
}

@media (max-width: 980px) {
  .choice-section__inner { width: calc(100% - 40px); padding: 82px 0 78px; display: block; }
  .choice-section__title { margin-bottom: 56px; font-size: clamp(24px, 5.6vw, 36px); }
  .choice-section__founder { max-width: none; display: block; }
  .choice-founder { flex-direction: row; justify-content: flex-start; gap: 20px; margin: 0 0 34px 5px; }
  .choice-founder { left: 0; }
  .choice-founder__photo { width: 151px; height: 151px; }
  .choice-founder__caption { text-align: left; }
  .choice-section__copy { margin-top: 0; font-size: clamp(17px, 2.35vw, 20px); line-height: 1.5; }
  .choice-section__beat,
  .choice-section__beat:not(.choice-section__beat--final) {
    font-size: clamp(16.2px, 4.68vw, 18.9px);
  }
  .choice-section__beat + .choice-section__beat { margin-top: 26px; }
  .choice-question-list { margin-top: 12px; }
  .choice-question-list > span + span { margin-top: 10px; line-height: 1.4; }
  .decision-framework { width: 100%; margin: 72px auto 0; padding-left: 24px; }
  .decision-framework__line { left: 3px; top: 108px; bottom: 50px; }
  .decision-framework__heads { font-size: 18px; letter-spacing: -.02em; }
  .decision-row { min-height: 0; padding: 20px 0; }
  .decision-row__dot { left: -24px; }
  .decision-row__customer p { color: #fff; font-size: 15px; }
  .decision-row__customer span { margin-top: 6px; font-size: 11px; }
}

/* Section 3 — two-column editorial layout with a static conversion story. */
.choice-section {
  min-height: 100vh;
  min-height: 100svh;
}
.choice-section__inner {
  position: relative;
  top: auto;
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  width: min(1180px, calc(100% - clamp(48px, 8vw, 112px)));
  padding: clamp(38px, 5vh, 58px) 0;
  grid-template-columns: minmax(0, 600px) minmax(380px, 520px);
  grid-template-rows: auto auto;
  column-gap: clamp(82px, 7.5vw, 104px);
  row-gap: 0;
  align-content: center;
  align-items: center;
}
.choice-section__copy-column {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: end;
  width: min(100%, 600px);
  min-width: 0;
  margin: -30px -38px;
  padding: 45px 53px 47px;
  display: grid;
  grid-template-rows: auto auto;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: rgba(2,10,24,.82);
}
.choice-section__title-area {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: clamp(34px, 4vh, 42px);
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2vw, 24px);
}
.choice-section__title {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 560px;
  margin: 0;
}
.choice-section__copy {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  max-width: 525px;
  line-height: 1.58;
}
.choice-section__copy .choice-section__beat--final {
  color: rgba(255,255,255,.74);
  font-size: clamp(16.5px, 1.1vw, 18.5px);
  font-weight: 500;
  line-height: 1.62;
}
.choice-section__beat--final span {
  display: block;
  margin-top: 13px;
}
.choice-section__beat + .choice-section__beat { margin-top: clamp(24px, 3vh, 34px); }
.choice-section__beat--principle + .choice-section__beat { margin-top: clamp(24px, 3vh, 34px); }
.choice-section__visual-column {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  width: 100%;
  max-width: 470px;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.choice-founder {
  position: static;
  display: flex;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 128px;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  margin: 0;
  padding: 0;
  border: 0;
}
.choice-founder__photo { width: 116px; height: 116px; }
.choice-founder__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.choice-founder__caption strong,
.choice-founder__caption span { display: inline; margin-top: 0; }
.choice-founder__separator { color: rgba(255,255,255,.38); }

.choice-flow {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
}
@media (min-width: 981px) {
  .choice-section__visual-column {
    position: static;
    transform: translateY(-25px);
  }

  .choice-flow {
    gap: 20px;
    transform: none;
    transform-origin: top center;
  }

  .choice-flow__inputs {
    gap: 14px;
  }

  .choice-flow__result {
    margin-top: 12px;
  }
}
.choice-flow__inputs {
  width: min(100%, 470px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.choice-flow__input-row,
.choice-flow__split-arrows {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(8px, 1.1vw, 14px);
  align-items: center;
}
.choice-flow__input-row {
  position: relative;
}
.choice-flow__input {
  width: 100%;
  min-height: 118px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .27);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.choice-flow__input strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.98);
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.choice-flow__label-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: rgba(255,255,255,.88);
}
.choice-flow__label-icon svg {
  width: 100%;
  height: 100%;
}
.choice-flow__input > span:not(.choice-flow__label-icon) {
  max-width: 24ch;
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.35;
}
.choice-flow__operator {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  justify-self: center;
  align-self: center;
  color: rgba(255,255,255,.78);
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 400;
  line-height: 1;
  transform: translate(-50%, -50%);
}
.choice-flow__result {
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 9px 18px 10px;
  display: block;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,.96);
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-align: center;
}
.choice-flow__arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 24px;
  color: rgba(255,255,255,.42);
  font-size: 0;
}
.choice-flow__arrow::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  width: 1px;
  height: 17px;
  background: currentColor;
}
.choice-flow__arrow::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}
.choice-flow__enquiry {
  width: fit-content;
  min-width: 220px;
  margin: 0 auto;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 14px;
  background: rgba(255,255,255,.11);
  box-shadow: 0 15px 32px -18px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.choice-flow__enquiry-icon {
  width: 54px;
  max-width: 54px;
  height: 54px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(217,38,50,.35);
}
.choice-flow__enquiry-icon svg { width: 26px; height: 26px; }
.choice-flow__enquiry > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.choice-flow__enquiry strong { color: #fff; font-size: 14px; line-height: 1.2; }
.choice-flow__enquiry em { color: rgba(255,255,255,.58); font-size: 10px; font-style: normal; line-height: 1.2; }

/* Section 2 now follows the black hero as a clean white section. */
.choice-section {
  color: var(--ink);
  background: #fff;
}

.choice-section::before {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(10, 19, 34, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 19, 34, .045) 1px, transparent 1px);
}

.choice-section__glow {
  display: none;
}

.choice-section__copy-column {
  border-color: rgba(10, 19, 34, .1);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 70px -54px rgba(10, 19, 34, .35);
}

.choice-section__title,
.choice-section__copy,
.choice-section__beat,
.choice-section__beat:not(.choice-section__beat--final),
.choice-section__copy .choice-section__beat--final {
  color: var(--ink);
}

.choice-section__copy .choice-section__beat--final {
  color: rgba(10, 19, 34, .76);
}

.choice-founder__photo {
  border-color: rgba(10, 19, 34, .16);
  box-shadow: 0 0 0 7px rgba(217, 38, 50, .06), 0 20px 46px rgba(10, 19, 34, .16);
}

.choice-founder__caption strong {
  color: var(--ink);
}

.choice-founder__caption span {
  color: rgba(10, 19, 34, .48);
}

.choice-flow__input,
.choice-flow__result,
.choice-flow__enquiry {
  border-color: rgba(10, 19, 34, .14);
  background: rgba(10, 19, 34, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
}

.choice-flow__input strong,
.choice-flow__label-icon,
.choice-flow__result,
.choice-flow__enquiry strong {
  color: var(--ink);
}

.choice-flow__input > span:not(.choice-flow__label-icon),
.choice-flow__operator,
.choice-flow__arrow,
.choice-flow__enquiry em {
  color: rgba(10, 19, 34, .56);
}

.choice-flow__enquiry {
  box-shadow: 0 18px 44px -34px rgba(10, 19, 34, .36), inset 0 1px 0 rgba(255, 255, 255, .82);
}

.choice-flow__enquiry-icon {
  color: #fff;
  background: var(--red);
}

@media (max-width: 980px) {
  .choice-section__inner {
    width: min(680px, calc(100% - 40px));
    min-height: auto;
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 0;
    column-gap: 0;
  }
  .choice-section__copy-column {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    width: 100%;
    padding: 25px 24px 28px;
    display: block;
  }
  .choice-section__title-area {
    grid-column: 1;
    grid-row: auto;
    margin-bottom: 40px;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 18px;
  }
  .choice-section__title { margin: 0; }
  .choice-section__copy { grid-column: 1; grid-row: auto; }
  .choice-section__copy .choice-section__beat--final { font-size: clamp(16px, 2.2vw, 18px); }
  .choice-section__visual-column { grid-column: 1; grid-row: 2; max-width: 520px; margin-top: 40px; }
  .choice-founder { width: 116px; flex-direction: column; gap: 12px; }
  .choice-founder__photo { width: 116px; height: 116px; }
  .choice-founder__caption { text-align: center; }
}

@media (max-width: 640px) {
  .choice-section__inner { padding-top: 92px; padding-bottom: 52px; }
  .choice-flow__inputs {
    width: min(100%, 350px);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .choice-flow__input-row,
  .choice-flow__split-arrows { column-gap: 8px; }
}

@media (max-width: 440px) {
  .choice-section__inner { width: min(100% - 28px, 680px); padding: 92px 0 48px; }
  .choice-section__copy-column { padding: 22px 18px 24px; border-radius: 22px; }
  .choice-section__title-area {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }
  .choice-founder { width: 96px; gap: 10px; }
  .choice-founder__photo { width: 96px; height: 96px; }
  .choice-founder__caption strong { font-size: 11px; letter-spacing: .17em; }
  .choice-founder__caption span { font-size: 9px; letter-spacing: .22em; }
  .choice-flow { gap: 9px; }
  .choice-flow__inputs { width: 100%; gap: 7px; }
  .choice-flow__input-row,
  .choice-flow__split-arrows { column-gap: 6px; }
  .choice-flow__input {
    min-height: 104px;
    padding: 17px 10px;
  }
  .choice-flow__input strong { gap: 6px; font-size: 11px; letter-spacing: .08em; }
  .choice-flow__label-icon { width: 17px; height: 17px; }
  .choice-flow__input > span:not(.choice-flow__label-icon) { max-width: 16ch; font-size: 12px; }
  .choice-flow__operator { font-size: 20px; }
  .choice-flow__result {
    width: auto;
    min-height: 0;
    padding: 8px 14px 9px;
    font-size: clamp(15px, 4.1vw, 17px);
  }
  .choice-flow__arrow { height: 18px; }
  .choice-flow__arrow::before { height: 12px; }
  .choice-flow__arrow::after { top: 9px; }
}

@media (min-width: 981px) and (max-width: 1366px) {
  .choice-section {
    min-height: 100svh;
  }

  .choice-section__inner {
    min-height: 100svh;
    width: min(1180px, calc(100% - clamp(44px, 4vw, 72px)));
    padding: clamp(74px, 11vh, 100px) 0 clamp(58px, 8vh, 78px);
    grid-template-columns: minmax(400px, 520px) minmax(0, 500px);
    column-gap: clamp(80px, 7vw, 96px);
    align-content: center;
    justify-content: center;
  }

  .choice-section__copy-column {
    width: min(100%, 520px);
    margin: -26px -32px;
    padding: 45px 47px 47px;
  }

  .choice-section__title-area {
    grid-template-columns: 112px minmax(0, 1fr);
    margin-bottom: 36px;
    gap: 20px;
  }

  .choice-section__title {
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1.12;
  }

  .choice-section__copy {
    max-width: 485px;
  }

  .choice-section__copy .choice-section__beat--final {
    font-size: clamp(16.5px, 1.3vw, 18px);
    line-height: 1.58;
  }

  .choice-founder {
    width: 112px;
  }

  .choice-founder__photo {
    width: 112px;
    height: 112px;
  }

  .choice-section__visual-column {
    max-width: 480px;
  }

  .choice-flow {
    gap: 20px;
  }

  .choice-flow__inputs {
    width: min(100%, 480px);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .choice-flow__input-row,
  .choice-flow__split-arrows {
    column-gap: clamp(10px, 1.2vw, 16px);
  }

  .choice-flow__input {
    min-height: 120px;
    padding: 24px 20px;
  }

  .choice-flow__input strong {
    font-size: 17px;
    letter-spacing: .12em;
  }

  .choice-flow__input > span:not(.choice-flow__label-icon) {
    max-width: 17ch;
    font-size: 15px;
  }

  .choice-flow__result {
    width: auto;
    min-height: 0;
    padding: 0;
    font-size: clamp(16px, 1.35vw, 19px);
  }

  .choice-flow__arrow {
    height: 19px;
  }

  .choice-flow__arrow::before {
    height: 13px;
  }

  .choice-flow__arrow::after {
    top: 10px;
  }

  .choice-flow__enquiry {
    min-width: 258px;
    padding: 16px 20px;
    gap: 13px;
  }

  .choice-flow__enquiry-icon {
    width: 58px;
    max-width: 58px;
    height: 58px;
  }

  .choice-flow__enquiry strong {
    font-size: 15px;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  .choice-section {
    min-height: 100svh;
  }

  .choice-section__inner {
    min-height: 100svh;
    width: min(900px, calc(100% - 44px));
    padding: clamp(70px, 10vh, 88px) 0 clamp(52px, 7vh, 68px);
    display: grid;
    grid-template-columns: minmax(340px, 1.08fr) minmax(300px, .92fr);
    column-gap: clamp(70px, 6.8vw, 78px);
    align-content: center;
    justify-content: center;
  }

  .choice-section__copy-column {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 100%;
    margin: -22px -24px;
    padding: 39px;
    display: grid;
  }

  .choice-section__title-area {
    margin-bottom: 34px;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
  }

  .choice-section__title {
    grid-column: 2;
    grid-row: 1;
    font-size: clamp(24px, 3.5vw, 30px);
    line-height: 1.13;
  }

  .choice-section__copy {
    max-width: calc(100% - 15px);
  }

  .choice-section__copy .choice-section__beat--final {
    font-size: clamp(15.5px, 1.9vw, 17px);
    line-height: 1.5;
  }

  .choice-founder {
    grid-column: 1;
    grid-row: 1;
    width: 92px;
    gap: 10px;
  }

  .choice-founder__photo {
    width: 92px;
    height: 92px;
  }

  .choice-founder__caption strong {
    font-size: 11px;
    letter-spacing: .17em;
  }

  .choice-founder__caption span {
    font-size: 9px;
    letter-spacing: .22em;
  }

  .choice-section__visual-column {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    max-width: 380px;
    margin-top: 0;
    transform: translateY(-25px);
  }

  .choice-flow {
    gap: 20px;
  }

  .choice-flow__inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .choice-flow__input {
    min-height: 108px;
    padding: 20px 12px;
  }

  .choice-flow__input strong {
    gap: 6px;
    font-size: 12px;
    letter-spacing: .08em;
  }

  .choice-flow__label-icon {
    width: 17px;
    height: 17px;
  }

  .choice-flow__input > span:not(.choice-flow__label-icon) {
    max-width: 16ch;
    font-size: 12px;
  }

  .choice-flow__result {
    width: auto;
    min-height: 0;
    padding: 0;
    margin-top: 12px;
    font-size: clamp(15px, 1.85vw, 17px);
  }

  .choice-flow__enquiry {
    min-width: 238px;
    padding: 15px 18px;
  }

  .choice-flow__enquiry-icon {
    width: 54px;
    max-width: 54px;
    height: 54px;
  }
}

/* ---------------------------------------------------------
   Magda belief + proof section
--------------------------------------------------------- */

.choice-section.choice-section--proof {
  min-height: auto;
  color: #fff;
  background: #000;
}

.choice-section.choice-section--proof::before {
  opacity: .34;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.choice-section--proof .choice-section__inner {
  min-height: auto;
  width: min(1420px, calc(100% - clamp(44px, 7vw, 104px)));
  padding: clamp(118px, 9vw, 142px) 0 clamp(56px, 5vw, 74px);
  display: grid;
  grid-template-columns: minmax(400px, 460px) minmax(560px, 1fr);
  gap: clamp(100px, calc(4.5vw + 60px), 124px);
  align-items: start;
  justify-content: center;
}

.choice-section--proof .choice-section__copy-column {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.choice-section--proof .choice-founder {
  width: auto;
  margin: 0 0 clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(14px, 1.5vw, 18px);
}

.choice-section--proof .choice-founder__photo {
  width: clamp(122px, 9.3vw, 138px);
  height: clamp(122px, 9.3vw, 138px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 26px 56px -34px rgba(0, 0, 0, .72);
}

.choice-section--proof .choice-founder__caption {
  margin: 0;
  text-align: left;
  text-transform: none;
}

.choice-section--proof .choice-founder__caption strong,
.choice-section--proof .choice-founder__caption span {
  display: block;
}

.choice-section--proof .choice-founder__caption strong {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.choice-section--proof .choice-founder__caption span {
  color: rgba(255, 255, 255, .68);
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

.choice-section--proof .choice-section__copy {
  width: 100%;
  max-width: 510px;
  margin-top: clamp(20px, 2vw, 28px);
  color: rgba(255, 255, 255, .9);
  font-size: clamp(15.5px, .98vw, 17px);
  line-height: 1.56;
}

.choice-section--proof .choice-section__copy p + p {
  margin-top: .82em;
}

.choice-summary {
  width: 100%;
  max-width: 510px;
  margin-top: clamp(54px, 5vw, 72px);
  text-align: center;
}

.choice-summary__equation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.choice-summary__part strong,
.choice-summary__part span {
  display: block;
}

.choice-summary__part strong {
  color: rgba(255, 255, 255, .96);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .14em;
}

.choice-summary__part span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.45;
}

.choice-summary__operator {
  margin-top: -2px;
  color: var(--red);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.choice-summary__arrow {
  display: block;
  margin: 18px auto 14px;
  color: var(--red);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.choice-summary__payoff {
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .045em;
}

.choice-summary__payoff .squiggle-stroke {
  stroke-width: 5;
}

.choice-section--proof .choice-section__visual-column {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: clamp(40px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 6vw, 88px);
  transform: none;
}

.choice-proof {
  width: 100%;
}

.choice-section--proof .choice-proof + .choice-proof {
  margin-top: clamp(78px, 6.5vw, 104px);
}

.choice-proof__annotation,
.choice-proof__drag-cue,
.choice-proof__transformation {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
}

.choice-proof__annotation {
  min-height: 62px;
  margin-bottom: 20px;
}

.choice-proof__annotation h3 {
  margin: 0;
  color: rgba(255, 255, 255, .95);
  font-size: clamp(22px, 1.55vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.015em;
}

.choice-proof__drag-cue {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
}

.choice-proof__drag-cue span {
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .17em;
}

.choice-proof__drag-hand {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.choice-proof__drag-motion {
  width: 34px;
  height: 10px;
  flex: 0 0 auto;
  opacity: .62;
}

.choice-proof__transformation {
  margin-top: 24px;
}

.choice-proof__client {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .94);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.choice-proof__difference + .choice-proof__difference {
  margin-top: 17px;
}

.choice-proof__difference span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .16em;
}

.choice-proof__difference p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(11.5px, .82vw, 13px);
  line-height: 1.55;
}

.choice-proof .proof__compare {
  width: 50%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.2vw, 26px);
  opacity: 1;
  transform: none;
  animation: none;
}

.choice-proof .proof__frame {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  box-shadow:
    0 18px 44px -34px rgba(10, 19, 34, .58),
    0 1px 0 rgba(255, 255, 255, .82);
}

.choice-proof .proof__mock-tag {
  font-size: 9px;
}

.choice-proof .proof__handle-grip {
  width: 1.8rem;
  height: 1.8rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
}

@media (max-width: 980px) {
  .choice-section--proof .choice-section__inner {
    width: min(720px, calc(100% - 40px));
    padding: clamp(104px, 13vw, 124px) 0 clamp(60px, 9vw, 78px);
    grid-template-columns: 1fr;
    gap: clamp(42px, 7vw, 58px);
  }

  .choice-section--proof .choice-section__copy-column,
  .choice-section--proof .choice-section__visual-column {
    grid-column: 1;
    width: 100%;
    max-width: none;
  }

  .choice-section--proof .choice-section__copy-column {
    grid-row: 1;
  }

  .choice-section--proof .choice-section__visual-column {
    grid-row: 2;
    padding-top: 0;
  }

  .choice-section--proof .choice-founder {
    margin-bottom: 30px;
  }

  .choice-section--proof .choice-section__copy {
    max-width: 640px;
  }

  .choice-summary {
    max-width: 420px;
    margin-top: 56px;
    text-align: left;
  }

  .choice-summary__equation {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .choice-summary__operator {
    margin: 0;
  }

  .choice-summary__arrow {
    margin: 20px 0 16px;
    text-align: left;
  }

  .choice-proof .proof__compare {
    width: 100%;
  }

  .choice-proof__annotation,
  .choice-proof__drag-cue,
  .choice-proof__transformation {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .choice-section--proof .choice-section__inner {
    width: min(100% - 28px, 720px);
    padding: 112px 0 64px;
    gap: 34px;
  }

  .choice-section--proof .choice-founder {
    margin-bottom: 24px;
    gap: 16px;
  }

  .choice-section--proof .choice-founder__photo {
    width: 110px;
    height: 110px;
  }

  .choice-section--proof .choice-section__copy {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.62;
  }

  .choice-proof .proof__compare {
    gap: 14px;
  }

  .choice-proof .proof__frame {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }
}

/* Restructured Magda narrative: copy, principle, then one JP Design example. */
.choice-section--proof .choice-section__inner {
  width: min(1180px, calc(100% - clamp(44px, 7vw, 104px)));
  display: block;
}

.choice-section--proof .choice-section__copy-column,
.choice-section--proof .choice-section__visual-column {
  width: 100%;
  max-width: none;
  margin: 0;
}

.choice-section--proof .choice-section__copy-column {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 230px minmax(0, 504px);
  justify-content: center;
  align-items: start;
  column-gap: 64px;
  padding: clamp(48px, 5vw, 72px) clamp(36px, 5.5vw, 72px) clamp(56px, 6vw, 84px);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: clamp(28px, 2.2vw, 36px);
  background: linear-gradient(135deg, rgba(12, 18, 25, .9), rgba(5, 8, 12, .75));
}

.choice-section--proof .choice-section__copy-column::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 4%;
  bottom: -12%;
  width: 78%;
  height: 58%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(34, 78, 126, .08), transparent 68%);
}

.choice-section--proof .choice-section__copy-column > * {
  position: relative;
  z-index: 1;
}

.choice-section--proof .choice-section__copy {
  width: 100%;
  max-width: 504px;
  margin-top: 0;
  display: block;
  font-size: clamp(18.5px, 1.18vw, 20.5px);
  line-height: 1.78;
}

.choice-section--proof .choice-section__copy-part {
  min-width: 0;
}

.choice-section--proof .choice-section__salutation {
  color: rgba(255, 255, 255, .98);
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 600;
  line-height: 1.35;
}

.choice-section--proof .choice-section__core-statement {
  color: rgba(255, 255, 255, .96);
  font-size: inherit;
  line-height: inherit;
}

.choice-section--proof .choice-section__copy p + p {
  margin-top: 1.05em;
}

.choice-section--proof .choice-section__copy-part .choice-founder {
  float: right;
  width: auto;
  margin: clamp(16px, 1.8vw, 24px) 0 14px 22px;
  gap: 10px;
}

.choice-section--proof .choice-section__copy-part .choice-founder__photo {
  width: 64px;
  height: 64px;
}

.choice-section--proof .choice-section__copy-part .choice-founder__caption strong {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 500;
}

.choice-section--proof .choice-section__copy-part .choice-founder__caption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .38);
  font-size: 10px;
  font-weight: 400;
}

.choice-section--proof .choice-section__copy-column > .choice-founder {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: stretch;
  width: 100%;
  margin: 0;
  flex-direction: column;
  gap: 14px;
}

.choice-section--proof .choice-section__copy-column > .choice-section__copy {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.choice-section--proof .choice-section__approach-title {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: clamp(82px, 7vw, 104px) 0 0;
  color: rgba(255, 255, 255, .98);
  font-size: clamp(24px, 1.8vw, 29px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
}

.choice-section--proof .choice-section__copy-column > .choice-founder .choice-founder__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: none;
}

.choice-section--proof .choice-section__copy-column > .choice-founder .choice-founder__caption {
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.choice-section--proof .choice-section__copy-column > .choice-founder .choice-founder__caption strong {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 500;
}

.choice-section--proof .choice-section__copy-column > .choice-founder .choice-founder__caption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .38);
  font-size: 10px;
  font-weight: 400;
}

.choice-section--proof .choice-section__copy-part p:first-child {
  margin-top: 0;
}

.choice-section--proof .choice-section__copy .choice-section__summary-intro {
  margin-top: .82em;
  margin-bottom: 0;
}

.choice-section--proof .choice-summary {
  grid-column: 1 / -1;
  grid-row: 3;
}

.choice-section--proof .choice-summary {
  max-width: 860px;
  margin: clamp(48px, 4vw, 64px) auto 0;
  text-align: center;
}

.choice-section--proof .choice-summary__equation {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(20px, 2.8vw, 34px);
}

.choice-section--proof .choice-summary__part {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: clamp(28px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 16px 34px -18px rgba(4, 10, 24, .5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.choice-section--proof .choice-summary__part > * {
  position: relative;
  z-index: 1;
}

.choice-section--proof .choice-summary__part::before {
  content: "";
  position: absolute;
  inset: -60% -35%;
  background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, .17) 49%, transparent 64%);
  transform: translateX(-75%);
  transition: transform .65s ease;
  pointer-events: none;
}

.choice-section--proof .choice-summary__part:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .37);
  box-shadow: 0 17px 36px -18px rgba(4, 10, 24, .52), 0 0 10px rgba(255, 255, 255, .04);
}

.choice-section--proof .choice-summary__part:hover::before {
  transform: translateX(75%);
}

@media (prefers-reduced-motion: reduce) {
  .choice-section--proof .choice-summary__part,
  .choice-section--proof .choice-summary__part::before {
    transition: none;
  }
}

.choice-section--proof .choice-summary__part strong {
  font-size: clamp(16px, 1.35vw, 20px);
  letter-spacing: .13em;
}

.choice-section--proof .choice-summary__part span {
  max-width: 280px;
  margin-top: 14px;
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1.5;
}

.choice-section--proof .choice-summary__operator {
  align-self: center;
  margin-top: 0;
  font-size: clamp(25px, 2.2vw, 32px);
}

.choice-section--proof .choice-summary__arrow {
  margin: clamp(34px, 3.5vw, 46px) auto clamp(22px, 2.4vw, 30px);
  font-size: clamp(26px, 2.3vw, 34px);
}

.choice-section--proof .choice-summary__payoff {
  width: min(620px, 100%);
  min-height: 156px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: normal;
}

.choice-section--proof .choice-summary__payoff > strong,
.choice-section--proof .choice-summary__payoff > span {
  max-width: none;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: normal;
}

.choice-section--proof .choice-summary__payoff > span {
  margin-top: 6px;
}

.choice-section--proof .choice-section__visual-column {
  padding-top: 0;
  margin-top: clamp(190px, 14vw, 230px);
  display: block;
}

.choice-proof__pair {
  width: 105.5%;
  margin-left: -2.75%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(76px, 7vw, 96px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 1.8vw, 24px);
}

.choice-proof__image {
  min-width: 0;
  margin: 0;
}

.choice-proof__state {
  position: relative;
  cursor: pointer;
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  background: rgba(255, 255, 255, .02);
  transition: border-color .4s ease, background-color .4s ease;
}

.choice-proof__state:focus-visible {
  outline: 1px solid rgba(217, 38, 50, .7);
  outline-offset: 4px;
}

.choice-proof__state--before {
  align-self: start;
  border-color: rgba(255, 255, 255, .115);
  background: rgba(255, 255, 255, .032);
}

.choice-proof__state--after {
  border-color: rgba(255, 255, 255, .115);
  background: rgba(255, 255, 255, .032);
}

.choice-proof__image figcaption {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .16em;
  text-align: center;
}

.choice-proof__image img {
  display: block;
  width: 100%;
  height: auto;
}

.choice-proof__state--before img {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  filter: brightness(1.01) contrast(1.02);
}

.choice-proof__state--after img {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  filter: brightness(1.01) contrast(1.02);
}

.choice-proof__state .choice-proof__points {
  margin-top: clamp(28px, 3vw, 40px);
}

.choice-proof__pair-arrow {
  position: relative;
  align-self: start;
  width: 100%;
  height: 18px;
  margin-top: clamp(180px, 15vw, 220px);
  color: var(--red);
  font-size: 0;
  opacity: 1;
}

.choice-proof__pair-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  left: 2px;
  height: 2.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.choice-proof__pair-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 14px;
  height: 14px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.choice-section--proof .choice-proof__transformation {
  width: 100%;
  margin: clamp(30px, 3vw, 42px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(20px, 2vw, 28px) minmax(0, 1fr);
  column-gap: clamp(18px, 2.4vw, 34px);
}

.choice-section--proof .choice-proof__client {
  grid-column: 1 / -1;
  margin-bottom: clamp(22px, 2.3vw, 30px);
}

.choice-section--proof .choice-proof__side--before {
  grid-column: 1;
}

.choice-section--proof .choice-proof__side--after {
  grid-column: 3;
}

.choice-section--proof .choice-proof__side {
  min-width: 0;
}

.choice-section--proof .choice-proof__points {
  margin: 0;
  padding: 0 48px 0 0;
  display: block;
  list-style: none;
}

.choice-section--proof .choice-proof__state .choice-proof__points {
  margin-top: 32px;
}

.choice-section--proof .choice-proof__points li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 500;
  line-height: 1.35;
}

.choice-section--proof .choice-proof__points li + li {
  margin-top: clamp(22px, 2.4vw, 32px);
}

.choice-section--proof .choice-proof__state--before .choice-proof__points li::before {
  content: "×";
  top: .66em;
  width: auto;
  height: auto;
  border-radius: 0;
  color: rgba(217, 38, 50, .68);
  background: none;
  font-size: .82em;
  font-weight: 600;
  line-height: 1;
  opacity: 1;
}

.choice-section--proof .choice-proof__state--after .choice-proof__points li::before {
  content: "✓";
  top: .66em;
  width: auto;
  height: auto;
  border-radius: 0;
  color: var(--red);
  background: none;
  font-size: .78em;
  font-weight: 700;
  line-height: 1;
}

.choice-proof__expand {
  position: absolute;
  right: clamp(20px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 26px);
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--red);
  transform-origin: center;
  transition: color .3s ease, background-color .3s ease, transform .45s var(--ease-out-quart);
}

.choice-proof__expand::before,
.choice-proof__expand::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

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

.choice-proof__expand::before,
.choice-proof__expand::after {
  transition: opacity .22s ease;
}

.choice-proof__state:hover .choice-proof__expand,
.choice-proof__state:focus-visible .choice-proof__expand,
.choice-proof__state.is-expanded .choice-proof__expand {
  background: var(--red);
  transform: scale(.24);
}

.choice-proof__state:hover .choice-proof__expand::before,
.choice-proof__state:hover .choice-proof__expand::after,
.choice-proof__state:focus-visible .choice-proof__expand::before,
.choice-proof__state:focus-visible .choice-proof__expand::after,
.choice-proof__state.is-expanded .choice-proof__expand::before,
.choice-proof__state.is-expanded .choice-proof__expand::after {
  opacity: 0;
}

.choice-section--proof .choice-proof__points .choice-proof__detail {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(7px);
  transition:
    max-height .65s var(--ease-out-quart),
    margin-top .65s var(--ease-out-quart),
    opacity .45s ease,
    transform .6s var(--ease-out-quart);
}

.choice-section--proof .choice-proof__state:hover .choice-proof__detail,
.choice-section--proof .choice-proof__state:focus-visible .choice-proof__detail,
.choice-section--proof .choice-proof__state.is-expanded .choice-proof__detail {
  max-height: 3em;
  margin-top: clamp(22px, 2.4vw, 32px);
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .choice-proof__state,
  .choice-proof__expand,
  .choice-section--proof .choice-proof__points .choice-proof__detail {
    transition: none;
  }
}

.choice-section--proof .choice-proof__points li::before {
  content: "";
  position: absolute;
  top: .64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.choice-section--proof .choice-proof__state--before .choice-proof__points li {
  color: rgba(255, 255, 255, .96);
  font-size: clamp(17px, 1.3vw, 20px);
}

.choice-section--proof .choice-proof__state--before .choice-proof__points li::before {
  opacity: 1;
}

.choice-section--proof .choice-proof__state--after .choice-proof__points li {
  color: rgba(255, 255, 255, .96);
  font-size: clamp(17px, 1.3vw, 20px);
}

@media (min-width: 721px) and (hover: hover) and (pointer: fine) {
  .choice-proof__pair {
    min-height: clamp(620px, 51vw, 800px);
    transition: grid-template-columns 650ms cubic-bezier(.22, 1, .36, 1);
  }

  .choice-proof__pair:has(.choice-proof__state--before:hover),
  .choice-proof__pair:has(.choice-proof__state--before:focus-visible),
  .choice-proof__pair:has(.choice-proof__state--before.is-expanded) {
    grid-template-columns: minmax(0, 1.7fr) clamp(60px, 5vw, 76px) minmax(0, 1fr);
  }

  .choice-proof__pair:has(.choice-proof__state--after:hover),
  .choice-proof__pair:has(.choice-proof__state--after:focus-visible),
  .choice-proof__pair:has(.choice-proof__state--after.is-expanded) {
    grid-template-columns: minmax(0, 1fr) clamp(60px, 5vw, 76px) minmax(0, 1.7fr);
  }

  .choice-proof__state {
    transition:
      border-color 500ms ease,
      background-color 500ms ease;
  }

  .choice-proof__state img {
    aspect-ratio: 1.29 / 1;
    object-fit: contain;
  }

  .choice-proof__pair-arrow {
    transition:
      opacity 550ms ease,
      transform 650ms cubic-bezier(.22, 1, .36, 1);
  }

  .choice-proof__pair:has(.choice-proof__state:hover) .choice-proof__pair-arrow,
  .choice-proof__pair:has(.choice-proof__state:focus-visible) .choice-proof__pair-arrow,
  .choice-proof__pair:has(.choice-proof__state.is-expanded) .choice-proof__pair-arrow {
    opacity: .52;
    transform: scaleX(.82);
  }
}

@media (min-width: 981px) {
  .choice-section--proof .choice-proof__points li {
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .choice-section--proof .choice-section__copy-column {
    grid-template-columns: 1fr;
    padding: 40px 20px 48px;
    border-radius: 28px;
  }

  .choice-section--proof .choice-section__copy-column > .choice-section__copy {
    grid-column: 1;
    grid-row: 1;
  }

  .choice-section--proof .choice-section__copy-column > .choice-founder {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    width: auto;
    margin: 28px 0 0;
    flex-direction: row;
  }

  .choice-section--proof .choice-section__copy-column > .choice-founder .choice-founder__photo {
    width: 88px;
    height: 110px;
  }

  .choice-section--proof .choice-summary {
    grid-column: 1;
    grid-row: 4;
  }

  .choice-section--proof .choice-section__approach-title {
    grid-column: 1;
    grid-row: 3;
    margin-top: 64px;
    font-size: clamp(20px, 5.8vw, 24px);
  }

  .choice-section--proof .choice-section__copy {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .choice-section--proof .choice-section__copy-part + .choice-section__copy-part p:first-child {
    margin-top: .82em;
  }

  .choice-section--proof .choice-summary {
    max-width: 520px;
    text-align: center;
  }

  .choice-section--proof .choice-summary__equation {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .choice-section--proof .choice-summary__part {
    min-height: 140px;
    padding: 26px 22px;
  }

  .choice-section--proof .choice-summary__operator {
    margin: -2px 0;
  }

  .choice-section--proof .choice-summary__arrow {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .choice-proof__pair {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .choice-proof__pair-arrow {
    width: 72px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .choice-proof__state--after img {
    width: 100%;
  }

  .choice-proof__state--before img {
    width: 100%;
  }

  .choice-section--proof .choice-proof__transformation {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .choice-section--proof .choice-proof__side--before,
  .choice-section--proof .choice-proof__side--after {
    grid-column: 1;
  }

  .choice-section--proof .choice-proof__client {
    margin-bottom: 0;
  }
}

/* Founder reassurance: a concise, personal note before the work examples. */
.choice-section--proof .choice-section__copy-column {
  grid-template-columns: minmax(220px, 270px) minmax(0, 620px);
  align-items: center;
  column-gap: clamp(52px, 6vw, 88px);
  padding: clamp(46px, 4.6vw, 66px) clamp(36px, 5.5vw, 72px);
}

.choice-section--proof .choice-section__copy-column > .choice-founder,
.choice-section--proof .choice-section__copy-column > .choice-section__copy {
  align-self: center;
}

.choice-section--proof .choice-section__copy-column > .choice-founder .choice-founder__photo {
  border-radius: 16px;
}

.choice-section--proof .choice-section__copy {
  max-width: 620px;
  font-size: clamp(17px, 1.06vw, 19px);
  line-height: 1.68;
}

.choice-section--proof .choice-section__founder-heading {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font: 700 clamp(35px, 3.2vw, 52px)/1.08 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.045em;
}

.choice-section--proof .choice-section__founder-body {
  max-width: 58ch;
  margin-top: clamp(26px, 2.5vw, 36px);
}

.choice-section--proof .choice-section__founder-body p {
  margin: 0;
}

.choice-section--proof .choice-section__founder-body p + p {
  margin-top: 1.05em;
}

.choice-section--proof .choice-section__capabilities {
  margin: clamp(30px, 3vw, 42px) 0 0;
  padding-top: clamp(20px, 2vw, 26px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
  font: 700 clamp(10px, .78vw, 12px)/1.2 'Hanken Grotesk', sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.choice-section--proof .choice-section__capabilities i {
  color: rgba(255, 255, 255, .3);
  font-size: .9em;
  font-style: normal;
  letter-spacing: 0;
}

.choice-section--proof .choice-section__visual-column {
  margin-top: clamp(120px, 10vw, 170px);
}

@media (max-width: 720px) {
  .choice-section--proof .choice-section__copy-column {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 34px 20px 40px;
  }

  .choice-section--proof .choice-section__copy-column > .choice-founder {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    margin: 0 0 32px;
    align-items: flex-start;
    flex-direction: column;
  }

  .choice-section--proof .choice-section__copy-column > .choice-founder .choice-founder__photo {
    width: min(72vw, 270px);
    height: auto;
  }

  .choice-section--proof .choice-section__copy-column > .choice-founder .choice-founder__caption {
    text-align: left;
  }

  .choice-section--proof .choice-section__copy-column > .choice-section__copy {
    grid-column: 1;
    grid-row: 2;
  }

  .choice-section--proof .choice-section__founder-heading {
    font-size: clamp(32px, 9.5vw, 43px);
  }

  .choice-section--proof .choice-section__capabilities {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 9px 8px;
    font-size: 10px;
  }

  .choice-section--proof .choice-section__visual-column {
    margin-top: 96px;
  }
}

@media (min-width: 981px) {
  .hub .laptop-anchor--hub { width: min(564px, 70vw); }
}

@media (min-width: 1025px) and (max-width: 1440px) and (hover: hover) and (pointer: fine) {
  .hub {
    padding-top: clamp(86px, 11vh, 118px);
  }

  .hub-headline {
    top: auto;
    font-size: clamp(30px, 3.7vw, 52px);
  }

  .sources {
    top: auto;
    margin-top: clamp(30px, 4vh, 44px);
    gap: clamp(12px, 1.2vw, 20px);
    max-width: min(1120px, 92vw);
  }

  .source-group {
    gap: 16px;
  }

  .source-group-head {
    gap: 14px;
  }

  .source-label {
    font-size: 12px;
    letter-spacing: 0.26em;
  }

  .source-row {
    gap: clamp(8px, 0.9vw, 13px);
  }

  .source-card {
    width: clamp(82px, 6.4vw, 122px);
    min-height: 126px;
    gap: 14px;
    padding: 19px 9px 15px;
    border-radius: 22px;
  }

  .source-icon {
    width: 40px;
    height: 40px;
  }

  .source-name {
    font-size: 12.5px;
  }

  .laptop-anchor--hub,
  .hub .laptop-anchor--hub {
    width: min(520px, 54vw);
    margin-top: clamp(84px, 8vh, 112px);
  }
}

@media (min-width: 769px) and (max-height: 820px) and (hover: hover) and (pointer: fine) {
  .hub {
    padding-top: clamp(78px, 10vh, 104px);
  }

  .hub-headline {
    font-size: clamp(30px, 4.1vw, 54px);
  }

  .sources {
    margin-top: clamp(34px, 4.8vh, 48px);
    gap: clamp(14px, 1.5vw, 22px);
  }

  .source-group {
    gap: 18px;
  }

  .source-group-head {
    gap: 14px;
  }

  .source-label {
    font-size: 12px;
    letter-spacing: 0.26em;
  }

  .source-row {
    gap: clamp(9px, 0.9vw, 14px);
  }

  .source-card {
    width: clamp(86px, 6.6vw, 118px);
    min-height: 128px;
    gap: 14px;
    padding: 20px 10px 16px;
    border-radius: 22px;
  }

  .source-icon {
    width: 40px;
    height: 40px;
  }

  .source-name {
    font-size: 13px;
  }

  .laptop-anchor--hub,
  .hub .laptop-anchor--hub {
    width: min(430px, 56vw);
    margin-top: clamp(70px, 8vh, 92px);
  }

  .hub-spacer {
    height: clamp(90px, calc(18vh - 40px), 160px);
  }

  .hub-headline {
    top: auto;
  }

  .sources {
    top: auto;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) and (max-height: 820px) and (hover: hover) and (pointer: fine) {
  .hub {
    padding-top: clamp(72px, 9vh, 96px);
  }

  .hub-headline {
    top: auto;
    font-size: clamp(29px, 3.6vw, 48px);
  }

  .sources {
    top: auto;
  }

  .source-card {
    width: clamp(80px, 6.2vw, 112px);
    min-height: 122px;
    padding: 18px 8px 14px;
  }

  .source-icon {
    width: 38px;
    height: 38px;
  }

  .laptop-anchor--hub,
  .hub .laptop-anchor--hub {
    width: min(430px, 52vw);
    margin-top: clamp(64px, 7vh, 86px);
  }
}

/* Editorial question lines: intentionally unbulleted and independently spaced. */
.choice-question-list { margin-left: 0; }
.choice-question-list > span { padding-left: 0; }
.choice-question-list > span::before { display: none; }

/* ---------------------------------------------------------
   Laptop (shared element, position: fixed)
--------------------------------------------------------- */

.laptop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-laptop);
  width: min(380px, 92vw);
  aspect-ratio: 1536 / 1024;
  transform-origin: top left;
  pointer-events: none;
}

body > .laptop {
  visibility: hidden;
}

.laptop-anchor > .static-laptop {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: none;
  visibility: visible;
}

.static-hub-laptop .screen-face--hero {
  display: none;
}

/* The photo has a transparent cutout where its screen is, so the shell sits
   in front and its own bezel masks the screen-inner content beneath it —
   no separate CSS bezel/base needed. */

.laptop-shell {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.screen-inner {
  position: absolute;
  left: 12.6%;
  top: 12.3%;
  width: 74.8%;
  height: 65.3%;
  border-radius: 2px;
  overflow: hidden;
  background: #060a12;
  z-index: 1;
}

.screen-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

/* -- hero screen -- */

.screen-face--hero {
  background: #08275a;
  align-items: center;
  justify-content: center;
  container-type: inline-size;
}

.hero-screen-label {
  margin: 0;
  color: #fff;
  font-size: 7cqw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  text-align: center;
}

/* -- hub screen: word mark -- */

.screen-face--hub {
  background: #08275a;
  container-type: inline-size;
}

.hub-screen-message {
  width: 82%;
  margin: auto;
  color: #fff;
  text-align: center;
}

.hub-screen-message p { margin: 0; }

.hub-screen-lead,
.hub-screen-followup {
  width: 78%;
  font-size: 5.52cqw;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.hub-screen-lead {
  margin: 0 auto !important;
}

.hub-screen-followup {
  margin: 6cqw auto 0 !important;
}

.hub-screen-followup span {
  text-decoration-line: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.16em;
}

/* ---------------------------------------------------------
   Section 3 — strategy in the same sky
--------------------------------------------------------- */

.strategy-sky {
  position: relative;
  z-index: 2;
  min-height: 135vh;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, #0758c2 0%, #064eae 48%, #06449d 100%);
}

.strategy-sky__inner {
  width: min(1440px, calc(100% - 96px));
  min-height: 135vh;
  margin: 0 auto;
  padding: 32vh 0 16vh;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1fr);
  align-items: center;
  column-gap: clamp(80px, 9vw, 150px);
}

.strategy-sky__intro {
  position: relative;
  z-index: 2;
  text-align: left;
}

.strategy-sky__title {
  margin: 0;
  font-size: clamp(48px, 4.5vw, 72px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.strategy-sky__statement {
  margin: clamp(34px, 4.5vh, 48px) 0 0;
  max-width: 560px;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.025em;
}

.strategy-sky__statement .underline-word {
  margin-left: 0.12em;
}

.strategy-sky__visual {
  position: relative;
  width: min(100%, 650px);
  aspect-ratio: 1;
  justify-self: end;
}

.strategy-sky__card {
  position: absolute;
  z-index: 2;
  width: clamp(190px, 15vw, 230px);
  min-height: 112px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  background: rgba(168, 214, 255, 0.075);
  box-shadow: 0 22px 42px -32px rgba(0, 20, 61, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(13px) saturate(1.08);
  -webkit-backdrop-filter: blur(13px) saturate(1.08);
}

.strategy-sky__card::before,
.strategy-sky__centre::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(242, 250, 255, 0.12) 0%, rgba(221, 242, 255, 0.035) 30%, transparent 58%, rgba(3, 36, 91, 0.045) 100%);
}

.strategy-sky__card--strategy { top: 3%; left: 50%; translate: -50% 0; }
.strategy-sky__card--messaging { top: 50%; left: 0; translate: 0 -50%; }
.strategy-sky__card--design { top: 50%; right: 0; translate: 0 -50%; }
.strategy-sky__card--conversion { bottom: 3%; left: 50%; translate: -50% 0; }

.strategy-sky__centre {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 152px;
  aspect-ratio: 1;
  translate: -50% -50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.31);
  border-radius: 50%;
  background: rgba(185, 224, 255, 0.09);
  box-shadow: 0 24px 48px -32px rgba(0, 16, 53, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.strategy-sky__centre span,
.strategy-sky__centre strong {
  position: relative;
  z-index: 1;
}

.strategy-sky__centre span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.strategy-sky__centre strong {
  margin-top: 5px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.strategy-sky__connections {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(239, 248, 255, 0.24);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.strategy-sky__card h3 {
  position: relative;
  margin: 0;
  font-size: clamp(18px, 1.25vw, 21px);
  font-weight: 750;
  line-height: 1.1;
}

.strategy-sky__card p {
  position: relative;
  margin: 10px 0 0;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 450;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1180px) {
  .strategy-sky__inner {
    width: min(760px, calc(100% - 68px));
    padding: 28vh 0 14vh;
    grid-template-columns: 1fr;
    row-gap: clamp(70px, 9vh, 100px);
  }

  .strategy-sky__intro {
    max-width: 650px;
  }

  .strategy-sky__visual {
    width: min(650px, 100%);
    justify-self: center;
  }
}

.hub-flight-stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  background: #06449d;
}

.hub-flight-stage .section2-background__sequence {
  z-index: 1;
}

@media (max-width: 768px), (hover: none), (pointer: coarse) {
  .hub-flight-stage {
    display: none;
  }
}

/* ---------------------------------------------------------
   Reveal states (JS toggles is-in)
--------------------------------------------------------- */

.source-card.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   Section 3 — visual comparison
--------------------------------------------------------- */

.comparison {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.comparison-bg,
.comparison-foreground,
.comparison-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.comparison-bg { z-index: 0; }

.comparison-flight-sequence {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.comparison-bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.comparison-foreground { z-index: 1; }
.comparison-atmosphere { z-index: 3; }

.comparison-visual {
  position: absolute;
  pointer-events: none;
}

.comparison-visual--left {
  left: 0;
  bottom: clamp(50px, 8vh, 90px);
  width: 50%;
  display: flex;
  justify-content: center;
}

.comparison-visual--right {
  right: 0;
  bottom: clamp(50px, 8vh, 90px);
  width: 50%;
  display: flex;
  justify-content: center;
}

.comparison-visual--left img,
.comparison-visual--right img {
  width: min(560px, 42vw);
  height: auto;
}

.comparison-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(130px, 14vw, 250px);
  padding: clamp(145px, 18vh, 195px) clamp(40px, 8.8vw, 190px) 70px;
}

.comparison-early-overlay {
  position: fixed;
  inset: 0;
  z-index: 9;
  height: 100vh;
  visibility: hidden;
  pointer-events: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(130px, 14vw, 250px);
  padding: clamp(145px, 18vh, 195px) clamp(40px, 8.8vw, 190px) 70px;
}

.comparison-early-overlay.is-active {
  visibility: visible;
}

body.comparison-early-reveal-active .comparison-content > .comparison-side--left {
  visibility: hidden;
}

.comparison-side {
  width: 100%;
  max-width: 560px;
  justify-self: center;
  text-align: left;
}

.comparison-side--right {
  color: #0a1322;
}

.comparison-intro {
  --comparison-intro-glass-opacity: 1;
  position: relative;
  isolation: isolate;
}

.comparison-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22px -24px -18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: clamp(22px, 1.8vw, 32px);
  box-shadow: 0 20px 40px -26px rgba(4, 13, 29, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  opacity: var(--comparison-intro-glass-opacity);
}

.comparison-side--left .comparison-intro::before {
  background: rgba(14, 35, 59, 0.32);
}

.comparison-side--right .comparison-intro::before {
  background: rgba(255, 245, 221, 0.28);
  border-color: rgba(255, 255, 255, 0.58);
}

@media (min-width: 981px) {
  .comparison-side {
    transform: translateY(10vh);
  }
}

.comparison-title {
  margin: 0;
  font-size: clamp(42px, 3.15vw, 60px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.comparison-accent--blue { color: #79c9ff; }
.comparison-accent--red { color: #d92632; }

.comparison-copy {
  margin: 12px 0 0;
  width: 100%;
  max-width: 500px;
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: 450;
  line-height: 1.52;
}

.comparison-side--left .comparison-copy {
  color: rgba(255, 255, 255, 0.8);
}

.comparison-side--right .comparison-copy {
  color: rgba(10, 19, 34, 0.78);
}

.comparison-reason {
  margin: clamp(28px, 3.5vh, 38px) 0 0;
  font-size: clamp(17px, 1.15vw, 22px);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.comparison-side--left .comparison-reason { color: #62c7ff; }
.comparison-side--right .comparison-reason { color: var(--red); }

.comparison-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  width: 100%;
  margin-top: clamp(26px, 3.2vh, 36px);
}

.comparison-card {
  min-height: clamp(132px, 15vh, 162px);
  padding: clamp(17px, 1.4vw, 25px) clamp(13px, 1.2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: clamp(22px, 1.8vw, 32px);
  box-shadow: 0 20px 40px -26px rgba(4, 13, 29, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.comparison-side--left .comparison-card {
  background: rgba(14, 35, 59, 0.32);
  color: #fff;
}

.comparison-side--right .comparison-card {
  background: rgba(255, 245, 221, 0.28);
  border-color: rgba(255, 255, 255, 0.58);
  color: #101827;
}

.comparison-card__icon {
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #62c7ff;
}

.comparison-side--right .comparison-card__icon { color: var(--red); }
.comparison-card__icon svg { width: 100%; height: 100%; }
.comparison-card__icon--type {
  width: auto;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.comparison-card h4 {
  margin: 9px 0 0;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.comparison-card p {
  margin: 12px 0 0;
  font-size: clamp(11px, 0.72vw, 14px);
  font-weight: 450;
  line-height: 1.4;
}

.comparison-statement {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: min(760px, calc(100vw - 80px));
  padding: clamp(28px, 3.6vh, 40px) clamp(32px, 3.2vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: clamp(26px, 2.2vw, 36px);
  translate: -50% -53%;
  background: rgba(17, 31, 48, 0.2);
  box-shadow: 0 26px 68px -40px rgba(2, 8, 20, 0.68), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.comparison-statement p { margin: 0; }

.comparison-statement__lead {
  font-size: clamp(30px, 2.2vw, 40px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.comparison-statement__followup {
  margin-top: 12px !important;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 400;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.78);
}

.comparison-principle {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vh, 44px);
  z-index: 4;
  width: min(760px, 78vw);
  padding: 18px clamp(24px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  translate: -50% 0;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 50px -24px rgba(3, 10, 24, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.comparison-principle p {
  margin: 0;
  color: var(--white);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 2px 14px rgba(3, 10, 24, 0.35);
}

.comparison-principle strong { font-weight: 800; }

/* ---------------------------------------------------------
   Section 4 — founder story
--------------------------------------------------------- */

.founder-story {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
}

.comparison > .founder-story {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  min-height: 0;
  isolation: auto;
  pointer-events: none;
}

.founder-story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.founder-story-bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.founder-story-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: min(1040px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;
  gap: 0;
  padding: 70px 0;
  translate: 0 -30px;
}

.founder-profile {
  position: relative;
  z-index: 2;
  width: 180px;
  margin: 0;
  transform: none;
  text-align: center;
}

.founder-photo {
  display: block;
  width: 175px;
  height: 175px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  box-shadow: 0 24px 55px -28px rgba(10, 19, 34, 0.48);
}

.founder-profile figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  margin-top: 12px;
  padding-left: 0;
  color: var(--ink);
}

.founder-profile figcaption strong {
  font-size: 18px;
  font-weight: 800;
}

.founder-profile figcaption span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(10, 19, 34, 0.68);
}

.founder-story-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  max-width: 820px;
  margin-inline: auto;
  padding: 12px 34px 8px;
}

.founder-story-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -32px -40px -50px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  pointer-events: none;
  opacity: var(--founder-copy-glow-opacity, 1);
  background: rgba(235, 244, 249, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  filter: none;
  box-shadow: none;
}

.founder-story-copy h2 {
  margin: 0 0 clamp(20px, 2.8vh, 28px);
  font-size: clamp(44px, 3.7vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  padding-bottom: 0.08em;
  letter-spacing: -0.04em;
}

.founder-story-copy p {
  margin: 0 0 16px;
  max-width: none;
  font-size: clamp(17px, 1.35vw, 19px);
  font-weight: 500;
  line-height: 1.58;
  color: #0a1322;
}

.founder-story-message {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 35px;
}

.founder-story-text {
  width: 100%;
  padding-top: 0;
}

.founder-story-swap {
  position: relative;
  min-height: 250px;
}

.founder-story--outcomes-only .founder-story-message { display: block; }
.founder-story--outcomes-only .founder-story-swap { min-height: auto; }
.founder-story--outcomes-only .founder-sky-outcomes {
  position: relative;
  inset: auto;
  visibility: visible;
  opacity: 1;
}

.founder-story-actions {
  margin-top: clamp(28px, 3.5vh, 38px);
}

.founder-story-actions .btn-primary {
  background: var(--red);
  box-shadow: 0 12px 26px -13px rgba(217, 38, 50, 0.48);
}

.founder-story-actions .btn-primary:hover {
  background: #b91f2a;
}

.founder-story-actions .btn-secondary {
  border-color: rgba(10, 19, 34, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.founder-story-actions .btn-secondary:hover {
  border-color: rgba(10, 19, 34, 0.46);
  background: rgba(255, 255, 255, 0.26);
  color: var(--ink);
}

.founder-paragraphs,
.founder-sky-outcomes {
  position: absolute;
  inset: 0;
}

.founder-story-copy p:last-child { margin-bottom: 0; }

.founder-story-copy > p:last-of-type {
  margin-bottom: 0;
}

.founder-story-copy .founder-story-emphasis {
  margin-top: 3px;
  font-weight: 500;
}

.founder-sky-outcomes {
  width: 100%;
  margin: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}

.founder-sky-outcomes h3 {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.14em;
}

.founder-sky-outcomes .founder-outcomes {
  margin-top: 36px;
  padding-top: 0;
}

.founder-outcomes-eyebrow {
  margin-top: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
}

.founder-outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
  padding-top: 12px;
}

.founder-outcome {
  min-width: 0;
  min-height: 40px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #0a1322;
  font-size: clamp(14px, 1.05vw, 15.5px);
  font-weight: 500;
  line-height: 1.58;
}

.founder-outcome:nth-child(n + 3) {
  margin-top: 10px;
}

.founder-outcome svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.founder-outcome svg.founder-outcome-dot {
  fill: var(--red);
  stroke: none;
}

.founder-story-cta {
  margin-top: 18px;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

/* ---------------------------------------------------------
   Section 5 — business outcomes
--------------------------------------------------------- */

.outcomes {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--ink);
  background-image: url("../images/section5/section5-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.outcomes-inner {
  min-height: 100vh;
  width: min(680px, 45vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0 70px;
  text-align: center;
}

.outcomes-title {
  margin: 0;
  font-size: clamp(50px, 5.1vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.outcomes-list {
  width: 100%;
  margin-top: clamp(48px, 6.5vh, 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2vh, 20px);
}

.outcome {
  margin: 0;
  font-size: clamp(28px, 2.15vw, 32px);
  font-weight: 650;
  line-height: 1.3;
  color: #0a1322;
  text-align: center;
}

.outcome--final {
  font-size: clamp(44px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: clamp(10px, 1.5vh, 16px);
}

.outcome--final em {
  color: #d92632;
  font-style: normal;
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 20px;
  }

  .hero-headline { line-height: 1.08; white-space: normal; }

  .hero-stage { height: clamp(430px, 50vh, 500px); }

  .laptop-anchor--hero {
    top: 68%;
    right: 50%;
    width: min(480px, 90vw);
    transform: translate(50%, -46%);
  }

  .notif--meeting { top: 0; right: 28%; }
  .notif--enquiry { top: 82px; right: 15%; }
  .notif--whatsapp { top: 164px; right: 5%; }

  .laptop { width: min(660px, 93vw); }

  .sources { gap: 42px 20px; flex-wrap: wrap; }
  .laptop-anchor--hub { width: min(470px, 80vw); }

  .strategy-sky__inner {
    width: min(760px, calc(100% - 68px));
    padding: 28vh 0 14vh;
    grid-template-columns: 1fr;
    row-gap: clamp(70px, 9vh, 100px);
  }

  .strategy-sky__intro {
    max-width: 650px;
  }

  .strategy-sky__visual {
    width: min(650px, 100%);
    justify-self: center;
  }

  .comparison-content {
    column-gap: 70px;
    padding-inline: 34px;
  }

  .comparison-title { font-size: clamp(34px, 5.2vw, 50px); }

  .comparison-card { padding: 15px 12px; }
  .comparison-card__icon { width: 25px; height: 25px; }

  .founder-story-inner {
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: clamp(72px, 9svh, 104px);
    translate: 0;
  }

  .founder-story-copy {
    width: 100%;
    max-width: none;
    padding-inline: clamp(22px, 4vw, 34px);
  }

  .founder-story-message {
    grid-template-columns: clamp(150px, 21vw, 180px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 42px);
  }

  .founder-story-swap { min-height: auto; }

  .founder-paragraphs,
  .founder-sky-outcomes {
    position: relative;
    inset: auto;
  }

  .founder-sky-outcomes {
    margin-top: 32px;
    visibility: visible;
    opacity: 1;
  }

  .founder-profile { width: clamp(150px, 21vw, 180px); transform: none; }
  .founder-photo { width: 100%; height: auto; aspect-ratio: 1; }

  .founder-story-copy h2 { font-size: clamp(36px, 5vw, 50px); }

  .outcomes-inner {
    width: min(650px, 70vw);
    margin: 0 auto;
  }

  .comparison-visual--left img,
  .comparison-visual--right img { width: min(480px, 46vw); }
}

/* Touch layouts use normal document flow. The shared desktop traveller is
   moved into the hero by main.js and then remains local to this section. */
.mobile-native-scroll .sky-img,
.mobile-native-scroll .hub-sky-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.mobile-native-scroll .hub-sky-layer {
  top: 100svh;
  height: max(100svh, 180svh);
}

.mobile-native-scroll .seam-cloud-layer {
  display: none;
}

.mobile-native-scroll .connectors,
.mobile-native-scroll .screen-face--hub {
  display: none;
}

.mobile-native-scroll .notification,
.mobile-native-scroll .hub-headline,
.mobile-native-scroll .source-group-head,
.mobile-native-scroll .source-card {
  opacity: 1;
  clip-path: none;
  transform: none;
}

.mobile-native-scroll .hub-headline {
  top: auto;
  translate: none;
}

.mobile-native-scroll .hub {
  padding-top: clamp(72px, 10svh, 96px);
}

.mobile-native-scroll .sources {
  position: relative;
  top: auto;
  translate: none;
}

.mobile-native-scroll .laptop-anchor--hub {
  translate: none;
}

.mobile-native-scroll .hero-stage,
.mobile-native-scroll .laptop-anchor--hero,
.mobile-native-scroll .laptop {
  display: none;
}

.mobile-native-scroll .hero-stage {
  height: 0;
  min-height: 0;
  margin-top: 0;
}

.mobile-native-scroll .laptop {
  position: absolute;
  top: 68%;
  right: 50%;
  left: auto;
  width: min(660px, 93vw);
  transform: translate(50%, -46%);
}

.mobile-native-scroll .screen-face--hero {
  display: flex;
}

/* Compact laptop/tablet layouts keep both laptop views inside their owning
   sections. No scroll-driven traveller is created at these widths. */
.compact-native-scroll .sky-img,
.compact-native-scroll .hub-sky-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.compact-native-scroll .hub-sky-layer {
  top: 100svh;
  height: max(100svh, 190svh);
}

.compact-native-scroll .seam-cloud-layer {
  z-index: 2;
  height: 100vh;
}

.compact-native-scroll .connectors,
.compact-native-scroll .screen-face--hub,
.compact-native-scroll .screen-face--hero {
  display: none;
}

.compact-native-scroll .notification {
  opacity: 1;
  clip-path: none;
}

.compact-native-scroll .hero {
  min-height: auto;
  padding-top: clamp(76px, 9vh, 92px);
  padding-bottom: clamp(32px, 5vh, 56px);
}

.compact-native-scroll .hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: center;
  padding-inline: clamp(32px, 5vw, 64px);
}

.compact-native-scroll .hero-eyebrow {
  margin-bottom: clamp(38px, 6vh, 58px);
  font-size: clamp(12px, 1vw, 14px);
}

.compact-native-scroll .hero-headline {
  top: 0;
  font-size: clamp(34px, 3.87vw, 52px);
  white-space: normal;
}

.compact-native-scroll .hero-sub {
  max-width: 29ch;
  font-size: clamp(13.4px, 1.09vw, 16.9px);
}

.compact-native-scroll .hero-cta-row {
  margin-top: clamp(38px, 5vh, 48px);
}

.compact-native-scroll .hero-stage {
  height: clamp(330px, 46vh, 430px);
  min-height: 0;
}

.compact-native-scroll .laptop-anchor--hero {
  position: absolute;
  top: 58%;
  right: 50%;
  left: auto;
  width: min(390px, 100%);
  transform: translate(50%, -46%);
}

.compact-native-scroll .compact-hub-laptop .screen-face--hero {
  display: none;
}

.compact-native-scroll .hero-proof {
  top: 0;
  padding-top: clamp(30px, 4vh, 42px);
  padding-bottom: clamp(24px, 4vh, 40px);
}

.compact-native-scroll .hub {
  padding: clamp(58px, 8vh, 82px) clamp(32px, 5vw, 64px) clamp(58px, 8vh, 88px);
}

.compact-native-scroll .hub-headline {
  top: auto;
  translate: none;
  max-width: 780px;
  font-size: clamp(34px, 4.1vw, 56px);
}

.compact-native-scroll .sources {
  position: relative;
  top: auto;
  translate: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 52px);
  margin-top: clamp(44px, 6vh, 64px);
  max-width: 980px;
}

.compact-native-scroll .source-group {
  gap: 18px;
  min-width: 0;
}

.compact-native-scroll .source-group-head {
  gap: 14px;
}

.compact-native-scroll .source-label {
  font-size: 12px;
  letter-spacing: 0.26em;
}

.compact-native-scroll .source-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
}

.compact-native-scroll .source-card {
  width: auto;
  min-height: 126px;
  gap: 14px;
  padding: 20px 8px 16px;
  border-radius: 22px;
}

.compact-native-scroll .source-icon {
  width: 42px;
  height: 42px;
}

.compact-native-scroll .source-name {
  font-size: 13px;
}

.compact-native-scroll .laptop-anchor--hub {
  display: none;
}

.compact-native-scroll .compact-hub-laptop {
  position: relative;
  top: auto;
  left: auto;
  width: min(470px, 68vw);
  margin: clamp(48px, 7vh, 76px) auto 0;
  transform: none;
}

.compact-native-scroll .compact-hub-laptop .screen-face--hub {
  display: flex;
}

@media (min-width: 769px) and (max-width: 979px) {
  .compact-native-scroll .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  }

  .compact-native-scroll .sources {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

/* Keep the hero's floating response cards clear of the fixed navigation on
   compact laptop screens without changing their desktop composition. */
@media (min-width: 1025px) and (max-width: 1280px) {
  .laptop-anchor--hero { top: 58%; right: -1%; width: min(460px, 96%); transform: translateY(-43%); }
  .notif--meeting { top: 8%; right: 43%; }
  .notif--enquiry { top: 26%; right: 23%; }
  .notif--whatsapp { top: 44%; right: 2%; }
}

@media (max-width: 640px) {
  .grain { inset: 0; }
  .nav { padding: 14px 16px; }
  .logo-mark { width: 82px; height: 82px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.02em; }

  .hero { min-height: 100svh; padding-top: 138px; }
  .hero-grid { gap: 24px; padding-inline: 24px; padding-top: 0; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-eyebrow {
    margin-bottom: 48px;
    font-size: clamp(11px, 3.1vw, 13px);
    line-height: 1.45;
    letter-spacing: 0.17em;
  }
  .hero-headline .line { display: block; }
  .hero-headline { top: 0; font-size: clamp(29px, 8.28vw, 36px); }
  .hero-sub { margin-top: 36px; font-size: clamp(12.7px, 3.66vw, 14.8px); line-height: 1.8; }
  .hero-cta-row { margin-top: 40px; gap: 10px; flex-wrap: nowrap; align-items: stretch; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    justify-content: center;
    gap: 5px;
    padding: 10px 6px;
    font-size: clamp(10.2px, 2.85vw, 11.8px);
    white-space: nowrap;
  }

  .hero-proof { top: 0; gap: 10px; padding: 34px 20px 42px; }
  .proof-seg { padding: 10px 12px; font-size: 10.8px; }

  .hero-stage { height: 470px; min-height: 0; margin-top: 12px; }
  .laptop-anchor--hero { top: 70%; width: min(360px, 92vw); }
  .laptop { width: min(360px, 92vw); }

  .notification { padding: 10.8px 14.4px; gap: 9.6px; }
  .notif-icon { width: 28.8px; height: 28.8px; }
  .notif-icon svg { width: 15.6px; height: 15.6px; }
  .notif-text strong { font-size: 13.8px; }
  .notif-text em { font-size: 12px; }
  .notif--meeting { top: 0; right: 9%; }
  .notif--enquiry { top: 76px; right: 2%; }
  .notif--whatsapp { top: 152px; right: max(16px, 7%); }

  .hub { padding-top: 430px; }
  .hub-headline { font-size: clamp(26px, 8vw, 36px); }
  .hub-sub { font-size: 14px; }

  .source-row { flex-wrap: wrap; justify-content: center; }
  .source-group { gap: 22px; }
  .source-card { width: 112px; min-height: 150px; padding: 26px 12px 20px; }
  .source-icon { width: 45px; height: 45px; }
  .source-name { font-size: 15px; }

  .laptop-anchor--hub { margin-top: 22px; width: min(330px, 86vw); }
  .hub-spacer { height: 0; }

  .strategy-sky,
  .strategy-sky__inner {
    min-height: auto;
  }

  .strategy-sky__inner {
    width: calc(100% - 36px);
    padding: 28vh 0 14vh;
    row-gap: 62px;
  }

  .strategy-sky__title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .strategy-sky__statement {
    font-size: clamp(21px, 6vw, 28px);
  }

  .strategy-sky__visual {
    width: 100%;
  }

  .strategy-sky__card {
    width: 42%;
    min-height: 82px;
    padding: 15px 14px;
    border-radius: 17px;
  }

  .strategy-sky__card h3 {
    font-size: clamp(14px, 4.3vw, 18px);
  }

  .strategy-sky__card p {
    margin-top: 6px;
    font-size: clamp(10px, 3vw, 13px);
    line-height: 1.3;
  }

  .strategy-sky__centre {
    width: 30%;
    min-width: 100px;
    max-width: 126px;
  }

  .strategy-sky__centre span {
    font-size: 8px;
  }

  .strategy-sky__centre strong {
    font-size: 12px;
  }

  .comparison { min-height: 100svh; }

  .comparison-content {
    min-height: 100svh;
    column-gap: 24px;
    padding: 110px 18px 54px;
  }

  .comparison-title {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.02;
  }

  .comparison-reason {
    margin-top: 20px;
    font-size: 12px;
  }

  .comparison-copy {
    margin-top: 9px;
    font-size: 10px;
    line-height: 1.4;
  }

  .comparison-card-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 16px;
  }

  .comparison-card {
    min-height: 68px;
    padding: 9px 10px;
    border-radius: 16px;
  }

  .comparison-card__icon { float: left; width: 21px; height: 21px; margin-right: 7px; }
  .comparison-card h4 { margin-top: 2px; font-size: 11px; }
  .comparison-card p { clear: both; margin-top: 7px; font-size: 9px; }

  .comparison-visual--left img,
  .comparison-visual--right img { width: 52vw; }

  .founder-story { min-height: 100svh; }

  .founder-story-inner {
    min-height: auto;
    width: calc(100% - 32px);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 96px 0 64px;
    translate: 0;
  }

  .founder-profile {
    width: min(52vw, 190px);
    margin: 0 auto;
    transform: none;
  }

  .founder-photo { width: 100%; height: auto; aspect-ratio: 1; }

  .founder-profile figcaption { padding-left: 0; text-align: center; align-items: center; }

  .founder-story-copy { width: 100%; max-width: none; padding: 22px 18px 18px; }

  .founder-story-message {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .founder-story-text { min-width: 0; }

  .founder-story-swap {
    min-height: auto;
  }

  .founder-paragraphs,
  .founder-sky-outcomes {
    position: relative;
    inset: auto;
  }

  .founder-sky-outcomes { margin-top: 30px; }

  .founder-story-copy::before {
    inset: -30px -18px -38px;
    border-radius: 22px;
  }

  .founder-story-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(32px, 9.4vw, 42px);
  }

  .founder-story-copy p { font-size: clamp(16px, 4.5vw, 18px); line-height: 1.55; }

  .founder-outcomes {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
    padding-top: 20px;
  }

  .founder-outcome {
    min-height: 40px;
    padding: 8px 12px;
  }

  .outcomes { min-height: 100svh; }

  .outcomes-inner {
    min-height: 100svh;
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 90px 0 54px;
  }

  .outcomes-title { font-size: clamp(36px, 10.5vw, 48px); }

  .outcome {
    font-size: 22px;
  }

  .outcome--final {
    font-size: 34px;
  }
}

/* ---------------------------------------------------------
   Section 3 — editorial founder statement
--------------------------------------------------------- */

.strategy-sky {
  min-height: 120vh;
  background: linear-gradient(180deg, #0758c2 0%, #0753b8 52%, #06449d 100%);
}

.strategy-sky__inner {
  width: min(1440px, calc(100% - 96px));
  min-height: 120vh;
  padding: 28vh 0 13vh;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.82fr);
  align-items: end;
  column-gap: clamp(90px, 10vw, 170px);
}

.strategy-sky__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
}

.strategy-sky__title {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 620;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.strategy-sky__primary {
  margin: clamp(34px, 4.4vh, 50px) 0 0;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 620;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.strategy-sky__supporting {
  max-width: 680px;
  margin: clamp(34px, 4.4vh, 50px) 0 0;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 450;
  line-height: 1.48;
  letter-spacing: -0.018em;
  color: rgba(255, 255, 255, 0.8);
}

.strategy-sky__outcome {
  margin: clamp(58px, 8vh, 90px) 0 0;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 680;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.strategy-sky__outcome .underline-word {
  margin-left: 0.08em;
}

.strategy-sky__portrait {
  position: relative;
  width: min(38vw, 540px);
  margin: 0;
  justify-self: end;
}

.strategy-sky__portrait-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 0.68;
  display: grid;
  place-items: center;
  color: rgba(224, 241, 255, 0.34);
}

.strategy-sky__portrait-placeholder svg {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: rgba(218, 238, 255, 0.035);
  stroke: rgba(229, 244, 255, 0.23);
  stroke-width: 1.25;
}

.strategy-sky__portrait-placeholder > span {
  position: relative;
  margin-top: 38%;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.strategy-sky__portrait-label {
  position: absolute;
  right: 2%;
  bottom: 4%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: rgba(255, 255, 255, 0.78);
}

.strategy-sky__portrait-label strong {
  font-size: 14px;
  font-weight: 700;
}

.strategy-sky__portrait-label span {
  font-size: 11px;
  font-weight: 450;
  letter-spacing: 0.02em;
}

@media (max-width: 1180px) {
  .strategy-sky__inner {
    width: min(800px, calc(100% - 68px));
    min-height: auto;
    padding: 28vh 0 14vh;
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: clamp(90px, 13vh, 140px);
  }

  .strategy-sky__copy {
    max-width: 720px;
  }

  .strategy-sky__portrait {
    width: min(64vw, 500px);
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .strategy-sky,
  .strategy-sky__inner {
    min-height: auto;
  }

  .strategy-sky__inner {
    width: calc(100% - 36px);
    padding: 26vh 0 15vh;
    row-gap: 90px;
  }

  .strategy-sky__title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .strategy-sky__primary {
    font-size: clamp(24px, 7vw, 32px);
  }

  .strategy-sky__supporting {
    margin-top: 32px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .strategy-sky__outcome {
    margin-top: 54px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .strategy-sky__portrait {
    width: min(92vw, 440px);
    justify-self: center;
  }

  .strategy-sky__portrait-label {
    right: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notification { animation: none !important; }
  .hero-headline .line {
    opacity: 1;
    clip-path: none;
    translate: none;
    animation: none;
  }
  .proof-seg,
  .proof-seg::before { transition: none; }
  html { scroll-behavior: auto; }

  .outcomes-list {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .outcome {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* Scale the complete hero composition progressively on ultra-wide displays.
   Every minimum matches the standard desktop treatment at the 1800px edge. */
@media (min-width: 1800px) {
  .hero-grid {
    max-width: clamp(1520px, calc(76vw + 152px), 2200px);
    padding-inline: clamp(72px, 4.25vw, 108px);
    gap: clamp(16px, 1vw, 24px);
  }

  .hero-eyebrow {
    margin-bottom: clamp(86px, 4.5vw, 116px);
    font-size: clamp(15.4px, 0.82vw, 21px);
  }

  .hero-headline {
    top: clamp(-42px, -1.65vw, -30px);
    font-size: clamp(61px, 3.4vw, 86px);
  }

  .hero-sub {
    margin-top: clamp(32px, 1.65vw, 42px);
    font-size: clamp(19.5px, 1vw, 25.5px);
  }

  .hero-cta-row {
    margin-top: clamp(52px, 2.7vw, 69px);
    gap: clamp(18px, 1vw, 25px);
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    gap: clamp(9px, 0.5vw, 13px);
    font-size: clamp(14.25px, 0.74vw, 19px);
    border-radius: clamp(10px, 0.55vw, 14px);
  }

  .hero .btn-primary {
    padding: clamp(13px, 0.68vw, 17px) clamp(21px, 1.13vw, 29px);
  }

  .hero .btn-secondary {
    padding: clamp(12px, 0.63vw, 16px) clamp(20px, 1.08vw, 28px);
  }

  .hero-stage {
    height: clamp(520px, calc(24vw + 88px), 700px);
  }

  .laptop-anchor--hero {
    width: clamp(640px, 35vw, 900px);
  }

  .hero-proof {
    top: clamp(-40px, -1.4vw, -20px);
    max-width: clamp(1440px, 70vw, 1950px);
    gap: clamp(14px, 0.8vw, 21px);
    padding-inline: clamp(72px, 4.25vw, 108px);
    padding-bottom: clamp(88px, 5vw, 128px);
  }

  .proof-seg {
    gap: clamp(7px, 0.4vw, 10px);
    padding: clamp(13px, 0.68vw, 17px) clamp(16px, 0.9vw, 23px);
    border-radius: clamp(14px, 0.75vw, 19px);
    font-size: clamp(14.85px, 0.765vw, 19.8px);
  }

  .proof-seg--process {
    font-size: clamp(13.95px, 0.72vw, 18.45px);
  }
}
