:root {
  --black: #090909;
  --ink: #151515;
  --paper: #f2f0ea;
  --paper-2: #dedbd2;
  --acid: #c9ff3d;
  --orange: #ff5c35;
  --white: #ffffff;
  --line-dark: rgba(255,255,255,.16);
  --line-light: rgba(9,9,9,.16);
  --display: "Space Grotesk", "Arial Black", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; }
button { color: inherit; }
img, video { display: block; max-width: 100%; }
::selection { background: var(--acid); color: var(--black); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--acid);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 700;
}
.skip-link:focus { transform: none; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .045;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 200;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: var(--scroll, 0%);
  height: 100%;
  background: var(--acid);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 3vw, 52px);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.wordmark {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: 700 14px/1 var(--display);
  letter-spacing: .08em;
  text-decoration: none;
}
.wordmark span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
}
.site-header nav { display: flex; gap: clamp(22px, 3vw, 48px); }
.site-header nav a, .header-cta {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--acid); }
.header-cta { justify-self: end; color: var(--white); }
.header-cta span { color: var(--acid); margin-left: 6px; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: 4vw;
  padding: clamp(120px, 14vh, 180px) clamp(20px, 5vw, 84px) clamp(80px, 10vh, 120px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 40%, rgba(201,255,61,.11), transparent 25%),
    radial-gradient(circle at 10% 90%, rgba(255,92,53,.11), transparent 28%),
    var(--black);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(26px, 5vh, 58px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(201,255,61,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(201,255,61,0); } }
.hero h1 {
  margin: 0;
  font: 700 clamp(49px, 7.1vw, 118px)/.82 var(--display);
  letter-spacing: -.078em;
  text-transform: uppercase;
}
.headline-line { display: block; width: max-content; }
.headline-line.outline {
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(255,255,255,.78);
  text-stroke: 1.6px rgba(255,255,255,.78);
}
.headline-line.accent {
  color: var(--acid);
  transform: translateX(clamp(18px, 4vw, 70px));
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: clamp(24px, 5vw, 84px);
  margin-top: clamp(36px, 7vh, 70px);
  padding-left: clamp(0px, 5vw, 82px);
}
.hero-bottom p {
  max-width: 450px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: clamp(15px, 1.3vw, 18px);
}
.hero-bottom strong { color: var(--white); font-weight: 500; }
.text-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font: 600 11px/1 var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.38);
}
.text-link span { color: var(--acid); }

.hero-visual {
  min-height: min(68vh, 720px);
  display: grid;
  place-items: center;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.hero-card {
  position: absolute;
  width: clamp(205px, 20vw, 310px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  padding: 0;
  background: #222;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 38px 90px rgba(0,0,0,.55);
}
.hero-card img, .hero-card video { width: 100%; height: 100%; object-fit: cover; }
.card-main {
  z-index: 3;
  cursor: pointer;
  transform: translate3d(var(--mx, 0), var(--my, 0), 60px) rotate(-2deg);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.card-main:hover { transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 8px), 74px) rotate(0); box-shadow: 0 48px 110px rgba(0,0,0,.75); }
.card-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0,0,0,.68));
  pointer-events: none;
}
.card-back-left { transform: translate3d(-45%, 8%, -30px) rotate(-12deg); opacity: .42; }
.card-back-right { transform: translate3d(45%, -5%, -20px) rotate(11deg); opacity: .46; }
.hero-timecode {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 5px 7px;
  background: rgba(0,0,0,.72);
  color: var(--acid);
  font: 600 9px/1 var(--display);
  letter-spacing: .08em;
}
.play-badge {
  position: absolute;
  z-index: 2;
  inset: auto 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 13px;
  background: var(--acid);
  color: var(--black);
  font: 700 10px/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.play-badge i, .work-play i {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}
.floating-note {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--black);
  font: 700 10px/1.1 var(--display);
  text-align: center;
}
.floating-note strong { font-size: 25px; }
.note-one { width: 58px; height: 64px; left: 4%; top: 16%; transform: rotate(-8deg); }
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: clamp(20px, 3vw, 52px);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.36);
  font: 600 9px/1 var(--display);
  letter-spacing: .18em;
}
.scroll-cue span { width: 34px; height: 1px; background: var(--acid); animation: scrollLine 2s ease-in-out infinite; transform-origin: left; }
@keyframes scrollLine { 50% { transform: scaleX(.35); } }

