/* ==========================================================================
   DOMIN8X DIGITAL — style.css
   Dark editorial system · acid lime accent · Syne / Instrument Serif / Inter
   ========================================================================== */

:root {
  --bg: #09090b;
  --bg-2: #101013;
  --bg-3: #17171a;
  --ink: #f4f4f5;
  --ink-dim: #a1a1aa;
  --ink-faint: #5d5d66;
  --acid: #fd3a25;
  --acid-dim: rgba(253, 58, 37, 0.12);
  --line: rgba(244, 244, 245, 0.08);
  --font-display: "Clash Display", sans-serif;
  --font-serif: "Instrument Serif", serif;
  --font-body: "Satoshi", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--acid); color: #fff; }

.container {
  width: min(1320px, 100% - 3rem);
  margin-inline: auto;
}

em.serif, .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ==========================================================================
   NOISE + CURSOR
   ========================================================================== */

.noise {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 250px 250px;
}

.cursor {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(244, 244, 245, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
              background 0.35s, border-color 0.35s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--acid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor.is-hover {
  width: 72px; height: 72px;
  background: rgba(244, 244, 245, 0.9);
  border-color: transparent;
}
@media (hover: none), (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

.preloader {
  position: fixed; inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: clip-path 1s var(--ease-expo);
  clip-path: inset(0 0 0 0);
}
.preloader.is-done { clip-path: inset(0 0 100% 0); }
.preloader__inner {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.preloader__logo img {
  width: min(300px, 56vw);
  height: auto;
  display: block;
}
.preloader__count {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--ink-dim);
  min-width: 3ch;
}
.preloader__bar {
  width: min(320px, 60vw);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--acid);
  transition: width 0.2s linear;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform 0.5s var(--ease-out), background 0.4s, backdrop-filter 0.4s;
}
.nav.is-scrolled {
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner {
  width: min(1400px, 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo-img { height: 20px; width: auto; display: block; }
.nav__links {
  display: flex;
  gap: 2.4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav__link {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 1rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  --btn-bg: var(--ink);
  --btn-ink: #0a0a0b;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: color 0.35s var(--ease-out), border-color 0.35s, background 0.35s;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acid);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-expo);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: #fff; }

.btn--primary { --btn-bg: var(--acid); --btn-ink: #fff; }
.btn--primary::before { background: var(--ink); }
.btn--primary:hover { color: #09090b; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-ink: var(--ink);
  border-color: rgba(244, 244, 245, 0.25);
}
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { border-color: transparent; color: #09090b; }

.btn--nav { padding: 0.7rem 1.4rem; font-size: 0.82rem; }
.btn--big { padding: 1.3rem 2.4rem; font-size: 1rem; }

.btn__arrow { width: 18px; height: 18px; transition: transform 0.4s var(--ease-out); }
.btn:hover .btn__arrow { transform: translate(3px, -3px); }
.btn__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ==========================================================================
   FULLSCREEN MENU
   ========================================================================== */

.menu {
  position: fixed; inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}
.menu.is-open { pointer-events: auto; visibility: visible; }
.menu__bg {
  position: absolute; inset: 0;
  background: var(--bg-2);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease-expo);
}
.menu.is-open .menu__bg { clip-path: inset(0 0 0 0); }
.menu__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  width: min(1320px, 100% - 3rem);
  margin-inline: auto;
  padding-top: 4rem;
}
.menu__links { display: flex; flex-direction: column; }
.menu__link {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.menu.is-open .menu__link { opacity: 1; transform: translateY(0); }
.menu.is-open .menu__link:nth-child(1) { transition-delay: 0.25s; }
.menu.is-open .menu__link:nth-child(2) { transition-delay: 0.32s; }
.menu.is-open .menu__link:nth-child(3) { transition-delay: 0.39s; }
.menu.is-open .menu__link:nth-child(4) { transition-delay: 0.46s; }
.menu.is-open .menu__link:nth-child(5) { transition-delay: 0.53s; }
.menu__num { font-size: 0.8rem; color: var(--acid); font-family: var(--font-body); }
.menu__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: color 0.3s, transform 0.4s var(--ease-out);
}
.menu__link:hover .menu__text { color: var(--acid); transform: translateX(12px); }
.menu__meta { display: flex; gap: 3rem 5rem; flex-wrap: wrap; align-items: flex-end; }
.menu__lockup { height: 48px; width: auto; display: block; flex: 0 0 auto; }
.menu__meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 0.4rem;
}
.menu__meta-link, .menu__meta-text { color: var(--ink-dim); text-decoration: none; font-size: 1rem; }
.menu__meta-link:hover { color: var(--acid); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: min(1400px, 100% - 3rem);
  margin-inline: auto;
  padding: 8rem 0 6rem;
}
.hero::before {
  content: "";
  position: absolute;
  top: 8%; right: -12%;
  width: 55vw; height: 55vw;
  max-width: 780px; max-height: 780px;
  background: radial-gradient(circle, rgba(253, 58, 37, 0.09) 0%, transparent 62%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
}
.hero__badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(253, 58, 37, 0.6);
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
  70% { box-shadow: 0 0 0 10px rgba(253, 58, 37, 0); }
  100% { box-shadow: 0 0 0 0 rgba(253, 58, 37, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, min(8.8vw, 15.5svh), 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero__line { overflow: hidden; }
.hero__word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-expo);
}
.hero__word.is-in { transform: translateY(0); }
.hero__line--accent { color: var(--ink); }
.hero__serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--acid);
  letter-spacing: 0;
  margin-right: 0.05em;
}
.hero__eight { color: var(--acid); }

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem 3rem;
  margin-top: clamp(2rem, 5svh, 4rem);
  flex-wrap: wrap;
}
.hero__sub {
  max-width: 460px;
  color: var(--ink-dim);
  font-size: 1.05rem;
  font-weight: 300;
}
.hero__sub strong { color: var(--ink); font-weight: 500; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--acid);
  animation: scrollLine 1.8s var(--ease-out) infinite;
}
@keyframes scrollLine {
  to { top: 100%; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee {
  border-block: 1px solid var(--line);
  padding: 1.4rem 0;
  overflow: hidden;
  background: var(--bg-2);
  transform: rotate(-1deg) scale(1.02);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--ink);
}
.marquee__track span:nth-child(4n + 3) { color: transparent; -webkit-text-stroke: 1px var(--ink-dim); }
.marquee__track i {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: var(--acid);
  transform: rotate(45deg);
}

/* ==========================================================================
   STATS
   ========================================================================== */

.stats { padding: 7rem 0 5rem; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat {
  border-left: 1px solid var(--line);
  padding-left: 1.6rem;
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat__star { color: var(--acid); font-size: 0.5em; vertical-align: 0.5em; }
.stat__label {
  color: var(--ink-dim);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   MANIFESTO
   ========================================================================== */

.manifesto { padding: 8rem 0; }
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 1080px;
}
.manifesto__text .word { opacity: 0.14; transition: opacity 0.4s; }
.manifesto__text .word.is-lit { opacity: 1; }
.manifesto__sign {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  color: var(--acid);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.manifesto__dash { width: 56px; height: 1px; background: var(--acid); }

/* ==========================================================================
   SECTION HEAD
   ========================================================================== */

.section-head { margin-bottom: 4.5rem; }
.section-head__tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--acid);
  margin-bottom: 1.2rem;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.section-head__title .serif { color: var(--ink-dim); font-size: 1.05em; }

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services { padding: 6rem 0 8rem; }
.services__list { border-top: 1px solid var(--line); }
.service {
  border-bottom: 1px solid var(--line);
  transition: background 0.4s;
}
.service__row {
  display: grid;
  grid-template-columns: 4rem 1.4fr 1fr 3rem;
  align-items: center;
  gap: 1.5rem;
  padding: 2.2rem 1rem;
  cursor: pointer;
  position: relative;
}
.service__num {
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.service__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  letter-spacing: -0.01em;
  transition: transform 0.5s var(--ease-out), color 0.3s;
}
.service__teaser {
  color: var(--ink-dim);
  font-size: 0.95rem;
  transition: color 0.3s;
}
.service__toggle {
  position: relative;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  justify-self: end;
  transition: background 0.35s, border-color 0.35s, transform 0.5s var(--ease-out);
}
.service__toggle span {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.45s var(--ease-out), background 0.3s;
}
.service__toggle span:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.service:hover { background: rgba(255, 255, 255, 0.015); }
.service:hover .service__name { transform: translateX(10px); }
.service:hover .service__num { color: var(--acid); }
.service.is-open .service__toggle { background: var(--acid); border-color: var(--acid); transform: rotate(180deg); }
.service.is-open .service__toggle span { background: #fff; }
.service.is-open .service__toggle span:last-child { transform: translate(-50%, -50%) rotate(0deg); }
.service__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease-expo);
}
.service.is-open .service__body { grid-template-rows: 1fr; }
.service__body-inner {
  overflow: hidden;
  padding: 0 1rem 0 calc(4rem + 2.5rem);
}
.service__body-inner p {
  max-width: 640px;
  color: var(--ink-dim);
  padding-bottom: 1.6rem;
  font-weight: 300;
}
.service.is-open .service__body-inner { padding-bottom: 2.4rem; }
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}
.service__tags li {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, color 0.3s;
}
.service__tags li:hover { border-color: var(--acid); color: var(--acid); }

/* ==========================================================================
   WORK
   ========================================================================== */

.work { padding: 6rem 0 8rem; background: var(--bg-2); border-block: 1px solid var(--line); }
.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 2.5rem;
}

.folio { display: block; color: var(--ink); text-decoration: none; }

/* --- Before / After slider --- */
.ba {
  --pos: 55%;
  container-type: inline-size;
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer--before { background: #d8d7d0; }
.ba__layer--after {
  background: #0c0c0f;
  clip-path: inset(0 0 0 var(--pos));
}
.ba__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #55544e;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  padding: 0.32rem 0.75rem;
  pointer-events: none;
}
.ba__tag--after {
  left: auto; right: 1rem;
  color: #fff;
  background: var(--acid);
}
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: var(--acid);
  pointer-events: none;
}
.ba__handle span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--acid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 4px 18px rgba(253, 58, 37, 0.45);
}
.ba__handle i {
  width: 7px; height: 7px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
}
.ba__handle i:first-child { transform: rotate(45deg); }
.ba__handle i:last-child { transform: rotate(-135deg); }

/* --- "Before": dated small-business site, real text --- */
.mockb {
  position: absolute;
  inset: 0;
  background: #e9e7e0;
  display: flex;
  flex-direction: column;
  font-family: "Times New Roman", Times, serif;
}
.mockb__chrome {
  height: 9%;
  background: #d6d3cc;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 2%;
}
.mockb__chrome i { width: 7px; height: 7px; border-radius: 50%; background: #b3b0a9; }
.mockb__chrome span {
  flex: 1;
  margin-left: 1.5%;
  background: #f4f2ec;
  border: 1px solid #b9b6ae;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 1.5cqw;
  color: #7c7a74;
  padding: 0.6% 1.6%;
  white-space: nowrap;
  overflow: hidden;
}
.mockb__page {
  flex: 1;
  margin: 2.5% 6% 5%;
  background: #fffefa;
  border: 1px solid #c8c5bc;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mockb__head {
  background: #33518a;
  color: #fff;
  text-align: center;
  padding: 3% 3% 2.4%;
}
.mockb__site {
  display: block;
  font-weight: 700;
  font-size: 2.6cqw;
  letter-spacing: 0.04em;
}
.mockb__tagline { font-style: italic; font-size: 1.7cqw; color: #ccd7ee; }
.mockb__navbar {
  background: #d4d0c8;
  border-block: 1px solid #a9a396;
  font-family: Arial, sans-serif;
  font-size: 1.7cqw;
  text-align: center;
  padding: 1.4% 0;
  color: #333;
}
.mockb__content {
  flex: 1;
  padding: 3.5% 5%;
  font-size: 1.9cqw;
  color: #333;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 1.8%;
  align-items: flex-start;
}
.mockb__welcome { font-weight: 700; font-size: 2.3cqw; color: #8a1010; }
.mockb__link { color: #1436c4; text-decoration: underline; font-size: 1.8cqw; }
.mockb__counter {
  margin-top: auto;
  font-family: "Courier New", monospace;
  font-size: 1.5cqw;
  background: #eceae2;
  border: 1px solid #bbb;
  border-style: inset;
  padding: 0.6% 1.6%;
  color: #555;
}

/* --- Card info --- */
.folio__info { padding: 1.5rem 0.3rem 0; }
.folio__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.folio__name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.01em; }
.folio__year {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--acid);
  border: 1px solid rgba(253, 58, 37, 0.35);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
}
.folio__niche { color: var(--ink-dim); font-size: 0.95rem; margin: 0.4rem 0 0.9rem; }
.folio__link {
  display: inline-block;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid var(--acid);
  padding-bottom: 3px;
  transition: color 0.3s;
}
.folio__link:hover { color: var(--acid); }

/* --- Live (in progress) card --- */
.folio__live-visual {
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  border: 1px solid rgba(253, 58, 37, 0.3);
  background: radial-gradient(60% 70% at 50% 35%, rgba(253, 58, 37, 0.14), transparent 70%), var(--bg-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  padding: 1.5rem;
}
.folio__live-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(253, 58, 37, 0.6);
  animation: badgePulse 2s infinite;
}
.folio__live-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-dim); }
.folio__live-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.04em; }
.folio__live-niche { color: var(--ink-faint); font-size: 0.9rem; }

/* --- Open slot card --- */
.folio--slot { cursor: pointer; }
.folio__slot-visual {
  height: 100%;
  min-height: 340px;
  border: 1.5px dashed rgba(253, 58, 37, 0.45);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2.5rem 2rem;
  transition: background 0.4s, border-color 0.4s, transform 0.5s var(--ease-out);
}
.folio--slot:hover .folio__slot-visual {
  background: rgba(253, 58, 37, 0.05);
  border-color: var(--acid);
  transform: translateY(-6px);
}
.folio__slot-plus {
  font-family: var(--font-display);
  width: 72px; height: 72px;
  border: 1px solid rgba(253, 58, 37, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 300;
  color: var(--acid);
}
.folio__slot-title { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; line-height: 1.15; }
.folio__slot-sub { color: var(--ink-dim); font-size: 0.92rem; }
.folio__slot-btn { margin-top: 0.5rem; }

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process { padding: 8rem 0; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s;
}
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--acid), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.step:hover { transform: translateY(-8px); border-color: rgba(253, 58, 37, 0.3); }
.step:hover::before { transform: scaleX(1); }
.step__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink-faint);
  display: block;
  margin-bottom: 1.6rem;
  transition: -webkit-text-stroke-color 0.4s, color 0.4s;
}
.step:hover .step__num { color: var(--acid); -webkit-text-stroke-color: var(--acid); }
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}
.step__text { color: var(--ink-dim); font-size: 0.92rem; font-weight: 300; }
.step__time {
  display: inline-block;
  margin-top: 1.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--acid);
  border: 1px solid var(--acid-dim);
  background: var(--acid-dim);
  border-radius: 100px;
  padding: 0.35rem 0.8rem;
}

