/* Asterion Studio — Final Hybrid 2026 */

:root {
  --black: #030303;
  --white: #ffffff;
  --panel: #101010;
  --cold: #d7dce8;
  --blue: #4c63ff;
  --blue-hover: #4057ef;
  --blue-soft: rgba(76, 99, 255, 0.1);
  --blue-line: rgba(76, 99, 255, 0.34);
  --cyan: rgba(76, 99, 255, 0.42);
  --line: #e8eaee;
  --line-l: #dde1ea;
  --line-d: rgba(255, 255, 255, 0.12);
  --muted: rgba(215, 220, 232, 0.62);
  --muted-d: rgba(5, 5, 5, 0.62);
  --wrap: min(92vw, 1320px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Clash Display", system-ui, sans-serif;
  --body: "Satoshi", system-ui, sans-serif;
  --mono: "Satoshi", system-ui, sans-serif;
  --focus-ring: 0 0 0 2px var(--black), 0 0 0 4px rgba(76, 99, 255, 0.48);
  --section-y: clamp(64px, 9vh, 96px);
  --tap: 44px;
  --scroll-offset: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; scroll-padding-top: var(--scroll-offset); }
body { font-family: var(--body); background: var(--black); color: var(--white); line-height: 1.55; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
main > section[id] { scroll-margin-top: var(--scroll-offset); }
img { display: block; max-width: 100%; height: auto; }
a, button { color: inherit; text-decoration: none; font: inherit; cursor: pointer; }
ul { list-style: none; }
.wrap { width: var(--wrap); margin-inline: auto; }
.mono { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }
.skip { position: absolute; left: -9999px; z-index: 9999; padding: 8px 16px; background: var(--blue); color: var(--white); }
.skip:focus { left: 12px; top: 12px; }

.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--blue) 0%, #4e6bff 100%);
  pointer-events: none;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--tap);
  padding: 14px 28px; font-family: var(--body); font-size: 0.84rem; font-weight: 700; border-radius: 0;
  line-height: 1.45;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--fill {
  background: linear-gradient(180deg, #3345ab 0%, #2c3a94 100%);
  color: var(--white);
  border-color: rgba(92, 106, 198, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 22px rgba(44, 58, 148, 0.12);
}
.btn--fill:hover {
  background: linear-gradient(180deg, #3a4fbd 0%, #3143aa 100%);
  border-color: rgba(110, 124, 220, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 26px rgba(49, 67, 170, 0.16);
}
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.16); }
.btn--ghost:hover { border-color: var(--blue-line); background: var(--blue-soft); color: var(--white); }
.btn--block { width: 100%; }

.btn:focus-visible,
.top__nav a:focus-visible,
.top__nav-contact a:focus-visible,
.top__burger:focus-visible,
.build__link:focus-visible,
.picker__tab:focus-visible,
.picker__cta:focus-visible,
.formats__f:focus-visible,
.format-card:focus-visible,
.faq__q:focus-visible,
.modal__close:focus-visible,
.contact__links a:focus-visible,
.fld select:focus-visible,
.fld input:focus-visible,
.fld textarea:focus-visible,
.fld__pills label:has(:focus-visible) {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Header — black cinema calm */
.top {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: transform 0.45s var(--ease), background 0.35s, border-color 0.35s;
}
.top.is-hide { transform: translateY(-100%); }
.top.is-solid { background: rgba(3,3,3,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-d); }
.top__in {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  column-gap: clamp(28px, 4vw, 72px);
  width: var(--wrap); margin-inline: auto; padding: 17px 0;
}
.top__brand {
  justify-self: start;
  font-family: var(--body); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.028em; color: var(--white);
}
.top__nav {
  justify-self: center;
  display: flex;
  gap: clamp(30px, 3.1vw, 48px);
  align-items: center;
}
.top__nav-eyebrow,
.top__nav-foot { display: none; }
.top__nav-links { display: contents; }
.top__nav a { font-family: var(--body); font-size: 0.78rem; font-weight: 600; line-height: 1.45; color: rgba(255, 255, 255, 0.96); transition: color 0.2s, opacity 0.2s; }
.top__nav a:hover { color: var(--white); opacity: 1; }
.top__burger { display: none; flex-direction: column; gap: 7px; background: none; border: none; padding: 4px; }
.top__burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.3s; }
.top__burger.is-open span:first-child { transform: translateY(9px) rotate(45deg); }
.top__burger.is-open span:last-child { transform: translateY(-9px) rotate(-45deg); }
.top-dim { position: fixed; inset: 0; z-index: 90; background: rgba(3,3,3,0.7); backdrop-filter: blur(4px); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.head { margin-bottom: clamp(32px, 5vh, 44px); }
.head .mono { color: var(--blue); display: block; margin-bottom: 12px; }
.head h2 { font-family: var(--display); font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.02; }
.head p { margin-top: 14px; color: var(--muted); max-width: 48ch; line-height: 1.55; }
.head--dark h2 { color: var(--white); }

/* Hero — layered cinematic */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden; background: var(--black);
}
.hero__glow {
  position: absolute; top: -10%; right: 8%; width: 50%; height: 70%; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(61,90,254,0.18) 0%, transparent 68%);
  filter: blur(40px);
}
.hero__layers {
  position: absolute; inset: 0; z-index: 1;
  transform: translate(0, -8px);
}
.hero__layer {
  position: absolute; overflow: hidden;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(61, 90, 254, 0.07);
  border: 1px solid rgba(255,255,255,0.06);
  will-change: transform;
}
.hero__layer--back {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.54),
    0 0 32px rgba(61, 90, 254, 0.08);
}
.hero__layer img {
  position: absolute; inset: 0;
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__layer--back {
  animation: hero-drift-back 10s ease-in-out infinite;
}
.hero__layer--mid {
  animation: hero-drift-mid 8s ease-in-out infinite;
  animation-delay: -2.4s;
}
.hero__layer--front {
  animation: hero-drift-front 6.5s ease-in-out infinite;
  animation-delay: -1.1s;
}
@keyframes hero-drift-back {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  35% { transform: translate(-8px, 5px) rotate(0.7deg); }
  70% { transform: translate(10px, -6px) rotate(-0.9deg); }
}
@keyframes hero-drift-mid {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  40% { transform: translate(12px, -7px) rotate(-1.1deg); }
  75% { transform: translate(-7px, 9px) rotate(0.8deg); }
}
@keyframes hero-drift-front {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  45% { transform: translate(-10px, 6px) rotate(1.2deg); }
  80% { transform: translate(8px, -8px) rotate(-0.9deg); }
}
.hero__layer--back { width: 50.7%; right: 2.2%; top: 19.4%; aspect-ratio: 16/10; transform-origin: center center; }
.hero__layer--mid { width: 37.7%; right: 19.5%; top: 27.8%; aspect-ratio: 4/3; transform-origin: center center; }
.hero__layer--front {
  width: 25%; right: 6.2%; bottom: 25.8%; aspect-ratio: 10/7;
  border-color: rgba(61,90,254,0.35);
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.48),
    0 0 26px rgba(61, 90, 254, 0.07);
  transform-origin: center center;
}
.hero__shade {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(0deg, var(--black) 0%, transparent 42%),
    linear-gradient(90deg, var(--black) 0%, rgba(3, 3, 3, 0.92) 36%, transparent 56%);
  pointer-events: none;
}
.hero__body {
  position: relative; z-index: 3;
  padding: clamp(76px, 11vh, 98px) 0 clamp(56px, 8vh, 88px);
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero__body .mono {
  color: #4c63ff;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.35;
  transform: none;
  white-space: nowrap;
}
.hero__body .mono,
.hero__acts { max-width: min(42vw, 540px); }
.hero__title {
  font-family: var(--body);
  font-size: clamp(2.55rem, 4.7vw, 4.55rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: min(38vw, 11.5ch);
  margin: 16px 0 22px;
  text-wrap: balance;
}
.hero__title span {
  display: block;
  font-family: inherit;
  color: var(--white);
  font-weight: 700;
  letter-spacing: inherit;
  line-height: inherit;
  -webkit-text-stroke: 0;
  margin-top: 0.04em;
}
.hero__lead {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.32vw, 1.03rem);
  line-height: 1.56;
  max-width: min(520px, 40vw);
}
.hero__acts { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__acts .btn--ghost {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.17);
}
.hero__acts .btn--ghost:hover {
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.045);
}

