:root {
  --ink: #1d1c1c;
  --paper: #fffdf2;
  --paper-2: #fff8dc;
  --mint: #84f0c7;
  --aqua: #78e9f1;
  --lime: #d7f36b;
  --coral: #ff8c72;
  --violet: #d7a5ff;
  --teal: #007b6f;
  --muted: rgba(29, 28, 28, 0.72);
  --line: #1d1c1c;
  --radius: 6px;
  --max: 1240px;
  --shadow-hard: 0 7px 0 var(--ink);
  --shadow-hard-sm: 0 4px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper-2);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
  text-rendering: optimizeLegibility;
}

.app-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(122deg, #68efdb 0%, #fff07a 48%, #ffad78 100%);
  background-size: 130% 130%;
  animation: gradientShift 11s ease-in-out infinite;
}

.app-background::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(29, 28, 28, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 28, 28, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 78%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 4px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 123, 111, 0.42);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 4.35rem;
  line-height: 0.86;
  text-align: center;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 24px;
  font-size: 3rem;
  line-height: 0.9;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: min(100% - 36px, 1480px);
  min-height: 74px;
  margin: 0 auto;
  padding-top: 22px;
}

.brand,
.nav-side a,
.language-switch,
.menu-button {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
}

.brand-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 13vw, 190px);
  height: 42px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-hard-sm);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 950;
}

.brand small {
  display: none;
}

.nav-side {
  position: absolute;
  top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.nav-side-left {
  left: 0;
}

.nav-side-right {
  right: 0;
}

.nav-side a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 0 15px;
  box-shadow: 0 3px 0 var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  transition: transform 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.nav-side a:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--ink);
}

.nav-side .nav-cta {
  background: var(--ink);
  color: white;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 3px;
  box-shadow: 0 3px 0 var(--ink);
}

.nav-side .language-switch a {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 10px;
  box-shadow: none;
  font-size: 0.78rem;
}

.nav-side .language-switch a:hover {
  background: rgba(29, 28, 28, 0.08);
  transform: none;
  box-shadow: none;
}

.nav-side .language-switch a.is-active {
  background: var(--ink);
  color: white;
}

.menu-button {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  box-shadow: 0 3px 0 var(--ink);
  color: var(--ink);
  padding: 0 14px;
  font-weight: 850;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.top-title,
.hero-kicker {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-hard-sm);
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--ink);
}

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

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

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.wero-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 20px 110px;
}

.hero-title-wrap {
  position: relative;
  z-index: 5;
  display: grid;
  justify-items: center;
  width: min(1180px, 100%);
  text-align: center;
}

.hero-title-wrap h1,
.hero-title-wrap .hero-kicker,
.hero-title-wrap .hero-subcopy,
.hero-title-wrap .hero-actions {
  position: relative;
  z-index: 4;
}

.hero-kicker {
  margin-bottom: 26px;
}

.hero-subcopy {
  max-width: 900px;
  margin-bottom: 0;
  color: rgba(29, 28, 28, 0.78);
  font-size: 1.16rem;
  font-weight: 600;
}

.hero-actions-home {
  position: relative;
  z-index: 6;
  justify-content: center;
  margin-top: 28px;
}

.hero-scroll-pill {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-hard-sm);
  padding: 5px 15px 5px 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  transform: translateX(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-scroll-pill:hover {
  background: white;
  transform: translateX(-50%) translateY(-2px);
}

.hero-scroll-pill span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 1.05rem;
  line-height: 1;
  animation: scrollArrow 1.7s ease-in-out infinite;
}

.hero-kinetic-stage {
  --hero-motion: 0;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform: translate3d(0, calc(var(--hero-motion) * -44px), 0) scale(calc(1 + var(--hero-motion) * 0.035));
  transform-origin: 50% 58%;
  will-change: transform;
}

.hero-hand-art {
  position: absolute;
  z-index: 2;
  width: min(38vw, 570px);
  height: auto;
  pointer-events: none;
  transform-origin: 50% 78%;
  filter: drop-shadow(0 18px 18px rgba(29, 28, 28, 0.13));
  will-change: transform;
}

.hero-hand-art-left {
  bottom: -25%;
  left: max(-178px, -9vw);
  animation: handGestureLeft 6.8s cubic-bezier(0.5, 0, 0.2, 1) infinite;
}

.hero-hand-art-right {
  right: max(-188px, -9vw);
  bottom: -27%;
  animation: handGestureRight 7s cubic-bezier(0.5, 0, 0.2, 1) infinite;
  animation-delay: -1.2s;
}

.hero-title-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(1120px, 108vw);
  height: clamp(300px, 44vw, 500px);
  overflow: visible;
  pointer-events: none;
  transform: translate(-50%, -46%);
}

.burst-lines {
  transform-box: view-box;
  transform-origin: 50% 50%;
  will-change: transform;
}

.burst-lines-a {
  animation: burstDriftA 8.8s ease-in-out infinite alternate;
}

.burst-lines-b {
  animation: burstDriftB 9.4s ease-in-out infinite alternate;
}

.burst-line {
  --dash: 260;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  opacity: 0.74;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: var(--dash);
  stroke-dashoffset: var(--dash);
  animation: burstRay 3.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.burst-line-long {
  --dash: 360;
}

.burst-line-short {
  --dash: 112;
  stroke-width: 4;
  opacity: 0.86;
}

.burst-delay {
  animation-delay: 1.1s;
}

.burst-star {
  fill: white;
  stroke: var(--ink);
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 3px 0 rgba(29, 28, 28, 0.7));
  transform-box: fill-box;
  transform-origin: center;
  animation: burstStarPulse 5.8s ease-in-out infinite;
}

.burst-star-two {
  animation-delay: 1.2s;
}

.finger-motion {
  position: absolute;
  z-index: 4;
  width: clamp(128px, 12vw, 210px);
  height: auto;
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(0 4px 0 rgba(29, 28, 28, 0.18));
}

.finger-motion-left {
  bottom: 28%;
  left: clamp(88px, 15vw, 252px);
  animation: fingerStageLeft 5.8s ease-in-out infinite;
}

.finger-motion-right {
  right: clamp(82px, 13vw, 224px);
  bottom: 31%;
  animation: fingerStageRight 6.1s ease-in-out infinite;
}

.finger-motion-line {
  fill: none;
  stroke: rgba(29, 28, 28, 0.82);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
  vector-effect: non-scaling-stroke;
  animation: fingerLine 3.8s ease-in-out infinite;
}

.finger-motion-line-delay {
  animation-delay: 0.9s;
}

.card-visual span {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-hard-sm);
  color: var(--ink);
  font-weight: 900;
}

.meet-section {
  display: flex;
  min-height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: clamp(96px, 10vw, 140px) 20px;
  text-align: center;
}

