:root {
  --max: 1480px;
  --section-space: clamp(100px, 14vh, 180px);
}

.rule { border-top: 1px solid var(--line); }
.display {
  margin: 0;
  font-size: clamp(54px, 9vw, 142px);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.section-title {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.body-large {
  margin: 0;
  max-width: 38ch;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.45;
  letter-spacing: -.025em;
  text-wrap: pretty;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  padding: 8px max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, .76);
  backdrop-filter: blur(20px);
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--muted); font-size: 12px; font-weight: 600; transition: color 500ms var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 11px 18px;
  transition: transform 600ms var(--ease), box-shadow 600ms var(--ease);
}
.nav-cta i {
  font-style: normal;
  line-height: 1;
  transition: transform 600ms var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255, 255, 255, .12); }
.nav-cta:hover i { transform: translate(2px, -2px) rotate(4deg); }
.nav-cta:active { transform: scale(.98); }
.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.mobile-menu { display: none; }

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: clamp(150px, 20vh, 230px) 0 48px;
  overflow: clip;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.06) 50%, transparent calc(50% + .5px)),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 25%;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero-grid { position: relative; }
.hero-copy { position: relative; z-index: 1; }
.hero .display span { display: block; }
.word-window {
  position: relative;
  height: 1.14em;
  overflow: visible;
  color: var(--accent);
}
.word-reel { position: absolute; inset: 0; }
.word-reel b {
  position: absolute;
  inset: 0 auto auto 0;
  width: max-content;
  max-width: 100%;
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(.24em);
  animation: wordSwap 15s var(--ease) infinite both;
  text-decoration-line: underline;
  text-decoration-color: rgba(251, 86, 7, .82);
  text-decoration-thickness: 2px;
  text-underline-offset: .14em;
  text-decoration-skip-ink: auto;
}
.word-reel b:nth-child(2) { animation-delay: 2.5s; }
.word-reel b:nth-child(3) { animation-delay: 5s; }
.word-reel b:nth-child(4) { animation-delay: 7.5s; }
.word-reel b:nth-child(5) { animation-delay: 10s; }
.word-reel b:nth-child(6) { animation-delay: 12.5s; }
@keyframes wordSwap {
  0% { opacity: 0; transform: translateY(.24em); }
  5%, 16% { opacity: 1; transform: translateY(0); }
  20%, 100% { opacity: 0; transform: translateY(-.18em); }
}
.hero-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px;
  align-items: end;
  margin-top: clamp(54px, 9vh, 110px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-bottom p { margin: 0; max-width: 57ch; color: var(--muted); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.65; }
.hero-bottom .button { justify-self: end; }

.statement { padding: var(--section-space) 0; }
.statement-grid { display: grid; grid-template-columns: .54fr 1.46fr; gap: 50px; align-items: start; }
.statement-copy { display: flex; flex-direction: column; gap: 52px; }
.statement .section-title { color: var(--white); font-weight: 500; }
.statement .section-title .semantic-strong { display: block; }
.statement-note { max-width: 32ch; margin: 0; color: var(--muted); line-height: 1.7; }

.tech-rail { padding: clamp(32px, 4vw, 52px) 0; }
.tech-rail-head { margin-bottom: clamp(22px, 3vw, 36px); }
.tech-rail-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font: 600 11px/1.4 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tech-rail-label::before { content: ""; flex: 0 0 auto; width: 22px; height: 1px; background: currentColor; }
.tech-marquee {
  --tech-gap: clamp(54px, 7vw, 108px);
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.tech-marquee-track {
  display: flex;
  width: max-content;
  animation: tech-rail-scroll 48s linear infinite;
  will-change: transform;
}
.tech-marquee:hover .tech-marquee-track { animation-play-state: paused; }
.tech-sequence {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--tech-gap);
  list-style: none;
  margin: 0;
  padding: 0 calc(var(--tech-gap) / 2);
}
.tech-item {
  display: grid;
  flex: 0 0 clamp(96px, 10vw, 152px);
  width: clamp(96px, 10vw, 152px);
  height: clamp(34px, 3vw, 44px);
  place-items: center;
}
.tech-item img {
  width: auto;
  height: clamp(34px, 3vw, 44px);
  max-width: 100%;
  object-fit: contain;
  opacity: .56;
  filter: brightness(0) invert(1);
  transition: opacity 400ms var(--ease);
  user-select: none;
}
.tech-item[data-tech="higgsfield"] img,
.tech-item[data-tech="capcut"] img { filter: grayscale(1) invert(1) contrast(5); }
.tech-item:hover img { opacity: .82; }
@keyframes tech-rail-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.offer { padding: var(--section-space) 0; }
.offer-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 64px; }
.offer-tabs {
  justify-self: end;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.offer-tab {
  min-height: 44px;
  padding: 10px 24px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition: color 400ms var(--ease), background 400ms var(--ease), transform 400ms var(--ease);
}
.offer-tab:hover { color: var(--white); }
.offer-tab:active { transform: scale(.98); }
.offer-tab[aria-selected="true"] { background: var(--white); color: var(--black); }
.offer-panel + .offer-panel { margin-top: 64px; }
.offer-panel-fallback-title { margin: 0 0 24px; color: var(--muted); font-size: 18px; font-weight: 600; }
.js .offer-panel-fallback-title { display: none; }
.js .offer-panel + .offer-panel { margin-top: 0; }
.js .offer-panel:not(.is-active) { display: none; }
.js .offer-panel.is-active { animation: offer-panel-in 500ms var(--ease) both; }
@keyframes offer-panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.offer-packages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.offer-packages--standalone { border-bottom: 1px solid var(--line); }
.offer-package { min-width: 0; display: flex; flex-direction: column; padding: clamp(30px, 4vw, 60px); }
.offer-package + .offer-package { border-left: 1px solid var(--line); }
.offer-package-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: start; margin-bottom: 40px; }
.offer-package h3 { margin: 0; font-size: clamp(24px, 3vw, 42px); font-weight: 700; line-height: 1.05; letter-spacing: -.045em; }
.offer-outcome { margin: 12px 0 0; max-width: 38ch; color: var(--soft); font-size: clamp(16px, 1.2vw, 20px); font-weight: 500; line-height: 1.35; text-wrap: pretty; }
.offer-price-block { text-align: right; }
.offer-price { display: block; color: var(--white); font-size: clamp(28px, 3vw, 38px); font-weight: 500; font-variant-numeric: tabular-nums; line-height: 1; letter-spacing: -.045em; white-space: nowrap; }
.offer-price--quote { font-size: clamp(24px, 2.5vw, 34px); }
.offer-billing { display: block; margin-top: 7px; color: var(--quiet); font: 500 11px/1.5 var(--sans); }
.offer-scope { display: grid; list-style: none; margin: 0 0 48px; padding: 0; }
.offer-scope li { display: flex; gap: 12px; padding: 0 0 16px; border-bottom: 1px solid rgba(244, 244, 242, .08); color: var(--muted); font-size: 15px; line-height: 1.65; }
.offer-scope li + li { padding-top: 16px; }
.offer-scope li:last-child { padding-bottom: 0; border-bottom: 0; }
.offer-scope-mark { flex: 0 0 auto; color: var(--accent); }
.offer-package .button { align-self: flex-start; margin-top: auto; }
.offer-combined {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 32px clamp(30px, 4vw, 60px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offer-combined-copy { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; }
.offer-combined-copy strong { font-size: 16px; font-weight: 600; }
.offer-saving { color: var(--quiet); font-size: 14px; }
.offer-saving strong { color: var(--accent); font-size: inherit; font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.offer-combined-action { display: flex; align-items: center; gap: 32px; }
.offer-combined .offer-price { font-size: 24px; }
.offer-inline-cta { min-height: 44px; display: inline-flex; align-items: center; color: var(--white); font-size: 14px; font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 8px; transition: color 400ms var(--ease); }
.offer-inline-cta:hover { color: var(--accent); }
.offer-note { margin-top: 40px; padding: 26px 28px; border-left: 2px solid var(--accent); background: var(--panel); color: var(--soft); font-size: 14px; line-height: 1.7; }
.offer-note strong { color: var(--white); }

.proof { padding: var(--section-space) 0; }
.proof-frame {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 640px;
  border: 1px solid var(--line);
  background: var(--near-black);
}
.proof-frame + .proof-frame { margin-top: 56px; }
.proof-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(30px, 4vw, 58px);
  margin: 0;
  padding: clamp(30px, 4.5vw, 66px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 201, 103, .13), transparent 31%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 1px, transparent 1px 20px),
    #080808;
}
.proof-evidence-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.proof-client { font-size: clamp(18px, 1.8vw, 26px); font-weight: 650; letter-spacing: -.035em; }
.proof-evidence-head .meta { color: var(--quiet); }
.proof-result { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: end; gap: clamp(24px, 3vw, 48px); }
.proof-result strong { color: var(--white); font-size: clamp(104px, 11vw, 176px); font-weight: 500; line-height: .74; letter-spacing: -.09em; }
.proof-result span { max-width: 16ch; padding-bottom: 5px; color: var(--soft); font-size: clamp(15px, 1.35vw, 20px); line-height: 1.35; letter-spacing: -.025em; }
.proof-result span b { color: #39d879; font-weight: 700; }
.proof-shot { position: relative; display: block; overflow: hidden; padding: 8px; background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,.34); transition: transform 700ms var(--ease); }
.proof-shot:hover { transform: translateY(-4px); }
.proof-shot img { width: 100%; height: auto; opacity: 1; }
.proof-shot-label { position: absolute; right: 14px; bottom: 14px; padding: 8px 10px; background: rgba(5,5,5,.88); color: var(--white); backdrop-filter: blur(8px); }
.proof-caption { display: flex; justify-content: space-between; gap: 20px; color: var(--quiet); font-size: 12px; line-height: 1.5; }
.proof-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(30px, 5vw, 72px); background: var(--panel); }
.proof-copy .proof-service { margin: 0 0 26px; color: var(--white); }
.proof-copy h2 { margin: 0; font-size: clamp(38px, 5vw, 75px); font-weight: 600; line-height: .98; letter-spacing: -.06em; }
.proof-copy p { margin: 32px 0 0; max-width: 38ch; color: var(--muted); line-height: 1.7; }
.proof-copy .proof-local-pack { padding-left: 18px; border-left: 1px solid var(--accent); color: var(--soft); font-size: 14px; }
.proof-local-pack strong { color: var(--white); font-weight: 650; }
.proof-actions { display: flex; flex-direction: column; align-items: flex-start; padding-top: 54px; }

