/* =========================================================
   UseSkill.it · brutalist-raw + kinetic-type
   Distinto dal case study Veesy (cream/sky/Fraunces).
   Palette: bone + ink + acid yellow.
   Type: Bricolage Grotesque variable + General Sans + JetBrains Mono.
   ========================================================= */

:root {
  --ink: #0F0F0F;
  --ink-soft: #1F1F1F;
  --bone: #F5F1E8;
  --bone-soft: #EBE5D6;
  --bone-dim: #DBD4C2;
  --acid: #D4FF00;
  --acid-dim: #B8DD00;
  --acid-glow: rgba(212, 255, 0, 0.4);
  --rust: #E84E1B;

  --line: #0F0F0F;
  --line-soft: rgba(15, 15, 15, 0.18);

  --f-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --f-body: 'General Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --fs-mega: clamp(72px, 14vw, 280px);
  --fs-hero: clamp(56px, 11vw, 200px);
  --fs-h2: clamp(44px, 7vw, 132px);
  --fs-h3: clamp(28px, 3.6vw, 56px);
  --fs-lead: clamp(17px, 1.4vw, 22px);
  --fs-body: clamp(15px, 1.1vw, 17px);

  --ease-snap: cubic-bezier(0.2, 0, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --gutter: clamp(20px, 5vw, 80px);
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { background: var(--bone); }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 100, 'wght' 700, 'opsz' 96;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
em { font-style: italic; color: var(--ink); font-weight: 700; }
strong { font-weight: 600; }

/* ============ SPOTLIGHT cursor follower ============ */
.spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,0,0.18) 0%, transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s;
}
.spotlight.is-active { opacity: 1; }
@media (max-width: 768px) { .spotlight { display: none; } }

/* ============ TICKER MARQUEE TOP ============ */
.ticker {
  background: var(--ink);
  color: var(--bone);
  border-bottom: 2px solid var(--acid);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 12px 0;
  text-transform: uppercase;
  font-weight: 500;
}
.ticker-track {
  display: inline-block;
  animation: tickerScroll 40s linear infinite;
  padding-right: 32px;
}
.ticker-track > span { padding-right: 40px; }
.ticker-track > span:nth-child(odd) { color: var(--acid); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px var(--gutter);
  background: var(--bone);
  border-bottom: 2px solid var(--ink);
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-mark {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--f-mono);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 18px;
  border: 2px solid var(--ink);
}
.nav-name {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 75, 'wght' 700, 'opsz' 14;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.nav-name sup { font-size: 0.45em; opacity: 0.5; vertical-align: super; }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-snap);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 22px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--ink);
  transition: background 0.3s, color 0.3s;
  will-change: transform;
}
.nav-cta:hover { background: var(--acid); color: var(--ink); }
.nav-cta-arrow { transition: transform 0.4s var(--ease-spring); }
.nav-cta:hover .nav-cta-arrow { transform: translate(2px, -2px); }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav { gap: 12px; padding: 12px var(--gutter); }
  .nav-cta { padding: 10px 16px; font-size: 11px; }
  .nav-name { font-size: 18px; }
}
@media (max-width: 480px) {
  .nav-name sup { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(48px, 10vh, 120px) var(--gutter) clamp(80px, 14vh, 180px);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-eye-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(212,255,0,0.25);
}

.hero-kicker {
  font-family: var(--f-mono);
  font-size: clamp(15px, 1.6vw, 22px);
  letter-spacing: 0;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 500;
  max-width: 56ch;
  line-height: 1.4;
}
.hero-title {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: var(--fs-hero);
  line-height: 0.88;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.18em 0.3em;
}
.hero-title .word {
  display: inline-block;
  opacity: 1;
  transform: translateY(48px);
  transition: opacity 1s var(--ease-snap), transform 1s var(--ease-snap);
  animation: heroWordIn 1.1s var(--ease-snap) both;
}
.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.25s; }
.hero-title .word:nth-child(3) { animation-delay: 0.4s; }
@keyframes heroWordIn {
  from { opacity: 0; transform: translateY(56px); }
  to { opacity: 1; transform: none; }
}
.hero-title .word-acid {
  background: var(--acid);
  padding: 0 0.18em 0.04em;
  margin-left: 0;
}

