/* ==========================================================================
   FULLY EXPOSED GRAPHICS — design system
   Thesis: everything is exposure. Content develops into view.
   Built by Vivid Canvas.
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Anton";
  src: url("../fonts/anton-latin.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-italic-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* color */
  --ink: #0b0b0c;
  --ink-2: #131315;
  --paper: #f2efe9;
  --paper-dim: #e7e3da;
  --volt: #c8ff2e;
  --volt-dim: #9ec722;
  --white-hi: rgba(242, 239, 233, 0.92);
  --white-mid: rgba(242, 239, 233, 0.64);
  --white-low: rgba(242, 239, 233, 0.38);
  --hairline: rgba(242, 239, 233, 0.12);
  --ink-hairline: rgba(11, 11, 12, 0.14);
  --ink-mid: rgba(11, 11, 12, 0.66);

  /* type */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;

  --text-hero: clamp(3rem, 9.6vw, 9.5rem);
  --text-h1: clamp(2.8rem, 8vw, 7.5rem);
  --text-h2: clamp(2rem, 5.2vw, 4.6rem);
  --text-h3: clamp(1.35rem, 2.6vw, 2rem);
  --text-lead: clamp(1.05rem, 1.6vw, 1.35rem);
  --text-body: clamp(0.98rem, 1.15vw, 1.08rem);
  --text-meta: 0.78rem;

  /* spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.75rem;
  --space-4: 3rem;
  --space-5: 5.5rem;
  --space-6: clamp(6rem, 12vw, 11rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);

  /* motion */
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout: cubic-bezier(0.83, 0, 0.17, 1);
  --t-fast: 0.22s;
  --t-med: 0.6s;
  --t-slow: 1s;

  /* layers */
  --z-nav: 100;
  --z-menu: 110;
  --z-preloader: 200;
  --z-cursor: 300;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background: var(--ink);
  color: var(--white-hi);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection {
  background: var(--volt);
  color: var(--ink);
}

img,
video {
  max-width: 100%;
  display: block;
  height: auto;
}

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

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
}

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
}

.meta {
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white-mid);
}

.on-paper .meta {
  color: var(--ink-mid);
}

.lead {
  font-size: var(--text-lead);
  line-height: 1.5;
  font-weight: 420;
  max-width: 34em;
  color: var(--white-mid);
}

.volt {
  color: var(--volt);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--space-6);
  position: relative;
}