@keyframes ticker { to { transform: translateX(-50%); } }

.section-pad { padding: clamp(84px, 12vw, 170px) clamp(20px, 5vw, 84px); }
.section-intro {
  display: grid;
  grid-template-columns: .55fr 1.25fr .55fr;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 108px);
}
.section-label {
  align-self: start;
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 700 10px/1 var(--display);
  letter-spacing: .16em;
  white-space: nowrap;
}
.section-label span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.section-intro h2, .profile-lead h2, .method h2, .price-copy h2 {
  margin: 0;
  font: 600 clamp(48px, 6.8vw, 108px)/.93 var(--display);
  letter-spacing: -.065em;
}
.section-intro h2 em, .profile-lead h2 em, .method h2 em, .price-copy h2 em {
  color: var(--orange);
  font-style: normal;
}
.section-aside {
  margin: 0;
  color: rgba(9,9,9,.56);
  font-size: 15px;
  max-width: 30ch;
}

.work-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(255px, 27vw, 420px);
  gap: clamp(18px, 2.6vw, 42px);
  overflow-x: auto;
  padding: 0 clamp(20px, 5vw, 84px) 28px;
  margin-inline: clamp(-84px, -5vw, -20px);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--black) transparent;
  overscroll-behavior-inline: contain;
}
.work-item { scroll-snap-align: start; }
.work-item:nth-child(even) { margin-top: clamp(32px, 6vw, 88px); }
.work-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  display: block;
  padding: 0;
  border: 0;
  background: #d4d1c9;
  cursor: pointer;
}
.work-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.28), transparent 30%, transparent 65%, rgba(0,0,0,.45));
  transition: background .25s ease;
}
.work-poster video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .3s ease; }
.work-poster:hover video { transform: scale(1.025); }
.work-index, .work-duration {
  position: absolute;
  z-index: 2;
  top: 16px;
  color: var(--white);
  font: 600 10px/1 var(--display);
  letter-spacing: .1em;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.work-index { left: 16px; }
.work-duration { right: 16px; }
.work-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--acid);
  color: var(--black);
  transition: transform .25s ease, background .25s ease;
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
}
.work-play i { margin-left: 4px; }
.work-poster:hover .work-play { transform: translate(-50%, -50%) scale(1.12) rotate(6deg); background: var(--orange); }
.work-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 17px 1px 0; border-top: 1px solid var(--black); }
.work-meta h3 { margin: 0 0 2px; font: 600 clamp(18px, 1.5vw, 24px)/1.1 var(--display); letter-spacing: -.035em; }
.work-meta p, .work-meta > span { margin: 0; font-size: 11px; color: rgba(9,9,9,.52); }
.work-meta > span { text-align: right; text-transform: uppercase; letter-spacing: .06em; }
.rail-hint { margin: 22px 0 0; color: rgba(9,9,9,.45); font-size: 11px; text-align: right; text-transform: uppercase; letter-spacing: .08em; }
.rail-hint span { color: var(--orange); font-size: 18px; vertical-align: middle; }