.hero-sub {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 64ch;
  line-height: 1.5;
  margin: 12px 0 0;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.hero-meta-row {
  display: grid;
  gap: 6px;
}
.hero-meta-label { color: var(--ink-soft); opacity: 0.55; text-transform: uppercase; font-weight: 500; }
.hero-meta-val { color: var(--ink); font-weight: 700; font-size: 14px; }
@media (max-width: 600px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  position: relative;
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease-spring);
  will-change: transform;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--acid); color: var(--ink); border-color: var(--ink); }
.btn-acid { background: var(--acid); color: var(--ink); border-color: var(--ink); }
.btn-acid:hover { background: var(--ink); color: var(--acid); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-large { font-size: 14px; padding: 22px 40px; letter-spacing: 0.16em; }
.btn-block { width: 100%; }

/* ============ MANIFESTO ============ */
.manifesto {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 14vh, 180px) var(--gutter);
  display: grid;
  gap: 48px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.manifesto-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin: 0;
  font-weight: 500;
}
.manifesto-block {
  display: grid;
  gap: 12px;
  max-width: 1500px;
}
.manifesto-lead {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.5;
  margin: 0;
}
.manifesto-big {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: var(--fs-h2);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin: 0;
  font-weight: 700;
}
.manifesto-big-acid {
  background: var(--acid);
  color: var(--ink);
  padding: 0 0.18em 0.04em;
  display: inline-block;
}
.manifesto-note {
  font-size: var(--fs-lead);
  color: rgba(245,241,232,0.7);
  max-width: 60ch;
  margin: 16px 0 0;
  line-height: 1.5;
}
.manifesto-divider {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--bone);
  opacity: 0.3;
  letter-spacing: 0;
  font-weight: 700;
  padding: 12px 0;
  border-top: 1px solid rgba(245,241,232,0.12);
  border-bottom: 1px solid rgba(245,241,232,0.12);
}

/* ============ STATS BAR ============ */
.stats {
  background: var(--acid);
  color: var(--ink);
  padding: clamp(40px, 7vh, 80px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 2px solid var(--ink);
}
.stat-row {
  border-right: 2px solid var(--ink);
  padding: 0 24px;
  display: grid;
  align-content: center;
  gap: 8px;
}
.stat-row:last-child { border-right: 0; }
.stat-num {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: clamp(64px, 9vw, 128px);
  line-height: 0.85;
  font-weight: 700;
  letter-spacing: -0.022em;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-row { padding: 24px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .stat-row:nth-child(2n) { border-right: 0; }
  .stat-row:nth-last-child(-n+2) { border-bottom: 0; }
  .stat-row:nth-child(odd) { border-right: 2px solid var(--ink); }
}

/* ============ CATALOG ============ */
.catalog {
  background: var(--bone);
  padding: clamp(80px, 14vh, 180px) 0 0;
  border-bottom: 2px solid var(--ink);
}
.catalog-header { padding: 0 var(--gutter); margin-bottom: 64px; max-width: 1500px; }
.catalog-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 500;
}
.catalog-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin: 0;
  max-width: 16ch;
  line-height: 0.92;
}
.catalog-title em {
  background: var(--acid);
  padding: 0 0.16em 0.04em;
  font-style: italic;
}
.catalog-sub {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 24px 0 0;
  line-height: 1.5;
}

.catalog-list {
  border-top: 2px solid var(--ink);
}
.cat-row {
  display: grid;
  grid-template-columns: 80px 110px 1fr 1.4fr 100px 60px;
  gap: 24px;
  align-items: center;
  padding: 28px var(--gutter);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  transition: background 0.4s var(--ease-snap), padding 0.4s var(--ease-snap);
  will-change: transform;
  cursor: pointer;
}
.cat-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--acid);
  transition: width 0.4s var(--ease-snap);
  z-index: 0;
}
.cat-row > * { position: relative; z-index: 1; }
.cat-row:hover { background: var(--ink); color: var(--bone); }
.cat-row:hover::before { width: 8px; }
.cat-row:hover .cat-arrow { transform: translate(4px, -4px); }
.cat-row:hover .cat-name { color: var(--bone); }
.cat-row:hover .cat-tag { color: var(--acid); border-color: var(--acid); }
.cat-row:hover .cat-num { color: var(--acid); }
.cat-row:hover .cat-desc { color: rgba(245,241,232,0.7); }
.cat-row:hover .cat-price { background: var(--acid); color: var(--ink); border-color: var(--acid); }