.section--flush {
  padding-block: 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.section-head h2 {
  font-size: var(--text-h2);
}

.rule {
  border: 0;
  border-top: 1px solid var(--hairline);
}
.on-paper .rule {
  border-top-color: var(--ink-hairline);
}

/* paper (light) sections */
.on-paper {
  background: var(--paper);
  color: var(--ink);
}
.on-paper .lead {
  color: var(--ink-mid);
}

/* ---------- Cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--volt);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
    opacity 0.25s;
  mix-blend-mode: difference;
}
body.cursor-hover .cursor {
  width: 44px;
  height: 44px;
}
@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none;
  }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: var(--z-preloader);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-3);
}
.preloader__logo {
  width: min(150px, 32vw);
  filter: brightness(0.25);
}
.preloader__status {
  color: var(--white-mid);
}
.preloader__bar {
  width: min(240px, 50vw);
  height: 2px;
  background: var(--hairline);
  overflow: hidden;
}
.preloader__bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--volt);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition: transform 0.5s var(--ease-out), background 0.3s;
}
.nav.is-hidden {
  transform: translateY(-100%);
}
.nav.is-solid {
  background: rgba(11, 11, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--gutter);
  border-bottom: 1px solid var(--hairline);
}
.nav__logo img {
  height: 52px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 560;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white-mid);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--t-fast);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--white-hi);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  background: var(--volt);
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  transition: color var(--t-fast);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before {
  transform: translateY(0);
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn--ghost {
  background: transparent;
  color: var(--white-hi);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.btn--ghost::before {
  background: var(--volt);
}
.btn--ghost:hover {
  color: var(--ink);
}
.on-paper .btn--ghost {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink-hairline);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 4px;
}
.nav__burger i {
  width: 28px;
  height: 2px;
  background: var(--white-hi);
  transition: transform 0.35s var(--ease-out), opacity 0.2s;
}

/* mobile menu */
.menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: var(--z-menu);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease-inout);
  visibility: hidden;
}
.menu.is-open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
}
.menu a.menu__link {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white-hi);
  display: block;
}
.menu a.menu__link:hover,
.menu a.menu__link.volt {
  color: var(--volt);
}
.menu__meta {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.menu__close {
  position: absolute;
  top: 1.2rem;
  right: var(--gutter);
  font-size: 2rem;
  color: var(--white-mid);
}

@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: clip;
  padding-bottom: var(--space-4);
}
.hero__bg {
  position: absolute;
  inset: -8% 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
  filter: brightness(0.5) saturate(1.05);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--ink) 4%,
    rgba(11, 11, 12, 0.25) 45%,
    rgba(11, 11, 12, 0.45) 100%
  );
}
.hero__title {
  font-size: var(--text-hero);
  color: var(--white-hi);
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: inline-block;
}
.hero__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.hero__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: var(--space-3);
}
.tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-mid);
}
.on-paper .tag {
  border-color: var(--ink-hairline);
  color: var(--ink-mid);
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: clip;
  border-block: 1px solid var(--hairline);
  padding-block: 1.1rem;
  display: flex;
  user-select: none;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  padding-right: 3rem;
  flex-shrink: 0;
  align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee__track span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--white-low);
}
.marquee__track b {
  color: var(--volt);
  font-weight: 400;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

/* ---------- Reveal utilities (JS-driven) ---------- */
.reveal-img {
  position: relative;
  overflow: clip;
}
.reveal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* develop: clip opens bottom-up like emulsion exposing */
.js .develop {
  clip-path: inset(100% 0 0 0);
}
.js .develop img {
  transform: scale(1.12);
  filter: brightness(1.6) contrast(0.85);
}
.js .fade-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ---------- Service index (home) ---------- */
.svc-list {
  border-top: 1px solid var(--hairline);
}
.svc-row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: center;
  gap: var(--space-3);
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background var(--t-fast);
}
.svc-row__num {
  font-family: var(--font-mono);
  color: var(--white-low);
  font-size: 0.9rem;
}
.svc-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.45s var(--ease-out), color var(--t-fast);
}
.svc-row__desc {
  color: var(--white-mid);
  max-width: 26em;
  font-size: 0.95rem;
}
.svc-row__arrow {
  font-size: 1.6rem;
  color: var(--white-low);
  transition: transform 0.45s var(--ease-out), color var(--t-fast);
}
.svc-row:hover .svc-row__name {
  transform: translateX(0.6rem);
  color: var(--volt);
}
.svc-row:hover .svc-row__arrow {
  transform: translate(0.4rem, -0.4rem);
  color: var(--volt);
}
/* hover flash preview */
.svc-row__img {
  position: absolute;
  right: 12%;
  top: 50%;
  width: clamp(180px, 20vw, 300px);
  aspect-ratio: 4 / 5;
  transform: translateY(-50%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.35s var(--ease-out), transform 0.45s var(--ease-out);
  overflow: clip;
}
.svc-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-row:hover .svc-row__img {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(-2deg);
}
@media (max-width: 900px) {
  .svc-row {
    grid-template-columns: 2.4rem 1fr auto;
  }
  .svc-row__desc {
    display: none;
  }
  .svc-row__img {
    display: none;
  }
}

/* ---------- Work / gallery grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-2);
}
.work-card {
  position: relative;
  overflow: clip;
  display: block;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}
.work-card::after {
  /* flash-develop hover */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--volt);
  opacity: 0;
  mix-blend-mode: overlay;
  pointer-events: none;
  transition: opacity 0.15s ease-in;
}
.work-card:hover::after {
  animation: flash 0.6s var(--ease-out);
}
@keyframes flash {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.work-card:hover img {
  transform: scale(1.04);
}
.work-card__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  background: var(--ink);
  color: var(--white-hi);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.8rem;
}
.span-4 {
  grid-column: span 4;
}
.span-5 {
  grid-column: span 5;
}
.span-6 {
  grid-column: span 6;
}
.span-7 {
  grid-column: span 7;
}
.span-8 {
  grid-column: span 8;
}
.span-12 {
  grid-column: span 12;
}
@media (max-width: 900px) {
  .work-grid > * {
    grid-column: span 12;
  }
}