/* ==========================================================================
   EXCLUSIVITY
   ========================================================================== */

.exclusive {
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.exclusive::before {
  content: "";
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(253, 58, 37, 0.07), transparent 65%);
  pointer-events: none;
}
.exclusive__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 6.2vw, 5.2rem);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.exclusive__title b { color: var(--acid); font-weight: inherit; }
.exclusive__line { display: block; }
.exclusive__line .serif { text-transform: none; color: var(--ink-dim); }
.exclusive__body {
  position: relative;
  max-width: 620px;
  margin: 2.4rem auto 0;
  color: var(--ink-dim);
  font-weight: 300;
  font-size: 1.05rem;
}
.exclusive__note {
  margin-top: 1.4rem;
  color: var(--acid);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { padding: 4rem 0 9rem; }
.faq__container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.faq__note { color: var(--ink-dim); margin-top: 1.4rem; max-width: 320px; font-weight: 300; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 3rem 1.6rem 0.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  position: relative;
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--acid);
  transition: transform 0.4s var(--ease-out);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--acid); }
.faq__item p {
  color: var(--ink-dim);
  padding: 0 3rem 1.8rem 0.2rem;
  max-width: 620px;
  font-weight: 300;
}

/* ==========================================================================
   CTA / CONTACT
   ========================================================================== */