.cat-num {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: 0.5;
  letter-spacing: 0.1em;
  transition: color 0.3s, opacity 0.3s;
}
.cat-row:hover .cat-num { opacity: 1; }
.cat-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1.5px solid var(--ink);
  display: inline-block;
  text-align: center;
  justify-self: start;
  transition: color 0.3s, border-color 0.3s;
}
.cat-name {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 88, 'wght' 700, 'opsz' 32;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.cat-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  max-width: 50ch;
}
.cat-price {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  background: transparent;
  text-align: center;
  justify-self: start;
  transition: background 0.3s, color 0.3s;
}
.cat-row-free .cat-price {
  background: var(--acid);
  border-color: var(--ink);
}

/* NEW badge — Reels Remotion */
.cat-row-new {
  position: relative;
  border-color: var(--ink);
  background: linear-gradient(135deg, rgba(212,255,0,0.04), transparent 60%);
}
/* Badge NEW: uso ::after per non collidere con .cat-row::before (bar acid laterale) */
.cat-row-new::after {
  content: "★ NEW";
  position: absolute;
  top: -2px;
  right: -2px;
  left: auto;
  bottom: auto;
  width: auto;
  height: auto;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  z-index: 3;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 980px) {
  .cat-row-new .cat-arrow { display: none; }
  .cat-row-new::before { top: 8px; right: 8px; }
}
.cat-row-new .cat-price {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

/* Showcase reels — 4 mockup iPhone su una riga */
.reels-showcase {
  margin: 80px auto 40px;
  max-width: 1100px;
  padding: 0 var(--gutter);
}
.reels-showcase-head {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 720px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}
.reels-showcase-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin: 0;
  font-weight: 700;
}
.reels-showcase-h {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 48;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}
.reels-showcase-sub {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 4px 0 0;
  line-height: 1.45;
  max-width: 540px;
}
.reels-showcase-sub strong { color: var(--ink); }
.reels-showcase-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--acid);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.reels-showcase-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--acid);
}
.reels-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  justify-items: center;
}
.reel-frame {
  margin: 0;
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 160px;
  justify-items: center;
}
/* iPhone mockup */
.reel-frame .reel-phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19;
  background: #0F0F0F;
  border-radius: 28px;
  padding: 8px;
  box-shadow:
    0 0 0 2px #2A2A2A inset,
    8px 8px 0 var(--acid),
    0 1px 0 rgba(255,255,255,0.04) inset;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
}
.reel-frame .reel-phone::before {
  /* Dynamic Island / notch */
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 14px;
  background: #000;
  border-radius: 100px;
  z-index: 2;
}
.reel-frame .reel-phone video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
  display: block;
  background: #0F0F0F;
}
.reel-frame:hover .reel-phone {
  transform: translate(-3px, -3px);
  box-shadow:
    0 0 0 2px #2A2A2A inset,
    11px 11px 0 var(--acid),
    0 1px 0 rgba(255,255,255,0.04) inset;
}
.reel-frame figcaption {
  display: grid;
  gap: 3px;
  padding: 0;
  text-align: center;
}
.reel-frame-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.reel-frame-name {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 980px) {
  .reels-showcase-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 720px) {
  .reels-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reel-frame { max-width: 200px; }
}
@media (max-width: 380px) {
  .reels-showcase-grid { gap: 12px; }
  .reel-frame .reel-phone { box-shadow: 0 0 0 2px #2A2A2A inset, 5px 5px 0 var(--acid); }
}

/* Modal reels gallery */
.modal-reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0 8px;
}
.modal-reel {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 2px solid var(--ink);
  background: var(--ink);
}
@media (max-width: 720px) {
  .modal-reels-grid { grid-template-columns: repeat(2, 1fr); }
}
.cat-arrow {
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  transition: transform 0.4s var(--ease-spring), color 0.3s;
}
.cat-row:hover .cat-arrow { color: var(--acid); }