/* ---------- Process (spec sheet) ---------- */
.process {
  counter-reset: step;
}
.process__step {
  display: grid;
  grid-template-columns: minmax(3rem, 8rem) 1fr 1.2fr;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--ink-hairline);
}
.process__step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  text-transform: uppercase;
}
.process__step p {
  color: var(--ink-mid);
  max-width: 34em;
}
@media (max-width: 900px) {
  .process__step {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border-block: 1px solid var(--hairline);
}
.stat {
  background: var(--ink);
  padding: var(--space-4) var(--space-3);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  color: var(--volt);
}
.stat__label {
  margin-top: 0.6rem;
}

/* ---------- Testimonials ---------- */
.quote-card {
  border: 1px solid var(--hairline);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  height: 100%;
}
.on-paper .quote-card {
  border-color: var(--ink-hairline);
}
.quote-card blockquote {
  font-size: 1.15rem;
  line-height: 1.55;
  font-weight: 450;
}
.quote-card cite {
  font-style: normal;
}
.stars {
  color: var(--volt);
  letter-spacing: 0.2em;
}
.on-paper .stars {
  color: var(--ink);
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
.split__media {
  aspect-ratio: 4 / 5;
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ---------- Big CTA ---------- */
.cta {
  text-align: center;
  position: relative;
  overflow: clip;
}
.cta h2 {
  font-size: var(--text-h1);
}
.cta h2 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white-hi);
}
.cta p {
  margin: var(--space-3) auto;
  max-width: 36em;
  color: var(--white-mid);
}

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--hairline);
}
.on-paper .faq details {
  border-bottom-color: var(--ink-hairline);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding: 1.4rem 0;
  font-weight: 640;
  font-size: 1.08rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--volt);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.on-paper .faq summary::after {
  color: var(--ink);
}
.faq .faq__a {
  padding: 0 0 1.5rem;
  max-width: 60em;
  color: var(--white-mid);
}
.on-paper .faq .faq__a {
  color: var(--ink-mid);
}

/* ---------- Forms (quote / contact) ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.85rem;
  font-weight: 620;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 1px solid var(--ink-hairline);
  padding: 0.95rem 1rem;
  font: inherit;
  color: inherit;
  border-radius: 0;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--volt);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-note {
  font-size: 0.85rem;
  color: var(--ink-mid);
}
@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- File drop zone ---------- */
.drop {
  position: relative;
  border: 2px dashed var(--ink-hairline);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: border-color var(--t-fast), background var(--t-fast);
  cursor: pointer;
}
.drop:focus-within {
  border-color: var(--volt-dim);
  box-shadow: 0 0 0 3px rgba(200, 255, 46, 0.45);
}
.drop:hover,
.drop.is-over {
  border-color: var(--volt-dim);
  background: rgba(200, 255, 46, 0.06);
}
.drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.drop__prompt {
  font-size: 1rem;
  color: var(--ink);
}
.drop__hint {
  font-size: 0.8rem;
  color: var(--ink-mid);
  margin-top: 0.4rem;
}
.filelist {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.filelist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  background: var(--paper-dim);
  padding: 0.55rem 0.8rem;
}
.filelist li.is-bad {
  background: #f6dede;
  color: #7d1d1d;
}
.filelist__size {
  color: var(--ink-mid);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.filelist__drop {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--ink-mid);
  padding: 0 0.2rem;
}
.filelist__drop:hover {
  color: var(--ink);
}

/* ---------- Multi-step form ---------- */
.steps {
  margin-bottom: var(--space-3);
}
.steps__bar {
  height: 4px;
  background: var(--ink-hairline);
  overflow: hidden;
}
.steps__bar i {
  display: block;
  height: 100%;
  background: var(--volt-dim);
  transition: width 0.45s var(--ease-out);
}
.steps__label {
  margin-top: 0.6rem;
}
.step {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
}
.step.is-active {
  display: block;
  animation: stepIn 0.35s var(--ease-out);
}
@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.step__nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: var(--space-3);
}
/* no-JS: show every step and hide the stepper chrome */
.no-js .step,
html:not(.js) .step {
  display: block;
  margin-bottom: var(--space-4);
}
html:not(.js) .steps,
html:not(.js) [data-next],
html:not(.js) [data-prev] {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .step.is-active {
    animation: none;
  }
}

/* SMS consent (TCPA / A2P 10DLC) — must out-specify `.field label` */
.field label.consent__row,
.consent__row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-mid);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.consent__row input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  accent-color: var(--volt-dim);
  cursor: pointer;
}
.consent__row a {
  text-decoration: underline;
  color: var(--ink);
}

/* honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding-top: var(--space-5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
}
.footer h2 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-mid);
  margin-bottom: 1.1rem;
  font-weight: 640;
  line-height: 1.6;
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer a {
  color: var(--white-mid);
  transition: color var(--t-fast);
}
.footer a:hover {
  color: var(--volt);
}
.footer__logo img {
  height: 84px;
  width: auto;
  margin-bottom: var(--space-3);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: var(--space-3);
  border-top: 1px solid var(--hairline);
  color: var(--white-mid);
  font-size: 0.85rem;
}
.footer__mega {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 12rem);
  text-transform: uppercase;
  line-height: 0.9;
  text-align: center;
  color: var(--ink-2);
  -webkit-text-stroke: 1px var(--hairline);
  user-select: none;
  margin-bottom: -0.12em;
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding-top: calc(var(--space-6) + 3rem);
  padding-bottom: var(--space-5);
}
.page-hero h1 {
  font-size: var(--text-h1);
  max-width: 12em;
}
.page-hero .lead {
  margin-top: var(--space-3);
}
.breadcrumbs {
  margin-bottom: var(--space-3);
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.breadcrumbs a:hover {
  color: var(--volt);
}
.on-paper .breadcrumbs a:hover {
  color: var(--ink);
}

/* ---------- Article (blog) ---------- */
.article {
  max-width: 760px;
  margin-inline: auto;
}
.article-hero {
  max-width: 900px;
  margin-inline: auto;
}
.article h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
}
.article h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 2.6rem 0 1rem;
  line-height: 1.05;
}
.article h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.8rem;
  font-weight: 700;
}
.article p {
  margin-bottom: 1.2rem;
  color: var(--ink-mid);
  font-size: 1.06rem;
  line-height: 1.75;
}
.article ul,
.article ol {
  margin: 0 0 1.2rem 1.2rem;
  color: var(--ink-mid);
  line-height: 1.7;
}
.article ul {
  list-style: square;
}
.article ol {
  list-style: decimal;
}
.article li {
  margin-bottom: 0.5rem;
}
.article strong {
  color: var(--ink);
}
.article a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--t-fast);
}
.article a:hover {
  color: var(--ink);
  text-decoration-thickness: 2px;
}
.article a.btn,
.article a.btn--ghost {
  text-decoration: none;
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.article th,
.article td {
  border: 1px solid var(--ink-hairline);
  padding: 0.7rem 0.9rem;
  text-align: left;
}
.article th {
  background: var(--paper-dim);
  font-weight: 680;
}
.article .callout {
  border-left: 4px solid var(--volt);
  background: var(--paper-dim);
  padding: 1.2rem 1.5rem;
  margin: 1.6rem 0;
}
.article .callout p {
  margin: 0;
}
.article figure {
  margin: 2rem 0;
}
.article figcaption {
  font-size: 0.85rem;
  color: var(--ink-mid);
  margin-top: 0.6rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--ink-hairline);
  height: 100%;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  background: var(--paper);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 11, 12, 0.12);
}
.blog-card__media {
  aspect-ratio: 16 / 9;
  overflow: clip;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.blog-card__body h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}
.blog-card__body p {
  color: var(--ink-mid);
  font-size: 0.95rem;
  flex: 1;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: var(--space-3);
}

/* ---------- Pricing table ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
}
.on-paper .price-table th,
.on-paper .price-table td {
  border-bottom-color: var(--ink-hairline);
}
.price-table thead th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white-low);
}
.on-paper .price-table thead th {
  color: var(--ink-mid);
}
.table-scroll {
  overflow-x: auto;
}

/* ---------- 404 ---------- */
.err {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--gutter);
}
.err__frame {
  width: min(300px, 70vw);
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-low);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.err h1 {
  font-size: var(--text-h2);
}

/* ---------- Utility ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 400;
  background: var(--volt);
  color: var(--ink);
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .develop {
    clip-path: none;
  }
  .js .develop img {
    transform: none;
    filter: none;
  }
  .js .fade-up {
    opacity: 1;
    transform: none;
  }
  .marquee__track {
    animation: none;
  }
  .cursor {
    display: none;
  }
}

/* ---------- Video loops ---------- */
.media-loop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* The still stands in wherever the loop is suppressed. */
.media-loop__fallback {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Don't burn mobile data on a decorative loop — show the still instead. */
@media (max-width: 700px) {
  .media-loop {
    display: none;
  }
  .media-loop__fallback {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .media-loop {
    display: none;
  }
  .media-loop__fallback {
    display: block;
  }
}
