/* ============================================================
   VENDIQ — design system
   DNA: one continuous dark ink canvas with slow drifting color
   glows, pastel accent cards, pill buttons with arrows, tiny
   tracked eyebrows, big tight headlines that end with periods.
   ============================================================ */

:root {
  /* color */
  --ink: #070c19;            /* main dark canvas */
  --ink-deep: #04070f;       /* nav scrim / footer */
  --ink-raise: #0d1526;      /* raised cards on dark */
  --paper-raise: #fbfaf7;    /* light card surface (used inside pastel visuals) */
  --white: #ffffff;
  --w70: rgba(255, 255, 255, .72);
  --w50: rgba(255, 255, 255, .58);
  --w40: rgba(255, 255, 255, .48);
  --w20: rgba(255, 255, 255, .18);
  --w10: rgba(255, 255, 255, .10);
  --w06: rgba(255, 255, 255, .06);
  --accent: #ff6a3d;         /* signal orange */
  --accent-ink: #1d0c05;
  --amber: #ffd98e;
  --sky: #b3d7fb;
  --mint: #b5eedd;

  /* type */
  --font: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "Space Grotesk", "DM Sans", sans-serif;

  /* geometry */
  --container: 1440px;
  --measure: 500px;
  --r-s: 8px;
  --r-m: 12px;
  --r-pill: 999px;
  --gutter: 24px;
  --sect: clamp(96px, 11vw, 176px);
  --sect-s: clamp(64px, 7vw, 104px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* film grain — kills gradient banding on the dark glows */
html::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05;
  transform: translateZ(0);
}

/* slim dark scrollbar */
html { scrollbar-width: thin; scrollbar-color: #22304f transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #22304f; border-radius: 999px; border: 3px solid #070c19; }
::-webkit-scrollbar-track { background: transparent; }

/* keyboard focus */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }

/* ---------- ambient drifting glows (whole-page background) ---------- */
body::before, body::after, main::before {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
body::before {
  width: 58vw; height: 58vw;
  min-width: 560px; min-height: 560px;
  top: -20vw; right: -16vw;
  background: radial-gradient(closest-side, rgba(255, 106, 61, .17), transparent 70%);
  animation: orbA 26s ease-in-out infinite alternate;
  translate: calc(var(--cx, 0) * 150px) calc(var(--cy, 0) * 150px);
}
body::after {
  width: 66vw; height: 66vw;
  min-width: 620px; min-height: 620px;
  bottom: -26vw; left: -18vw;
  background: radial-gradient(closest-side, rgba(179, 215, 251, .14), transparent 70%);
  animation: orbB 34s ease-in-out infinite alternate;
  translate: calc(var(--cx, 0) * -100px) calc(var(--cy, 0) * -100px);
}
main::before {
  width: 48vw; height: 48vw;
  min-width: 480px; min-height: 480px;
  top: 30vh; left: 32vw;
  background: radial-gradient(closest-side, rgba(146, 126, 255, .10), transparent 70%);
  animation: orbC 42s ease-in-out infinite alternate;
  translate: calc(var(--cx, 0) * 70px) calc(var(--cy, 0) * 70px);
}
@keyframes orbA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-16vw, 22vh, 0) scale(1.2); }
}
@keyframes orbB {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(18vw, -18vh, 0) scale(1.12); }
}
@keyframes orbC {
  from { transform: translate3d(0, 0, 0) scale(.9); }
  to   { transform: translate3d(-10vw, -24vh, 0) scale(1.15); }
}