/* Statement */
.statement {
  padding: var(--section-y) 0;
  background: var(--black);
  border-bottom: 1px solid var(--line-d);
}
.statement__in {
  position: relative;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: clamp(20px, 3.5vw, 36px);
  align-items: start;
}
.statement__in::before {
  content: "";
  display: block;
  width: 3px;
  height: clamp(52px, 9vh, 84px);
  background: var(--blue);
  margin-top: 0.35em;
}
.statement__text {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.1vw, 2.35rem);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: -0.03em;
  max-width: 24ch;
  color: var(--white);
  text-wrap: pretty;
}

/* Build — assembly white → diagonal slant → picker dark */
.build__assembly {
  padding: clamp(56px, 8vh, 88px) 0 clamp(40px, 5vh, 60px);
  background: var(--white);
  color: var(--black);
  position: relative;
  z-index: 2;
}

.build__slant {
  --slant-h: clamp(44px, 8vw, 128px);
  position: relative;
  z-index: 3;
  height: var(--slant-h);
  margin-top: -2px;
  background: transparent;
  pointer-events: none;
}

.build__slant::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 10%, 0 100%);
}

@media (min-width: 768px) {
  .build__slant::before {
    clip-path: polygon(0 0, 100% 0, 100% 14%, 0 100%);
  }
}

