/* ==========================================================================
   VIMINIS — Editorial tech, dark noir + lime
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-1: #0f0f10;
  --bg-2: #161618;
  --surface: #111113;
  --border: #22222a;
  --border-hi: #34343f;

  --text: #fafafa;
  --text-mut: #8a8a92;
  --text-dim: #5a5a62;

  --lime: #d8ff36;
  --lime-2: #b8e025;
  --coral: #ff5c39;
  --amber: #ffb441;

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Geist', system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;

  --maxw: 1320px;
  --gap: clamp(1rem, 2vw, 1.75rem);
  --pad-x: clamp(1.25rem, 4vw, 4rem);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--lime); color: #0a0a0a; }

/* ==========================================================================
   Atmosphere (orbs + grain)
   ========================================================================== */

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: .55;
  will-change: transform;
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 60%);
  top: -180px; right: -120px;
  animation: drift1 22s ease-in-out infinite;
}
.orb-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 60%);
  bottom: -160px; left: -160px;
  opacity: .35;
  animation: drift2 28s ease-in-out infinite;
}
@keyframes drift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px, 80px) scale(1.05); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px, -60px) scale(1.08); }
}

/* ==========================================================================
   Typography utilities
   ========================================================================== */

.kicker {
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lime);
}

.hl {
  color: var(--lime);
  font-style: normal;
  font-weight: 500;
}

em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'wdth' 90, 'opsz' 32;
  color: var(--lime);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: -.005em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--lime {
  background: var(--lime);
  color: #0a0a0a;
}
.btn--lime:hover { background: #e6ff66; box-shadow: 0 8px 30px -8px var(--lime); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hi);
}
.btn--ghost:hover { background: rgba(255,255,255,.04); border-color: var(--text); }

.btn--ghost-sm {
  padding: .55rem .9rem;
  font-size: .85rem;
  background: rgba(255,255,255,.04);
  border-color: var(--border-hi);
}
.btn--ghost-sm:hover { background: var(--lime); color: #0a0a0a; border-color: var(--lime); }

.btn--big { padding: 1.1rem 1.8rem; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; padding: 1.05rem; }

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--pad-x);
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(10,10,10,.85);
}

.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -.04em;
  font-variation-settings: 'wdth' 95;
}
.brand__dot {
  position: relative;
  display: inline-block;
}
.brand__dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -.05em;
  width: .28em;
  height: .28em;
  border-radius: 50%;
  background: var(--lime);
  transform: translateX(-50%);
}