.cta {
  padding: 8rem 0 9rem;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(253, 58, 37, 0.07), transparent),
    var(--bg-2);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta__head { text-align: center; margin-bottom: 4.5rem; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.4rem, 11vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.cta__line { display: block; }
.cta__line--serif em {
  font-family: var(--font-serif);
  font-weight: 400;
  text-transform: lowercase;
  color: var(--acid);
  letter-spacing: 0;
}
.cta__sub {
  max-width: 560px;
  margin: 2rem auto 0;
  color: var(--ink-dim);
  font-size: 1.05rem;
  font-weight: 300;
}

.cta__form {
  max-width: 840px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1.5rem 1.3rem 0.75rem;
  outline: none;
  transition: border-color 0.35s, background 0.35s;
  appearance: none;
  resize: vertical;
}
.field select { cursor: pointer; padding-right: 3rem; }
.field::has-select { position: relative; }
.field label {
  position: absolute;
  left: 1.3rem;
  top: 1.15rem;
  color: var(--ink-faint);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(253, 58, 37, 0.55);
  background: rgba(253, 58, 37, 0.03);
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ label,
.field select:valid ~ label {
  top: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acid);
}
.cta__form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.cta__privacy { color: var(--ink-faint); font-size: 0.82rem; max-width: 300px; }
.cta__form.is-sent { pointer-events: none; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }

/* --- email confirmation step --- */
.otp {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 0;
}
.otp__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.otp__text { color: var(--ink-dim); margin-bottom: 1.4rem; }
.otp__text strong { color: var(--ink); }
.otp__spam {
  text-align: left;
  border-left: 2px solid var(--acid);
  padding: 0.3rem 0 0.3rem 1.2rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.otp__spam strong { color: var(--ink); }
.otp__input {
  width: 240px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.35em;
  text-align: center;
  text-indent: 0.35em;
  padding: 0.7rem 0.5rem;
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 1rem;
}
.otp__input:focus { border-color: rgba(253, 58, 37, 0.55); }
.otp .form-error { margin-bottom: 0.8rem; }
.otp__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.otp__resend {
  background: none;
  border: 0;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  border-bottom: 1px solid var(--acid);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.otp__resend:hover { color: var(--acid); }
.form-error { grid-column: 1 / -1; color: var(--acid); font-size: 0.9rem; }
.form-error a { color: var(--ink); border-bottom: 1px solid var(--acid); text-decoration: none; }

.form-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-3);
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.form-success h3 b { color: var(--acid); font-weight: inherit; }
.form-success p { color: var(--ink-dim); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid var(--line);
  padding-top: 5rem;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 0.9fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 5rem;
}
.footer__logo { height: 22px; width: auto; display: block; margin-bottom: 1.2rem; }
.footer__social { display: flex; flex-wrap: wrap; gap: 0.3rem 1.2rem; margin-top: 1.3rem; }
.footer__text--small { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.8rem; line-height: 1.7; }
.footer__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 1.1rem;
}
.footer__link {
  display: block;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 0.28rem 0;
  font-size: 0.95rem;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.footer__link:hover { color: var(--acid); transform: translateX(6px); }
.footer__text { color: var(--ink-dim); font-size: 0.95rem; }
.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4rem, 16.5vw, 15.5rem);
  letter-spacing: -0.02em;
  line-height: 0.8;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 244, 245, 0.14);
  user-select: none;
  transform: translateY(0.12em);
  transition: -webkit-text-stroke-color 0.6s, color 0.6s;
}
.footer__wordmark:hover { color: var(--acid-dim); -webkit-text-stroke-color: rgba(253, 58, 37, 0.4); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.8rem;
}