.proof-frame-demo { grid-template-rows: auto 1fr; }
.proof-demo-flag { grid-column: 1 / -1; margin: 0; padding: 16px clamp(24px, 4vw, 40px); border-bottom: 1px solid var(--line); background: rgba(251, 86, 7, .09); color: var(--soft); font-size: 13px; line-height: 1.5; }
.proof-demo-flag strong { color: var(--accent); }
.proof-visual-demo {
  background:
    radial-gradient(circle at 88% 12%, rgba(251, 86, 7, .14), transparent 31%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 1px, transparent 1px 20px),
    #080808;
}
.proof-demo-badge { margin-left: 10px; padding: 3px 8px; border: 1px solid var(--accent); color: var(--accent); vertical-align: middle; }
.proof-demo-grid { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(14px, 2vw, 20px); align-items: end; }
.proof-shot-video { padding: 8px; }
.proof-shot-video video { display: block; width: 100%; height: auto; }

.about { padding: var(--section-space) 0 0; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  border-top: 1px solid var(--line);
}
.about-portrait {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 18px),
    var(--near-black);
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255,255,255,.13);
  pointer-events: none;
}
.about-placeholder { position: relative; z-index: 1; display: grid; place-items: center; text-align: center; }
.about-placeholder .meta { color: var(--quiet); }
.about-placeholder strong { margin: 30px 0 24px; color: var(--quiet); font-size: clamp(82px, 10vw, 150px); font-weight: 500; line-height: .8; letter-spacing: -.08em; }
.about-placeholder small { max-width: 24ch; color: var(--muted); font-size: 12px; line-height: 1.6; }
.about-copy { min-height: 620px; display: flex; flex-direction: column; padding: clamp(38px, 6vw, 92px); }
.about-copy h2 { margin: 0; max-width: 10ch; font-size: clamp(42px, 6vw, 92px); font-weight: 500; line-height: .98; letter-spacing: -.06em; }
.about-note { margin: 48px 0 0; max-width: 48ch; color: var(--soft); font-size: clamp(17px, 1.65vw, 23px); line-height: 1.58; letter-spacing: -.02em; }
.about-signature { margin-top: auto; padding-top: 28px; display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.about-person strong { display: block; font-size: 16px; font-weight: 600; }
.about-person span { display: block; margin-top: 7px; color: var(--quiet); font: 500 11px/1.5 var(--sans); letter-spacing: .06em; text-transform: uppercase; }
.about-link { color: var(--accent); font-size: 13px; font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; transition: opacity 500ms var(--ease); }
.about-link:hover { opacity: .72; }

.process { padding: var(--section-space) 0; }
.process-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 78px; }
.process-head .section-title { color: var(--white); font-weight: 500; }
.process-head .semantic-strong { display: block; }
.process-head .body-large { justify-self: end; font-size: clamp(17px, 1.6vw, 23px); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.step { min-height: 360px; padding: 26px 30px 34px; display: flex; flex-direction: column; }
.step + .step { border-left: 1px solid var(--line); }
.step .meta { color: var(--quiet); }
.step h3 { margin: auto 0 20px; font-size: clamp(26px, 2.8vw, 42px); font-weight: 600; line-height: 1.05; letter-spacing: -.045em; }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.faq { padding: var(--section-space) 0; }
.faq-layout { display: grid; grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr); gap: clamp(54px, 8vw, 140px); align-items: start; }
.faq-intro .section-title { max-width: 9ch; }
.faq-lead { margin: 34px 0 0; max-width: 34ch; color: var(--muted); font-size: 16px; line-height: 1.7; }
.faq-contact { display: inline-block; margin-top: 30px; color: var(--accent); font-size: 13px; font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; transition: opacity 500ms var(--ease); }
.faq-contact:hover { opacity: .72; }
.faq-list { border-bottom: 1px solid var(--line); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item summary {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) 34px;
  gap: 24px;
  align-items: center;
  min-height: 102px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-category { color: var(--quiet); }
.faq-question { font-size: clamp(18px, 1.7vw, 25px); font-weight: 600; line-height: 1.25; letter-spacing: -.035em; }
.faq-toggle { position: relative; width: 30px; height: 30px; justify-self: end; border: 1px solid var(--line); border-radius: 50%; }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--soft); transform: translate(-50%, -50%); transition: transform 500ms var(--ease); }
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { padding: 0 58px 34px 166px; }
.faq-answer p { margin: 0; max-width: 66ch; color: var(--muted); font-size: 15px; line-height: 1.75; }