.meet-section h2 {
  max-width: 1000px;
  margin-bottom: 0;
  font-size: 4.9rem;
}

.meet-section p:last-child {
  max-width: 850px;
  margin-bottom: 0;
  font-size: 1.18rem;
  font-weight: 600;
}

.flight-section {
  position: relative;
  min-height: 178svh;
  overflow: clip;
  padding-top: 96px;
}

.flight-copy {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.flight-copy h2 {
  max-width: 950px;
  font-size: 4.65rem;
  color: var(--ink);
}

.flight-copy p:last-child {
  max-width: 760px;
  color: rgba(29, 28, 28, 0.86);
  font-size: 1.14rem;
  font-weight: 650;
}

.flight-viewport {
  position: sticky;
  top: 0;
  height: 100svh;
  margin-top: -96svh;
  overflow: hidden;
  pointer-events: none;
}

.flight-aircraft {
  position: absolute;
  top: 53%;
  left: 50%;
  z-index: 2;
  width: min(96vw, 1120px);
  max-width: none;
  isolation: isolate;
  opacity: 0.94;
  transform: translate3d(-50%, -44%, 0) rotate(-4deg) scale(0.86);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  filter: drop-shadow(0 18px 18px rgba(29, 28, 28, 0.14));
}

.flight-speed-lines {
  position: absolute;
  top: 42%;
  left: -12%;
  z-index: 0;
  width: 38%;
  height: 28%;
  pointer-events: none;
  transform: rotate(-11deg);
  transform-origin: right center;
}

.flight-speed-lines span {
  position: absolute;
  right: 0;
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(29, 28, 28, 0.28) 20%, rgba(29, 28, 28, 0.68) 100%);
  box-shadow: 0 0 12px rgba(132, 240, 199, 0.32);
  animation: speedStreak 1.55s ease-in-out infinite;
}

.flight-speed-lines span:nth-child(1) {
  top: 5%;
  width: 72%;
}

.flight-speed-lines span:nth-child(2) {
  top: 33%;
  width: 100%;
  animation-delay: 0.18s;
}

.flight-speed-lines span:nth-child(3) {
  top: 62%;
  width: 62%;
  animation-delay: 0.34s;
}

.flight-speed-lines span:nth-child(4) {
  top: 88%;
  width: 84%;
  animation-delay: 0.5s;
}

.flight-plane {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.what-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.what-visual {
  position: relative;
  display: grid;
  min-height: 500px;
  align-items: center;
}

.what-visual-image {
  width: min(118%, 690px);
  max-width: none;
  height: auto;
  margin-left: -9%;
  filter: drop-shadow(0 26px 30px rgba(29, 28, 28, 0.14));
  transform: rotate(-1.5deg);
  transform-origin: 52% 58%;
}

.what-content p {
  max-width: 720px;
  font-size: 1.12rem;
  font-weight: 600;
}

.shift-section {
  display: grid;
  min-height: 92svh;
  align-content: center;
  text-align: center;
}

.shift-section h2 {
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
  font-size: 4.25rem;
}

.shift-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 930px;
  margin: 20px auto 0;
}

.shift-copy p {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-hard-sm);
  padding: 22px;
  color: rgba(29, 28, 28, 0.8);
  font-weight: 650;
}

.cards-block {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 120svh;
  overflow: hidden;
  padding: 90px 0 120px;
}

.cards-block > h2 {
  width: min(580px, calc(100% - 40px));
  margin: 0 auto 62px;
  font-size: 3.7rem;
  text-align: center;
  text-transform: uppercase;
}

.cards-block__holder {
  display: grid;
  gap: 74px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.cards-block__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1fr);
  column-gap: clamp(34px, 4.8vw, 76px);
  min-height: 440px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(73deg, var(--aqua) 0%, var(--lime) 100%);
  box-shadow: var(--shadow-hard);
  padding: 48px;
}

.cards-block__card:nth-child(2) {
  width: 88%;
  margin-left: auto;
  background: linear-gradient(221deg, var(--violet) 0%, var(--coral) 100%);
}

.cards-block__card:nth-child(3) {
  width: 88%;
  background: linear-gradient(135deg, white 0%, var(--mint) 100%);
}

.card-number {
  position: absolute;
  top: -32px;
  left: 42px;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow-hard-sm);
  font-size: 1.2rem;
  font-weight: 950;
}

.card-visual {
  position: relative;
  min-height: 300px;
}

.card-visual-image-wrap {
  display: grid;
  min-height: 342px;
  align-items: center;
  justify-items: center;
  min-width: 0;
  overflow: clip;
}

.card-visual.card-visual-image-wrap::before,
.card-visual.card-visual-image-wrap::after {
  display: none;
}

.phase-visual-image {
  position: relative;
  z-index: 2;
  width: min(108%, 600px);
  max-width: none;
  height: auto;
  margin-left: -4%;
  filter: drop-shadow(0 24px 26px rgba(29, 28, 28, 0.14));
  transform: rotate(-2deg);
  transform-origin: 52% 55%;
}

.card-visual::before,
.card-visual::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-hard-sm);
  content: "";
}

.card-visual::before {
  top: 52px;
  left: 20px;
  width: 70%;
  height: 46%;
  transform: rotate(-8deg);
}

.card-visual::after {
  right: 22px;
  bottom: 44px;
  width: 54%;
  height: 38%;
  transform: rotate(8deg);
}

.card-visual span {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  background: white;
}

.card-visual span:nth-child(1) {
  top: 18px;
  right: 22%;
}

.card-visual span:nth-child(2) {
  top: 48%;
  left: 2%;
}

.card-visual span:nth-child(3) {
  right: 10%;
  bottom: 12px;
}

.card-copy {
  position: relative;
  z-index: 3;
  max-width: 500px;
}

.card-copy > p:first-child {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 750;
}

.card-copy h3 {
  font-size: 2.7rem;
  text-transform: uppercase;
}

.card-copy > p:last-child {
  color: rgba(29, 28, 28, 0.78);
  font-size: 1.12rem;
  font-weight: 650;
}

.process-section h2,
.catalog-section h2,
.faq-section h2 {
  max-width: 860px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.process-grid article {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-hard-sm);
  padding: 24px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 3px 0 var(--ink);
  font-weight: 950;
}

.process-grid p {
  font-weight: 600;
}

.question-strip {
  width: 100%;
  padding: 120px max(20px, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: white;
  text-align: center;
}

.question-strip .top-title,
.question-strip h2,
.question-card h3 {
  color: white;
}

.question-strip h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: 4rem;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
  text-align: left;
}

.question-card {
  min-height: 260px;
  border: 1px solid white;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 0 white;
  padding: 24px;
}

