/* ============================================================
   VELMONT · velmont.dk
   Editorial luxury on obsidian. Instrument Serif + Geist.
   ============================================================ */

:root {
  --bg: #070708;
  --bg-2: #0e0e10;
  --bg-3: #141416;
  --ivory: #f4f0e8;
  --ivory-2: #e6e0d3;
  --muted: rgba(244, 240, 232, 0.58);
  --muted-2: rgba(244, 240, 232, 0.34);
  --line: rgba(244, 240, 232, 0.09);
  --line-2: rgba(244, 240, 232, 0.17);
  --accent: #dcc194;
  --accent-deep: #a8874f;

  --paper: #f2ede4;
  --paper-2: #fbf9f5;
  --paper-3: #e9e3d8;
  --ink: #0b0b0c;
  --ink-muted: rgba(11, 11, 12, 0.62);
  --ink-soft: rgba(11, 11, 12, 0.4);
  --ink-line: rgba(11, 11, 12, 0.1);
  --ink-line-2: rgba(11, 11, 12, 0.18);

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.4, 0.64, 1);

  --font-display: "Instrument Serif", "Times New Roman", Georgia, serif;
  --font-body: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --nav-h: 64px;
  --gutter: clamp(20px, 5vw, 80px);
  --section: clamp(96px, 13vw, 200px);
  --radius-xl: 2rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
::selection { background: var(--accent); color: var(--ink); }

html.js [data-reveal]:not(.is-ready) { visibility: hidden; }
html.js [data-split]:not(.is-split) { visibility: hidden; }
html.js .preloader { display: flex; }

.container {
  width: min(100% - 2 * var(--gutter), 1440px);
  margin-inline: auto;
}

/* ------------------------------------------------------------
   Texture, cursor
   ------------------------------------------------------------ */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -1%); }
  75% { transform: translate(-1%, -3%); }
  100% { transform: translate(2%, 2%); }
}