.build__picker {
  position: relative;
  z-index: 1;
  --slant-h: clamp(44px, 8vw, 128px);
  padding: clamp(36px, 5vh, 60px) 0 clamp(56px, 8vh, 88px);
  margin-top: calc(-1 * var(--slant-h));
  padding-top: calc(clamp(36px, 5vh, 60px) + var(--slant-h));
  background: var(--black);
}
.build__picker .head { margin-bottom: clamp(24px, 4vh, 36px); }
.build__picker .head h2 { color: var(--white); }
.picker {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  grid-template-rows: auto minmax(340px, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line-d);
  background: var(--panel);
}
.picker__tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-d);
  border-bottom: 1px solid var(--line-d);
}
.picker__tab {
  min-height: 68px;
  padding: 14px 16px;
  background: var(--black);
  border: none;
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.picker__tab::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.picker__tab:hover {
  color: var(--white);
  background: var(--blue-soft);
}
.picker__tab.is-on {
  color: var(--white);
  background: var(--panel);
}
.picker__tab.is-on::after { transform: scaleX(1); }
.picker__stage {
  position: relative;
  min-height: 340px;
  background: var(--black);
  overflow: hidden;
  border-right: 1px solid var(--line-d);
}
.picker__visual { position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s var(--ease); }
.picker__visual.is-on { opacity: 1; }
.picker__visual img { width: 100%; height: 100%; object-fit: cover; }
.picker__info {
  position: relative;
  min-height: 340px;
  align-self: stretch;
}
.picker__desc {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.picker__desc.is-on { opacity: 1; pointer-events: auto; }
.picker__title {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
}
.picker__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 16px;
}
.picker__meta span {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.picker__meta span + span { color: var(--cold); }
.picker__text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
  max-width: 38ch;
  margin-bottom: auto;
  padding-bottom: 22px;
}
.picker__cta {
  align-self: flex-start;
  min-width: 148px;
  min-height: var(--tap);
  padding: 12px 24px;
  font-size: 0.82rem;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.picker__cta:hover { transform: translateY(-1px); }


.build__grid {
  display: grid;
  grid-template-columns: minmax(272px, 336px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  width: var(--wrap);
  margin-inline: auto;
  align-items: start;
}
.build__rail { position: sticky; top: 96px; align-self: start; padding-right: 8px; }
.build__rail .mono { color: var(--blue); letter-spacing: 0.16em; }
.build__rail h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 700;
  margin-top: 14px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.build__rail > p {
  margin-top: 14px;
  color: var(--muted-d);
  font-size: 0.94rem;
  line-height: 1.62;
  max-width: 34ch;
}
.build__nav { margin-top: 26px; display: flex; flex-direction: column; }
.build__link {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 12px;
  align-items: center;
  min-height: var(--tap);
  padding: 13px 0 13px 10px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--muted-d);
  position: relative;
  transition: color 0.2s;
}
.build__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform 0.25s var(--ease);
}
.build__link span {
  font-family: var(--mono);
  font-size: 0.64rem;
  color: var(--blue);
  opacity: 0.42;
  letter-spacing: 0.1em;
}
.build__link.is-active,
.build__link:hover { color: var(--black); }
.build__link.is-active::before { transform: scaleY(1); }
.build__link.is-active span { opacity: 1; }
.build__meter { margin-top: 22px; height: 2px; background: var(--line); overflow: hidden; }
.build__meter i { display: block; height: 100%; width: 25%; background: var(--blue); transition: transform 0.5s var(--ease); }
.build__panels { display: flex; flex-direction: column; gap: clamp(24px, 3.5vh, 44px); }
.build__panel {
  opacity: 0.85;
  transition: opacity 0.35s, border-color 0.35s, box-shadow 0.35s;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}
.build__panel.is-active {
  opacity: 1;
  border-color: rgba(61, 90, 254, 0.42);
  box-shadow: 0 20px 56px rgba(61, 90, 254, 0.12);
}
.build__panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: min(44vh, 420px);
  object-fit: cover;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.build__copy {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}
.build__copy h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.build__copy p { color: var(--muted-d); margin-top: 8px; font-size: 0.9rem; line-height: 1.58; }

/* Featured */
.featured { padding: 0; background: var(--black); }
.featured__frame { position: relative; min-height: clamp(540px, 70vh, 680px); overflow: hidden; }
.featured__frame > img {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 40%;
  min-height: clamp(540px, 70vh, 680px);
  filter: brightness(1.07) contrast(1.1) saturate(1.04);
}
.featured__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, var(--black) 0%, var(--black) 22%, rgba(3, 3, 3, 0.92) 36%, rgba(3, 3, 3, 0.62) 50%, rgba(3, 3, 3, 0.22) 66%, rgba(3, 3, 3, 0.06) 80%, transparent 92%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.14) 0%, transparent 42%, rgba(3, 3, 3, 0.22) 100%);
}
.featured__meta {
  position: absolute; left: max(3vw, calc((100vw - 1320px) / 2)); bottom: clamp(40px, 7vh, 72px);
  max-width: 540px; z-index: 2;
  padding: 22px 36px 22px 8px;
  background: rgba(3, 3, 3, 0.94);
  box-shadow: 24px 0 48px rgba(3, 3, 3, 0.72);
}
.featured__meta::before {
  content: "";
  position: absolute;
  inset: -12px -32px -12px -12px;
  background: rgba(3, 3, 3, 0.9);
  z-index: -1;
  pointer-events: none;
}
.featured__meta .mono { color: var(--blue); margin-bottom: 14px; }
.featured__meta h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.04; letter-spacing: -0.03em; }
.featured__meta > p { margin: 16px 0 26px; color: var(--muted); line-height: 1.62; max-width: 42ch; }
.featured__stats { display: flex; gap: 32px; margin-bottom: 28px; }
.featured__stats strong { display: block; font-size: 1.8rem; font-weight: 700; color: var(--blue); }
.featured__stats span { font-size: 0.62rem; color: var(--muted); }

/* Formats grid */
.formats {
  padding: var(--section-y) 0;
  background: var(--panel);
}
.formats__filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(24px, 4vh, 36px); }
.formats__f {
  min-height: 40px;
  padding: 10px 18px; background: transparent; border: 1px solid var(--line-d);
  color: var(--muted); font-weight: 600; font-size: 0.76rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.formats__f.is-on,
.formats__f:hover { border-color: var(--blue); color: var(--white); background: var(--blue-soft); }
.formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.format-card {
  position: relative; overflow: hidden; cursor: pointer;
  grid-column: span 1;
  display: block;
  background: var(--black);
  border: 1px solid var(--line-d);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.format-card:hover {
  border-color: var(--blue-line);
  background: rgba(61, 90, 254, 0.04);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.format-card.is-off { opacity: 0.15; pointer-events: none; }
.format-card--wide { grid-column: 1 / -1; }
.format-card__media {
  position: relative;
  overflow: hidden;
  background: #08080c;
}
.format-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.1) 0%, transparent 30%, transparent 50%, rgba(3, 3, 3, 0.52) 76%, rgba(3, 3, 3, 0.9) 100%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.16) 0%, transparent 48%);
  pointer-events: none;
}
.format-card__media img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3.15;
  min-height: 220px;
  transition: transform 0.5s var(--ease), filter 0.35s;
}
.format-card:hover .format-card__media img {
  transform: scale(1.035);
  filter: brightness(1.04) contrast(1.04);
}
.format-card--wide .format-card__media img {
  aspect-ratio: 2.35 / 1;
  min-height: 300px;
  max-height: 360px;
  object-position: center 26%;
}
.format-card--wide[data-modal="landing"] {
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(76, 99, 255, 0.07);
}
.format-card--wide[data-modal="landing"] .format-card__media {
  background: #0a0e16;
}
.format-card--wide[data-modal="landing"] .format-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(76, 99, 255, 0.1);
  background:
    linear-gradient(125deg, rgba(76, 99, 255, 0.05) 0%, transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 28%);
}
.format-card--wide[data-modal="landing"] .format-card__media::after {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.02) 0%, transparent 24%, transparent 56%, rgba(3, 3, 3, 0.34) 80%, rgba(3, 3, 3, 0.76) 100%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.06) 0%, transparent 32%);
}
.format-card--wide[data-modal="landing"] .format-card__media img {
  aspect-ratio: 2.5 / 1;
  min-height: 272px;
  max-height: 328px;
  object-fit: cover;
  object-position: 12% 94%;
  filter: brightness(1.1) contrast(1.14) saturate(1.05);
}
.format-card--wide[data-modal="landing"]:hover .format-card__media img {
  filter: brightness(1.13) contrast(1.16) saturate(1.07);
}
.format-card[data-modal="campaign"] .format-card__media img { object-position: center 38%; }
.format-card[data-modal="brandsys"] .format-card__media img { object-position: center 32%; }
.format-card[data-modal="ai"] .format-card__media img { object-position: center 36%; }
.format-card[data-modal="deck"] .format-card__media img { object-position: center 42%; }
.format-card__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px 18px 16px;
  background: transparent;
  border-top: none;
}
.format-card__cap .mono {
  color: var(--blue);
  margin-bottom: 4px;
  font-size: 0.62rem;
  text-shadow: 0 1px 10px rgba(3, 3, 3, 0.85);
}
.format-card__cap h3 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(3, 3, 3, 0.9);
}