@media (max-width: 980px) {
  .cat-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "num tag arrow"
      "name name name"
      "desc desc desc"
      "price price price";
    gap: 12px 16px;
    padding: 24px var(--gutter);
  }
  .cat-num { grid-area: num; }
  .cat-tag { grid-area: tag; justify-self: start; }
  .cat-name { grid-area: name; font-size: 28px; }
  .cat-desc { grid-area: desc; }
  .cat-price { grid-area: price; padding: 12px 18px; font-size: 15px; }
  .cat-arrow { grid-area: arrow; }
}

/* Mobile / touch: disabilita hover bg invert (causa stuck-state + tap delay) */
@media (hover: none) {
  .cat-row:hover { background: transparent; color: var(--ink); }
  .cat-row:hover::before { width: 0; }
  .cat-row:hover .cat-name { color: var(--ink); }
  .cat-row:hover .cat-tag { color: var(--ink); border-color: var(--ink); }
  .cat-row:hover .cat-num { color: var(--ink-soft); opacity: 0.5; }
  .cat-row:hover .cat-desc { color: var(--ink-soft); }
  .cat-row:hover .cat-price { background: transparent; color: var(--ink); border-color: var(--ink); }
  .cat-row:active::before { width: 8px; }
  .cat-row:active { background: rgba(15,15,15,0.04); }
}

/* Bundle */
.bundle {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(60px, 10vh, 120px) var(--gutter);
  border-top: 2px solid var(--ink);
}
.bundle-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: center;
}
.bundle-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin: 0 0 16px;
  font-weight: 600;
}
.bundle-h {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.9;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.bundle-h em {
  color: var(--acid);
  font-style: italic;
  font-weight: 700;
}
.bundle-desc {
  font-size: var(--fs-lead);
  color: rgba(245,241,232,0.7);
  max-width: 50ch;
  margin: 24px 0 0;
  line-height: 1.5;
}
.bundle-side { display: grid; gap: 20px; align-content: start; }
.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(245,241,232,0.18);
}
.bundle-price-amount {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: clamp(80px, 10vw, 144px);
  font-weight: 700;
  color: var(--acid);
  letter-spacing: -0.025em;
  line-height: 0.85;
}
.bundle-price-strike {
  font-family: var(--f-mono);
  font-size: 22px;
  text-decoration: line-through;
  opacity: 0.4;
}
.bundle-fine {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245,241,232,0.5);
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .bundle-grid { grid-template-columns: 1fr; }
}

/* ============ BASI ============ */
.basi {
  padding: clamp(80px, 14vh, 180px) var(--gutter);
  border-bottom: 2px solid var(--ink);
}
.basi-header { max-width: 1500px; margin: 0 auto 64px; }
.basi-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 500;
}
.basi-title { font-size: var(--fs-h2); margin: 0; max-width: 16ch; line-height: 0.92; }
.basi-sub {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 24px 0 0;
  line-height: 1.5;
}
.basi-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}
.basi-cell {
  grid-column: span 3;
  padding: 32px 28px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  display: grid;
  gap: 12px;
  align-content: start;
  background: var(--bone);
  transition: background 0.3s, color 0.3s;
}
.basi-cell:hover { background: var(--acid); }
.basi-cell:nth-child(4n) { border-right: 0; }
.basi-cell:nth-child(5), .basi-cell:nth-child(6), .basi-cell:nth-child(7) {
  grid-column: span 4;
}
.basi-cell:nth-child(7) { border-right: 0; }
.basi-cell:nth-last-child(-n+3) { border-bottom: 0; }
.basi-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.5;
}
.basi-cell h4 {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 88, 'wght' 700, 'opsz' 32;
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.basi-cell p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .basi-grid { grid-template-columns: repeat(6, 1fr); }
  .basi-cell, .basi-cell:nth-child(5), .basi-cell:nth-child(6), .basi-cell:nth-child(7) { grid-column: span 3; border-right: 1.5px solid var(--ink); }
  .basi-cell:nth-child(2n) { border-right: 0; }
  .basi-cell:nth-child(7) { border-right: 1.5px solid var(--ink); }
}
@media (max-width: 720px) {
  .basi-grid { grid-template-columns: 1fr; }
  .basi-cell, .basi-cell:nth-child(5), .basi-cell:nth-child(6), .basi-cell:nth-child(7) { grid-column: 1; border-right: 0; border-bottom: 1.5px solid var(--ink); }
  .basi-cell:last-child { border-bottom: 0; }
}