.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 100;
  display: none;
  mix-blend-mode: difference;
}
body.has-cursor .cursor { display: block; }
.cursor__dot, .cursor__ring, .cursor__label {
  position: absolute;
  top: 0; left: 0;
  will-change: transform;
}
.cursor__dot {
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #fff;
}
.cursor__ring {
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: width 0.5s var(--ease), height 0.5s var(--ease), margin 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.cursor--hover .cursor__ring {
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
.cursor--label .cursor__ring {
  width: 84px; height: 84px;
  margin: -42px 0 0 -42px;
  background: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}
.cursor--label .cursor__dot { opacity: 0; }
.cursor__label {
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor--label .cursor__label { opacity: 1; }

/* ------------------------------------------------------------
   Preloader
   ------------------------------------------------------------ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: none;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.preloader__inner {
  width: min(100% - 2 * var(--gutter), 720px);
}
.preloader__word {
  display: flex;
  justify-content: center;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 8.5rem);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--ivory);
  padding: 0.05em 0;
}
.preloader__word span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.preloader__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.preloader__count { font-size: 0.9rem; color: var(--ivory); }
.preloader__bar {
  margin-top: 14px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: left;
}

/* ------------------------------------------------------------
   Typography & primitives
   ------------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--ink-line-2);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.eyebrow--light { border-color: var(--line-2); color: var(--muted); }
.eyebrow__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(220, 193, 148, 0.18);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h2 em, .hero__title em {
  font-style: italic;
  color: var(--accent);
}
.light .h2 em { color: var(--accent-deep); }

.lede {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
  text-wrap: pretty;
}
.light .lede { color: var(--ink-muted); }

[data-split] .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
[data-split] .w > span { display: inline-block; will-change: transform; }

.section__head {
  max-width: 980px;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section__head .lede { margin-top: 28px; }
.section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: end;
}
.section__head--split .lede { margin: 0; justify-self: end; }

/* Buttons: pill with nested icon island */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 6px 6px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.7s var(--ease), background-color 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 11, 12, 0.08);
  transition: transform 0.7s var(--ease-back), background-color 0.5s var(--ease);
}
.btn__icon svg { width: 15px; height: 15px; }
.btn:hover .btn__icon { transform: translate(2px, -2px) scale(1.06); }
.btn--ivory { background: var(--ivory); color: var(--ink); }
.btn--ivory:hover { background: #fff; }
.btn--ghost {
  padding: 15px 26px;
  border: 1px solid var(--line-2);
  background: rgba(244, 240, 232, 0.03);
  color: var(--ivory);
}
.btn--ghost:hover { background: rgba(244, 240, 232, 0.08); border-color: rgba(244, 240, 232, 0.3); }
.btn--ghost-light {
  border: 1px solid var(--line-2);
  color: var(--ivory);
  background: rgba(244, 240, 232, 0.03);
}
.btn--ghost-light .btn__icon { background: rgba(244, 240, 232, 0.1); }
.btn--ghost-light:hover { background: rgba(244, 240, 232, 0.08); }
.btn--small { padding: 4px 4px 4px 16px; font-size: 0.82rem; gap: 10px; }
.btn--small .btn__icon { width: 30px; height: 30px; }
.btn--small .btn__icon svg { width: 13px; height: 13px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.link-arrow svg {
  width: 15px; height: 15px;
  transition: transform 0.6s var(--ease-back);
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.6s var(--ease), opacity 0.6s;
}
.link-arrow:hover::after { transform: scaleX(0.2); opacity: 0.9; }
.link-arrow:hover svg { transform: translate(3px, -3px); }

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  padding: 18px var(--gutter) 0;
  pointer-events: none;
  transition: transform 0.8s var(--ease);
}
.nav--hidden { transform: translateY(-140%); }
.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 20px;
  border-radius: 999px;
  background: rgba(12, 12, 13, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  transition: background-color 0.6s var(--ease), border-color 0.6s var(--ease), color 0.6s var(--ease);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  margin-right: 14px;
  padding-top: 1px;
}
.nav__links {
  display: flex;
  gap: 4px;
}
.nav__links a {
  position: relative;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.4s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { margin-left: 6px; }

.nav--light .nav__pill {
  background: rgba(242, 237, 228, 0.72);
  border-color: var(--ink-line);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 20px 50px -24px rgba(11, 11, 12, 0.4);
}
.nav--light .nav__links a { color: var(--ink-muted); }
.nav--light .nav__links a:hover { color: var(--ink); }
.nav--light .nav__cta { background: var(--ink); color: var(--ivory); }
.nav--light .nav__cta .btn__icon { background: rgba(255, 255, 255, 0.12); }
.nav--light .nav__burger span { background: var(--ink); }

.nav__burger {
  display: none;
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
}
.nav__burger span {
  position: absolute;
  left: 12px;
  width: 16px; height: 1px;
  background: var(--ivory);
  transition: transform 0.6s var(--ease), background-color 0.4s;
}
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: rgba(7, 7, 8, 0.86);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease), visibility 0s linear 0.7s;
}
.menu.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.menu__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 40px;
}
.menu__links { display: flex; flex-direction: column; gap: 6px; }
.menu__links a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 11vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  transform: translateY(48px);
  opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
}
.menu__links a em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.menu.is-open .menu__links a { transform: none; opacity: 1; }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: 0.1s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 0.16s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 0.22s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 0.28s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: 0.34s; }
.menu__foot {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 36px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: calc(var(--nav-h) + 72px) var(--gutter) 36px;
  overflow: hidden;
  isolation: isolate;
}
.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__scene canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s var(--ease);
}
.hero--webgl.hero--ready canvas { opacity: 1; }
.hero__fallback {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s var(--ease);
  background:
    radial-gradient(ellipse 34% 20% at 68% 50%, rgba(241, 227, 196, 0.55), rgba(241, 227, 196, 0) 70%),
    radial-gradient(ellipse 48% 30% at 68% 52%, rgba(200, 190, 170, 0.22), rgba(200, 190, 170, 0) 70%),
    radial-gradient(circle 9% at 68% 50%, var(--bg) 60%, rgba(7, 7, 8, 0) 100%);
}
.hero--fallback .hero__fallback { opacity: 1; }
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7, 7, 8, 0.85) 0%, rgba(7, 7, 8, 0.35) 40%, rgba(7, 7, 8, 0) 65%),
    linear-gradient(to bottom, rgba(7, 7, 8, 0.4) 0%, rgba(7, 7, 8, 0) 25%, rgba(7, 7, 8, 0) 70%, var(--bg) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 1120px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 9.2vw, 9.4rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  max-width: 12ch;
  text-wrap: balance;
}
.hero__lede {
  margin-top: 36px;
  max-width: 54ch;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}