.nav__links {
  display: flex;
  gap: 2rem;
  font-size: .92rem;
  color: var(--text-mut);
  margin-left: auto;
  margin-right: 2rem;
}
.nav__links a {
  position: relative;
  padding: .25rem 0;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px; width: 0;
  background: var(--lime);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  position: relative;
}
.nav__burger span {
  display: block;
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 49;
  padding: 5.5rem var(--pad-x) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__nav { display: flex; flex-direction: column; gap: 1.25rem; }
.menu__nav a {
  font-family: var(--display);
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  letter-spacing: -.03em;
  font-weight: 600;
  line-height: 1;
  font-variation-settings: 'wdth' 92;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s ease;
}
.menu.is-open .menu__nav a {
  transform: translateY(0);
  opacity: 1;
}
.menu.is-open .menu__nav a:nth-child(1) { transition-delay: 80ms; }
.menu.is-open .menu__nav a:nth-child(2) { transition-delay: 150ms; }
.menu.is-open .menu__nav a:nth-child(3) { transition-delay: 220ms; }
.menu.is-open .menu__nav a:nth-child(4) { transition-delay: 290ms; }

.menu__foot {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: .9rem;
}
.menu__contact { color: var(--text-mut); }
.menu__contact:hover { color: var(--lime); }

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

.hero {
  position: relative;
  padding: clamp(2rem, 6vw, 5rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
  max-width: var(--maxw);
  margin: 0 auto;
  z-index: 2;
}

.hero__ribbon {
  position: absolute;
  top: 1.5rem; left: 0; right: 0;
  height: 28px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  pointer-events: none;
}
.ribbon__track {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-dim);
  animation: ribbon 60s linear infinite;
  width: max-content;
}
.ribbon__track span:nth-child(2n) { color: var(--lime); font-size: .8rem; }
@keyframes ribbon {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero__inner {
  position: relative;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.display {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 9vw, 7.5rem);
  line-height: .92;
  letter-spacing: -.045em;
  font-variation-settings: 'wdth' 88, 'opsz' 80;
}
.display .line {
  display: block;
  overflow: hidden;
}
.display .line:nth-child(2) {
  padding-left: clamp(1rem, 6vw, 5rem);
}
.display .line:nth-child(3) {
  padding-left: clamp(2rem, 12vw, 10rem);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 36em;
  color: var(--text-mut);
  margin-top: 1rem;
  line-height: 1.45;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

/* Floating "99€" badge */
.badge {
  position: absolute;
  top: -1.5rem;
  right: 1rem;
  width: clamp(120px, 14vw, 200px);
  height: clamp(120px, 14vw, 200px);
  pointer-events: none;
  animation: spin 18s linear infinite;
}
.badge__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: spin-r 18s linear infinite;
  background: var(--lime);
  border-radius: 50%;
  color: #0a0a0a;
  box-shadow: 0 30px 60px -20px rgba(216,255,54,.5);
}
.badge__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -.04em;
  font-variation-settings: 'wdth' 92;
  line-height: 1;
}
.badge__sub {
  font-family: var(--mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-top: .25rem;
}
.badge__circle {
  position: absolute;
  inset: 0;
  display: none; /* hidden if you want clean badge; turn on for circular text */
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes spin-r {
  to { transform: rotate(-360deg); }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 1.5rem clamp(.5rem, 2vw, 1.5rem);
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat__num {
  display: flex;
  align-items: baseline;
  gap: .1em;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -.04em;
  line-height: 1;
  font-variation-settings: 'wdth' 95;
}
.stat__sym { color: var(--lime); }
.stat__lbl {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mut);
  margin-top: .75rem;
  line-height: 1.4;
}

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

.manifesto {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) var(--pad-x);
  position: relative;
  z-index: 2;
}
.manifesto__num {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .15em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.manifesto__text {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 500;
  font-variation-settings: 'wdth' 92, 'opsz' 32;
  max-width: 18em;
}

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

.section-head { margin-bottom: clamp(3rem, 5vw, 5rem); max-width: 32em; }
.section-head__kicker {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}
.section-head__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-variation-settings: 'wdth' 90, 'opsz' 60;
}
.section-head__lede {
  margin-top: 1rem;
  color: var(--text-mut);
  font-size: 1.05rem;
  max-width: 36em;
}

/* ==========================================================================
   TIERS
   ========================================================================== */

.tiers {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  position: relative;
  z-index: 2;
}

.tier {
  display: grid;
  grid-template-columns: minmax(120px, 280px) 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.tier:last-child { border-bottom: 1px solid var(--border); }

.tier__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: .8;
  letter-spacing: -.05em;
  color: var(--text-dim);
  font-variation-settings: 'wdth' 75;
  position: sticky;
  top: 7rem;
  transition: color .4s var(--ease);
}
.tier:hover .tier__num { color: var(--lime); }

.tier__label {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mut);
  margin-bottom: .75rem;
}
.tier__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.8vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-variation-settings: 'wdth' 92, 'opsz' 40;
}
.tier__lede {
  margin: 1rem 0 1.5rem;
  font-size: 1.05rem;
  color: var(--text-mut);
  max-width: 32em;
}