/* ==========================================================================
   HERO ROTATOR
   ========================================================================== */

.rotator { position: relative; display: inline-block; color: var(--acid); text-align: left; }
.rotator__ghost { visibility: hidden; white-space: nowrap; }
.rotator__word {
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(55%);
  transition: transform 0.55s var(--ease-expo), opacity 0.3s;
  will-change: transform, opacity;
}
.rotator__word.is-active { opacity: 1; transform: translateY(0); }
.rotator__word.is-leaving { opacity: 0; transform: translateY(-55%); }

/* ==========================================================================
   MEANING (the name is the strategy)
   ========================================================================== */

.meaning { padding: 8rem 0 1rem; }
.meaning__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.meaning__card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-2);
  padding: 2.6rem 2rem;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}
.meaning__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--acid), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.meaning__card:hover { transform: translateY(-8px); border-color: rgba(253, 58, 37, 0.35); }
.meaning__card:hover::before { transform: scaleX(1); }
.meaning__glyph {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.meaning__glyph b { color: var(--acid); font-weight: inherit; }
.meaning__glyph--x { font-size: clamp(2rem, 3vw, 2.6rem); }
.meaning__title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: 0.7rem; }
.meaning__text { color: var(--ink-dim); font-weight: 300; font-size: 0.95rem; }
.meaning__text em { color: var(--ink); font-family: var(--font-serif); }