.profile { color: var(--white); background: var(--black); }
.profile-lead { display: grid; grid-template-columns: .55fr 1.8fr; gap: 32px; align-items: start; margin-bottom: clamp(60px, 10vw, 140px); }
.section-label.light { color: rgba(255,255,255,.64); }
.profile-lead h2 em { color: var(--acid); }
.profile-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 160px); align-items: center; }
.profile-story { max-width: 560px; }
.profile-story .big-copy { color: var(--white); font-size: clamp(22px, 2.4vw, 38px); line-height: 1.17; letter-spacing: -.04em; }
.profile-story p { color: rgba(255,255,255,.58); font-size: clamp(16px, 1.4vw, 19px); }
.profile-story a { text-decoration-color: var(--acid); text-underline-offset: 4px; }
.edit-interface { padding: clamp(14px, 2vw, 28px); border: 1px solid rgba(255,255,255,.18); background: #111; box-shadow: 0 50px 100px rgba(0,0,0,.5); transform: rotate(1deg); }
.interface-top { display: flex; justify-content: space-between; margin-bottom: 12px; color: rgba(255,255,255,.45); font: 600 9px/1 var(--display); letter-spacing: .12em; }
.preview-frame { position: relative; aspect-ratio: 16/9; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #263139, #151515 55%, #462218); }
.preview-frame::before { content: ""; position: absolute; inset: -50%; background: conic-gradient(from 90deg, transparent, rgba(201,255,61,.18), transparent 28%); animation: previewGlow 8s linear infinite; }
@keyframes previewGlow { to { transform: rotate(360deg); } }
.preview-frame p { position: relative; z-index: 2; margin: 0; font: 600 clamp(22px, 3.5vw, 62px)/.88 var(--display); letter-spacing: -.06em; text-align: center; }
.preview-frame strong { color: var(--acid); }
.preview-frame > span { position: absolute; right: 10px; bottom: 8px; color: rgba(255,255,255,.42); font: 600 9px/1 var(--display); }
.safe-area { position: absolute; inset: 10%; border: 1px dashed rgba(255,255,255,.14); }
.timeline { position: relative; margin-top: 18px; padding-top: 24px; }
.time-ruler { position: absolute; top: 0; inset-inline: 0; display: flex; justify-content: space-between; color: rgba(255,255,255,.3); font: 500 8px/1 var(--display); }
.track { position: relative; height: 22px; margin-top: 5px; background: rgba(255,255,255,.04); }
.track b { position: absolute; left: var(--x); width: var(--w); height: 100%; background: #3265d6; border-left: 2px solid #80a3ef; }
.track.audio b { background: #23754e; border-color: #60c997; }
.track.captions b { background: #6a3a85; border-color: #c68ce5; }
.playhead { position: absolute; z-index: 3; top: 18px; bottom: -2px; width: 1px; left: 12%; background: var(--orange); box-shadow: 0 0 8px var(--orange); animation: playhead 7s linear infinite; }
.playhead::before { content: ""; position: absolute; width: 7px; height: 7px; top: -2px; left: -3px; background: var(--orange); transform: rotate(45deg); }
@keyframes playhead { to { left: 96%; } }
.facts { display: grid; grid-template-columns: repeat(3,1fr); margin-top: clamp(70px, 12vw, 160px); border-block: 1px solid var(--line-dark); }
.facts div { display: flex; align-items: center; gap: 18px; padding: 30px clamp(10px, 2vw, 30px); border-right: 1px solid var(--line-dark); }
.facts div:last-child { border-right: 0; }
.facts strong { color: var(--acid); font: 600 clamp(32px, 4vw, 68px)/1 var(--display); letter-spacing: -.06em; }
.facts span { max-width: 16ch; color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.method { background: var(--paper); }
.section-intro.compact { grid-template-columns: .55fr 1.8fr; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--black); }
.steps li { display: grid; grid-template-columns: .18fr 1fr auto; gap: 30px; align-items: center; min-height: 180px; padding: 32px 0; border-bottom: 1px solid var(--line-light); transition: background .25s ease, padding .25s ease; }
.steps li:hover { padding-inline: 22px; background: var(--acid); }
.step-num { font: 600 11px/1 var(--display); letter-spacing: .1em; }
.steps h3 { margin: 0 0 8px; font: 600 clamp(26px, 3vw, 46px)/1 var(--display); letter-spacing: -.045em; }
.steps p { max-width: 650px; margin: 0; color: rgba(9,9,9,.55); font-size: 15px; }
.step-symbol { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid var(--black); border-radius: 50%; font-size: 28px; }

.price-section { position: relative; display: grid; grid-template-columns: 1fr minmax(390px, .8fr); gap: clamp(50px, 10vw, 160px); align-items: center; overflow: hidden; background: var(--orange); }
.price-section::before { content: ""; position: absolute; width: 700px; height: 700px; left: -300px; bottom: -420px; border: 1px solid rgba(9,9,9,.25); border-radius: 50%; box-shadow: 0 0 0 80px rgba(9,9,9,.05), 0 0 0 160px rgba(9,9,9,.04); }
.price-copy, .price-card { position: relative; z-index: 2; }
.price-copy h2 { margin: 34px 0; }
.price-copy h2 em { color: var(--paper); }
.price-copy > p:last-child { max-width: 430px; color: rgba(9,9,9,.63); font-size: 17px; }
.price-card { padding: clamp(26px, 4vw, 56px); background: var(--paper); border: 2px solid var(--black); box-shadow: 14px 14px 0 var(--black); }
.price-card-top { display: flex; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid var(--black); font: 700 9px/1 var(--display); letter-spacing: .14em; }
.price-line { display: grid; grid-template-columns: 44px 1fr auto; align-items: baseline; gap: 12px; padding: 20px 0 14px; }
.price-line small { font: 700 10px/1 var(--display); letter-spacing: .12em; }
.price-line strong { font: 600 clamp(52px, 6vw, 90px)/1 var(--display); letter-spacing: -.08em; white-space: nowrap; }
.price-line sup { font-size: .26em; letter-spacing: 0; vertical-align: top; margin-right: 4px; }
.price-line > span { font: 700 9px/1 var(--display); letter-spacing: .1em; }
.price-line.usd { padding-top: 12px; }
.or { display: flex; align-items: center; gap: 12px; color: rgba(9,9,9,.45); font: 600 8px/1 var(--display); letter-spacing: .12em; white-space: nowrap; }
.or span { width: 100%; height: 1px; background: rgba(9,9,9,.18); }
.price-card ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 12px 0 30px; padding: 22px 0 0; border-top: 1px solid var(--line-light); font-size: 12px; }
.price-card li span { color: #2c7b40; margin-right: 5px; font-weight: 700; }
.price-button { display: flex; align-items: center; justify-content: space-between; padding: 17px 18px; color: var(--white); background: var(--black); text-decoration: none; font: 600 12px/1 var(--display); letter-spacing: .04em; transition: color .2s ease, background .2s ease; }
.price-button:hover { color: var(--black); background: var(--acid); }
.price-button span { font-size: 18px; }

.final-cta { position: relative; overflow: hidden; padding: clamp(110px, 16vw, 230px) 20px clamp(90px, 12vw, 170px); color: var(--white); background: var(--black); text-align: center; }
.cta-marquee { position: absolute; top: 25%; left: 0; width: max-content; color: rgba(255,255,255,.035); font: 700 clamp(80px, 14vw, 220px)/1 var(--display); letter-spacing: -.06em; white-space: nowrap; animation: ticker 36s linear infinite; }
.cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cta-inner > p { margin: 0 0 34px; color: rgba(255,255,255,.5); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.cta-inner h2 { margin: 0 0 50px; font: 700 clamp(64px, 10vw, 160px)/.8 var(--display); letter-spacing: -.08em; }
.cta-inner h2 em { color: var(--acid); font-style: normal; }
.cta-inner > a { width: min(100%, 620px); display: flex; align-items: center; justify-content: space-between; padding: 22px 25px; color: var(--black); background: var(--acid); text-decoration: none; font: 700 13px/1 var(--display); text-transform: uppercase; letter-spacing: .07em; transition: transform .25s ease, background .25s ease; }
.cta-inner > a:hover { transform: translateY(-5px); background: var(--orange); }
.cta-inner > a strong { font-size: 28px; }
.cta-inner small { margin-top: 18px; color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

footer { min-height: 88px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 24px clamp(20px, 3vw, 52px); background: var(--paper); border-top: 1px solid var(--line-light); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.footer-mark { font-size: 12px; }
footer p { margin: 0; color: rgba(9,9,9,.45); }
footer > div { justify-self: end; display: flex; gap: 10px; }
footer > div a { text-underline-offset: 3px; }

.video-dialog { width: 100%; height: 100%; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; color: var(--white); background: rgba(5,5,5,.96); }
.video-dialog::backdrop { background: #050505; }
.dialog-shell { min-height: 100%; display: flex; flex-direction: column; padding: 20px clamp(20px, 4vw, 60px) 30px; }
.dialog-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 64px; border-bottom: 1px solid var(--line-dark); }
.dialog-top > div { display: flex; align-items: center; gap: 18px; }
.dialog-top span { color: var(--acid); font: 600 9px/1 var(--display); letter-spacing: .14em; }
.dialog-top h2 { margin: 0; font: 500 clamp(16px, 2vw, 24px)/1 var(--display); }
.dialog-close { display: flex; align-items: center; gap: 10px; padding: 10px 0 10px 20px; color: rgba(255,255,255,.66); background: transparent; border: 0; cursor: pointer; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.dialog-close span { font-size: 27px; font-weight: 300; color: var(--white); }
.dialog-video-wrap { flex: 1; min-height: 0; display: grid; place-items: center; padding-top: 22px; }
.dialog-video-wrap video { width: auto; height: calc(100svh - 128px); max-width: 100%; background: #000; box-shadow: 0 25px 80px rgba(0,0,0,.7); }

.mobile-wa { display: none; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.headline-line.reveal { transform: translateY(110%); }
.headline-line.reveal.accent { transform: translate(clamp(18px, 4vw, 70px), 110%); }
.reveal.in-view { opacity: 1; transform: none; }
.headline-line.reveal.in-view.accent { transform: translateX(clamp(18px, 4vw, 70px)); }
.headline-line:nth-child(2) { transition-delay: .08s; }
.headline-line:nth-child(3) { transition-delay: .16s; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 128px; }
  .hero-copy { z-index: 5; }
  .hero h1 { font-size: clamp(54px, 12.5vw, 104px); }
  .hero-visual { min-height: 620px; }
  .hero-card { width: min(42vw, 290px); }
  .section-intro { grid-template-columns: .5fr 1.5fr; }
  .section-aside { grid-column: 2; }
  .profile-grid { grid-template-columns: 1fr 1.25fr; gap: 50px; }
  .price-section { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 720px) {
  .site-header { height: 64px; padding-inline: 18px; }
  .header-cta { font-size: 10px; }
  .hero { min-height: 100svh; padding: 104px 18px 70px; }
  .hero::before { top: 64px; background-size: 25vw 25vw; }
  .hero-kicker { margin-bottom: 30px; }
  .hero h1 { font-size: clamp(46px, 15.1vw, 86px); line-height: .85; }
  .headline-line.accent, .headline-line.reveal.in-view.accent { transform: translateX(10px); }
  .hero-bottom { flex-direction: column; align-items: flex-start; margin-top: 32px; gap: 22px; padding-left: 0; }
  .hero-bottom p { font-size: 15px; }
  .hero-visual { min-height: 500px; margin-top: 10px; }
  .hero-card { width: min(58vw, 260px); }
  .card-back-left { transform: translate3d(-34%, 7%, -30px) rotate(-10deg); }
  .card-back-right { transform: translate3d(34%, -4%, -20px) rotate(9deg); }
  .note-one { left: 0; top: 14%; }
  .scroll-cue { display: none; }
  .section-pad { padding: 86px 18px; }
  .section-intro, .section-intro.compact, .profile-lead { grid-template-columns: 1fr; gap: 28px; margin-bottom: 50px; }
  .section-intro h2, .profile-lead h2, .method h2, .price-copy h2 { font-size: clamp(46px, 14vw, 76px); }
  .section-aside { grid-column: auto; }
  .work-rail { grid-auto-columns: 76vw; padding-inline: 18px; margin-inline: -18px; gap: 18px; }
  .work-item:nth-child(even) { margin-top: 34px; }
  .rail-hint { text-align: left; }
  .profile-grid { grid-template-columns: 1fr; }
  .edit-interface { transform: none; }
  .facts { grid-template-columns: 1fr; }
  .facts div { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .facts div:last-child { border-bottom: 0; }
  .steps li { grid-template-columns: 46px 1fr; gap: 14px; min-height: 0; padding: 30px 0; }
  .step-symbol { display: none; }
  .steps p { font-size: 14px; }
  .price-section { grid-template-columns: 1fr; gap: 50px; }
  .price-card { box-shadow: 8px 8px 0 var(--black); padding: 24px 20px; }
  .price-line { grid-template-columns: 35px 1fr auto; gap: 6px; }
  .price-line strong { font-size: clamp(48px, 16vw, 72px); }
  .price-card ul { grid-template-columns: 1fr; }
  .final-cta { padding-inline: 18px; }
  .cta-inner h2 { font-size: clamp(58px, 18vw, 100px); }
  footer { grid-template-columns: 1fr auto; padding-bottom: 90px; }
  footer p { display: none; }
  footer > div a, footer > div > span:first-of-type { display: none; }
  .mobile-wa { position: fixed; z-index: 80; display: flex; align-items: center; justify-content: space-between; left: 12px; right: 12px; bottom: 12px; padding: 15px 18px; color: var(--black); background: var(--acid); border: 1px solid var(--black); box-shadow: 5px 5px 0 var(--black); text-decoration: none; font: 700 11px/1 var(--display); letter-spacing: .12em; }
  .mobile-wa strong { font-size: 18px; }
  .dialog-shell { padding: 12px; }
  .dialog-top > div > span { display: none; }
  .dialog-top h2 { font-size: 15px; }
  .dialog-video-wrap video { height: auto; max-height: calc(100svh - 105px); width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .headline-line.reveal, .headline-line.reveal.accent { opacity: 1; transform: none; }
  .headline-line.reveal.accent { transform: translateX(clamp(10px, 4vw, 70px)); }
}