.tier__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
}
.tier__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 1rem;
}
.tier__list li:last-child { border-bottom: 0; }
.tier__feat {
  display: flex;
  align-items: baseline;
  gap: .75rem;
}
.tier__feat::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  transform: translateY(-1px);
}
.tier__price {
  font-family: var(--mono);
  font-size: .85rem;
  letter-spacing: .05em;
  color: var(--lime);
  white-space: nowrap;
}
.tier__cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border-hi);
  transition: color .2s, border-color .2s;
}
.tier__cta:hover { color: var(--lime); border-color: var(--lime); }

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

.marquee {
  background: var(--lime);
  color: #0a0a0a;
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: -.02em;
  font-variation-settings: 'wdth' 92;
  white-space: nowrap;
  width: max-content;
  animation: ribbon 30s linear infinite;
}
.marquee__track .dot { font-size: .8em; }

/* ==========================================================================
   WORKS / portfolio
   ========================================================================== */

.works {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x) clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}
.works__row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem .25rem 2rem;
  margin: 0 calc(-1 * var(--pad-x));
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  scrollbar-width: thin;
  scrollbar-color: var(--border-hi) transparent;
}
.works__row::-webkit-scrollbar { height: 6px; }
.works__row::-webkit-scrollbar-track { background: transparent; }
.works__row::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 3px; }