.section-head__sub { margin-top: 1.3rem; color: var(--ink-dim); font-weight: 300; max-width: 620px; }

/* ==========================================================================
   PAIN MIRROR
   ========================================================================== */

.pain { padding: 8rem 0 3rem; }
.pain__list { max-width: 860px; }
.pain__item {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.pain__mark {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  transform: translateY(5px);
}
.pain__mark::before,
.pain__mark::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--acid);
}
.pain__mark::before { transform: translate(-50%, -50%) rotate(45deg); }
.pain__mark::after { transform: translate(-50%, -50%) rotate(-45deg); }
.pain__item p {
  color: var(--ink-dim);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
}
.pain__after {
  max-width: 860px;
  margin-top: 3.5rem;
  border-left: 2px solid var(--acid);
  padding: 0.4rem 0 0.4rem 2rem;
}
.pain__after-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--acid);
  margin-bottom: 1rem;
}
.pain__after p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
}
.pain__after strong { color: var(--acid); font-weight: 500; }

/* ==========================================================================
   OFFER / PRODUCTIZED SYSTEM
   ========================================================================== */

.offer {
  padding: 8rem 0;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.offer__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}
.offer__left { position: sticky; top: 110px; }
.offer__left .section-head__title { margin-bottom: 1.4rem; }
.offer__lede {
  color: var(--ink-dim);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 420px;
}
.offer__micro {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.offer__list { border-top: 1px solid var(--line); }
.offer__item {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1.25rem 0.2rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.offer__item:hover { background: rgba(255, 255, 255, 0.015); }
.offer__check {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  transform: translateY(5px);
}
.offer__check::before {
  content: "";
  position: absolute;
  left: 2px; top: 4px;
  width: 11px;
  height: 5px;
  border-left: 1.5px solid var(--acid);
  border-bottom: 1.5px solid var(--acid);
  transform: rotate(-45deg);
}
.offer__item strong {
  display: block;
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}
.offer__item span:last-child { display: block; }
.offer__item div span {
  color: var(--ink-faint);
  font-size: 0.88rem;
  font-weight: 400;
}
.offer__anchor {
  margin-top: 3.5rem;
  border-left: 2px solid var(--acid);
  padding: 0.4rem 0 0.4rem 2rem;
}
.offer__anchor p {
  color: var(--ink-dim);
  font-weight: 400;
  font-size: 1.15rem;
  max-width: 760px;
}
.offer__anchor strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   MOCKX ("After": branded mini-site, real text)
   ========================================================================== */

.mockx {
  position: absolute;
  inset: 0;
  background: var(--mx-bg);
  color: var(--mx-ink);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  padding: 4% 5.5%;
  gap: 4%;
}
.mockx__nav {
  display: flex;
  align-items: center;
  gap: 4%;
}
.mockx__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.2cqw;
  white-space: nowrap;
}
.mockx__menu { color: var(--mx-dim); font-size: 1.6cqw; white-space: nowrap; }
.mockx__navcta {
  margin-left: auto;
  background: var(--mx-accent);
  color: var(--mx-onaccent);
  font-weight: 600;
  font-size: 1.5cqw;
  padding: 0.9% 2.4%;
  border-radius: 100px;
  white-space: nowrap;
}
.mockx__hero {
  flex: 1;
  display: flex;
  gap: 6%;
  align-items: center;
  min-height: 0;
}
.mockx__copy {
  flex: 1.25;
  display: flex;
  flex-direction: column;
  gap: 4.5%;
  justify-content: center;
}
.mockx__kick {
  color: var(--mx-accent);
  font-weight: 700;
  font-size: 1.4cqw;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.mockx__head {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.4cqw;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.mockx__subline { color: var(--mx-dim); font-size: 1.8cqw; }
.mockx__actions { display: flex; align-items: center; gap: 4%; margin-top: 1.5%; }
.mockx__cta {
  background: var(--mx-accent);
  color: var(--mx-onaccent);
  font-weight: 600;
  font-size: 1.8cqw;
  padding: 1.6% 3.4%;
  border-radius: 100px;
  white-space: nowrap;
}
.mockx__rating { color: var(--mx-dim); font-size: 1.6cqw; white-space: nowrap; }
.mockx__rating b { color: var(--mx-accent); font-weight: 400; letter-spacing: 0.06em; }
.mockx__visual {
  flex: 0.9;
  align-self: stretch;
  margin: 1% 0;
  border-radius: 8px;
  background:
    radial-gradient(120% 120% at 25% 25%, color-mix(in srgb, var(--mx-accent) 35%, transparent), transparent 62%),
    var(--mx-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4%;
  min-width: 0;
}
.mockx__widget {
  width: 92%;
  background: color-mix(in srgb, var(--mx-bg) 88%, var(--mx-ink) 12%);
  border: 1px solid color-mix(in srgb, var(--mx-dim) 30%, transparent);
  border-radius: 8px;
  padding: 5.5% 6%;
  display: flex;
  flex-direction: column;
  gap: 5.5%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
.mockx__wtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.9cqw;
  color: var(--mx-ink);
}
.mockx__wfield {
  font-size: 1.5cqw;
  color: var(--mx-dim);
  background: color-mix(in srgb, var(--mx-dim) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--mx-dim) 24%, transparent);
  border-radius: 4px;
  padding: 2.4% 4%;
  white-space: nowrap;
  overflow: hidden;
}
.mockx__wchips { display: flex; gap: 3.5%; }
.mockx__wchips span {
  flex: 1;
  text-align: center;
  font-size: 1.35cqw;
  padding: 2.2% 0;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--mx-dim) 30%, transparent);
  color: var(--mx-dim);
  white-space: nowrap;
  overflow: hidden;
}
.mockx__wchips .is-on {
  background: var(--mx-accent);
  color: var(--mx-onaccent);
  border-color: transparent;
  font-weight: 600;
}
.mockx__wbtn {
  background: var(--mx-accent);
  color: var(--mx-onaccent);
  font-weight: 600;
  font-size: 1.55cqw;
  text-align: center;
  border-radius: 100px;
  padding: 2.8% 0;
  margin-top: 0.5%;
}
.mockx__row { display: flex; gap: 2.5%; }
.mockx__row span {
  flex: 1;
  background: var(--mx-soft);
  border: 1px solid color-mix(in srgb, var(--mx-dim) 28%, transparent);
  border-radius: 6px;
  padding: 2.2% 0;
  text-align: center;
  font-size: 1.7cqw;
  font-weight: 500;
}
.mockx--center .mockx__hero { justify-content: center; text-align: center; }
.mockx--center .mockx__copy { flex: none; width: 84%; align-items: center; margin-inline: auto; }
.mockx--serif .mockx__head {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 4.4cqw;
}

/* ==========================================================================
   STATIC PAGES (about, contact, legal)
   ========================================================================== */

.page { padding: 10rem 0 7rem; }
.page .section-head { margin-bottom: 3rem; }
.page__updated {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin: -1.5rem 0 3rem;
}
.prose { max-width: 760px; color: var(--ink-dim); font-weight: 400; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--ink);
  margin: 2.8rem 0 0.9rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 2rem 0 0.6rem;
}
.prose p { margin-bottom: 1.1rem; line-height: 1.75; }
.prose ul { margin: 0 0 1.2rem 1.2rem; }
.prose li { margin-bottom: 0.55rem; line-height: 1.65; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--acid); transition: color 0.3s; }
.prose a:hover { color: var(--acid); }