/* ---------- type scale ---------- */
.h-hero {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.h-section {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 17em;
}
.h-card {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.lede {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: var(--measure);
  color: var(--w70);
}
.accent-dot { color: var(--accent); }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: var(--w50); }
.breadcrumbs a { color: var(--w50); text-decoration: none; }
.breadcrumbs a:hover { color: var(--w70); }
.breadcrumbs .crumb-sep { margin: 0 8px; opacity: .5; }
.breadcrumbs .crumb-current { color: var(--w70); }

/* ---------- layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--sect); padding-bottom: var(--sect); }
.section--s { padding-top: var(--sect-s); padding-bottom: var(--sect-s); }

/* alt section — formerly light "paper", now a subtle raised band
   on the same dark canvas so the ambient glows shine through */
.paper {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  border-top: 1px solid var(--w06);
  border-bottom: 1px solid var(--w06);
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head--split {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.section-head--split .lede { margin-bottom: 6px; }
.section-head--center { align-items: center; text-align: center; }
.section-head--center .h-section { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 16px 26px;
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  translate: 0px 0px;
  scale: 1;
  transition: background .25s ease, border-color .25s ease, color .25s ease,
              box-shadow .3s ease, scale .18s ease,
              translate .35s cubic-bezier(.3, .7, .4, 1.3);
  white-space: nowrap;
}
.btn:active { scale: .96; }
.btn svg { width: 16px; height: 16px; flex: none; }
.btn:hover svg { animation: btnArrow .5s ease both; }
@keyframes btnArrow {
  0% { transform: translateX(0); opacity: 1; }
  45% { transform: translateX(18px); opacity: 0; }
  50% { transform: translateX(-18px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.btn--accent { background: var(--accent); color: var(--accent-ink); position: relative; overflow: hidden; }
.btn--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .32) 50%, transparent 62%);
  translate: -130% 0;
  pointer-events: none;
}
.btn--accent:hover { background: #ff7e57; box-shadow: 0 10px 38px -10px rgba(255, 106, 61, .6); }
.btn--accent:hover::before { translate: 130% 0; transition: translate .6s ease; }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: #f3efe8; box-shadow: 0 10px 36px -10px rgba(255, 255, 255, .28); }
.btn--dark { background: var(--white); color: var(--ink); }
.btn--dark:hover { background: #f3efe8; box-shadow: 0 10px 36px -10px rgba(255, 255, 255, .28); }
.btn--ghost { border: 1px solid var(--w20); color: var(--white); padding: 15px 25px; }
.btn--ghost:hover { border-color: var(--w50); box-shadow: 0 10px 32px -12px rgba(255, 255, 255, .14); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4, 7, 15, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--w06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}
.brand .accent-dot { color: var(--accent); display: inline-block; }
.brand:hover .accent-dot { animation: dotHop .55s cubic-bezier(.3, .7, .4, 1.4); }
@keyframes dotHop {
  0%, 100% { transform: translateY(0); }
  35% { transform: translateY(-7px); }
  65% { transform: translateY(0); }
  82% { transform: translateY(-3px); }
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--w70);
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%) scale(0);
  transition: transform .28s cubic-bezier(.3, .7, .4, 1.6);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: translateX(-50%) scale(1); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-cta .btn { padding: 12px 14px 12px 20px; font-size: 14px; }

.lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--w10);
  border-radius: var(--r-pill);
  padding: 3px;
}
.lang::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: var(--lx, 3px);
  width: var(--lw, 34px);
  background: var(--white);
  border-radius: var(--r-pill);
  opacity: var(--lo, 0);
  transition: left .32s cubic-bezier(.3, .7, .4, 1.25), width .32s ease, opacity .2s ease;
}
.lang button, .lang a {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--w50);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  scale: 1;
  transition: color .2s ease, scale .15s ease;
}
.lang button:hover, .lang a:hover { color: var(--white); }
.lang button:active, .lang a:active { scale: .88; }
.lang button.active, .lang a.active { color: var(--ink); }

.nav-burger { display: none; width: 44px; height: 44px; position: relative; }
.nav-burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 22px; }
.nav-burger span:nth-child(3) { top: 28px; }
body.menu-open .nav-burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--gutter) 48px;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu > a:not(.btn) {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  padding: 10px 0;
  color: var(--w70);
  translate: 0 0;
  transition: color .2s ease, translate .25s ease;
}
.mobile-menu > a:not(.btn):hover, .mobile-menu > a:not(.btn).active { color: var(--white); }
.mobile-menu > a:not(.btn):hover { translate: 10px 0; }
.mobile-menu .lang { align-self: flex-start; margin-top: 28px; }
.mobile-menu .btn { align-self: flex-start; margin-top: 16px; }

/* ---------- hero ---------- */
.hero {
  padding-top: clamp(150px, 18vh, 220px);
  padding-bottom: clamp(72px, 9vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -320px;
  right: -220px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 106, 61, .14), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; }
.hero-side { display: flex; flex-direction: column; gap: 28px; }
.hero-side .lede { max-width: 440px; }

/* hero availability chip */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border: 1px solid var(--w10);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-size: 13.5px;
  letter-spacing: .01em;
  color: var(--w70);
}
.hero-chip .pulse {
  position: relative;
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-chip .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: chipPulse 2.4s ease-out infinite;
}
@keyframes chipPulse {
  from { transform: scale(.5); opacity: .9; }
  to { transform: scale(1.7); opacity: 0; }
}

/* subpage hero (shorter) */
.hero--sub { padding-bottom: clamp(56px, 6vw, 88px); }
.hero--sub .hero-grid { align-items: end; }