.question-card > p:first-child {
  color: var(--lime);
  font-weight: 800;
}

.question-card > p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.banks-section {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 110px 20px;
  text-align: center;
}

.banks-section h2 {
  max-width: 940px;
  font-size: 4.4rem;
}

.banks-section > p:not(.top-title) {
  max-width: 760px;
  font-size: 1.12rem;
  font-weight: 650;
}

.ecosystem-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin-top: 42px;
}

.ecosystem-wall span {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 4px 0 var(--ink);
  padding: 0 20px;
  font-weight: 900;
  transition: transform 170ms ease, background 170ms ease;
}

.ecosystem-wall span:hover {
  background: white;
  transform: translateY(-3px);
}

.catalog-section > p:not(.top-title) {
  max-width: 780px;
  font-weight: 620;
}

.script-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.script-card {
  display: block;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-hard-sm);
  padding: 22px;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.script-card:hover {
  background: var(--paper);
  transform: translateY(-3px);
  box-shadow: 0 7px 0 var(--ink);
}

.script-card span,
.pill-row span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--lime);
  padding: 6px 9px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
}

.script-card h3 {
  margin-top: 28px;
}

.script-card p {
  font-weight: 600;
}

.script-card strong {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-hard-sm);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  font-weight: 600;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 440px;
  gap: 58px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  background: linear-gradient(135deg, var(--mint) 0%, var(--paper) 48%, var(--coral) 100%);
}

.final-copy h2 {
  font-size: 4.2rem;
}

.final-copy p:last-child {
  max-width: 720px;
  font-size: 1.14rem;
  font-weight: 650;
}

.lead-modal-shell {
  width: 100%;
}

.lead-cta-card {
  display: grid;
  gap: 16px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-hard);
  padding: clamp(22px, 3vw, 32px);
}

.lead-cta-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 0.98;
}

.lead-cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.5;
}

.lead-cta-card .button {
  width: fit-content;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 18px;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 28, 28, 0.54);
  backdrop-filter: blur(5px);
}

.lead-modal-dialog {
  position: relative;
  width: min(780px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 24px 80px rgba(29, 28, 28, 0.34);
  padding: clamp(22px, 4vw, 34px);
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-close:hover,
.lead-modal-close:focus-visible {
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(0, 123, 111, 0.16);
  outline: none;
}

body.modal-open {
  overflow: hidden;
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-hard);
  padding: 26px;
}

.lead-modal-dialog .lead-form {
  border: 0;
  box-shadow: none;
  padding: 0;
}

.lead-form h2 {
  margin-bottom: 4px;
  font-size: 1.8rem;
  line-height: 1;
}

.lead-form-intro {
  margin: -2px 0 4px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 620;
  line-height: 1.5;
}

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

.lead-form label,
.lead-form .phone-label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 12px;
  font-size: 0.96rem;
  text-transform: none;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 123, 111, 0.16);
  outline: none;
}

.lead-form textarea {
  min-height: 128px;
  resize: vertical;
}

.lead-label-text {
  display: inline-flex;
}

.phone-field {
  position: relative;
  display: grid;
  grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
  gap: 10px;
}

.phone-country-button {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 12px;
  font-size: 0.96rem;
  font-weight: 850;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.phone-country-button:hover,
.phone-country-button:focus-visible {
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 123, 111, 0.16);
  outline: none;
}

.phone-country-chevron {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-country-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: min(360px, 100%);
  max-height: 270px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-hard);
  padding: 6px;
}

.phone-country-menu[hidden] {
  display: none;
}

.phone-country-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  width: 100%;
  align-items: center;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
  background: transparent;
  color: var(--ink);
  padding: 10px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.phone-country-option span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-country-option:hover,
.phone-country-option:focus-visible {
  background: rgba(0, 123, 111, 0.08);
  outline: none;
}

.phone-helper {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 620;
  line-height: 1.5;
  text-transform: none;
}

.lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 620;
  line-height: 1.45;
  text-transform: none;
}

.lead-form .consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--teal);
}

.form-status.is-error {
  color: #9a3412;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 80px;
  align-items: center;
}

.clone-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(28px, 4vw, 64px);
}

.page-hero h1 {
  text-align: left;
}

.hero-copy > p,
.split-section p,
.contact-section p {
  max-width: 720px;
  font-size: 1.08rem;
  font-weight: 620;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  box-shadow: 0 3px 0 var(--ink);
  padding: 7px 11px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.warning {
  background: var(--coral);
}

.hero-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.snapshot-card,
.check-list,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-hard-sm);
  padding: 24px;
}

.snapshot-card h2 {
  font-size: 1.8rem;
}

.snapshot-card dl {
  display: grid;
  margin: 20px 0 0;
}

.snapshot-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(29, 28, 28, 0.2);
  padding: 13px 0;
}

.snapshot-card dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list p {
  margin: 0;
  border-left: 4px solid var(--ink);
  padding-left: 12px;
  color: var(--ink);
  font-weight: 650;
}

.band {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.42);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card p {
  margin: 12px 0 0;
  border-top: 1px solid rgba(29, 28, 28, 0.2);
  padding-top: 12px;
  color: var(--ink);
  font-weight: 620;
}

.clone-hero .hero-copy > p {
  max-width: 780px;
}

.clone-hero-visual {
  position: relative;
  z-index: 0;
  margin: 0;
}

.clone-hero-visual img {
  display: block;
  width: min(112%, 760px);
  height: auto;
  margin-left: auto;
  filter: drop-shadow(0 28px 28px rgba(29, 28, 28, 0.16));
  transform: translateX(3%) rotate(-1.5deg);
}

.clone-studio-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 72px);
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 28px);
  overflow: hidden;
  padding: clamp(92px, 8vw, 128px) 0 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(120, 233, 241, 0.5), transparent 34%),
    radial-gradient(circle at 68% 16%, rgba(255, 240, 122, 0.72), transparent 35%),
    linear-gradient(122deg, #7cebd0 0%, #fff078 50%, #ffb573 100%);
  isolation: isolate;
}

.clone-studio-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(29, 28, 28, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 28, 28, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}

.clone-studio-content {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 1.8vw, 24px);
  text-align: center;
}