/* ============ METODO + Claude Code mockup ============ */
.metodo {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 14vh, 180px) 0 0;
  border-bottom: 2px solid var(--ink);
}
.metodo-header { padding: 0 var(--gutter); max-width: 1500px; margin: 0 auto 64px; }
.metodo-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin: 0 0 16px;
  font-weight: 500;
}
.metodo-title { font-size: var(--fs-h2); color: var(--bone); margin: 0; max-width: 14ch; line-height: 0.92; }
.metodo-sub {
  font-size: var(--fs-lead);
  color: rgba(245,241,232,0.7);
  max-width: 60ch;
  margin: 24px 0 0;
  line-height: 1.5;
}

.metodo-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(80px, 12vh, 140px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.metodo-steps { display: grid; gap: 0; position: sticky; top: calc(var(--nav-h) + 24px); border-top: 1px solid rgba(245,241,232,0.18); }
.m-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245,241,232,0.18);
  cursor: pointer;
  transition: padding 0.4s var(--ease-snap), background 0.4s;
  align-items: start;
}
.m-step:hover { background: rgba(212,255,0,0.06); padding-left: 16px; padding-right: 16px; }
.m-step.is-active { background: rgba(212,255,0,0.08); padding-left: 16px; padding-right: 16px; }
.m-step.is-active .m-step-num { color: var(--acid); }
.m-step.is-active h4 { color: var(--acid); }
.m-step-num {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(245,241,232,0.4);
  padding-top: 4px;
  transition: color 0.3s;
}
.m-step h4 {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 88, 'wght' 700, 'opsz' 32;
  font-size: 24px;
  color: var(--bone);
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: color 0.3s;
}
.m-step p { color: rgba(245,241,232,0.65); font-size: 14px; line-height: 1.5; margin: 0; }

.metodo-window-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  display: grid;
  justify-items: center;
  align-self: start;
}