/* mini stats */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--w10);
  border: 1px solid var(--w10);
  border-radius: var(--r-m);
  overflow: hidden;
  margin-top: clamp(48px, 6vw, 88px);
  position: relative;
  z-index: 1;
}
.stat {
  background: var(--ink);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .3s ease;
}
.stat:hover { background: var(--ink-raise); }
.stat b {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  translate: 0 0;
  transition: color .3s ease, translate .3s ease;
}
.stat:hover b { color: var(--accent); translate: 0 -2px; }
.stat span { font-size: 14px; color: var(--w50); letter-spacing: -0.01em; }

/* quote mock card (hero visual) */
.quote-card {
  background: var(--ink-raise);
  border: 1px solid var(--w10);
  border-radius: var(--r-m);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 440px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .4);
  animation: qFloat 7s ease-in-out infinite;
}
@keyframes qFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.quote-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--w10);
}
.quote-card header b { font-weight: 500; font-size: 15px; }
.quote-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  border: 1px solid rgba(181, 238, 221, .35);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.quote-line { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; color: var(--w70); }
.quote-line span:last-child { color: var(--w40); white-space: nowrap; }
.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--w10);
  font-weight: 500;
  font-size: 15px;
}
.quote-total b { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.01em; }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--w06);
  border-bottom: 1px solid var(--w06);
  padding: 22px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w40);
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee-track span::after { content: "•"; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  border-radius: var(--r-m);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); }
.card--amber:hover { box-shadow: 0 24px 64px -14px rgba(255, 217, 142, .3); }
.card--sky:hover { box-shadow: 0 24px 64px -14px rgba(179, 215, 251, .3); }
.card--mint:hover { box-shadow: 0 24px 64px -14px rgba(181, 238, 221, .3); }
.card--dark:hover, .card--paper:hover { box-shadow: 0 24px 64px -14px rgba(255, 255, 255, .08); }
.card p { font-size: 15.5px; line-height: 1.5; }
.card .card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 400;
}
.card .card-link svg { width: 14px; height: 14px; transition: transform .25s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

.card--amber { background: var(--amber); color: var(--ink); }
.card--sky { background: var(--sky); color: var(--ink); }
.card--mint { background: var(--mint); color: var(--ink); }
.card--paper { background: var(--ink-raise); color: var(--white); border: 1px solid var(--w10); }
.card--dark { background: var(--ink-raise); border: 1px solid var(--w10); color: var(--white); }
.card--dark p, .card--paper p { color: var(--w70); }
.card--amber p, .card--sky p, .card--mint p { color: rgba(10, 14, 24, .74); }

.card-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: .55;
}

/* ---------- steps ---------- */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 96px minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  padding: 32px 0;
  border-top: 1px solid var(--w10);
  align-items: start;
}
.steps .step:last-child { border-bottom: 1px solid var(--w10); }
.step-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
}
.step h3 { font-size: 21px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.25; }
.step p { color: var(--w70); font-size: 15.5px; max-width: 560px; }

.phase-label {
  margin: 56px 0 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.phase-label:first-child { margin-top: 0; }
.phase-label .eyebrow { color: var(--w50); }
.phase-label::after { content: ""; height: 1px; flex: 1; background: var(--w10); }

/* ---------- feature split rows ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  padding: clamp(48px, 6vw, 88px) 0;
  border-top: 1px solid var(--w10);
}
.split:last-child { border-bottom: 1px solid var(--w10); }
.split-copy { display: flex; flex-direction: column; gap: 18px; max-width: 520px; }
.split-copy h3 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; }
.split-copy p { color: var(--w70); font-size: 16px; }
.split-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.split-list li { list-style: none; display: flex; gap: 12px; align-items: baseline; font-size: 15.5px; color: var(--w70); }
.split-list { padding: 0; margin-bottom: 0; }
.split-list li::before { content: "→"; color: var(--accent); font-weight: 500; flex: none; }
.split-visual {
  position: relative;
  border-radius: var(--r-m);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-image: radial-gradient(rgba(10, 14, 24, .16) 1.3px, transparent 1.3px);
  background-size: 22px 22px;
  overflow: hidden;
}
.split:nth-child(even) .split-visual { order: -1; }
.v-amber { background-color: var(--amber); }
.v-sky { background-color: var(--sky); }
.v-mint { background-color: var(--mint); }
.v-accent { background-color: var(--accent); }
.split-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(10, 14, 24, .55);
}
.split-art { width: min(320px, 74%); height: auto; }

/* split-art micro-motion */
.art-pulse { transform-box: fill-box; transform-origin: center; animation: artPulse 2.6s ease-in-out infinite; }
@keyframes artPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.14); } }
.art-nudge { animation: artNudge 2.4s ease-in-out infinite; }
@keyframes artNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(7px); } }
.art-bob { animation: artBob 4.5s ease-in-out infinite; }
@keyframes artBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.art-orbit { transform-box: view-box; transform-origin: 50% 50%; animation: artOrbit 16s linear infinite; }
@keyframes artOrbit { to { transform: rotate(360deg); } }