.clone-hero-badge {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(29, 28, 28, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 242, 0.82);
  box-shadow: 0 4px 0 rgba(29, 28, 28, 0.88);
  padding: 5px 13px 5px 5px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.clone-hero-badge span {
  border-radius: 999px;
  background: var(--ink);
  padding: 7px 11px;
  color: white;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.clone-hero-badge small {
  overflow: hidden;
  color: rgba(29, 28, 28, 0.68);
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clone-studio-hero h1 {
  max-width: 1120px;
  margin: 0;
  text-align: center;
  font-size: clamp(3.6rem, 7.8vw, 8.35rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.clone-studio-content > p {
  max-width: 860px;
  margin: 0;
  color: rgba(29, 28, 28, 0.66);
  font-size: clamp(1.02rem, 1.52vw, 1.38rem);
  font-weight: 720;
  line-height: 1.36;
}

.clone-studio-pills {
  justify-content: center;
  margin-top: 0;
}

.clone-studio-pills span {
  background: rgba(215, 243, 107, 0.42);
  backdrop-filter: blur(10px);
}

.clone-studio-actions {
  justify-content: center;
  margin-top: 2px;
}

.clone-hero-screenwall {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100vw;
  height: clamp(218px, 26vw, 352px);
  margin: clamp(-10px, -0.55vw, -4px) 0 clamp(-52px, -3vw, -34px);
  align-items: flex-end;
  justify-content: flex-start;
  gap: clamp(16px, 1.6vw, 28px);
  overflow: hidden;
  transform: none;
}

.clone-hero-screen {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 242, 0.28);
  border-radius: 20px 20px 0 0;
  background: #121722;
  box-shadow: 0 18px 40px rgba(29, 28, 28, 0.16);
  animation: cloneScreenFloat 8.5s ease-in-out infinite;
  animation-delay: calc(var(--screen-index) * -0.55s);
}

.clone-hero-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.clone-hero-screen-1 {
  order: 1;
  width: clamp(540px, 47vw, 760px);
  height: clamp(210px, 23vw, 330px);
}

.clone-hero-screen-2 {
  order: 3;
  width: clamp(460px, 39vw, 650px);
  height: clamp(200px, 22vw, 314px);
}

.clone-hero-screen-3 {
  order: 2;
  width: clamp(230px, 18vw, 330px);
  height: clamp(150px, 16vw, 230px);
}

.clone-hero-screen-4 {
  order: 1;
  display: none;
  width: clamp(320px, 24vw, 420px);
  height: clamp(170px, 18vw, 250px);
}

.clone-hero-screen-5 {
  order: 4;
  width: clamp(320px, 25vw, 440px);
  height: clamp(170px, 18vw, 250px);
}

.clone-hero-screen-6 {
  order: 5;
  width: clamp(230px, 18vw, 330px);
  height: clamp(150px, 16vw, 220px);
}

.clone-features-showcase {
  display: grid;
  width: min(100% - 40px, 1152px);
  gap: clamp(32px, 4.8vw, 64px);
  padding-top: clamp(76px, 8vw, 128px);
  padding-bottom: clamp(76px, 8vw, 128px);
}

.clone-showcase-head {
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
  align-items: flex-start;
}

.clone-showcase-title {
  max-width: 410px;
}

.clone-showcase-title .eyebrow {
  margin-bottom: 16px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.54);
  padding: 5px 10px;
  box-shadow: none;
}

.clone-showcase-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.clone-showcase-head > p {
  max-width: 560px;
  margin: 44px 0 0;
  color: rgba(29, 28, 28, 0.58);
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  font-weight: 520;
  line-height: 1.48;
}

.clone-showcase-rule {
  height: 1px;
  margin-top: calc(clamp(32px, 4.8vw, 64px) * -0.45);
  background: rgba(29, 28, 28, 0.14);
}

.clone-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  min-width: 0;
}

.clone-feature-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.clone-feature-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(29, 28, 28, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
  padding: 24px;
  box-shadow: none;
}

.clone-feature-card.has-stack,
.clone-feature-card.has-marquee {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-color: transparent;
  background: rgba(245, 245, 245, 0.58);
}

.clone-feature-card.has-marquee {
  flex: 1;
}

.clone-feature-card-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.clone-feature-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex: 0 0 auto;
}

.clone-feature-icon svg {
  width: 21px;
  height: 21px;
}

.clone-feature-card h3 {
  margin: 0;
  font-size: clamp(1.28rem, 1.8vw, 1.55rem);
  line-height: 1.12;
}

.clone-feature-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(29, 28, 28, 0.58);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 480;
  line-height: 1.5;
}

.clone-feature-stack {
  position: relative;
  min-height: clamp(292px, 28vw, 360px);
  margin: 22px -24px -10px;
  overflow: hidden;
}

.clone-platform-deck {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 10%, rgba(126, 247, 225, 0.24), transparent 36%),
    radial-gradient(circle at 84% 82%, rgba(255, 210, 106, 0.30), transparent 40%);
}

.platform-deck-stage {
  position: relative;
  width: 100%;
  height: clamp(262px, 25vw, 326px);
  perspective: 1000px;
}

.platform-deck-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(88%, 520px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 28, 28, 0.18);
  border-radius: 20px;
  background: #11151f;
  box-shadow: 0 22px 42px rgba(29, 28, 28, 0.22);
  transform-origin: center center;
  animation: platform-card-cycle 12s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  animation-delay: calc(var(--card-index) * -4s);
  will-change: transform, opacity, filter;
}

.clone-feature-card.has-stack:hover .platform-deck-card,
.clone-feature-card.has-stack:hover .platform-deck-dots span {
  animation-play-state: paused;
}

.platform-deck-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.platform-deck-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(13, 16, 22, 0.72);
  padding: 9px 11px;
  color: #fff;
  backdrop-filter: blur(10px);
}

.platform-deck-card figcaption span {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
}

.platform-deck-card figcaption small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
}

.platform-deck-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  z-index: 7;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.platform-deck-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(29, 28, 28, 0.24);
  animation: platform-dot-cycle 12s linear infinite;
  animation-delay: calc(var(--dot-index) * -4s);
}

.clone-feature-marquee {
  display: flex;
  gap: 16px;
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
  min-width: 0;
  min-height: clamp(220px, 23vw, 280px);
  margin: 20px -24px -10px;
  overflow: hidden;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.clone-feature-marquee div {
  display: flex;
  min-width: max-content;
  gap: 16px;
  animation: marquee-x 30s linear infinite;
}

.clone-feature-marquee img {
  display: block;
  width: clamp(246px, 25vw, 350px);
  height: clamp(188px, 19vw, 238px);
  border-radius: 12px;
  object-fit: contain;
  flex: 0 0 auto;
}

.clone-feature-badge-rails {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
  margin-top: -14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.clone-feature-badge-lane {
  display: flex;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.clone-feature-badge-row {
  display: flex;
  width: max-content;
  min-width: max-content;
  gap: 14px;
  animation: marquee-x 34s linear infinite;
}

.clone-feature-badge-lane.reverse .clone-feature-badge-row {
  animation-direction: reverse;
}

.clone-feature-badge-row span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(29, 28, 28, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 720;
  white-space: nowrap;
}

.clone-model-section .section-heading,
.clone-legal-section .clone-legal-card {
  max-width: 980px;
}

.clone-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.clone-model-grid article {
  border-top: 1px solid rgba(29, 28, 28, 0.28);
  padding-top: 18px;
}

.clone-model-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: rgba(29, 28, 28, 0.46);
  font-size: 0.9rem;
  font-weight: 900;
}

.clone-model-grid h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.clone-model-grid p,
.clone-legal-card p {
  margin: 0;
  color: rgba(29, 28, 28, 0.72);
  font-size: 1.04rem;
  font-weight: 620;
  line-height: 1.42;
}

.clone-legal-card {
  border: 1px solid rgba(29, 28, 28, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  padding: clamp(24px, 4vw, 42px);
}

.clone-legal-card h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: 0.94;
}

.clone-modules-section .section-heading {
  max-width: 900px;
}

.clone-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.clone-module-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-hard-sm);
  padding: 24px;
}