.hero__meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-top: 40px;
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--ivory), transparent);
  background-size: 100% 200%;
  animation: scrollline 2.2s var(--ease) infinite;
}
@keyframes scrollline {
  0% { background-position: 0 200%; opacity: 0; }
  30% { opacity: 1; }
  100% { background-position: 0 -100%; opacity: 0; }
}
.hero__proof {
  display: flex;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__proof li { display: flex; align-items: center; gap: 10px; }
.hero__proof li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ------------------------------------------------------------
   Ticker
   ------------------------------------------------------------ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg);
  position: relative;
  z-index: 2;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.01em;
  color: var(--ivory-2);
  animation: ticker 46s linear infinite;
}
.ticker__track i {
  width: 6px; height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
  flex: none;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------
   Manifesto
   ------------------------------------------------------------ */
.manifesto {
  padding-block: clamp(120px, 16vw, 240px);
}
.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 4.2rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  max-width: 30ch;
  text-wrap: pretty;
}
.manifesto__text .mw { display: inline-block; will-change: opacity; }

/* ------------------------------------------------------------
   Work / carousel
   ------------------------------------------------------------ */
.work {
  padding-block: var(--section) calc(var(--section) + 48px);
  overflow: hidden;
}
.work__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.work__head .lede { justify-self: end; }