.work {
  flex: 0 0 clamp(260px, 28vw, 360px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .35s var(--ease);
}
.work:hover { transform: translateY(-4px); }

.work__mock {
  aspect-ratio: 3/4;
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1a1c, #0e0e10);
  border: 1px solid var(--border);
  transition: border-color .3s, box-shadow .3s;
}
.work:hover .work__mock {
  border-color: var(--lime);
  box-shadow: 0 30px 60px -20px rgba(216,255,54,.25);
}

.work__mock--food { background: linear-gradient(160deg, #2a1410 0%, #0e0e10 70%); }
.work__mock--food .mock__h1 { color: #ffd5a5; }
.work__mock--legal { background: linear-gradient(160deg, #0e1830 0%, #0e0e10 70%); }
.work__mock--legal .mock__h1 { color: #cfd9ff; }
.work__mock--hotel { background: linear-gradient(160deg, #0e2a2a 0%, #0e0e10 70%); }
.work__mock--hotel .mock__h1 { color: #b8eedb; }
.work__mock--shop { background: linear-gradient(160deg, #2a0e26 0%, #0e0e10 70%); }
.work__mock--shop .mock__h1 { color: #ffc6e8; }
.work__mock--auto { background: linear-gradient(160deg, #1a1a0e 0%, #0e0e10 70%); }
.work__mock--auto .mock__h1 { color: #fff1a5; }

.mock__bar {
  display: flex;
  gap: .35rem;
  align-items: center;
}
.mock__bar span {
  width: 8px; height: 8px;
  background: var(--text-dim);
  border-radius: 50%;
  opacity: .6;
}
.mock__hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 0;
}
.mock__h1 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  font-variation-settings: 'wdth' 92;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.mock__h2 {
  font-size: .75rem;
  color: var(--text-mut);
  letter-spacing: .02em;
}
.mock__cards {
  display: grid;
  grid-auto-flow: column;
  gap: .35rem;
}
.mock__cards span {
  height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
}

.work__meta {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.work__cat {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.work__name {
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .75rem;
}
.work__url {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--text-mut);
  transition: color .2s;
}
.work:hover .work__url { color: var(--lime); }

.works__note {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--text-dim);
}
.works__note code {
  font-family: var(--mono);
  background: var(--bg-2);
  padding: .15rem .4rem;
  border-radius: 4px;
  color: var(--lime);
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.how {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  position: relative;
  z-index: 2;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.step {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background .35s;
}
.step:hover { background: var(--bg-1); }
.step__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  color: var(--lime);
  font-variation-settings: 'wdth' 80;
}
.step__title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -.02em;
  font-variation-settings: 'wdth' 92;
}
.step__txt {
  color: var(--text-mut);
  font-size: .98rem;
  line-height: 1.55;
}

/* ==========================================================================
   CTA FINALE
   ========================================================================== */

.cta-final {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
  position: relative;
  z-index: 2;
  text-align: left;
}
.cta-final__pre {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .15em;
  color: var(--text-mut);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.cta-final__head {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: .92;
  letter-spacing: -.045em;
  font-variation-settings: 'wdth' 85, 'opsz' 80;
}
.cta-final__head em {
  font-variation-settings: 'wdth' 90, 'opsz' 80;
}
.cta-final__strike {
  position: relative;
  color: var(--text-mut);
  padding-left: clamp(1.5rem, 5vw, 4rem);
}
.cta-final__strike::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 52%;
  height: 4px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  animation: strike 1.2s var(--ease-out) forwards;
  animation-play-state: paused;
}
.cta-final.is-visible .cta-final__strike::after {
  animation-play-state: running;
}
@keyframes strike {
  to { transform: scaleX(1); }
}
.cta-final__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.contact {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}
.contact__col .kicker { color: var(--lime); margin-bottom: 1rem; }
.contact__head {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.04em;
  font-variation-settings: 'wdth' 88, 'opsz' 60;
}
.contact__lede {
  margin-top: 1rem;
  color: var(--text-mut);
  font-size: 1.05rem;
}
.contact__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.contact__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact__lbl {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mut);
}
.contact__val {
  font-size: 1.1rem;
  font-weight: 500;
  transition: color .2s;
}
.contact__val:hover { color: var(--lime); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mut);
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-hi);
  padding: .6rem 0;
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  transition: border-color .2s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .25rem;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid var(--border-hi);
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.chip span:hover { border-color: var(--text-mut); }
.chip input:checked + span {
  background: var(--lime);
  color: #0a0a0a;
  border-color: var(--lime);
}
.chip input:focus-visible + span {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.form__fine {
  font-size: .8rem;
  color: var(--text-dim);
  text-align: center;
}
.form__fine a { color: var(--text-mut); text-decoration: underline; }

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

.footer {
  position: relative;
  margin-top: 4rem;
  padding: 4rem var(--pad-x) 2rem;
  border-top: 1px solid var(--border);
  background: #060606;
  z-index: 2;
}
.footer__big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(4rem, 18vw, 16rem);
  letter-spacing: -.06em;
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-hi);
  text-stroke: 1px var(--border-hi);
  text-align: center;
  margin-bottom: 3rem;
  font-variation-settings: 'wdth' 80;
  user-select: none;
}
.footer__dot {
  position: relative;
  display: inline-block;
}
.footer__dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0.05em;
  width: .25em;
  height: .25em;
  border-radius: 50%;
  background: var(--lime);
  transform: translateX(-50%);
}

.footer__cols {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__cols div { display: flex; flex-direction: column; gap: .5rem; }
.footer__lbl {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .5rem;
}
.footer__txt { color: var(--text-mut); font-size: .9rem; }
.footer__cols a {
  font-size: .92rem;
  color: var(--text-mut);
  transition: color .2s;
}
.footer__cols a:hover { color: var(--lime); }

.footer__base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  animation: reveal 1s var(--ease-out) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }

  .badge { top: -3rem; right: -.5rem; width: 110px; height: 110px; }

  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
  .stat:last-child { border-bottom: 0; }

  .tier { grid-template-columns: 1fr; gap: 1rem; }
  .tier__num { position: static; font-size: 4.5rem; }
  .tier__list li { flex-direction: column; align-items: flex-start; gap: .25rem; }

  .steps { grid-template-columns: 1fr; }

  .contact { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }

  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__base { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .display .line:nth-child(2) { padding-left: .5rem; }
  .display .line:nth-child(3) { padding-left: 1.5rem; }

  .hide-sm { display: none; }
  .tier__list li { padding: .75rem 0; }
  .footer__cols { grid-template-columns: 1fr 1fr; }

  .hero__ribbon { top: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .orb, .badge { animation: none; }
}