/* Claude Code mockup */
.cc-window {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 11;
  background: #1F1E1D;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 38px 1fr;
  box-shadow: 12px 12px 0 var(--acid);
  border: 2px solid #2B2927;
  font-family: var(--f-body);
}
.cc-titlebar {
  background: #262422;
  border-bottom: 1px solid #2B2927;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
}
.cc-traffic { display: flex; gap: 7px; }
.cc-dot { width: 11px; height: 11px; border-radius: 50%; }
.cc-red { background: #FF5F57; }
.cc-yellow { background: #FEBC2E; }
.cc-green { background: #28C840; }
.cc-title { text-align: center; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.04em; color: #8A8580; }
.cc-titlebar-right { justify-self: end; }
.cc-model-pill {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: #D97757;
  background: rgba(217,119,87,0.12);
  border: 1px solid rgba(217,119,87,0.3);
  padding: 3px 8px;
  border-radius: 20px;
}
.cc-body { display: grid; grid-template-columns: 200px 1fr; min-height: 0; }
.cc-sidebar {
  background: #1A1918;
  border-right: 1px solid #2B2927;
  padding: 16px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cc-side-head, .cc-side-foot { display: flex; align-items: center; justify-content: space-between; padding: 0 6px; }
.cc-side-label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; color: #6C6762; text-transform: uppercase; }
.cc-side-new { font-size: 15px; color: #8A8580; }
.cc-session-list { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cc-session { font-size: 12.5px; color: #C9C5BE; padding: 7px 10px; border-radius: 6px; display: flex; align-items: center; gap: 8px; }
.cc-session.is-active { background: rgba(217,119,87,0.12); color: #F2EFE8; }
.cc-dot-live { width: 6px; height: 6px; border-radius: 50%; background: #6BCF7F; box-shadow: 0 0 0 3px rgba(107,207,127,0.18); }
.cc-side-foot { border-top: 1px solid #2B2927; padding-top: 12px; margin-top: auto; }
.cc-skills-count { font-family: var(--f-mono); font-size: 12px; color: #D97757; font-weight: 600; }

.cc-chat { display: grid; grid-template-rows: 1fr auto; min-height: 0; background: #1F1E1D; }
.term-screen { position: relative; overflow: hidden; }
.term-slide {
  position: absolute; inset: 0;
  padding: 22px 24px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-snap), transform 0.5s var(--ease-snap);
  pointer-events: none;
}
.term-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }

.cc-empty { height: 100%; display: grid; place-content: center; text-align: center; gap: 10px; max-width: 340px; margin: 0 auto; }
.cc-logo-mark { width: 48px; height: 48px; border-radius: 14px; background: rgba(217,119,87,0.12); display: grid; place-items: center; margin: 0 auto 6px; }
.cc-empty-h { font-family: var(--f-display); font-size: 22px; color: #F2EFE8; margin: 0; letter-spacing: -0.02em; font-weight: 600; }
.cc-empty-p { font-size: 13px; color: #8A8580; line-height: 1.55; margin: 0; }

.cc-msg { display: grid; grid-template-columns: 28px 1fr; gap: 12px; margin-bottom: 16px; align-items: start; }
.cc-avatar { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; font-family: var(--f-mono); font-size: 12px; font-weight: 600; }
.cc-avatar-user { background: #3A3835; color: #F2EFE8; }
.cc-avatar-claude { background: rgba(217,119,87,0.14); border: 1px solid rgba(217,119,87,0.3); }
.cc-bubble { background: #262422; border: 1px solid #2F2D2B; border-radius: 10px; padding: 12px 14px; color: #E8E4DD; font-size: 13px; line-height: 1.55; }
.cc-msg-user .cc-bubble { background: #2A2826; }
.cc-bubble p { margin: 0 0 8px; }
.cc-bubble p:last-child { margin-bottom: 0; }
.cc-bubble strong { color: #F2EFE8; }
.cc-bubble em { color: #D97757; font-style: italic; }
.cc-skill-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #D97757;
  background: rgba(217,119,87,0.1);
  border: 1px solid rgba(217,119,87,0.25);
  padding: 4px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.cc-skill-dot { width: 6px; height: 6px; border-radius: 50%; background: #D97757; animation: ccPulse 1.4s ease-in-out infinite; }
@keyframes ccPulse { 0%, 100% { opacity: 0.4; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } }
.cc-steps { display: flex; flex-direction: column; gap: 5px; margin: 10px 0 0; }
.cc-steps li { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: #C9C5BE; }
.cc-check { width: 14px; color: #6BCF7F; font-weight: 600; text-align: center; }

.cc-input { border-top: 1px solid #2B2927; padding: 12px 16px 14px; display: flex; flex-direction: column; gap: 6px; background: #1A1918; }
.cc-input-box { background: #262422; border: 1px solid #3A3835; border-radius: 10px; padding: 10px 12px; min-height: 40px; display: flex; align-items: center; }
.cc-input-placeholder { color: #6C6762; font-size: 13px; }
.cc-input-caret { display: inline-block; width: 2px; height: 14px; background: #D97757; margin-left: 4px; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.cc-input-meta { display: flex; gap: 14px; font-family: var(--f-mono); font-size: 10.5px; color: #6C6762; padding: 0 4px; }

@media (max-width: 980px) {
  .metodo-grid { grid-template-columns: 1fr; }
  .cc-body { grid-template-columns: 1fr; }
  .cc-sidebar { display: none; }
  .cc-window { aspect-ratio: 4 / 5; max-width: 520px; box-shadow: 8px 8px 0 var(--acid); }
  .metodo-steps, .metodo-window-wrap { position: static; }
}

/* ============ BANNER SCROLL ============ */
.banner-scroll {
  background: var(--acid);
  color: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  padding: 28px 0;
}
.banner-track {
  display: inline-flex;
  white-space: nowrap;
  animation: bannerScroll 30s linear infinite;
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.022em;
}
.banner-track > span { padding-right: 48px; }
.banner-track .banner-acid { font-style: italic; }
@keyframes bannerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

/* ============ CASO ============ */
.caso {
  background: var(--bone);
  padding: clamp(100px, 16vh, 220px) var(--gutter);
  text-align: center;
  border-bottom: 2px solid var(--ink);
}
.caso-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: 500;
}
.caso-title {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: clamp(112px, 22vw, 360px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: 0 0 32px;
}
.caso-sub {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 48px;
  line-height: 1.5;
}

/* ============ FREEBIE ============ */
.freebie {
  background: var(--acid);
  padding: clamp(80px, 14vh, 180px) var(--gutter);
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.freebie-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.freebie-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 600;
}
.freebie-h {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: clamp(56px, 8vw, 144px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  font-weight: 700;
}
.freebie-h em { font-style: italic; font-weight: 700; }
.freebie-sub {
  font-size: var(--fs-lead);
  color: var(--ink);
  max-width: 50ch;
  margin: 0 0 32px;
  line-height: 1.5;
}
.freebie-stack {
  display: grid;
  gap: 16px;
  position: relative;
}
.freebie-file {
  background: var(--bone);
  border: 2px solid var(--ink);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  font-family: var(--f-body);
  transition: transform 0.4s var(--ease-spring);
  cursor: default;
}
.freebie-file:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); }
.freebie-file > span { font-size: 28px; }
.freebie-file p {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
}
.freebie-file > div span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.freebie-file-1 { transform: rotate(-1.5deg); }
.freebie-file-2 { transform: rotate(0.8deg); }
.freebie-file-3 { transform: rotate(-0.5deg); }
.freebie-file-1:hover { transform: rotate(-1.5deg) translate(-4px, -4px); }
.freebie-file-2:hover { transform: rotate(0.8deg) translate(-4px, -4px); }
.freebie-file-3:hover { transform: rotate(-0.5deg) translate(-4px, -4px); }

@media (max-width: 880px) {
  .freebie-inner { grid-template-columns: 1fr; }
}

/* ============ PREZZI ============ */
.prezzi {
  padding: clamp(80px, 14vh, 180px) var(--gutter);
  border-bottom: 2px solid var(--ink);
}
.prezzi-header { max-width: 1500px; margin: 0 auto 64px; }
.prezzi-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 500;
}
.prezzi-title { font-size: var(--fs-h2); margin: 0; max-width: 14ch; line-height: 0.92; }
.prezzi-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  background: var(--bone);
}
.prezzi-card {
  padding: 36px 32px;
  border-right: 2px solid var(--ink);
  display: grid;
  gap: 14px;
  align-content: start;
  background: var(--bone);
  transition: background 0.3s, color 0.3s;
}
.prezzi-card:last-child { border-right: 0; }
.prezzi-card:hover { background: var(--ink); color: var(--bone); }
.prezzi-card:hover .prezzi-card-tag { color: var(--acid); }
.prezzi-card:hover .prezzi-card-price { color: var(--bone); }
.prezzi-card:hover .prezzi-card-price strong { color: var(--acid); }
.prezzi-card:hover .prezzi-card-desc { color: rgba(245,241,232,0.7); }
.prezzi-card:hover .prezzi-card-list { color: rgba(245,241,232,0.85); }
.prezzi-card:hover .prezzi-card-list li::before { color: var(--acid); }
.prezzi-card:hover .prezzi-strike { color: rgba(245,241,232,0.4); }
.prezzi-card-feat { background: var(--acid); }
.prezzi-card-feat:hover { background: var(--ink); }
.prezzi-card-feat:hover .prezzi-card-tag { color: var(--acid); }
.prezzi-card-feat:hover .prezzi-card-price { color: var(--bone); }
.prezzi-card-feat:hover .prezzi-card-price strong { color: var(--acid); }
.prezzi-card-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.prezzi-card-price {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 75, 'wght' 600, 'opsz' 96;
  font-size: 16px;
  letter-spacing: 0.04em;
  font-family: var(--f-mono);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
}
.prezzi-card-price strong {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.022em;
  display: inline-block;
  line-height: 1;
}
.prezzi-strike { font-family: var(--f-mono); font-size: 18px; opacity: 0.45; text-decoration: line-through; }
.prezzi-card-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 8px; }
.prezzi-card-list {
  display: grid;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  margin: 8px 0 16px;
  letter-spacing: 0.04em;
}
.prezzi-card-list li::before { content: '→ '; color: var(--ink); font-weight: 700; }
.prezzi-card .btn { margin-top: auto; }

@media (max-width: 980px) {
  .prezzi-grid { grid-template-columns: 1fr; }
  .prezzi-card { border-right: 0; border-bottom: 2px solid var(--ink); }
  .prezzi-card:last-child { border-bottom: 0; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--bone);
}
.footer-mega {
  padding: clamp(80px, 14vh, 200px) var(--gutter);
  border-bottom: 2px solid rgba(245,241,232,0.18);
}
.footer-claim {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: clamp(80px, 14vw, 280px);
  line-height: 0.86;
  letter-spacing: -0.028em;
  color: var(--bone);
  margin: 0;
  font-weight: 700;
}
.footer-claim em { font-style: italic; color: var(--acid); font-weight: 700; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 56px var(--gutter);
  border-bottom: 2px solid rgba(245,241,232,0.18);
}
.footer-col { display: grid; gap: 8px; align-content: start; }
.footer-col-head {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--acid);
  margin: 0 0 12px;
  font-weight: 600;
}
.footer-col a {
  color: rgba(245,241,232,0.7);
  font-family: var(--f-body);
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--acid); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px var(--gutter);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(245,241,232,0.4);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px 24px; }
}

/* ============ Reveal animations ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-snap), transform 0.9s var(--ease-snap);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  [data-reveal], .hero-title .word { opacity: 1 !important; transform: none !important; }
  .ticker-track, .banner-track { animation: none; }
}

/* ============ MODAL SKILL DETAIL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  pointer-events: none;
}
.modal[aria-hidden="false"] { display: block; pointer-events: auto; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-snap);
}
.modal[aria-hidden="false"] .modal-backdrop { opacity: 1; }
.modal-panel {
  position: absolute;
  top: 5%;
  bottom: 5%;
  right: 5%;
  width: min(720px, 90vw);
  background: var(--bone);
  border: 2px solid var(--ink);
  box-shadow: -16px 16px 0 var(--acid);
  overflow-y: auto;
  padding: 56px 48px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-snap);
}
.modal[aria-hidden="false"] .modal-panel { transform: translateX(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--bone);
  border: 2px solid var(--ink);
  font-family: var(--f-mono);
  font-size: 24px;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.modal-close:hover { background: var(--acid); color: var(--ink); }
.modal-content { padding-top: 8px; }
.modal-content h2 {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 92, 'wght' 700, 'opsz' 96;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  font-weight: 700;
}
.modal-content .modal-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 16px;
  font-weight: 500;
}
.modal-content .modal-price {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background: var(--acid);
  border: 2px solid var(--ink);
  margin: 16px 0 24px;
}
.modal-content h3 {
  font-family: var(--f-display);
  font-variation-settings: 'wdth' 100, 'wght' 600, 'opsz' 32;
  font-size: 20px;
  margin: 32px 0 12px;
  letter-spacing: -0.015em;
  font-weight: 600;
}
.modal-content p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 12px;
  max-width: 60ch;
}
.modal-content ul {
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.modal-content ul li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.modal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 700;
  font-family: var(--f-mono);
}
.modal-content .modal-prompt {
  background: var(--ink);
  color: var(--bone);
  padding: 20px 22px;
  margin: 16px 0 24px;
  border: 2px solid var(--ink);
  font-family: var(--f-mono);
  font-size: 13px;
  line-height: 1.55;
  font-style: italic;
}
.modal-content .modal-prompt strong {
  display: block;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--acid);
  margin-bottom: 8px;
}
.modal-content .modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bone);
  padding: 16px 28px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--ink);
  margin: 24px 0 0;
  transition: background 0.3s, color 0.3s;
}
.modal-content .modal-cta:hover { background: var(--acid); color: var(--ink); }

@media (max-width: 720px) {
  .modal-panel {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 56px 20px 0;
    box-shadow: none;
    border-left: 0;
    border-right: 0;
  }
  .modal-content h2 { font-size: 32px; }
  .modal-content h3 { font-size: 16px; margin-top: 28px; }
  .modal-content .modal-cta {
    position: sticky;
    bottom: 0;
    left: 0; right: 0;
    width: calc(100% + 40px);
    margin: 24px -20px 0;
    padding: 22px 16px calc(22px + env(safe-area-inset-bottom, 0px));
    font-size: 14px;
    justify-content: center;
    border-radius: 0;
    z-index: 5;
    background: var(--acid);
    color: var(--ink);
    border: 0;
    border-top: 2px solid var(--ink);
    box-shadow: 0 -8px 16px rgba(15,15,15,0.08);
  }
  .modal-close { width: 40px; height: 40px; top: 12px; right: 12px; }
  .modal-reels-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

body.modal-open { overflow: hidden; }