.carousel { margin-top: clamp(56px, 7vw, 96px); }
.carousel__stage {
  position: relative;
  height: clamp(300px, 50vw, 700px);
  perspective: 1800px;
  transform-style: preserve-3d;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.slide {
  position: absolute;
  top: 50%; left: 50%;
  width: min(72vw, 1080px);
  transform: translate(-50%, -50%);
  will-change: transform;
  transform-style: preserve-3d;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: var(--bg);
  opacity: var(--dim, 0);
  pointer-events: none;
  transition: opacity 0.4s;
}
.slide__shell {
  padding: 8px;
  border-radius: 26px;
  background: rgba(244, 240, 232, 0.06);
  border: 1px solid rgba(244, 240, 232, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 60px 140px -40px rgba(0, 0, 0, 0.9),
    0 20px 40px -20px rgba(0, 0, 0, 0.7);
  transform-style: preserve-3d;
  will-change: transform;
}
.slide__frame {
  border-radius: 18px;
  overflow: hidden;
  background: #111214;
}
.slide__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  background: #16171a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.slide__bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.slide__bar span {
  margin-left: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.slide__frame img {
  width: 100%;
  aspect-ratio: 1440 / 832;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
}
.slide__phone {
  position: absolute;
  right: -3.5%;
  bottom: -9%;
  width: 19%;
  max-width: 190px;
  padding: 5px;
  border-radius: 26px;
  background: #0d0d0f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.9);
  transform: rotate(6deg) translateY(24px);
  opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.7s var(--ease);
  pointer-events: none;
}
.slide__phone img {
  border-radius: 21px;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top;
}
.slide.is-active .slide__phone { transform: rotate(6deg) translateY(0); opacity: 1; }

.carousel__panel {
  margin-top: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.carousel__index {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.carousel__index b { font-weight: 500; color: var(--ivory); }
.carousel__index i { font-style: normal; opacity: 0.5; margin: 0 2px; }
.carousel__title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.carousel__desc {
  margin-top: 16px;
  max-width: 50ch;
  color: var(--muted);
  font-size: 1.05rem;
}
.carousel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.carousel__tags li {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.carousel__info .link-arrow { margin-top: 28px; }
.carousel__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ctrl {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.6s var(--ease);
}
.ctrl svg { width: 18px; height: 18px; }
.ctrl:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.ctrl:active { transform: scale(0.95); }
.ctrl--text {
  width: auto;
  padding: 0 18px 0 16px;
  gap: 12px;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ctrl--text:hover { color: var(--ink); }
.ctrl__wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}
.ctrl__wave i {
  width: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.55;
  transform-origin: center;
}
.ctrl__wave i:nth-child(1) { height: 6px; }
.ctrl__wave i:nth-child(2) { height: 12px; }
.ctrl__wave i:nth-child(3) { height: 8px; }
.ctrl__wave i:nth-child(4) { height: 10px; }
.ctrl--text.is-on .ctrl__wave i { animation: wave 0.9s var(--ease) infinite alternate; }
.ctrl--text.is-on .ctrl__wave i:nth-child(2) { animation-delay: 0.15s; }
.ctrl--text.is-on .ctrl__wave i:nth-child(3) { animation-delay: 0.3s; }
.ctrl--text.is-on .ctrl__wave i:nth-child(4) { animation-delay: 0.45s; }
@keyframes wave { from { transform: scaleY(0.4); } to { transform: scaleY(1.3); } }
.carousel__progress {
  width: 120px;
  height: 1px;
  background: var(--line-2);
  overflow: hidden;
}
.carousel__progress span {
  display: block;
  height: 100%;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: left;
}

/* ------------------------------------------------------------
   Light sections
   ------------------------------------------------------------ */
.light {
  background: var(--paper);
  color: var(--ink);
}
.services {
  position: relative;
  z-index: 3;
  border-radius: 44px 44px 0 0;
  margin-top: -44px;
  padding-block: var(--section);
}
.process { padding-block: 0 var(--section); }
.compare { padding-block: 0 calc(var(--section) + 44px); }

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 14px;
}
.tile--a { grid-column: 1 / 8; grid-row: 1 / 3; }
.tile--b { grid-column: 8 / 13; grid-row: 1 / 2; }
.tile--c { grid-column: 8 / 13; grid-row: 2 / 4; }
.tile--d { grid-column: 1 / 5; grid-row: 3 / 4; }
.tile--e { grid-column: 5 / 8; grid-row: 3 / 4; }
.tile--f { grid-column: 1 / 13; grid-row: 4 / 5; min-height: 0; }

.tile {
  padding: 6px;
  border-radius: 30px;
  background: rgba(11, 11, 12, 0.04);
  border: 1px solid var(--ink-line);
  min-height: 100%;
}
.tile__inner {
  position: relative;
  height: 100%;
  border-radius: 24px;
  background: var(--paper-2);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.95), 0 30px 60px -40px rgba(11, 11, 12, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease);
}
.tile:hover .tile__inner {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.95), 0 40px 80px -40px rgba(11, 11, 12, 0.45);
}
.tile__visual {
  position: relative;
  flex: 1;
  min-height: 190px;
  overflow: hidden;
}
.tile__visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tile__body {
  padding: 26px 30px 30px;
}
.tile__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.tile h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.tile p {
  margin-top: 12px;
  color: var(--ink-muted);
  max-width: 44ch;
  font-size: 0.98rem;
  text-wrap: pretty;
}
.tile--a .tile__body { padding: 28px 36px 36px; }
.tile--a h3 { font-size: clamp(2rem, 3vw, 3rem); }
.tile--a p { font-size: 1.05rem; max-width: 50ch; }

.tile__visual--rings { background: linear-gradient(180deg, #f6f2ea, var(--paper-2)); }

.tile__visual--type {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px 30px 0;
  min-height: 150px;
}
.tile__glyph {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(5rem, 8vw, 7.5rem);
  line-height: 0.8;
  color: var(--ink);
  letter-spacing: -0.04em;
  transform: translateY(0.08em);
  transition: transform 0.9s var(--ease);
}
.tile:hover .tile__glyph { transform: translateY(0.02em); }
.tile__swatches { display: flex; gap: 6px; padding-bottom: 22px; }
.tile__swatches i {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--ink-line-2);
}
.tile__swatches i:nth-child(1) { background: var(--ink); }
.tile__swatches i:nth-child(2) { background: var(--accent-deep); }
.tile__swatches i:nth-child(3) { background: var(--accent); }
.tile__swatches i:nth-child(4) { background: var(--paper-3); }

.tile__visual--phone {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 34px 30px 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(168, 135, 79, 0.16), transparent 70%);
}
.phone {
  width: 66%;
  max-width: 250px;
  padding: 7px;
  border-radius: 34px;
  background: #0b0b0c;
  box-shadow: 0 40px 70px -30px rgba(11, 11, 12, 0.55);
  transform: rotate(-4deg) translateY(28px);
  transition: transform 1s var(--ease);
  margin-bottom: -60px;
}
.tile:hover .phone { transform: rotate(-1deg) translateY(14px); }
.phone img {
  border-radius: 27px;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top;
}

.tile__visual--field { background: var(--paper-2); cursor: crosshair; }

.tile__visual--wp {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px 26px 0;
  min-height: 150px;
  background-image:
    linear-gradient(var(--ink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -1px -1px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), #000 80%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), #000 80%);
}
.tile__wp {
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 7.5rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--ink);
  transform: translateY(0.1em);
  transition: transform 0.9s var(--ease);
}
.tile:hover .tile__wp { transform: translateY(0.03em) rotate(-3deg); }

.tile--f .tile__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 48px;
  padding: 30px 36px;
}
.tile--f .tile__num { margin: 0; }
.tile--f h3 { min-width: 200px; }
.tile--f p { margin: 0; flex: 1 1 320px; }
.tile__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tile__list li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink-line-2);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.5);
}