/* Process — white system */
.process {
  padding: var(--section-y) 0;
  background: var(--white); color: var(--black);
  border-bottom: 1px solid var(--line);
}
.process .head .mono { color: var(--blue); }
.process .head h2 { color: var(--black); }
.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-l); border: 1px solid var(--line);
}
.process__cell { background: var(--white); padding: clamp(28px, 4vw, 40px); }
.process__cell .mono { color: var(--blue); font-size: 0.62rem; }
.process__cell h3 { margin-top: 12px; font-weight: 700; font-size: 1.1rem; line-height: 1.25; }
.process__cell p { margin-top: 8px; font-size: 0.88rem; color: var(--muted-d); line-height: 1.55; }

/* Pricing */
.pricing {
  padding: var(--section-y) 0;
  background: var(--black);
}
.pricing__layout { display: grid; gap: clamp(28px, 4vh, 40px); }
.pricing__packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.pack {
  padding: 30px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(12, 12, 16, 0.72) 0%, rgba(6, 6, 8, 0.96) 100%);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.pack:hover {
  border-color: rgba(76, 99, 255, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.pack--hot {
  border-color: rgba(76, 99, 255, 0.26);
  background: linear-gradient(165deg, rgba(76, 99, 255, 0.055) 0%, rgba(12, 14, 22, 0.58) 54%, rgba(8, 8, 12, 0.94) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.pack--hot:hover {
  border-color: rgba(90, 115, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 32px rgba(0, 0, 0, 0.26);
}
.pack .mono { color: var(--blue); margin-bottom: 8px; }
.pack h3 { font-family: var(--display); font-size: 1.48rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.pack__sum { margin-top: 12px; font-size: 1.32rem; font-weight: 700; color: var(--cold); line-height: 1.2; }
.pack__note { margin: 8px 0 8px; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.pack__who { margin: 0 0 22px; color: rgba(215, 220, 232, 0.52); font-size: 0.82rem; line-height: 1.58; flex: 1; }
.pack--hot .pack__who { color: rgba(215, 220, 232, 0.7); }
.pack .btn { margin-top: auto; width: 100%; min-height: var(--tap); padding: 13px 20px; }
.estimate {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line-d);
  background: linear-gradient(152deg, rgba(18, 18, 24, 0.98) 0%, rgba(10, 10, 14, 0.99) 100%);
  overflow: hidden;
}
.estimate::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
}
.estimate h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  padding-left: 14px;
}
.estimate__lead {
  margin: 0 0 clamp(18px, 3vh, 26px);
  padding-left: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 62ch;
}
.estimate__list {
  list-style: none;
  padding-left: 14px;
}
.estimate__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.estimate__item:last-child { border-bottom: none; }
.estimate__num {
  color: var(--blue);
  font-size: 0.62rem;
  padding-top: 3px;
}
.estimate__body h4 {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  margin-bottom: 4px;
}
.estimate__body p {
  color: rgba(215, 220, 232, 0.55);
  font-size: 0.84rem;
  line-height: 1.52;
}
.estimate__foot {
  margin-top: clamp(16px, 2.5vh, 22px);
  padding: 16px 0 0 14px;
  border-top: 1px solid rgba(61, 90, 254, 0.22);
  color: rgba(215, 220, 232, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
  max-width: 58ch;
}
.fld { display: block; margin-bottom: 16px; }
fieldset.fld {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
  min-inline-size: 0;
}
fieldset.fld:focus-within {
  outline: none;
  box-shadow: none;
}
.fld > span,
fieldset.fld > span { display: block; margin-bottom: 6px; color: var(--muted); }
.fld select, .fld input:not([type=radio]):not([type=range]), .fld textarea {
  width: 100%; min-height: var(--tap);
  padding: 12px 14px; font-family: var(--body); font-size: 0.88rem; line-height: 1.5;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-d); color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.fld select {
  color-scheme: dark;
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white);
  appearance: none;
  padding-right: 36px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.55) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.55) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.fld select option {
  background: #111318;
  color: #fff;
}
.fld select option:checked,
.fld select option:hover {
  background: #1b2448;
  color: #fff;
}
.fld textarea { min-height: 120px; padding-top: 12px; }
.fld select:hover, .fld input:not([type=radio]):not([type=range]):hover, .fld textarea:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.fld select:focus,
.fld select:focus-visible {
  border-color: var(--blue);
  background-color: rgba(61, 90, 254, 0.06);
  color: var(--white);
  outline: none;
}
.fld input:not([type=radio]):not([type=range]):focus-visible,
.fld textarea:focus-visible {
  border-color: var(--blue);
  background: rgba(61, 90, 254, 0.06);
}
.fld input[type=range] { width: 100%; accent-color: var(--blue); }
.fld__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line-d);
  background: rgba(255, 255, 255, 0.02);
}
.fld__pills label {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  flex: 1 1 0;
  min-width: 88px;
  min-height: var(--tap); padding: 10px 12px;
  border: 1px solid transparent; font-size: 0.82rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}
.fld__pills input[type=radio] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.fld__pills label:hover { border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.03); }
.fld__pills label:has(:checked) { border-color: var(--blue); background: var(--blue-soft); color: var(--white); }
.fld--dark select,
.fld--dark input,
.fld--dark textarea {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: var(--line-d);
}
.fld--dark select option {
  background: #111318;
  color: #fff;
}
.fld--dark select:focus,
.fld--dark select:focus-visible {
  border-color: var(--blue);
  background-color: rgba(61, 90, 254, 0.08);
  color: var(--white);
}
.contact__form select:invalid { color: rgba(215, 220, 232, 0.62); }
.contact__form select:valid { color: var(--white); }
.contact__form .fld { margin-bottom: 8px; }
.contact__form textarea { min-height: 72px; }
/* FAQ */
.faq {
  position: relative;
  padding: clamp(44px, 6vh, 56px) 0 clamp(40px, 5.5vh, 52px);
  background: linear-gradient(180deg, #eceef3 0%, #f8f9fc 7%, #ffffff 100%);
  color: var(--black);
  box-shadow: inset 0 28px 52px -28px rgba(3, 3, 3, 0.14);
}
.faq .head { margin-bottom: clamp(28px, 3.5vh, 36px); }
.faq .head .mono { margin-bottom: 8px; color: var(--blue); }
.faq .head h2 { color: var(--black); }
.faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
  padding-top: 6px;
}
.faq__col {
  border-left: 2px solid rgba(76, 99, 255, 0.34);
  padding-left: 14px;
  min-width: 0;
}
.faq__item { border-bottom: 1px solid rgba(5, 5, 5, 0.07); }
.faq__q {
  width: 100%;
  min-height: 40px;
  padding: 12px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.94rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: rgba(5, 5, 5, 0.9);
  line-height: 1.48;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--blue-hover); }