.blog { padding: var(--section-space) 0; }
.blog-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 72px; }
.blog-head-actions { justify-self: end; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.blog-head-actions p { margin: 0; max-width: 38ch; color: var(--muted); font-size: 16px; line-height: 1.65; }
.blog-index-link { color: var(--accent); font-size: 13px; font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.blog-post {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 48px;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 4vw, 54px) 0;
  border-top: 1px solid var(--line);
  transition: border-color 600ms var(--ease);
}
.blog-post:hover { border-color: var(--line-strong); }
.blog-post-meta { color: var(--quiet); font: 500 11px/1.65 var(--sans); letter-spacing: .06em; text-transform: uppercase; }
.blog-post-copy h3 { margin: 0; max-width: 26ch; font-size: clamp(27px, 3.4vw, 52px); font-weight: 600; line-height: 1.06; letter-spacing: -.05em; }
.blog-post-copy p { margin: 18px 0 0; max-width: 62ch; color: var(--muted); font-size: 14px; line-height: 1.65; }
.blog-post i { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.06); font-style: normal; transition: transform 600ms var(--ease), background 600ms var(--ease), color 600ms var(--ease); }
.blog-post:hover i { transform: translate(2px, -2px); background: var(--accent); color: var(--black); }

.contact { padding: clamp(120px, 21vh, 260px) 0 60px; }
.contact .kicker { justify-content: center; }
.contact .section-title { max-width: 11ch; margin-inline: auto; color: var(--white); font-weight: 500; text-align: center; }
.contact-intro { margin: 30px auto 0; max-width: 52ch; color: var(--muted); font-size: 16px; line-height: 1.7; text-align: center; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 54px; }
.contact-mail { color: var(--muted); font: 500 12px/1.4 var(--sans); letter-spacing: .03em; border-bottom: 1px solid var(--line-strong); padding-bottom: 4px; }
.footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 30px; margin-top: 140px; padding: 30px 0 34px; border-top: 1px solid var(--line); color: var(--quiet); }
.footer .brand { color: var(--white); }
.footer .meta:last-child { justify-self: end; }