.clone-module-card h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.clone-module-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clone-module-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(29, 28, 28, 0.78);
  font-size: 0.98rem;
  font-weight: 640;
}

.clone-module-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--lime);
  content: "";
  transform: translateY(-50%);
}

.clone-overview,
.clone-business-section,
.clone-roadmap-section {
  scroll-margin-top: 100px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 320px 1fr 0.85fr;
  gap: 48px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 34px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: white;
  font-size: 1rem;
}

.footer-grid p,
.site-footer small {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer .brand-mark {
  box-shadow: 0 4px 0 rgba(255, 255, 255, 0.32);
}

.footer-brand {
  justify-content: flex-start;
}

.site-footer .brand-logo-wrap {
  width: 184px;
  height: auto;
  border-radius: 16px;
  background: white;
  padding: 8px 10px;
}

.site-footer .brand-logo {
  max-height: 34px;
}

.footer-brand-note {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 760;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes gradientShift {
  0%,
  100% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 0 0;
  }
  50% {
    background-position: 50% 50%;
  }
  75% {
    background-position: 100% 100%;
  }
}

@keyframes cloneScreenFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes burstRay {
  0% {
    opacity: 0;
    stroke-dashoffset: var(--dash);
  }
  18% {
    opacity: 0.9;
    stroke-dashoffset: 0;
  }
  68% {
    opacity: 0.62;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: calc(var(--dash) * -0.42);
  }
}

@keyframes burstDriftA {
  0% {
    translate: -10px 6px;
    rotate: -0.6deg;
  }
  100% {
    translate: -28px -2px;
    rotate: -1.9deg;
  }
}

@keyframes burstDriftB {
  0% {
    translate: 10px 6px;
    rotate: 0.6deg;
  }
  100% {
    translate: 28px -2px;
    rotate: 1.9deg;
  }
}

@keyframes handGestureLeft {
  0%,
  100% {
    translate: -10px 14px;
    rotate: -2deg;
    scale: 1;
  }
  36% {
    translate: 2px -4px;
    rotate: 1.2deg;
    scale: 1.018;
  }
  54% {
    translate: 6px -7px;
    rotate: 2.2deg;
    scale: 1.022;
  }
}

@keyframes handGestureRight {
  0%,
  100% {
    translate: 10px 14px;
    rotate: 2deg;
    scale: 1;
  }
  36% {
    translate: -2px -4px;
    rotate: -1.2deg;
    scale: 1.018;
  }
  54% {
    translate: -6px -7px;
    rotate: -2.2deg;
    scale: 1.022;
  }
}

@keyframes burstStarPulse {
  0%,
  100% {
    opacity: 0.88;
    scale: 0.9;
    rotate: -5deg;
  }
  50% {
    opacity: 1;
    scale: 1.05;
    rotate: 5deg;
  }
}

@keyframes fingerStageLeft {
  0%,
  100% {
    translate: -2px 8px;
    rotate: -4deg;
  }
  50% {
    translate: 8px -10px;
    rotate: 2deg;
  }
}

@keyframes fingerStageRight {
  0%,
  100% {
    translate: 2px 8px;
    rotate: 4deg;
  }
  50% {
    translate: -8px -10px;
    rotate: -2deg;
  }
}

@keyframes fingerLine {
  0%,
  100% {
    opacity: 0;
    stroke-dashoffset: 190;
  }
  25%,
  58% {
    opacity: 0.82;
    stroke-dashoffset: 0;
  }
  82% {
    opacity: 0;
    stroke-dashoffset: -72;
  }
}

@keyframes floatBadge {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes marquee-x {
  to {
    transform: translateX(calc(-100% - 12px));
  }
}

@keyframes platform-card-cycle {
  0%,
  27% {
    z-index: 6;
    opacity: 1;
    filter: saturate(1) brightness(1);
    transform: translate3d(-50%, -50%, 70px) rotate(-1.2deg) scale(1);
  }
  33%,
  60% {
    z-index: 5;
    opacity: 0.72;
    filter: saturate(0.86) brightness(0.95);
    transform: translate3d(-50%, calc(-50% - 18px), 0) rotate(2.1deg) scale(0.93);
  }
  66%,
  93% {
    z-index: 4;
    opacity: 0.46;
    filter: saturate(0.7) brightness(0.9);
    transform: translate3d(-50%, calc(-50% - 34px), -70px) rotate(-2.4deg) scale(0.86);
  }
  100% {
    z-index: 6;
    opacity: 1;
    filter: saturate(1) brightness(1);
    transform: translate3d(-50%, -50%, 70px) rotate(-1.2deg) scale(1);
  }
}

@keyframes platform-dot-cycle {
  0%,
  27% {
    width: 22px;
    background: var(--ink);
  }
  33%,
  100% {
    width: 7px;
    background: rgba(29, 28, 28, 0.24);
  }
}

@keyframes scrollArrow {
  0%,
  100% {
    translate: 0 -1px;
  }
  50% {
    translate: 0 3px;
  }
}

@keyframes speedStreak {
  0%,
  100% {
    opacity: 0.26;
    translate: 12px 0;
    scale: 0.74 1;
  }
  50% {
    opacity: 0.78;
    translate: -9px 0;
    scale: 1 1;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 6.6rem;
  }

  h2 {
    font-size: 4.4rem;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 8.4rem;
  }

  h2 {
    font-size: 5.1rem;
  }
}

@media (min-width: 761px) {
  h1 span {
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .flight-section {
    min-height: auto;
  }

  .flight-viewport {
    position: relative;
    height: min(62vw, 620px);
    min-height: 320px;
    margin-top: 12px;
  }

  .flight-aircraft {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) rotate(-4deg) scale(0.92);
  }
}

@media (max-width: 1120px) {
  .nav-side-left {
    display: none;
  }

  .hero-title-burst {
    width: min(1040px, 126vw);
    height: clamp(310px, 58vw, 500px);
  }

  .flight-copy h2 {
    font-size: 4rem;
  }

  .what-section,
  .faq-section,
  .final-cta,
  .page-hero,
  .split-section,
  .contact-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .clone-hero-visual {
    max-width: 680px;
    margin: 12px auto 0;
  }

  .clone-hero-visual img {
    margin: 0 auto;
    width: min(100%, 680px);
    transform: rotate(-1.5deg);
  }

  .clone-studio-hero h1 {
    font-size: clamp(3.4rem, 12vw, 7.8rem);
  }

  .clone-hero-screenwall {
    width: 100vw;
    height: clamp(230px, 34vw, 340px);
    gap: 16px;
    transform: none;
  }

  .clone-hero-screen-1 {
    width: clamp(340px, 48vw, 560px);
    height: clamp(200px, 28vw, 310px);
  }

  .clone-hero-screen-2 {
    width: clamp(320px, 40vw, 480px);
    height: clamp(180px, 25vw, 280px);
  }

  .clone-hero-screen-3 {
    width: clamp(220px, 25vw, 300px);
    height: clamp(150px, 21vw, 220px);
  }

  .clone-hero-screen-4 {
    display: none;
    width: clamp(230px, 26vw, 320px);
    height: clamp(160px, 22vw, 230px);
  }

  .clone-hero-screen-5,
  .clone-hero-screen-6 {
    display: none;
  }

  .question-grid,
  .process-grid,
  .feature-grid,
  .clone-model-grid,
  .clone-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .script-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-block__card,
  .cards-block__card:nth-child(2),
  .cards-block__card:nth-child(3) {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .clone-showcase-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .clone-showcase-head > p {
    max-width: 720px;
    margin-top: 0;
  }

  .cards-block__card {
    grid-template-columns: 1fr;
    row-gap: 24px;
    min-height: auto;
    padding: 42px 30px;
  }

  .card-visual-image-wrap {
    min-height: auto;
  }

  .phase-visual-image {
    width: min(100%, 560px);
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: min(100% - 24px, 1480px);
    justify-content: space-between;
  }

  .brand-center {
    position: static;
    transform: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, 100%);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-side a {
    justify-content: center;
    background: white;
  }

  .wero-hero {
    padding: 110px 12px 120px;
  }

  .hero-kinetic-stage {
    transform: translate3d(0, calc(var(--hero-motion) * -24px), 0) scale(calc(1 + var(--hero-motion) * 0.02));
  }

  .hero-title-burst {
    top: 43%;
    width: 126vw;
    height: 310px;
  }

  .hero-hand-art {
    width: 88vw;
  }

  .hero-hand-art-left {
    bottom: -21%;
    left: -58%;
  }

  .hero-hand-art-right {
    right: -64%;
    bottom: -22%;
  }

  .finger-motion {
    width: 116px;
  }

  .finger-motion-left {
    bottom: 14%;
    left: 5%;
  }

  .finger-motion-right {
    right: 4%;
    bottom: 15%;
  }

  h1 {
    font-size: 4.15rem;
  }

  h2,
  .meet-section h2,
  .shift-section h2,
  .question-strip h2,
  .banks-section h2,
  .final-copy h2,
  .cards-block > h2 {
    font-size: 3rem;
  }

  .hero-actions-home {
    width: min(100%, 340px);
  }

  .hero-actions .button {
    width: 100%;
    max-width: 340px;
  }

  .clone-studio-hero {
    min-height: auto;
    gap: 32px;
    padding-top: 108px;
  }

  .clone-studio-content {
    width: min(100% - 24px, 540px);
    gap: 18px;
  }

  .clone-hero-badge {
    flex-direction: column;
    gap: 6px;
    border-radius: 24px;
    padding: 6px;
  }

  .clone-hero-badge small {
    max-width: 280px;
    padding: 0 8px 4px;
    font-size: 0.78rem;
    line-height: 1.25;
    white-space: normal;
  }

  .clone-studio-hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.6rem);
    line-height: 0.84;
  }

  .clone-studio-content > p {
    font-size: 1rem;
  }

  .clone-studio-pills {
    gap: 8px;
  }

  .clone-studio-pills span {
    padding: 6px 9px;
    font-size: 0.78rem;
  }

  .clone-hero-screenwall {
    width: 100vw;
    height: 220px;
    margin-top: 12px;
    margin-bottom: -24px;
    gap: 12px;
    transform: none;
  }

  .clone-hero-screen {
    border-radius: 15px;
  }

  .clone-hero-screen-1 {
    width: min(76vw, 340px);
    height: 188px;
  }

  .clone-hero-screen-2 {
    width: min(66vw, 292px);
    height: 168px;
    opacity: 0.74;
  }

  .clone-hero-screen-3 {
    width: min(48vw, 210px);
    height: 148px;
    opacity: 0.74;
  }

  .clone-hero-screen-4 {
    display: none;
  }

  .hero-scroll-pill {
    bottom: 20px;
    max-width: calc(100% - 28px);
    white-space: nowrap;
  }

  .section {
    width: min(100% - 24px, var(--max));
    padding: 76px 0;
  }

  .meet-section,
  .flight-section,
  .banks-section,
  .shift-section {
    min-height: auto;
    padding: 86px 12px;
  }

  .flight-section {
    min-height: 142svh;
    padding-right: 0;
    padding-left: 0;
  }

  .flight-viewport {
    margin-top: -72svh;
  }

  .flight-aircraft {
    width: min(152vw, 760px);
  }

  .flight-speed-lines {
    left: -18%;
    width: 42%;
  }

  .what-visual {
    min-height: auto;
    margin: 0 auto 8px;
  }

  .what-visual-image {
    width: 100%;
    max-width: 390px;
    margin-left: 0;
    transform: rotate(-1deg);
  }

  .shift-copy,
  .question-grid,
  .process-grid,
  .feature-grid,
  .clone-feature-grid,
  .clone-model-grid,
  .clone-module-grid,
  .script-grid {
    grid-template-columns: 1fr;
  }

  .clone-feature-card {
    border-radius: 20px;
    padding: 22px;
  }

  .clone-feature-stack {
    min-height: 260px;
    margin: 18px -22px -8px;
  }

  .platform-deck-stage {
    height: 236px;
  }

  .platform-deck-card {
    width: min(88vw, 318px);
    border-radius: 14px;
  }

  .platform-deck-card img {
    aspect-ratio: 16 / 9;
  }

  .platform-deck-card figcaption {
    right: 9px;
    bottom: 9px;
    left: 9px;
    padding: 8px 9px;
  }

  .platform-deck-card figcaption small {
    display: none;
  }

  .clone-feature-marquee {
    width: calc(100% + 44px);
    min-height: 216px;
    margin: 18px -22px -8px;
  }

  .clone-feature-marquee img {
    width: 284px;
    height: 196px;
  }

  .clone-feature-badge-rails {
    gap: 10px;
    margin-top: -6px;
  }

  .clone-feature-badge-row span {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .cards-block {
    min-height: auto;
    padding: 76px 0 90px;
  }

  .cards-block__holder {
    width: min(100% - 24px, var(--max));
    gap: 54px;
  }

  .cards-block__card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 22px;
  }

  .card-visual {
    min-height: 220px;
  }

  .card-visual-image-wrap {
    min-height: auto;
  }

  .phase-visual-image {
    width: 100%;
    max-width: 430px;
    margin-left: 0;
    transform: rotate(-1deg);
  }

  .card-copy h3 {
    font-size: 2.25rem;
  }

  .question-strip,
  .final-cta,
  .band {
    padding-right: 12px;
    padding-left: 12px;
  }

  .faq-section {
    gap: 22px;
  }

  .lead-form {
    padding: 22px;
  }

  .page-hero {
    width: min(100% - 24px, var(--max));
    padding-top: 122px;
  }

  .page-hero h1 {
    font-size: 4rem;
  }

  .clone-hero-visual {
    max-width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.25rem, 9.8vw, 2.4rem);
    line-height: 0.92;
  }

  h2,
  .meet-section h2,
  .flight-copy h2,
  .shift-section h2,
  .question-strip h2,
  .banks-section h2,
  .final-copy h2,
  .cards-block > h2 {
    font-size: 2.55rem;
  }

  .hero-subcopy {
    font-size: 1rem;
  }

  .brand small {
    display: none;
  }
}