.timeline { max-width: 760px; margin-top: 1rem; border-top: 1px solid var(--line); }
.timeline__row {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  padding: 1.2rem 0.2rem;
  border-bottom: 1px solid var(--line);
}
.timeline__year {
  flex: 0 0 3.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--acid);
  font-size: 0.95rem;
}
.timeline__name { font-weight: 600; color: var(--ink); }
.timeline__niche { color: var(--ink-faint); font-size: 0.9rem; margin-left: auto; text-align: right; }

.page__cta { margin-top: 3.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.contact-card {
  max-width: 760px;
  border-left: 2px solid var(--acid);
  padding: 0.4rem 0 0.4rem 2rem;
  margin-bottom: 3.5rem;
}
.contact-card p { color: var(--ink-dim); margin-bottom: 0.4rem; }
.contact-card a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-card a:hover { color: var(--acid); }

/* ==========================================================================
   REVEAL (JS-driven)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {
  .offer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .offer__left { position: static; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .work__grid { grid-template-columns: 1fr; }
  .meaning__grid { grid-template-columns: 1fr; }
  .service__row { grid-template-columns: 2.6rem 1fr 3rem; }
  .service__teaser { display: none; }
  .service__body-inner { padding-left: calc(2.6rem + 1.5rem); }
}

@media (max-width: 640px) {
  .hero { padding-top: 7rem; }
  .hero__badge { font-size: 0.68rem; padding: 0.5rem 0.9rem; }
  .hero__bottom { margin-top: 2.6rem; }
  .hero__scroll { display: none; }
  .process__grid { grid-template-columns: 1fr; }
  .cta__form { grid-template-columns: 1fr; }
  .btn--nav { padding: 0.55rem 1rem; font-size: 0.75rem; gap: 0.45rem; }
  .nav__logo-img { height: 16px; }
  .stats { padding: 5rem 0 3rem; }
  .manifesto, .services, .work, .process { padding-block: 5rem; }
  .pain { padding: 5rem 0 2rem; }
  .offer { padding: 5rem 0; }
  .pain__item p { font-size: 1rem; }
  .offer__anchor { padding: 1.6rem; }
  .meaning { padding-top: 5rem; }
  .exclusive { padding: 6rem 0; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__word { transform: none; }
}
