:root {
  --red: #e50915;
  --red-2: #ff2430;
  --black: #070707;
  --black-2: #0d0c0d;
  --ink: #121118;
  --white: #ffffff;
  --muted: rgba(255,255,255,.68);
  --glass: rgba(18,18,24,.64);
  --glass-strong: rgba(15,15,22,.82);
  --stroke: rgba(255,255,255,.13);
  --shadow: 0 24px 80px rgba(0,0,0,.42);
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { background: var(--black); scroll-snap-type: none; scroll-behavior: auto; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--black);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  cursor: none;
  overscroll-behavior-y: auto;
}
body.menu-open { overflow: hidden; }
body.section-scrolling { pointer-events: none; }
body.section-scrolling .topbar,
body.section-scrolling .section-rail,
body.section-scrolling .next-section { pointer-events: auto; }
body.section-scrolling .noise,
body.section-scrolling .noise::before,
body.section-scrolling .blob,
body.section-scrolling .logo-stage::after { animation-play-state: paused; }
a, button { color: inherit; font: inherit; }
a { text-decoration: none; }
button { border: 0; cursor: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
::selection { background: var(--red); color: white; }

#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  background: #080708;
  transition: opacity .7s var(--ease), visibility .7s;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
#preloader span { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.56); }
.preloader-mark { width: 68px; height: 68px; display: grid; place-items: center; background: var(--red); box-shadow: 0 0 50px rgba(229,9,21,.3); }
.preloader-mark img { width: 52px; height: 52px; object-fit: contain; }
.loader-track { width: 220px; height: 2px; background: rgba(255,255,255,.12); overflow: hidden; }
.loader-fill { height: 100%; width: 35%; background: var(--red); animation: loading 1.25s var(--ease) infinite; }
@keyframes loading { 0% { transform: translateX(-120%); } 100% { transform: translateX(420%); } }

.noise {
  position: fixed;
  inset: -18%;
  z-index: 2;
  opacity: .04;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  animation: noiseDrift 16s steps(8) infinite;
  will-change: transform;
}
.noise::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: inherit;
  background-size: 260px 260px;
  animation: noiseDriftAlt 22s steps(10) infinite reverse;
}
@keyframes noiseDrift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-1.2%, .8%, 0); }
  50% { transform: translate3d(.7%, -1%, 0); }
  75% { transform: translate3d(-.8%, -.6%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes noiseDriftAlt {
  0% { transform: translate3d(0, 0, 0); }
  33% { transform: translate3d(1%, -.8%, 0); }
  66% { transform: translate3d(-.6%, 1%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
.mouse-light {
  position: fixed;
  left: 0;
  top: 0;
  width: clamp(280px, 34vw, 520px);
  height: clamp(280px, 34vw, 520px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  opacity: .58;
  filter: blur(48px);
  transform: translate3d(50vw, 50vh, 0) translate(-50%, -50%);
  background: radial-gradient(circle, rgba(229,9,21,.20) 0%, rgba(229,9,21,.12) 20%, rgba(229,9,21,.06) 42%, rgba(229,9,21,.025) 58%, rgba(229,9,21,0) 74%);
  mix-blend-mode: screen;
  transition: opacity .28s ease;
  will-change: transform, opacity;
}
body.cursor-active .mouse-light { opacity: .72; }
.ambient { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: .17; animation: float 14s ease-in-out infinite alternate; }
.blob-one { width: 460px; height: 460px; background: var(--red); top: -190px; left: -110px; }
.blob-two { width: 520px; height: 520px; background: #7a0010; right: -220px; top: 38%; animation-delay: -5s; }
.blob-three { width: 350px; height: 350px; background: #ff2534; bottom: -160px; left: 35%; animation-delay: -9s; }
@keyframes float { to { transform: translate3d(35px, 55px, 0) scale(1.12); } }

.cursor-dot, .cursor-ring { position: fixed; left: 0; top: 0; pointer-events: none; z-index: 999; border-radius: 50%; transform: translate(-50%,-50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--red); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.44); transition: width .2s, height .2s, background .2s, border-color .2s; }
body.cursor-active .cursor-ring { width: 54px; height: 54px; background: rgba(229,9,21,.12); border-color: rgba(229,9,21,.6); }

.glass {
  background: linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.028));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.topbar {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  width: min(1220px, calc(100% - 40px));
  transform: translateX(-50%);
  min-height: 64px;
  padding: 9px 12px 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(10,9,11,.54);
  box-shadow: 0 12px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background .3s, transform .4s var(--ease), border-color .3s;
}
.topbar.scrolled { background: rgba(8,7,9,.84); border-color: rgba(255,255,255,.17); }
.brand { display: flex; align-items: center; gap: 12px; min-width: 190px; }
.brand img { width: 44px; height: 44px; object-fit: cover; }
.brand div { display: grid; gap: 2px; }
.brand strong { font-size: 12px; letter-spacing: .08em; }
.brand span { font-size: 8px; letter-spacing: .18em; color: rgba(255,255,255,.5); }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 36px); }
.desktop-nav a { position: relative; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.58); transition: color .25s; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .25s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.active { color: white; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.icon-button, .menu-button { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: white; border: 1px solid rgba(255,255,255,.1); }
.icon-button svg { width: 18px; }
.menu-button { display: none; position: relative; }
.menu-button span { width: 17px; height: 1.5px; background: white; position: absolute; transition: transform .25s, top .25s; }
.menu-button span:first-child { top: 16px; }
.menu-button span:last-child { top: 24px; }
.menu-button.active span:first-child { top: 20px; transform: rotate(45deg); }
.menu-button.active span:last-child { top: 20px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 85; top: 92px; right: 20px; left: 20px; padding: 20px; border-radius: 20px; display: none; opacity: 0; transform: translateY(-12px); transition: .25s var(--ease); }
.mobile-menu.open { opacity: 1; transform: translateY(0); }
.mobile-menu a { display: block; padding: 15px 10px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.mobile-menu a:last-child { border: 0; }

.section-rail { position: fixed; z-index: 80; right: 25px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 16px; align-items: center; }
.rail-line { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.13); z-index: -1; }
.rail-line span { display: block; width: 1px; height: 0; background: var(--red); transition: height .25s; }
.section-rail a { width: 12px; height: 12px; border-radius: 50%; display: grid; place-items: center; position: relative; }
.section-rail a i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.36); transition: .25s; box-shadow: 0 0 0 0 rgba(229,9,21,.18); }
.section-rail a::before { content: attr(data-label); position: absolute; right: 21px; white-space: nowrap; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; opacity: 0; transform: translateX(8px); transition: .2s; color: rgba(255,255,255,.8); }
.section-rail a:hover::before { opacity: 1; transform: translateX(0); }
.section-rail a.active i { width: 8px; height: 8px; background: var(--red); box-shadow: 0 0 0 6px rgba(229,9,21,.13), 0 0 18px rgba(229,9,21,.5); }

.panel {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: none;
  isolation: isolate;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.panel::before { content: attr(data-index); position: absolute; left: clamp(18px, 3vw, 50px); top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: center; z-index: 5; color: rgba(255,255,255,.16); font-weight: 800; letter-spacing: .2em; font-size: 10px; }
.panel-bg { position: absolute; inset: -7%; width: 114%; height: 114%; object-fit: cover; z-index: -3; filter: grayscale(.35) contrast(1.05); will-change: transform; }
.panel-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(7,5,7,.96) 0%, rgba(10,7,9,.84) 46%, rgba(12,6,8,.62) 100%), linear-gradient(180deg, rgba(229,9,21,.08), transparent 40%, rgba(0,0,0,.42)); }
.panel-inner { width: min(1180px, calc(100% - 100px)); margin: 0 auto; padding: 122px 0 72px; position: relative; z-index: 3; }
.slide-number { position: absolute; bottom: 24px; left: clamp(26px, 4vw, 66px); z-index: 10; font-size: 10px; font-weight: 800; letter-spacing: .18em; color: rgba(255,255,255,.82); }
.slide-number span { color: rgba(255,255,255,.28); }
.hero-overlay { background: linear-gradient(90deg, rgba(7,2,4,.95) 0%, rgba(12,4,7,.82) 48%, rgba(20,3,7,.45) 100%), linear-gradient(0deg, rgba(0,0,0,.75), transparent 70%); }
.hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: clamp(70px, 14vw, 220px); background: linear-gradient(180deg, rgba(229,9,21,.98), rgba(143,0,12,.88)); z-index: 0; clip-path: polygon(0 0, 100% 0, 66% 100%, 0 100%); opacity: .92; }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(44px, 7vw, 110px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 9px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; color: rgba(255,255,255,.58); }
.eyebrow span { width: 28px; height: 2px; background: var(--red); box-shadow: 0 0 14px rgba(229,9,21,.6); }
h1, h2 { margin: 18px 0 0; letter-spacing: -.055em; line-height: .91; font-weight: 900; text-transform: uppercase; }
h1 { font-size: clamp(54px, 8vw, 112px); max-width: 850px; }
.title-desktop { display: block; }
.title-desktop br { display: block; }
.title-mobile { display: none; }
.title-mobile > span { display: block; }
.title-mobile-line { white-space: nowrap; }
.title-mobile-outline { display: block; }
h2 { font-size: clamp(44px, 6.2vw, 84px); }
h1 em, h2 em { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.72); font-style: normal; text-shadow: 0 0 35px rgba(229,9,21,.18); }
.lead, .section-intro { color: var(--muted); line-height: 1.65; }
.lead { max-width: 650px; font-size: clamp(15px, 1.6vw, 20px); margin: 28px 0 0; }
.section-intro { max-width: 590px; font-size: clamp(14px, 1.35vw, 17px); margin: 24px 0 0; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.primary-button { min-height: 50px; padding: 0 20px; display: inline-flex; align-items: center; gap: 14px; background: var(--red); color: white; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 16px 50px rgba(229,9,21,.25); transition: transform .25s, background .25s; }
.primary-button:hover { background: var(--red-2); transform: translateY(-2px); }
.primary-button svg { width: 18px; }
.keyboard-tip { font-size: 10px; color: rgba(255,255,255,.42); }
kbd { display: inline-grid; place-items: center; min-width: 23px; height: 23px; margin-right: 5px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); border-radius: 5px; color: white; }
.hero-side { display: grid; gap: 18px; justify-items: end; }
.logo-stage { width: min(300px, 100%); aspect-ratio: 1; display: grid; place-items: center; border-radius: 28px; background: rgba(229,9,21,.87); overflow: hidden; position: relative; }
.logo-stage::after { content: ""; position: absolute; inset: -40%; background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.22) 49%, transparent 56%); animation: shine 5s ease-in-out infinite; }
@keyframes shine { 0%, 65% { transform: translateX(-65%); } 100% { transform: translateX(65%); } }
.logo-stage img { width: 76%; position: relative; z-index: 1; }
.note-card { width: min(360px, 100%); padding: 20px 22px; border-radius: 18px; display: grid; gap: 8px; }
.note-card span, .card-kicker, .quote-card span, .speech-bubble small, .comment-card span { font-size: 8px; letter-spacing: .18em; color: rgba(255,255,255,.43); font-weight: 800; }
.note-card strong { font-size: 13px; line-height: 1.45; }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.section-copy.compact { max-width: 690px; }
.statement { display: inline-flex; align-items: center; margin-top: 28px; padding: 10px 14px; border-left: 3px solid var(--red); background: rgba(229,9,21,.12); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.checklist-card { border-radius: 24px; padding: clamp(24px, 3vw, 38px); }
.card-kicker { margin-bottom: 16px; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; }
.checklist li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.checklist li:last-child { border-bottom: 0; }
.checklist li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--red); font-size: 9px; font-weight: 800; box-shadow: 0 0 22px rgba(229,9,21,.25); }
.checklist strong { font-size: 15px; }
.checklist p { margin: 6px 0 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.5; }
.card-footer { margin: 16px -20px -20px; padding: 12px 20px; background: var(--red); border-radius: 12px; display: flex; align-items: center; gap: 9px; text-transform: uppercase; font-weight: 800; font-size: 8px; letter-spacing: .09em; }
.card-footer i { width: 7px; height: 7px; background: white; border-radius: 50%; }
.validation-layout { display: grid; grid-template-columns: 1fr .55fr; gap: 24px 50px; align-items: end; }
.comment-card { padding: 22px; border-radius: 18px; position: relative; align-self: end; }
.comment-card strong { display: block; margin-top: 8px; font-size: 13px; line-height: 1.45; }
.comment-card i { position: absolute; left: 24px; bottom: -9px; width: 18px; height: 18px; background: rgba(22,22,29,.85); transform: rotate(45deg); border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.workflow { grid-column: 1 / -1; margin-top: 40px; display: grid; grid-template-columns: repeat(9, auto); align-items: center; justify-content: space-between; gap: 8px; }
.workflow > i { height: 2px; width: clamp(25px, 5vw, 70px); background: linear-gradient(90deg, var(--red), rgba(255,255,255,.12)); }
.flow-step { width: clamp(120px, 13vw, 166px); min-height: 112px; padding: 17px; display: grid; align-content: end; background: rgba(13,14,19,.72); border: 1px solid rgba(255,255,255,.1); border-radius: 15px; position: relative; }
.flow-step span { position: absolute; top: 14px; right: 14px; font-size: 8px; color: rgba(255,255,255,.3); }
.flow-step strong { font-size: 14px; }
.flow-step small { margin-top: 5px; color: rgba(255,255,255,.38); font-size: 9px; }
.flow-step.active { background: linear-gradient(145deg, rgba(229,9,21,.86), rgba(112,0,10,.82)); border-color: rgba(255,255,255,.24); box-shadow: 0 18px 50px rgba(229,9,21,.22); }
.handoff-grid { display: grid; gap: 16px; }
.principle-card { border-radius: 18px; padding: 22px; display: grid; grid-template-columns: 50px 1fr; gap: 16px; align-items: center; transition: transform .25s, border-color .25s, background .25s; }
.principle-card:hover { transform: translateX(-8px); border-color: rgba(229,9,21,.5); background: linear-gradient(135deg, rgba(229,9,21,.17), rgba(255,255,255,.03)); }
.principle-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: var(--red); }
.principle-icon svg { width: 20px; }
.principle-card strong { font-size: 15px; }
.principle-card p { margin: 6px 0 0; color: rgba(255,255,255,.53); font-size: 11px; line-height: 1.45; }
.priority-layout { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.quote-card { margin-top: 25px; max-width: 520px; border-radius: 18px; padding: 19px 21px; display: grid; gap: 8px; }
.quote-card strong { font-size: 13px; line-height: 1.45; }
.quote-card small { color: rgba(255,255,255,.42); font-size: 9px; }
.matrix { border-radius: 24px; padding: 28px; }
.matrix-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.09); }
.matrix-head strong { font-size: 14px; }
.matrix-head span { font-size: 8px; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.35); }
.matrix-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 18px; }
.matrix-item { min-height: 124px; padding: 17px; border-radius: 14px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; justify-content: flex-end; }
.matrix-item b { font-size: 11px; line-height: 1.35; }
.matrix-item span { margin-top: 7px; font-size: 8px; color: rgba(255,255,255,.4); }
.matrix-item.danger { background: linear-gradient(145deg, rgba(229,9,21,.92), rgba(120,0,10,.7)); border-color: rgba(255,255,255,.16); }
.matrix-item.muted { opacity: .55; }
.speech-bubble { margin-top: 28px; max-width: 500px; padding: 20px; border-radius: 16px; display: grid; gap: 8px; }
.speech-bubble strong { font-size: 13px; line-height: 1.5; }
.capacity-card { border-radius: 24px; padding: 30px; }
.capacity-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.09); }
.capacity-head strong { font-size: 15px; }
.capacity-head span { font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.capacity-row { display: grid; grid-template-columns: 1.1fr 1.6fr 48px; gap: 16px; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.capacity-row label { font-size: 11px; color: rgba(255,255,255,.7); }
.capacity-row b { font-size: 8px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); text-align: right; }
.meter { height: 4px; background: rgba(255,255,255,.1); border-radius: 99px; overflow: hidden; }
.meter i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--red), var(--red-2)); box-shadow: 0 0 12px rgba(229,9,21,.5); transition: width 1.2s var(--ease) .25s; }
.reveal.active .meter i, .capacity-card.active .meter i { width: var(--value); }
.capacity-footer { padding-top: 18px; display: flex; gap: 9px; align-items: center; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.55); }
.capacity-footer span { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 13px var(--red); }
.client-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.big-question { margin-top: 18px; font-size: clamp(21px, 2.4vw, 34px); line-height: 1.2; font-weight: 800; max-width: 600px; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.experience-card { min-height: 155px; border-radius: 18px; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; transition: transform .3s, border-color .3s; }
.experience-card:hover { transform: translateY(-6px); border-color: rgba(229,9,21,.5); }
.experience-card span { position: absolute; top: 18px; right: 18px; color: rgba(255,255,255,.24); font-size: 9px; font-weight: 800; }
.experience-card strong { font-size: 14px; }
.experience-card p { margin: 6px 0 0; color: rgba(255,255,255,.43); font-size: 10px; }
.final-overlay { background: linear-gradient(90deg, rgba(8,1,3,.98) 0%, rgba(18,2,6,.91) 54%, rgba(60,0,7,.72) 100%), linear-gradient(0deg, rgba(0,0,0,.7), transparent 60%); }
.final-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 90px); align-items: center; }
.final-title h2 { font-size: clamp(50px, 7vw, 94px); }
.final-checklist { padding: 28px; border-radius: 22px; }
.final-checklist ol { list-style: none; margin: 0; padding: 0; }
.final-checklist li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.final-checklist li:last-child { border-bottom: 0; }
.final-checklist span { width: 30px; height: 30px; display: grid; place-items: center; background: var(--red); border-radius: 50%; font-size: 8px; font-weight: 800; }
.final-checklist strong { font-size: 12px; line-height: 1.4; }
.final-logo { position: absolute; right: 0; bottom: -40px; width: 180px; height: 180px; padding: 22px; display: grid; place-items: center; background: var(--red); box-shadow: 0 28px 70px rgba(229,9,21,.25); }
.final-logo img { width: 100%; }
.next-section { position: fixed; z-index: 75; right: 24px; bottom: 22px; min-width: 104px; height: 42px; border-radius: 13px; display: flex; align-items: center; justify-content: center; gap: 9px; background: rgba(11,10,12,.65); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(15px); color: rgba(255,255,255,.72); transition: .25s; }
.next-section:hover { color: white; border-color: rgba(229,9,21,.55); }
.next-section span { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.next-section svg { width: 15px; }
.next-section.last svg { transform: rotate(180deg); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .mobile-menu { display: block; pointer-events: none; }
  .mobile-menu.open { pointer-events: auto; }
  .hero-grid, .two-column, .priority-layout, .client-layout, .final-layout { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 70px; gap: 36px; }
  .hero-side { display: none; }
  .two-column { gap: 38px; }
  .workflow { grid-template-columns: repeat(5, 1fr); gap: 9px; }
  .workflow > i { display: none; }
  .flow-step { width: auto; min-height: 104px; }
  .validation-layout { grid-template-columns: 1fr; }
  .workflow { grid-column: 1; }
  .comment-card { max-width: 420px; }
  .final-logo { position: static; width: 120px; height: 120px; justify-self: end; margin-top: -10px; }
}

@media (max-width: 720px) {
  html { scroll-snap-type: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .cursor-dot, .cursor-ring, .section-rail, .mouse-light { display: none; }
  .topbar { top: 10px; width: calc(100% - 20px); border-radius: 15px; min-height: 58px; }
  .brand img { width: 38px; height: 38px; }
  .brand div { display: none; }
  .icon-button, .menu-button { width: 38px; height: 38px; }
  .mobile-menu { top: 78px; right: 10px; left: 10px; }
  .panel { min-height: auto; padding: 26px 0; }
  .panel::before { display: none; }
  .panel-inner { width: calc(100% - 36px); padding: 108px 0 70px; }
  .hero { min-height: 100svh; }
  .hero .panel-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding-top: 96px;
    padding-bottom: 72px;
    text-align: center;
  }
  .hero-grid {
    width: 100%;
    justify-items: center;
  }
  .hero-copy {
    width: min(100%, 440px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero .split-title {
    width: 100%;
    text-align: center;
  }
  .hero .eyebrow {
    justify-content: center;
  }
  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stripe { width: 84px; opacity: .7; }
  h1 { font-size: clamp(38px, 12.5vw, 64px); }
  .title-desktop { display: none; }
  .title-mobile {
    display: block;
    line-height: .86;
    letter-spacing: -.05em;
    max-width: 100%;
  }
  .title-mobile > span { display: block; }
  .title-mobile-line {
    white-space: nowrap;
    font-size: clamp(34px, 9.8vw, 46px);
    line-height: .94;
    margin-bottom: 10px;
    color: #fff;
  }
  .title-mobile-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.82);
    text-shadow: 0 0 28px rgba(229,9,21,.14);
    font-size: clamp(66px, 18.5vw, 94px);
    line-height: .82;
    letter-spacing: -.065em;
  }
  .title-mobile-outline + .title-mobile-outline {
    margin-top: -4px;
  }
  h2 { font-size: clamp(38px, 12vw, 58px); }
  .lead, .section-intro { font-size: 14px; }
  .hero .lead { max-width: 32ch; }
  .keyboard-tip { display: none; }
  .checklist-card, .matrix, .capacity-card, .final-checklist { padding: 21px; }
  .workflow { grid-template-columns: 1fr 1fr; }
  .flow-step:last-child { grid-column: 1 / -1; }
  .matrix-grid, .experience-grid { grid-template-columns: 1fr; }
  .matrix-item { min-height: 102px; }
  .capacity-row { grid-template-columns: 1fr; gap: 8px; }
  .capacity-row b { text-align: left; }
  .slide-number { left: 18px; bottom: 18px; }
  .next-section { display: none; }
  .final-logo { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .parallax { transform: none !important; }
  .mouse-light, .noise::before { display: none !important; }
}