/* Process */
.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 12vh;
}
.step {
  position: sticky;
  top: calc(var(--nav-h) + 40px + var(--i, 0) * 16px);
  padding: 6px;
  border-radius: 30px;
  background: rgba(11, 11, 12, 0.04);
  border: 1px solid var(--ink-line);
  transform-origin: top center;
  will-change: transform;
}
.step:nth-child(1) { --i: 0; }
.step:nth-child(2) { --i: 1; }
.step:nth-child(3) { --i: 2; }
.step:nth-child(4) { --i: 3; }
.step__inner {
  border-radius: 24px;
  background: var(--paper-2);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.95), 0 40px 80px -50px rgba(11, 11, 12, 0.5);
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: clamp(32px, 4vw, 56px);
  min-height: 300px;
}
.step:nth-child(even) .step__inner { background: #f7f3ec; }
.step__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--accent-deep);
}
.step__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.step__body p {
  margin-top: 16px;
  max-width: 58ch;
  font-size: 1.08rem;
  color: var(--ink-muted);
  text-wrap: pretty;
}
.step__tag {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink-line-2);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Compare */
.compare__table {
  max-width: 1040px;
  border-top: 1px solid var(--ink-line-2);
}
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--ink-line);
  align-items: center;
}
.compare__row span:first-child {
  color: var(--ink-soft);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.compare__row span:first-child::before {
  content: "×";
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  opacity: 0.6;
}
.compare__row span:last-child {
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}
.compare__row span:last-child::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-deep);
  flex: none;
  box-shadow: 0 0 0 4px rgba(168, 135, 79, 0.15);
}
.compare__row--head {
  padding: 16px 0;
}
.compare__row--head span, .compare__row--head span:last-child {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.compare__row--head span::before { display: none; }

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq {
  position: relative;
  z-index: 3;
  border-radius: 44px 44px 0 0;
  margin-top: -44px;
  padding-block: var(--section);
  background: var(--bg);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
}
.faq__head { position: sticky; top: calc(var(--nav-h) + 60px); }
.faq__head .lede { margin-top: 28px; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  cursor: pointer;
  transition: color 0.4s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__plus {
  position: relative;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: transform 0.7s var(--ease), background-color 0.5s;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.6s var(--ease); }
.faq__item[open] .faq__plus { transform: rotate(180deg); background: rgba(244, 240, 232, 0.06); }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__answer { overflow: hidden; }
.faq__answer p {
  padding: 0 80px 28px 0;
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.02rem;
}

/* ------------------------------------------------------------
   Contact
   ------------------------------------------------------------ */
.contact {
  position: relative;
  overflow: hidden;
  padding-block: var(--section) calc(var(--section) + 40px);
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(220, 193, 148, 0.07), transparent 70%), var(--bg);
}
.contact__float {
  position: absolute;
  inset: -6% -4%;
  pointer-events: none;
  z-index: 0;
}
.contact__float img {
  position: absolute;
  width: 26vw;
  max-width: 420px;
  border-radius: 14px;
  opacity: 0.14;
  filter: saturate(0.6) blur(0.5px);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.9);
  will-change: transform;
}
.contact__float img:nth-child(1) { left: -3%; top: 8%; transform: rotate(-8deg); }
.contact__float img:nth-child(2) { right: -5%; top: 3%; transform: rotate(7deg); }
.contact__float img:nth-child(3) { left: 6%; bottom: -2%; transform: rotate(5deg); }
.contact__float img:nth-child(4) { right: 4%; bottom: 6%; transform: rotate(-6deg); }
.contact__float img:nth-child(5), .contact__float img:nth-child(6) { width: 9vw; max-width: 150px; border-radius: 18px; }
.contact__float img:nth-child(5) { left: 40%; top: -2%; transform: rotate(10deg); }
.contact__float img:nth-child(6) { left: 52%; bottom: -6%; transform: rotate(-12deg); }
.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact__head .lede { margin-top: 28px; }
.contact__mail { margin-top: 36px; font-size: 1.1rem; }
.contact__shell {
  padding: 8px;
  border-radius: 32px;
  background: rgba(244, 240, 232, 0.05);
  border: 1px solid var(--line);
  box-shadow: 0 60px 140px -50px rgba(0, 0, 0, 0.9);
}
.form {
  border-radius: 26px;
  background: rgba(15, 15, 17, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(24px, 3vw, 40px);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  min-width: 0;
}
.field > span, .field legend {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
  margin-bottom: 2px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: rgba(244, 240, 232, 0.04);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 15px 16px;
  color: var(--ivory);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.5s var(--ease), background-color 0.5s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(244, 240, 232, 0.07);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select option { background: #15151a; color: var(--ivory); }
.select { position: relative; }
.select svg {
  position: absolute;
  right: 16px; top: 50%;
  width: 16px; height: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { position: relative; }
.chips input { position: absolute; opacity: 0; width: 0; height: 0; }
.chips span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.chips label:hover span { border-color: rgba(244, 240, 232, 0.35); color: var(--ivory); }
.chips input:checked + span { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.chips input:focus-visible + span { outline: 1px solid var(--accent); outline-offset: 2px; }
.form__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 6px;
}
.form__note { font-size: 0.85rem; color: var(--muted-2); }
.form__status {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--accent);
  min-height: 1.4em;
}
.form__status.is-error { color: #e6a0a0; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--line);
  padding-top: clamp(64px, 8vw, 110px);
  background: var(--bg);
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}
.footer__col a { transition: color 0.4s; }
.footer__col a:hover { color: var(--ivory); }
.footer__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.footer__mark {
  margin-top: clamp(64px, 9vw, 120px);
  overflow: hidden;
  line-height: 1;
  margin-bottom: -0.12em;
  -webkit-mask-image: linear-gradient(to bottom, #000 40%, rgba(0, 0, 0, 0.15));
  mask-image: linear-gradient(to bottom, #000 40%, rgba(0, 0, 0, 0.15));
}
.footer__mark span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5.4rem, 19.6vw, 21rem);
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--ivory);
  will-change: transform;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.footer__top-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}
.footer__top-btn svg { width: 16px; height: 16px; }
.footer__top-btn:hover { background: var(--ivory); color: var(--ink); }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1100px) {
  .bento { grid-auto-rows: minmax(220px, auto); }
  .faq__grid, .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .faq__head { position: static; }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section: clamp(80px, 14vw, 140px); }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__pill { padding: 5px 5px 5px 18px; gap: 16px; }
  .nav__logo { margin-right: 0; }

  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero__title { max-width: none; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero__scroll { flex-direction: row; gap: 14px; }
  .hero__scroll-line { width: 40px; height: 1px; background: var(--line-2); animation: none; }
  .hero__proof { flex-wrap: wrap; gap: 14px 22px; }

  .work__head, .section__head--split { grid-template-columns: 1fr; gap: 24px; }
  .work__head .lede, .section__head--split .lede { justify-self: start; }
  .carousel__stage { height: clamp(260px, 62vw, 520px); }
  .slide { width: 84vw; }
  .slide__phone { width: 24%; right: -2%; bottom: -8%; }
  .carousel__panel { grid-template-columns: 1fr; gap: 28px; }
  .carousel__controls { order: -1; }

  .services { border-radius: 28px 28px 0 0; margin-top: -28px; }
  .faq { border-radius: 28px 28px 0 0; margin-top: -28px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .tile--a, .tile--b, .tile--c, .tile--d, .tile--e, .tile--f { grid-column: 1 / -1; grid-row: auto; }
  .tile__visual { min-height: 200px; }
  .tile--f .tile__body { padding: 26px 30px; }

  .step { top: calc(var(--nav-h) + 24px + var(--i, 0) * 12px); }
  .step__inner { grid-template-columns: 1fr; gap: 20px; min-height: 0; }
  .step__num { font-size: 2.6rem; }
  .step__tag { justify-self: start; }

  .compare__row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .compare__row--head span:first-child { display: none; }
  .compare__row span:first-child { font-size: 0.92rem; }
  .compare__row span:last-child { font-size: 1.08rem; }

  .faq__answer p { padding-right: 24px; }
  .contact__float img { width: 42vw; opacity: 0.1; }
  .contact__float img:nth-child(5), .contact__float img:nth-child(6) { width: 14vw; }
}

@media (max-width: 640px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__lede { margin-top: 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-wrap: wrap; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .ticker__track { gap: 28px; }
  .manifesto__text { max-width: none; }
  .carousel__progress { width: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .hero__scroll-line { animation: none; }
  .ticker__track { animation: none; }
  .ctrl--text.is-on .ctrl__wave i { animation: none; }
  html.js [data-reveal]:not(.is-ready), html.js [data-split]:not(.is-split) { visibility: visible; }
}