.faq__q::after {
  content: "+";
  color: rgba(76, 99, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 500;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
  opacity: 0;
}
.faq__item.is-open .faq__a { opacity: 1; }
.faq__a p { padding: 0 0 14px; color: rgba(5, 5, 5, 0.58); font-size: 0.86rem; line-height: 1.58; }

/* Contact */
.contact {
  position: relative; padding: clamp(36px, 5vh, 52px) 0;
  background: var(--black);
}
.contact__bg { position: absolute; inset: 0; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; }
.contact__veil { position: absolute; inset: 0; background: linear-gradient(105deg, var(--black) 38%, rgba(3,3,3,0.78)); }
.contact__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 40px); align-items: start;
}
.contact__info { padding-top: 4px; }
.contact__info .mono { color: var(--blue); }
.contact__info h2 { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 700; margin-top: 6px; line-height: 1.08; letter-spacing: -0.03em; }
.contact__info > p { margin-top: 10px; color: rgba(215, 220, 232, 0.72); line-height: 1.56; max-width: 38ch; }
.contact__links { margin-top: 18px; }
.contact__links li {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 38px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact__links li:last-child { border-bottom: none; }
.contact__links .mono { min-width: 42px; color: rgba(215, 220, 232, 0.48); font-size: 0.62rem; }
.contact__links a { padding: 4px 0; transition: color 0.2s; color: rgba(255, 255, 255, 0.9); }
.contact__links a:hover { color: var(--blue); }
.contact__form {
  padding: 24px 22px;
  background: linear-gradient(160deg, rgba(14, 14, 18, 0.96) 0%, rgba(10, 10, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}
.contact__title { font-weight: 700; margin-bottom: 14px; font-size: 1.04rem; line-height: 1.25; letter-spacing: -0.01em; }
.contact__ok { margin-top: 14px; color: var(--blue); font-size: 0.88rem; }
.contact__form .fld { margin-bottom: 12px; }
.contact__form textarea { min-height: 80px; resize: vertical; }
.fld--dark input:focus,
.fld--dark textarea:focus {
  border-color: rgba(76, 99, 255, 0.48);
  background-color: rgba(76, 99, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(76, 99, 255, 0.12);
}

.foot {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--black);
  color: rgba(215, 220, 232, 0.46);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 24px; pointer-events: none; opacity: 0; transition: opacity 0.35s;
}
.modal.is-open { pointer-events: auto; opacity: 1; }
.modal__dim { position: absolute; inset: 0; background: rgba(3,3,3,0.82); backdrop-filter: blur(8px); }
.modal__sheet {
  position: relative; display: grid; grid-template-columns: 1.1fr 1fr;
  max-width: 940px; max-height: 90vh; overflow: auto;
  background: var(--panel); border: 1px solid var(--line-d);
  transform: translateY(20px); transition: transform 0.4s var(--ease);
}
.modal.is-open .modal__sheet { transform: none; }
.modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px;
  background: var(--black); border: 1px solid var(--line-d); color: var(--white); font-size: 1.3rem;
  transition: border-color 0.2s, background 0.2s;
}
.modal__close:hover { border-color: var(--blue-line); background: var(--blue-soft); }
.modal__img { width: 100%; object-fit: cover; min-height: 260px; }
.modal__body { padding: 28px; }
.modal__body .mono { color: var(--blue); }
.modal__body h2 { font-family: var(--display); font-size: 1.6rem; margin: 8px 0; }
.modal__body > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }
.modal__dl { display: flex; gap: 28px; margin-bottom: 14px; }
.modal__dl dt { font-family: var(--mono); font-size: 0.6rem; color: var(--muted); text-transform: uppercase; }
.modal__dl dd { font-weight: 700; margin-top: 4px; }
.modal__body li { padding: 6px 0; border-bottom: 1px solid var(--line-d); font-size: 0.88rem; color: var(--muted); }
.modal__body .btn { margin-top: 14px; }

@media (max-width: 900px) {
  .top__in {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 16px;
    padding: 18px 0;
  }
  .top__brand { justify-self: start; }
  .top-dim:not([hidden]) {
    background: var(--black);
    backdrop-filter: none;
  }
  .top:has(.top__nav.is-open) {
    z-index: 102;
    background: var(--black);
    border-bottom: 1px solid var(--line-d);
  }
  .top:has(.top__nav.is-open) .top__brand {
    opacity: 0;
    visibility: hidden;
  }
  .top:has(.top__nav.is-open) .top__in {
    position: relative;
    z-index: 2;
  }
  .top__nav {
    position: fixed; inset: 0 0 0 auto; z-index: 1;
    width: min(280px, 85vw);
    flex-direction: column; padding: 96px 28px;
    background: rgba(3, 3, 3, 0.98);
    backdrop-filter: blur(18px);
    border: none;
    border-left: 1px solid var(--line-d);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
    transform: translateX(100%); transition: transform 0.4s, width 0.35s var(--ease);
  }
  .top__nav.is-open {
    inset: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    padding: 104px max(28px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(28px, env(safe-area-inset-left));
  }
  .top__nav.is-open::before {
    content: "";
    position: absolute;
    left: max(28px, env(safe-area-inset-left));
    top: 88px;
    width: 40px;
    height: 2px;
    background: var(--blue);
    pointer-events: none;
  }
  .top__nav-eyebrow {
    display: block;
    color: var(--blue);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-d);
  }
  .top__nav-links {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
    margin-top: 4px;
  }
  .top__nav-links a {
    position: relative;
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 14px 0 14px 18px;
    font-family: var(--body);
    font-size: clamp(1.05rem, 4.8vw, 1.28rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.45;
    color: rgba(215, 220, 232, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s, padding-left 0.25s var(--ease);
  }
  .top__nav-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 52%;
    background: var(--blue);
    transform: translateY(-50%) scaleY(0);
    transition: transform 0.25s var(--ease);
  }
  .top__nav-links a:hover,
  .top__nav-links a:focus-visible {
    color: var(--white);
    padding-left: 24px;
  }
  .top__nav-links a:hover::before,
  .top__nav-links a:focus-visible::before {
    transform: translateY(-50%) scaleY(1);
  }
  .top__nav-foot {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid var(--line-d);
  }
  .top__nav-cta {
    width: 100%;
    font-size: 0.82rem;
  }
  .top__nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    color: rgba(215, 220, 232, 0.42);
  }
  .top__nav-contact span { opacity: 0.35; }
  .top__nav-contact a {
    min-height: auto;
    padding: 4px 0;
    font-family: var(--mono);
    font-size: inherit;
    font-weight: 500;
    letter-spacing: inherit;
    color: rgba(215, 220, 232, 0.55);
    border: none;
    transition: color 0.2s;
  }
  .top__nav-contact a:hover { color: var(--blue); }
  .top__burger {
    display: flex;
    position: relative;
    z-index: 3;
    padding: 8px;
    margin: -4px -8px -4px 0;
  }
  :root { --scroll-offset: 72px; }
  .hero { min-height: auto; align-items: flex-start; }
  .hero__layers { transform: translate(6px, -14px); }
  .hero__layer--front { display: none; }
  .hero__body { padding-top: 88px; padding-bottom: 28px; }
  .hero__body .mono { margin-bottom: 14px; }
  .hero__body .mono,
  .hero__lead,
  .hero__acts { max-width: 100%; }
  .hero__title {
    max-width: 100%;
    font-size: clamp(1.95rem, 9.4vw, 2.75rem);
    line-height: 0.96;
    letter-spacing: -0.025em;
    margin: 14px 0 20px;
  }
  .hero__lead { margin-bottom: 24px; font-size: 0.94rem; }
  .hero__acts .btn { min-height: var(--tap); padding: 12px 18px; font-size: 0.8rem; }
  .formats__filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: clamp(20px, 3vh, 28px);
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .formats__filter::-webkit-scrollbar { display: none; }
  .formats__f { flex: 0 0 auto; white-space: nowrap; min-height: var(--tap); padding: 11px 18px; }
  .estimate { padding: 22px 18px; }
  .contact { padding: clamp(44px, 6.5vh, 64px) 0; }
  .contact__form { padding: 20px 18px; }
  .contact__grid { gap: 28px; }
  .contact__links { margin-top: 16px; }
  .faq { padding: clamp(40px, 6vh, 56px) 0; }
  .faq__list { grid-template-columns: 1fr; gap: 0; padding-top: 4px; }
  .faq__col { padding-left: 12px; }
  .faq__col + .faq__col { margin-top: 8px; }
  .build__grid { grid-template-columns: 1fr; gap: 28px; }
  .build__rail { position: static; padding-right: 0; }
  .build__panels { gap: 20px; }
  .build__panel,
  .build__panel:not(.is-active) { opacity: 1; }
  .build__panel:not(.is-active) {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  }
  .build__panel:not(.is-active) .build__copy h3 { color: var(--black); }
  .build__panel:not(.is-active) .build__copy p { color: var(--muted-d); }
  .build__panel.is-active {
    border-color: rgba(61, 90, 254, 0.5);
    box-shadow: inset 3px 0 0 #3D5AFE, 0 16px 40px rgba(61, 90, 254, 0.12);
  }
  .build__panel img { max-height: min(36vh, 320px); }
  .pricing__layout { gap: 20px; }
  .estimate { padding: 18px 16px; }
  .estimate h3 { font-size: 1.06rem; margin-bottom: 8px; }
  .estimate__lead { font-size: 0.84rem; margin-bottom: 14px; }
  .estimate__item { padding: 11px 0; grid-template-columns: 40px minmax(0, 1fr); gap: 8px 12px; }
  .estimate__body h4 { font-size: 0.88rem; }
  .estimate__body p { font-size: 0.82rem; }
  .estimate__foot { font-size: 0.84rem; padding-top: 14px; }
  .featured__frame {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .statement__text {
    letter-spacing: -0.015em;
    text-wrap: wrap;
    overflow-wrap: break-word;
    word-spacing: 0.03em;
    white-space: normal;
  }
  .featured__frame > img {
    position: relative;
    flex: 0 0 auto;
    object-fit: cover;
    object-position: 40% 42%;
    min-height: min(30vh, 240px);
    height: min(30vh, 240px);
    max-height: 260px;
    filter: brightness(1.08) contrast(1.12) saturate(1.05);
  }
  .featured__veil {
    inset: auto 0 auto 0;
    top: 0;
    height: min(30vh, 240px);
    max-height: 260px;
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.08) 0%, transparent 36%, rgba(3, 3, 3, 0.42) 78%, rgba(3, 3, 3, 0.72) 100%),
      linear-gradient(90deg, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.28) 42%, transparent 78%);
  }
  .featured__meta {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    width: 100%;
    background: var(--black);
    padding: 22px 20px 26px;
    backdrop-filter: none;
    box-shadow: none;
  }
  .featured__meta::before { display: none; }
  .picker {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .picker__tabs { grid-template-columns: repeat(4, minmax(132px, 1fr)); overflow-x: auto; }
  .picker__tab { min-height: 60px; font-size: 0.74rem; }
  .picker__stage {
    min-height: min(34vh, 280px);
    border-right: none;
    border-bottom: 1px solid var(--line-d);
  }
  .picker__info { min-height: 240px; }
  .picker__desc { padding: 22px 20px; }
  .picker__title { font-size: 1.08rem; margin-bottom: 10px; }
  .picker__text { max-width: none; padding-bottom: 18px; }
  .picker__cta { width: 100%; min-width: 0; }
  .formats .wrap,
  .formats__grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .formats__grid { grid-template-columns: 1fr; gap: 10px; }
  .format-card, .format-card--wide {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .format-card__media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .format-card__media img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 188px;
  }
  .format-card:hover .format-card__media img { transform: none; }
  .format-card__cap h3 { overflow-wrap: break-word; }
  .format-card--wide .format-card__media img {
    aspect-ratio: 16 / 9;
    min-height: 196px;
    max-height: 220px;
  }
  .format-card--wide[data-modal="landing"] .format-card__media img {
    aspect-ratio: 16 / 9;
    min-height: 172px;
    max-height: 196px;
    object-position: 10% 96%;
  }
  .format-card__cap { padding: 24px 16px 14px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__packs { grid-template-columns: 1fr; }
  .contact__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .contact__form { order: 1; }
  .contact__info { order: 2; margin-top: 8px; }
  .contact {
    padding-bottom: calc(clamp(44px, 6.5vh, 64px) + env(safe-area-inset-bottom, 0px) + 12px);
  }
  .formats .head h2 {
    letter-spacing: -0.02em;
    word-spacing: 0.03em;
    line-height: 1.1;
  }
  .build__link {
    color: rgba(5, 5, 5, 0.64);
  }
  .build__link span {
    opacity: 0.78;
    color: rgba(76, 99, 255, 0.88);
  }
  .build__link.is-active {
    color: var(--black);
    background: rgba(76, 99, 255, 0.04);
  }
  .build__link.is-active span { opacity: 1; }
  .build__panel:not(.is-active) {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.035);
  }
  .build__panel:not(.is-active) .build__copy h3 {
    color: rgba(5, 5, 5, 0.78);
  }
  .build__panel:not(.is-active) .build__copy p {
    color: rgba(5, 5, 5, 0.56);
  }
  .build__panel.is-active {
    border-color: rgba(76, 99, 255, 0.34);
    box-shadow: inset 3px 0 0 rgba(76, 99, 255, 0.72), 0 8px 24px rgba(76, 99, 255, 0.06);
  }
  .picker__desc {
    padding-bottom: 20px;
  }
  .foot {
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px) + 10px);
  }
  .modal {
    padding: max(12px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom)) 16px;
    overflow-x: hidden;
  }
  .modal__sheet {
    grid-template-columns: 1fr;
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal__sheet {
    max-height: 92vh;
    align-self: flex-start;
    margin-top: max(8px, env(safe-area-inset-top));
  }
  .modal__img {
    width: 100%;
    max-width: 100%;
    min-height: 128px;
    max-height: 28vh;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .modal__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }
  .modal__body {
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
    min-width: 0;
    overflow-wrap: break-word;
  }
  .modal__body h2 { font-size: 1.28rem; margin: 6px 0; }
  .modal__body > p { font-size: 0.84rem; margin-bottom: 10px; line-height: 1.5; }
  .modal__dl { gap: 18px; margin-bottom: 10px; }
  .modal__body li { padding: 4px 0; font-size: 0.82rem; }
  .modal__body .btn { margin-top: 10px; }
}
@media (max-width: 600px) {
  .process__grid { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .wrap {
    width: 100%;
    max-width: 100%;
    padding-inline: max(24px, env(safe-area-inset-left)) max(24px, env(safe-area-inset-right));
    box-sizing: border-box;
  }
  .formats { padding-block: clamp(52px, 8vh, 72px); }
  .process { padding-block: clamp(52px, 8vh, 72px); }
  .pricing { padding-block: clamp(48px, 7vh, 64px); }
  .pricing__packs { gap: 10px; }
  .pack { padding: 22px 18px 20px; }
  .pack__who { margin-bottom: 18px; }
  .faq { padding-block: clamp(36px, 5.5vh, 48px); }
  .faq .head { margin-bottom: clamp(22px, 3.5vh, 28px); }
  .faq__q { padding: 11px 0; min-height: 38px; font-size: 0.9rem; }
  .faq__a p { padding-bottom: 12px; font-size: 0.85rem; }
  .contact {
    padding-top: clamp(40px, 6vh, 52px);
    padding-bottom: calc(clamp(40px, 6vh, 52px) + env(safe-area-inset-bottom, 0px) + 16px);
  }
  .contact__info h2 { margin-top: 6px; }
  .contact__info > p { margin-top: 8px; }
  .contact__form { padding: 20px 16px; max-width: 100%; }
  .contact__form textarea { min-height: 84px; max-height: 180px; }
  .foot { padding: 18px 0 22px; }
  .featured__frame > img {
    min-height: min(28vh, 200px);
    height: min(28vh, 200px);
    max-height: 220px;
    object-position: 36% 40%;
  }
  .featured__veil {
    height: min(28vh, 200px);
    max-height: 220px;
  }
  .featured__meta {
    padding: 20px max(24px, env(safe-area-inset-right)) 24px max(24px, env(safe-area-inset-left));
  }
  .featured__meta h2 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .featured__stats { gap: 24px; margin-bottom: 22px; }
  .formats__grid { gap: 10px; }
  .formats,
  .formats .wrap {
    overflow-x: hidden;
  }
  .format-card__media img { min-height: 176px; }
  .format-card--wide .format-card__media img { min-height: 184px; max-height: 204px; }
  .format-card--wide[data-modal="landing"] .format-card__media img {
    min-height: 168px;
    max-height: 188px;
    object-position: 8% 98%;
  }
  .pack { padding: 22px 18px 20px; }
  .foot {
    padding: 18px 0 calc(20px + env(safe-area-inset-bottom, 0px) + 8px);
    font-size: 0.78rem;
  }
  .modal__sheet {
    width: min(100%, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    max-height: 94vh;
  }
  .modal__img {
    min-height: 116px;
    max-height: 24vh;
  }
  .modal__body {
    padding: 16px 14px calc(16px + env(safe-area-inset-bottom, 0px) + 8px);
  }
  .modal__body h2 { font-size: 1.2rem; }
  .modal__body > p { font-size: 0.82rem; }
  .modal__body li { font-size: 0.8rem; padding: 3px 0; }
  .contact__grid {
    display: flex;
    flex-direction: column;
  }
  .contact__form { order: 1; }
  .contact__info { order: 2; margin-top: 12px; }
  .hero { min-height: auto; align-items: flex-start; }
  .hero__layers { transform: translate(4px, -10px); }
  .hero__glow {
    top: -6%; right: -4%; width: 58%; height: 42%; opacity: 0.55;
  }
  .hero__layer--back {
    width: 48%;
    right: -10%;
    top: 78px;
    opacity: 0.4;
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow:
      0 24px 72px rgba(0, 0, 0, 0.42),
      0 0 22px rgba(61, 90, 254, 0.07);
  }
  .hero__layer--mid {
    width: 30%;
    right: 2%;
    top: 110px;
    opacity: 0.34;
    box-shadow:
      0 18px 56px rgba(0, 0, 0, 0.38),
      0 0 24px rgba(61, 90, 254, 0.06);
  }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.9) 30%, rgba(3, 3, 3, 0.55) 48%, transparent 66%),
      linear-gradient(90deg, var(--black) 0%, rgba(3, 3, 3, 0.96) 52%, transparent 78%);
  }
  .hero__body {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-top: clamp(108px, 15vh, 128px);
    padding-bottom: 32px;
    padding-inline: max(24px, env(safe-area-inset-left)) max(24px, env(safe-area-inset-right));
    box-sizing: border-box;
  }
  .hero__body .mono {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin-bottom: 12px;
    text-shadow: 0 1px 14px rgba(3, 3, 3, 0.95);
  }
  .hero__lead { max-width: 100%; }
  .hero__title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.62rem, 8.2vw, 2.1rem);
    line-height: 0.96;
    letter-spacing: -0.025em;
    margin: 12px 0 18px;
  }
  .hero__lead { margin-bottom: 22px; font-size: 0.92rem; }
  .hero__acts {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero__acts .btn {
    width: 100%;
    min-width: 0;
    min-height: var(--tap);
    padding: 11px 12px;
    font-size: 0.78rem;
  }
  .build__link { min-height: 48px; padding: 12px 0 12px 8px; }
  .statement {
    padding: clamp(40px, 8vw, 48px) 0 32px;
    scroll-margin-top: calc(var(--scroll-offset) + 8px);
  }
  .statement__in {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: max(24px, env(safe-area-inset-left)) max(24px, env(safe-area-inset-right));
    box-sizing: border-box;
    gap: 16px;
  }
  .statement__text {
    max-width: none;
    font-size: clamp(1.06rem, 4.4vw, 1.26rem);
    line-height: 1.34;
    letter-spacing: -0.01em;
    word-spacing: 0.04em;
    text-wrap: wrap;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .build__assembly { padding: 44px 0 36px; }
  .build__grid {
    width: 100%;
    max-width: 100%;
    padding-inline: max(24px, env(safe-area-inset-left)) max(24px, env(safe-area-inset-right));
    box-sizing: border-box;
    gap: 22px;
  }
  .build__rail h2 { font-size: clamp(1.45rem, 6.8vw, 1.75rem); }
  .build__rail > p { max-width: none; }
  .build__nav { margin-top: 18px; }
  .build__link { padding: 11px 0 11px 8px; font-size: 0.82rem; }
  .build__panels { gap: 18px; }
  .build__panel,
  .build__panel:not(.is-active) { opacity: 1; }
  .build__panel:not(.is-active) {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.035);
  }
  .build__panel.is-active {
    border-color: rgba(76, 99, 255, 0.34);
    box-shadow: inset 3px 0 0 rgba(76, 99, 255, 0.72), 0 8px 24px rgba(76, 99, 255, 0.06);
  }
  .build__panel img { max-height: 220px; aspect-ratio: 16/9; }
  .build__copy { padding: 14px 14px 16px; }
  .build__picker {
    width: 100%;
    max-width: 100%;
    padding-inline: max(24px, env(safe-area-inset-left)) max(24px, env(safe-area-inset-right));
    box-sizing: border-box;
  }
  .build__picker .head { margin-bottom: 20px; }
  .picker__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: visible;
    mask-image: none;
  }
  .picker__tab {
    min-height: 54px;
    padding: 12px 14px;
    font-size: 0.7rem;
    line-height: 1.32;
    text-align: left;
  }
  .picker__tab.is-on { background: rgba(61, 90, 254, 0.1); }
  .picker__stage { min-height: 210px; }
  .picker__info { min-height: 228px; }
  .picker__desc {
    padding: 18px max(18px, env(safe-area-inset-left)) 22px max(18px, env(safe-area-inset-right));
    box-sizing: border-box;
  }
  .build__slant {
    --slant-h: clamp(34px, 6.5vw, 52px);
  }
  .build__slant::before {
    clip-path: polygon(0 0, 100% 0, 100% 11%, 0 100%);
  }
  .formats .head h2 {
    letter-spacing: -0.015em;
    word-spacing: 0.04em;
    line-height: 1.12;
    font-size: clamp(1.65rem, 7.8vw, 2rem);
  }
  .picker__title { font-size: 1.04rem; }
  .picker__meta { margin-bottom: 12px; gap: 6px 12px; }
  .picker__text { font-size: 0.88rem; padding-bottom: 18px; }
  .picker__cta {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.78rem;
    box-sizing: border-box;
  }
}
.back-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--body);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease, border-color 0.2s, background 0.2s, color 0.2s;
  pointer-events: none;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover,
.back-top:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(3, 3, 3, 0.88);
  color: var(--white);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__layer { will-change: auto; animation: none !important; }
  .back-top { transition: none; }
}