/* Responsive stabilization pass */
@media (max-width: 980px) {
  .nav-shell {
    width: min(100% - 24px, 1480px);
    min-height: 68px;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 14px;
  }

  .brand-center {
    position: static;
    transform: none;
  }

  .brand-logo-wrap {
    width: clamp(132px, 27vw, 170px);
    height: 40px;
  }

  .nav-side-left {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(342px, calc(100vw - 24px));
    gap: 9px;
    border: 1px solid rgba(29, 28, 28, 0.16);
    border-radius: 20px;
    background: rgba(255, 253, 242, 0.96);
    box-shadow: 0 10px 0 rgba(29, 28, 28, 0.86);
    padding: 10px;
    backdrop-filter: blur(14px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-side a,
  .nav-side .nav-cta {
    justify-content: center;
    width: 100%;
    min-height: 42px;
    background: white;
    color: var(--ink);
  }

  .nav-side .nav-cta {
    background: var(--ink);
    color: white;
  }

  .main-nav .language-switch {
    justify-content: center;
    width: 100%;
    background: white;
  }

  .main-nav .language-switch a {
    width: auto;
    flex: 1 1 0;
  }

  .wero-hero {
    min-height: 100svh;
    padding-top: 104px;
  }

  .hero-title-wrap {
    width: min(900px, 100%);
  }

  .hero-title-wrap h1 {
    font-size: clamp(4.25rem, 13vw, 7rem);
    line-height: 0.86;
  }

  .hero-subcopy {
    max-width: 740px;
    font-size: clamp(1rem, 2.4vw, 1.12rem);
  }

  .hero-hand-art {
    width: min(48vw, 430px);
  }

  .hero-hand-art-left {
    left: max(-190px, -18vw);
    bottom: -22%;
  }

  .hero-hand-art-right {
    right: max(-190px, -18vw);
    bottom: -23%;
  }

  .meet-section h2,
  .flight-copy h2,
  .shift-section h2,
  .banks-section h2,
  .final-copy h2 {
    font-size: clamp(3rem, 8vw, 4.4rem);
  }

  .cards-block__card,
  .cards-block__card:nth-child(2),
  .cards-block__card:nth-child(3) {
    width: 100%;
    margin-left: 0;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
    padding: clamp(30px, 4vw, 42px);
  }

  .card-visual-image-wrap {
    min-height: clamp(240px, 35vw, 330px);
  }

  .phase-visual-image {
    width: min(100%, 520px);
    margin-left: 0;
  }

  .process-grid,
  .question-grid,
  .clone-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .script-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clone-studio-hero {
    min-height: auto;
    padding-top: 106px;
  }

  .clone-studio-content {
    width: min(100% - 32px, 860px);
  }

  .clone-studio-hero h1 {
    font-size: clamp(4.15rem, 12.5vw, 7rem);
    line-height: 0.86;
  }

  .clone-studio-content > p {
    max-width: 720px;
    font-size: clamp(1rem, 2.2vw, 1.18rem);
  }

  .clone-hero-screenwall {
    width: 100vw;
    height: clamp(214px, 32vw, 312px);
    margin-right: calc(50% - 50vw);
    margin-bottom: clamp(-36px, -3vw, -20px);
    margin-left: calc(50% - 50vw);
    gap: 14px;
  }

  .clone-hero-screen-1 {
    width: clamp(360px, 54vw, 540px);
    height: clamp(196px, 28vw, 286px);
  }

  .clone-hero-screen-2 {
    width: clamp(300px, 42vw, 430px);
    height: clamp(176px, 25vw, 250px);
  }

  .clone-hero-screen-3 {
    width: clamp(210px, 28vw, 282px);
    height: clamp(142px, 19vw, 198px);
  }

  .clone-feature-grid {
    gap: 20px;
  }

  .clone-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .clone-feature-grid {
    grid-template-columns: 1fr;
  }

  .clone-feature-card.has-marquee {
    min-height: auto;
  }

  .clone-showcase-head {
    gap: 18px;
  }

  .clone-showcase-rule {
    margin-top: -14px;
  }

  .platform-deck-stage {
    height: clamp(250px, 40vw, 330px);
  }

  .clone-feature-marquee {
    min-height: 224px;
  }
}

@media (max-width: 640px) {
  .app-background::after,
  .clone-studio-hero::before {
    background-size: 48px 48px;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .nav-shell {
    width: min(100% - 20px, 1480px);
  }

  .main-nav {
    width: calc(100vw - 20px);
  }

  .lead-form-grid,
  .phone-field {
    grid-template-columns: 1fr;
  }

  .lead-cta-card .button {
    width: 100%;
  }

  .lead-modal {
    padding: 10px;
  }

  .lead-modal-dialog {
    width: min(100%, calc(100vw - 48px));
    max-height: calc(100dvh - 20px);
    padding: 22px;
  }

  .phone-country-menu {
    width: 100%;
  }

  .wero-hero {
    padding: 96px 14px 96px;
  }

  .hero-title-wrap h1 {
    font-size: clamp(3.15rem, 15.2vw, 4.4rem);
    line-height: 0.88;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 0.98rem;
  }

  .hero-subcopy {
    max-width: 420px;
    font-size: 1rem;
    line-height: 1.4;
  }

  .hero-hand-art {
    width: min(74vw, 330px);
  }

  .hero-hand-art-left {
    left: -45%;
    bottom: -18%;
  }

  .hero-hand-art-right {
    right: -50%;
    bottom: -18%;
  }

  .hero-title-burst {
    width: 138vw;
    height: 260px;
  }

  .burst-star {
    scale: 0.76;
  }

  .finger-motion {
    display: none;
  }

  .hero-scroll-pill {
    min-height: 44px;
    max-width: calc(100vw - 24px);
    padding-right: 12px;
    font-size: 0.82rem;
  }

  .hero-scroll-pill span {
    width: 32px;
    height: 32px;
  }

  .section {
    width: min(100% - 24px, var(--max));
    padding: 64px 0;
  }

  .meet-section,
  .banks-section,
  .shift-section,
  .question-strip,
  .final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  h2,
  .meet-section h2,
  .flight-copy h2,
  .shift-section h2,
  .question-strip h2,
  .banks-section h2,
  .final-copy h2,
  .cards-block > h2 {
    font-size: clamp(2.35rem, 12vw, 3.1rem);
    line-height: 0.95;
  }

  .meet-section p:last-child,
  .flight-copy p:last-child,
  .banks-section > p:not(.top-title),
  .final-copy p:last-child {
    font-size: 1rem;
    line-height: 1.42;
  }

  .flight-section {
    min-height: auto;
    padding-top: 72px;
  }

  .flight-viewport {
    position: relative;
    height: 420px;
    min-height: 420px;
    margin-top: 4px;
  }

  .flight-aircraft {
    width: min(136vw, 620px);
    transform: translate3d(-50%, -48%, 0) rotate(-4deg) scale(0.86);
  }

  .what-section {
    gap: 26px;
  }

  .what-content p {
    font-size: 1rem;
  }

  .shift-copy {
    gap: 12px;
  }

  .shift-copy p {
    padding: 18px;
  }

  .cards-block {
    padding: 68px 0 78px;
  }

  .cards-block > h2 {
    width: min(100% - 24px, 520px);
    margin-bottom: 42px;
  }

  .cards-block__holder {
    width: min(100% - 24px, var(--max));
    gap: 50px;
  }

  .cards-block__card,
  .cards-block__card:nth-child(2),
  .cards-block__card:nth-child(3) {
    grid-template-columns: 1fr;
    padding: 28px 18px 24px;
  }

  .card-number {
    top: -26px;
    left: 18px;
    width: 58px;
    height: 58px;
    font-size: 1rem;
  }

  .card-visual {
    min-height: 210px;
  }

  .card-visual-image-wrap {
    min-height: 220px;
    overflow: visible;
  }

  .phase-visual-image {
    width: min(100%, 390px);
    transform: rotate(-1.2deg);
  }

  .card-copy h3 {
    font-size: clamp(1.9rem, 10.5vw, 2.55rem);
  }

  .process-grid,
  .question-grid,
  .clone-model-grid,
  .clone-module-grid,
  .script-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .question-card,
  .script-card {
    min-height: auto;
  }

  .ecosystem-wall {
    gap: 9px;
    margin-top: 30px;
  }

  .ecosystem-wall span {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .faq-section,
  .final-cta,
  .contact-section,
  .split-section,
  .page-hero {
    gap: 28px;
  }

  .lead-form {
    padding: 20px;
  }

  .clone-studio-hero {
    padding-top: 94px;
    gap: 22px;
  }

  .clone-studio-content {
    width: min(100% - 22px, 520px);
    gap: 14px;
  }

  .clone-studio-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.15rem);
    line-height: 0.88;
  }

  .clone-studio-content > p {
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .clone-studio-pills {
    gap: 7px;
  }

  .clone-studio-pills span {
    padding: 5px 8px;
    font-size: 0.72rem;
  }

  .clone-studio-actions {
    width: min(100%, 340px);
  }

  .clone-hero-screenwall {
    height: 184px;
    margin-top: 10px;
    margin-bottom: -16px;
    gap: 10px;
  }

  .clone-hero-screen {
    border-radius: 14px 14px 0 0;
    animation: none;
  }

  .clone-hero-screen-1 {
    width: min(94vw, 380px);
    height: 176px;
  }

  .clone-hero-screen-2 {
    width: min(60vw, 250px);
    height: 150px;
    opacity: 0.78;
  }

  .clone-hero-screen-3,
  .clone-hero-screen-4,
  .clone-hero-screen-5,
  .clone-hero-screen-6 {
    display: none;
  }

  .clone-features-showcase {
    width: min(100% - 24px, 1152px);
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .clone-showcase-title h2 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .clone-showcase-head > p {
    font-size: 1rem;
  }

  .clone-feature-card {
    border-radius: 18px;
    padding: 20px;
  }

  .clone-feature-card h3 {
    font-size: 1.2rem;
  }

  .clone-feature-card p {
    font-size: 0.98rem;
  }

  .clone-feature-stack {
    min-height: 232px;
    margin: 18px -20px -8px;
  }

  .platform-deck-stage {
    height: 232px;
  }

  .platform-deck-card {
    width: min(92%, 330px);
    border-radius: 14px;
  }

  .platform-deck-card img {
    aspect-ratio: 16 / 9;
  }

  .platform-deck-card figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 8px;
  }

  .platform-deck-card figcaption small {
    display: none;
  }

  .clone-feature-marquee {
    width: calc(100% + 40px);
    min-height: 194px;
    margin: 16px -20px -8px;
  }

  .clone-feature-marquee img {
    width: 260px;
    height: 176px;
  }

  .clone-feature-badge-rails {
    margin-top: -6px;
  }

  .clone-feature-badge-row span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .clone-module-card {
    padding: 20px;
  }

  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, var(--max));
  }
}

@media (max-width: 380px) {
  .hero-title-wrap h1,
  .clone-studio-hero h1 {
    font-size: clamp(2.45rem, 14.4vw, 3.25rem);
  }

  .button {
    width: 100%;
  }

  .clone-studio-pills span:nth-child(n + 6) {
    display: none;
  }

  .clone-hero-screenwall {
    height: 168px;
  }

  .clone-hero-screen-1 {
    width: 92vw;
    height: 160px;
  }

  .clone-hero-screen-2 {
    width: 54vw;
    height: 134px;
  }

  .card-copy h3 {
    font-size: 1.85rem;
  }
}