.reveal { opacity: 1; transform: none; transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.js .reveal { opacity: 0; transform: translateY(42px); }
.reveal.is-in { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: 100ms; }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: grid; width: 38px; height: 38px; place-items: center; justify-self: end; cursor: pointer; }
  .menu-toggle span, .menu-toggle span::after { width: 18px; height: 1px; background: var(--white); display: block; transition: transform 600ms var(--ease); }
  .menu-toggle span::after { content: ""; transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span::after { transform: rotate(-90deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 9; display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 90px var(--gutter) 40px; background: rgba(5,5,5,.94); backdrop-filter: blur(22px); opacity: 0; visibility: hidden; transition: opacity 600ms var(--ease), visibility 600ms; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; }
  .mobile-menu a { font-size: clamp(32px, 10vw, 58px); font-weight: 650; letter-spacing: -.055em; transform: translateY(24px); opacity: 0; transition: transform 700ms var(--ease), opacity 700ms var(--ease); }
  .mobile-menu.is-open a { transform: none; opacity: 1; }
  .mobile-menu.is-open a:nth-child(2) { transition-delay: 70ms; }
  .mobile-menu.is-open a:nth-child(3) { transition-delay: 140ms; }
  .mobile-menu.is-open a:nth-child(4) { transition-delay: 210ms; }
  .mobile-menu.is-open a:nth-child(5) { transition-delay: 280ms; }
  .mobile-menu.is-open a:nth-child(6) { transition-delay: 350ms; }
  .mobile-menu.is-open a:nth-child(7) { transition-delay: 420ms; }
  .hero-grid, .hero-bottom, .statement-grid, .offer-head, .process-head, .proof-frame, .about-grid, .faq-layout, .blog-head { grid-template-columns: 1fr; }
  .hero-bottom .button { justify-self: start; }
  .statement-grid { gap: 60px; }
  .offer-head { gap: 36px; }
  .offer-tabs { justify-self: start; }
  .offer-packages { grid-template-columns: 1fr; }
  .offer-package + .offer-package { border-top: 1px solid var(--line); border-left: 0; }
  .offer-combined { grid-template-columns: 1fr; align-items: start; }
  .offer-combined-action { width: 100%; justify-content: space-between; }
  .process-head .body-large { justify-self: start; }
  .proof-frame { min-height: auto; }
  .proof-visual { min-height: 560px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-copy { min-height: 560px; }
  .about-portrait { min-height: 520px; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-copy { min-height: 540px; }
  .process-steps { grid-template-columns: 1fr; }
  .step + .step { border-left: 0; border-top: 1px solid var(--line); }
  .step { min-height: 300px; border-right: 1px solid var(--line); }
  .faq-layout { gap: 64px; }
  .faq-intro .section-title { max-width: 12ch; }
  .blog-head-actions { justify-self: start; }
  .blog-post { grid-template-columns: 140px minmax(0, 1fr) 42px; gap: 24px; }
}

@media (max-width: 600px) {
  .hero { min-height: 100dvh; padding-top: 128px; }
  .hero::before { background-size: 100% 100%, 100% 20%; }
  .display { font-size: clamp(47px, 15.5vw, 74px); line-height: .94; }
  .hero .display > span:last-child { font-size: .78em; line-height: 1.02; letter-spacing: -.06em; }
  .word-window { height: 1.14em; }
  .hero-bottom { margin-top: 52px; }
  .tech-rail { padding-block: 36px; }
  .tech-rail-head { margin-bottom: 26px; }
  .tech-rail-label { max-width: none; line-height: 1.55; }
  .tech-marquee { --tech-gap: 48px; }
  .tech-item { flex-basis: 96px; width: 96px; height: 34px; }
  .tech-item img { height: 34px; }
  .offer-head { margin-bottom: 48px; }
  .offer-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  }
  .offer-tab {
    min-width: 0;
    width: 100%;
    padding-inline: clamp(8px, 2.5vw, 16px);
    font-size: clamp(10px, 2.65vw, 11px);
    white-space: nowrap;
  }
  .offer-package { padding: 32px clamp(24px, 6vw, 36px); }
  .offer-package-head { grid-template-columns: 1fr; gap: 20px; }
  .offer-price-block { text-align: left; }
  .offer-price { font-size: 30px; }
  .offer-price--quote { font-size: 28px; }
  .offer-scope { margin-bottom: 36px; }
  .offer-combined { padding: 28px clamp(24px, 6vw, 36px); }
  .offer-combined-action { align-items: flex-start; flex-direction: column; gap: 14px; }
  .proof-visual { min-height: auto; gap: 30px; padding: 30px 22px; }
  .proof-evidence-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .proof-result { grid-template-columns: 1fr; gap: 20px; }
  .proof-result strong { font-size: clamp(108px, 34vw, 150px); }
  .proof-result span { max-width: 24ch; padding-bottom: 0; }
  .proof-shot { padding: 4px; }
  .proof-shot-label { display: none; }
  .proof-demo-grid { grid-template-columns: 1fr; gap: 16px; }
  .proof-caption { align-items: flex-start; flex-direction: column; gap: 7px; }
  .proof-copy { min-height: auto; padding: 38px 24px 44px; }
  .proof-copy p { margin-top: 26px; }
  .proof-actions { padding-top: 38px; }
  .about-portrait { min-height: 420px; }
  .about-copy { min-height: 500px; }
  .about-signature { align-items: start; flex-direction: column; }
  .blog-post { grid-template-columns: 1fr 40px; gap: 24px 16px; }
  .blog-post-meta { grid-column: 1 / -1; }
  .blog-post i { grid-column: 2; grid-row: 2; align-self: start; }
  .faq-item summary { grid-template-columns: minmax(0, 1fr) 34px; gap: 10px 18px; min-height: 0; padding: 26px 0; }
  .faq-category { grid-column: 1; }
  .faq-question { grid-column: 1; }
  .faq-toggle { grid-column: 2; grid-row: 1 / 3; }
  .faq-answer { padding: 0 52px 28px 0; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer > .meta:nth-child(2) { display: none; }
}

/* Globalne wyciszenie ruchu jest w base.css. Tu tylko ruch specyficzny dla tej strony. */
@media (prefers-reduced-motion: reduce) {
  .word-reel { position: absolute; }
  .word-reel b { animation: none; opacity: 0; transform: none; }
  .word-reel b:first-child { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
  .tech-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-color: var(--line-strong) transparent;
    scrollbar-width: thin;
  }
  .tech-marquee-track { animation: none; will-change: auto; }
  .tech-sequence { padding-inline: var(--gutter); }
  .tech-sequence[aria-hidden="true"] { display: none; }
}