/* ---------- statement band (rhythm breaker) ---------- */
.statement {
  padding: clamp(88px, 11vw, 160px) 0;
  text-align: center;
  overflow: hidden;
}
.statement-text {
  font-size: clamp(46px, 8.5vw, 132px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}
.statement-text span { display: block; }
.st-ghost { color: transparent; -webkit-text-stroke: 1.5px var(--w40); }
.st-accent { color: var(--accent); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--ink-raise);
  border: 1px solid var(--w10);
  border-radius: var(--r-m);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.price-card { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--w20);
  box-shadow: 0 28px 72px -16px rgba(255, 255, 255, .08);
}
.price-card--hot { border-color: rgba(255, 106, 61, .5); background: linear-gradient(180deg, rgba(255, 106, 61, .08), rgba(13, 21, 38, 0) 45%), var(--ink-raise); }
.price-card--hot:hover {
  border-color: rgba(255, 106, 61, .8);
  box-shadow: 0 28px 72px -16px rgba(255, 106, 61, .28);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--r-pill);
}
.price-head { display: flex; flex-direction: column; gap: 10px; }
.price-head h3 { font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.price-head p { color: var(--w50); font-size: 15px; }
.price-scope {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--w70);
  padding: 14px 0;
  border-top: 1px solid var(--w10);
  border-bottom: 1px solid var(--w10);
}
.price-scope b { color: var(--white); font-weight: 600; }
.price-list { display: flex; flex-direction: column; gap: 12px; padding: 0; margin: 0; flex: 1; }
.price-list li { list-style: none; display: flex; gap: 12px; align-items: baseline; font-size: 15px; color: var(--w70); }
.price-list li.off { color: var(--w40); text-decoration: line-through; text-decoration-color: var(--w20); }
.price-list li::before { content: "✓"; color: var(--mint); font-weight: 500; flex: none; }
.price-list li.off::before { content: "—"; color: var(--w20); }
.price-card .btn { justify-content: center; }

/* ---------- quote-note (explainer band) ---------- */
.note-band {
  background: var(--ink-raise);
  border: 1px solid var(--w10);
  border-radius: var(--r-m);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.note-band { transition: border-color .3s ease, box-shadow .3s ease; }
.note-band:hover { border-color: var(--w20); box-shadow: 0 24px 64px -16px rgba(255, 255, 255, .06); }
.note-band h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.2; }
.note-band p { color: var(--w70); font-size: 15.5px; }

/* ---------- testimonials ---------- */
.tcard {
  background: var(--ink-raise);
  border: 1px solid var(--w10);
  border-radius: var(--r-m);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tcard:hover {
  transform: translateY(-4px);
  border-color: var(--w20);
  box-shadow: 0 24px 64px -14px rgba(255, 255, 255, .08);
}
.tcard .tmark { font-family: var(--font-display); font-size: 40px; line-height: .5; color: var(--accent); }
.tcard blockquote { margin: 0; font-size: 16.5px; line-height: 1.55; color: var(--w70); }
.tcard footer { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.tcard footer b { font-size: 14.5px; font-weight: 500; }
.tcard footer span { font-size: 13.5px; color: var(--w50); }
.tcard--soon { border-style: dashed; border-color: var(--w20); background: transparent; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; max-width: 880px; }
.faq-item { border-top: 1px solid var(--w10); }
.faq-item:last-child { border-bottom: 1px solid var(--w10); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 4px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-x {
  flex: none;
  width: 28px;
  height: 28px;
  border: 1px solid var(--w20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-item[open] summary .faq-x { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.faq-item[open] .faq-body { animation: faqOpen .35s ease both; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.faq-item .faq-body { padding: 0 4px 26px; color: var(--w70); max-width: 720px; font-size: 15.5px; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.info-block { display: flex; flex-direction: column; gap: 6px; }
.info-block .eyebrow { margin-bottom: 6px; }
.info-block a, .info-block p { font-size: 19px; font-weight: 400; letter-spacing: -0.02em; color: var(--white); }
.info-block a:hover { color: var(--accent); }
.info-block small { color: var(--w50); font-size: 14px; }

.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--w50); }
.field input, .field select, .field textarea {
  background: var(--ink-raise);
  border: 1px solid var(--w10);
  border-radius: var(--r-s);
  color: var(--white);
  font: inherit;
  font-size: 15.5px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease;
  width: 100%;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff88' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--w40); }
.form small { color: var(--w40); font-size: 13px; }
.form small a { text-decoration: underline; text-underline-offset: 3px; }
.form .btn { align-self: flex-start; }
.form-note { display: none; color: var(--mint); font-size: 14.5px; }
.form-note.show { display: block; }
.hp { display: none !important; }

/* ---------- final CTA ---------- */
.cta-final { text-align: left; }
.cta-final .h-hero { max-width: 12em; }
.cta-final .btn-row { margin-top: 36px; }
.cta-final .lede { margin-top: 24px; }

/* ---------- footer ---------- */
.footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--w06);
  padding: clamp(56px, 7vw, 96px) 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .brand { font-size: 26px; }
.footer-brand a.mail { color: var(--w70); font-size: 17px; transition: color .2s ease, text-shadow .25s ease; }
.footer-brand a.mail:hover { color: var(--accent); text-shadow: 0 0 22px rgba(255, 106, 61, .55); }
.footer-brand p { color: var(--w40); font-size: 14px; max-width: 300px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h3 { font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--w40); margin-bottom: 6px; }
.footer-col a { color: var(--w70); font-size: 15px; translate: 0 0; transition: color .2s ease, translate .25s ease, text-shadow .25s ease; }
.footer-col a:hover { color: var(--accent); translate: 4px 0; text-shadow: 0 0 20px rgba(255, 106, 61, .5); }
.footer-col p { color: var(--w70); font-size: 15px; margin: 0; transition: color .2s ease, text-shadow .25s ease; }
.footer-col p:hover { color: var(--accent); text-shadow: 0 0 20px rgba(255, 106, 61, .5); }
.footer-legal {
  border-top: 1px solid var(--w06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal p { color: var(--w40); font-size: 13.5px; line-height: 1.7; }
.footer-legal .lang { flex: none; }

/* ---------- prose (privacy) ---------- */
.prose { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.prose h2 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin-top: 28px; }
.prose p, .prose li { color: var(--w70); font-size: 15.5px; }
.prose ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose .muted { color: var(--w40); font-size: 14px; }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-copy { display: flex; flex-direction: column; gap: 20px; }
.about-copy p { color: var(--w70); font-size: 17px; line-height: 1.6; max-width: 620px; }
.facts-card {
  background: var(--ink-raise);
  border: 1px solid var(--w10);
  color: var(--white);
  border-radius: var(--r-m);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 100px;
}
.facts-card h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; padding-bottom: 14px; border-bottom: 1px solid var(--w10); }
.fact { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; }
.fact span { color: var(--w50); }
.fact b { font-weight: 400; text-align: right; }
.fact a { color: var(--accent); }

.exp-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.exp-tags span {
  border: 1px solid var(--w20);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-size: 14px;
  color: var(--w70);
  translate: 0 0;
  transition: background .25s ease, color .25s ease, border-color .25s ease, translate .25s ease;
}
.exp-tags span:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  translate: 0 -2px;
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  body::before, body::after, main::before { animation: none; }
  .quote-card, .hero-chip .pulse::after, .faq-item[open] .faq-body { animation: none; }
  .btn:hover svg { animation: none; }
  .btn--accent::before { display: none; }
  .brand:hover .accent-dot { animation: none; }
  .art-pulse, .art-nudge, .art-bob, .art-orbit { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 64px 1fr; }
  .step p { grid-column: 2; }
}
@media (max-width: 920px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-cta .lang { display: none; }
  .nav-burger { display: block; }
  .hero-grid, .contact-grid, .about-grid, .note-band { grid-template-columns: 1fr; }
  .hero-grid { align-items: start; }
  .split { grid-template-columns: 1fr; padding: 40px 0; }
  .split:nth-child(even) .split-visual { order: 0; }
  .split-visual { min-height: 200px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .facts-card { position: static; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .card-grid, .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .card { min-height: 0; }
  .quote-card { max-width: none; }
  .btn { width: 100%; justify-content: center; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .nav-cta .btn { display: none; }
  .faq-item summary { font-size: 16.5px; }
}
