/* ============================================
   READYRUN — STYLES
   Dark editorial sportivo
   ============================================ */

:root {
  --bg: #07070f;
  --bg-2: #0d0d18;
  --bg-3: #14141f;
  --line: #1f1f2e;
  --line-2: #2a2a3d;
  --text: #f4f0eb;
  --text-dim: #a8a8b8;
  --text-mute: #6a6a7e;
  --accent: #ff4d1c;
  --accent-2: #ff6a3d;
  --accent-glow: rgba(255, 77, 28, 0.35);
  --good: #4ade80;

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --max: 1200px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ GRAIN OVERLAY ============ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  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='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 7, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 22px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  transform: rotate(0deg);
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.logo-img--footer {
  width: 44px;
  height: 44px;
}

.nav__links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}
.nav__links a {
  position: relative;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(80px);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: 0.4;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  width: fit-content;
}
.hero__tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.accent {
  background: linear-gradient(135deg, var(--accent) 0%, #ff9566 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent);
  font-style: italic;
  padding-right: 0.15em;
  display: inline-block;
}

.hero__sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 10px 40px -10px var(--accent-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -10px var(--accent-glow);
  background: var(--accent-2);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.25s;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* MOCK CARD */
.hero__mock {
  position: relative;
}

.mock {
  background: rgba(13, 13, 24, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 26px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.2);
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s, border-color 0.4s;
  animation: floatMock 7s ease-in-out infinite;
}
.mock:hover { 
  transform: rotate(0deg) scale(1.02); 
  animation-play-state: paused;
  background: rgba(13, 13, 24, 0.8);
  border-color: rgba(255, 255, 255, 0.12);
}

@keyframes floatMock {
  0% { transform: rotate(-1.5deg) translateY(0px); }
  50% { transform: rotate(-1.5deg) translateY(-14px); }
  100% { transform: rotate(-1.5deg) translateY(0px); }
}

.mock__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.mock__date { color: var(--text-mute); }
.mock__pill {
  background: var(--accent);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}

.mock__score {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.mock__score-num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.85;
  color: var(--text);
}
.mock__score-label { flex: 1; }
.mock__score-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.mock__score-bar {
  width: 100%;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.mock__score-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  animation: fillBar 1.4s ease-out;
}
@keyframes fillBar {
  from { width: 0 !important; }
}

.mock__verdict {
  margin-bottom: 22px;
}
.mock__verdict-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.mock__verdict p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
}

.mock__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mock__metrics > div {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.mock__metrics span {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.mock__metrics b {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 1100px) {
  .hero { padding: 130px 0 80px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero__tag { order: 1; }
  .hero__title { order: 2; }
  .hero__sub { order: 3; }
  .hero__ctas { order: 4; }
  .hero__mock { order: 5; }
  .mock { transform: rotate(0deg); max-width: 420px; margin: 0 auto; }
}

/* ============ VS SECTION ============ */
.vs {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.vs__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-align: center;
  margin-bottom: 40px;
}

.vs__grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.vs__row {
  display: grid;
  grid-template-columns: 160px 30px 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.vs__row:hover {
  border-color: var(--accent);
  transform: translateX(6px);
}

.vs__name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
}
.vs__sep {
  color: var(--text-mute);
  font-family: var(--font-mono);
  text-align: center;
}
.vs__theirs {
  color: var(--text-mute);
  font-size: 15px;
  text-decoration: line-through;
  text-decoration-color: var(--text-mute);
}
.vs__ours {
  color: var(--text);
  font-size: 15px;
}
.vs__ours b {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 760px) {
  .vs__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }
  .vs__sep { display: none; }
  .vs__theirs::before { content: '✗ '; color: var(--text-mute); }
  .vs__ours::before { content: '✓ '; color: var(--accent); }
}

/* ============ SECTION HEAD ============ */
.section-head {
  margin-bottom: 70px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.section-head__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  padding-top: 14px;
  letter-spacing: 0.1em;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  flex: 1;
}

/* ============ PILLARS ============ */
.pillars { padding: 130px 0; }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.pillar:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
}
.pillar:hover::before { opacity: 1; }

/* Spotlight Effect via CSS variables */
.spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 77, 28, 0.08),
    transparent 40%
  );
  pointer-events: none;
  z-index: 10;
}
.spotlight-card:hover::after {
  opacity: 1;
}

.pillar__num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 0.005em;
}

.pillar p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.pillar__strong {
  color: var(--text) !important;
  font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 18px !important;
}

@media (max-width: 880px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillars { padding: 90px 0; }
}

/* ============ HOW / STEPS ============ */
.how {
  padding: 130px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), var(--line-2), transparent);
}

.step {
  padding: 0 16px;
  position: relative;
  text-align: center;
}

.step__n {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover .step__n {
  transform: scale(1.08);
  box-shadow: 0 0 30px var(--accent-glow);
}

.step h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.step p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .how { padding: 90px 0; }
}

/* ============ QUOTES ============ */
.quotes { padding: 130px 0; }

.quotes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
}

.q {
  padding: 38px 36px;
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  position: relative;
}
.q::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}
.q p {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0.005em;
  position: relative;
}

.q:nth-child(2), .q:nth-child(3) {
  transform: translateY(20px);
}

@media (max-width: 760px) {
  .quotes__grid { grid-template-columns: 1fr; }
  .q:nth-child(2), .q:nth-child(3) { transform: none; }
  .q p { font-size: 22px; }
  .quotes { padding: 90px 0; }
}

/* ============ FORWHOM ============ */
.forwhom {
  padding: 130px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.forwhom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.forwhom__col {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.forwhom__col--yes { border-top: 3px solid var(--accent); }
.forwhom__col--no { border-top: 3px solid var(--line-2); }

.forwhom__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-bottom: 28px;
}
.forwhom__col--yes .forwhom__title { color: var(--accent); }

.forwhom__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.forwhom__col li {
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dim);
}
.forwhom__col--yes li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}
.forwhom__col--no li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--text-mute);
  font-weight: 600;
  font-size: 22px;
}

@media (max-width: 760px) {
  .forwhom__grid { grid-template-columns: 1fr; }
  .forwhom { padding: 90px 0; }
}

/* ============ FAQ ============ */
.faq { padding: 130px 0; }

.faq__list {
  max-width: 820px;
}

.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  cursor: pointer;
}
.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item:hover summary { color: var(--accent); }

.faq__item p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 700px;
}

@media (max-width: 760px) {
  .faq__item summary { font-size: 19px; }
  .faq { padding: 90px 0; }
}

/* ============ CTA ============ */
.cta {
  padding: 140px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(100px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 28px;
}

.cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}

.cta__inner p {
  color: var(--text-dim);
  font-size: 18px;
  margin-bottom: 40px;
}

.cta__form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cta__form input {
  flex: 1;
  min-width: 240px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 16px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.cta__form input:focus { border-color: var(--accent); }
.cta__form input::placeholder { color: var(--text-mute); }

.cta__msg {
  margin-top: 20px;
  color: var(--good);
  font-size: 14px;
  min-height: 20px;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding-top: 70px;
  background: var(--bg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
}
.footer__tag {
  font-size: 12px;
  color: var(--text-mute);
  font-family: var(--font-mono);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__cols a {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__cols a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-mute);
  font-family: var(--font-mono);
}

@media (max-width: 760px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ============ ANIMAZIONI INGRESSO ============ */
.hero__tag, .hero__title, .hero__sub, .hero__ctas, .hero__mock {
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero__title { animation-delay: 0.1s; }
.hero__sub { animation-delay: 0.25s; }
.hero__ctas { animation-delay: 0.4s; }
.hero__mock { animation-delay: 0.55s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MAILERLITE EMBED OVERRIDE ============ */
.ml-form-wrapper {
  max-width: 520px;
  margin: 0 auto;
}
.ml-form-wrapper .ml-block-form,
.ml-form-wrapper .ml-form-embedBody,
.ml-form-wrapper .ml-form-embedContent {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.ml-form-wrapper .ml-form-embedContent h4,
.ml-form-wrapper .ml-form-embedContent p {
  display: none !important;
}
.ml-form-wrapper .ml-form-fieldRow {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ml-form-wrapper input[type="email"] {
  flex: 1 !important;
  min-width: 240px !important;
  background: var(--bg) !important;
  border: 1px solid var(--line-2) !important;
  color: var(--text) !important;
  padding: 16px 22px !important;
  border-radius: 999px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  box-shadow: none !important;
}
.ml-form-wrapper input[type="email"]:focus {
  border-color: var(--accent) !important;
}
.ml-form-wrapper input[type="email"]::placeholder {
  color: var(--text-mute) !important;
}
.ml-form-wrapper input[type="submit"],
.ml-form-wrapper button[type="submit"] {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border: none !important;
  padding: 16px 28px !important;
  border-radius: 999px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 10px 40px -10px var(--accent-glow) !important;
  white-space: nowrap !important;
}
.ml-form-wrapper input[type="submit"]:hover,
.ml-form-wrapper button[type="submit"]:hover {
  background: var(--accent-2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 50px -10px var(--accent-glow) !important;
}
.ml-form-wrapper .ml-form-successBody {
  background: transparent !important;
  padding: 0 !important;
  text-align: center !important;
}
.ml-form-wrapper .ml-form-successContent h4 {
  font-family: var(--font-display) !important;
  font-size: 28px !important;
  color: var(--good) !important;
  display: block !important;
}
.ml-form-wrapper .ml-form-successContent p {
  color: var(--text-dim) !important;
  font-size: 15px !important;
  display: block !important;
}
.ml-form-wrapper .ml-form-embedPermissions,
.ml-form-wrapper .ml-form-recaptcha,
.ml-form-wrapper .ml-form-checkboxRow {
  display: none !important;
}
.ml-form-wrapper .ml-field-error {
  color: #ff8a6b !important;
  font-size: 13px !important;
  margin-top: 6px !important;
}

/* ============================================
   MAILERLITE EMBED — OVERRIDE COMPLETO
   ============================================ */

/* Wrapper contenitore */
.ml-form-wrapper {
  max-width: 540px;
  margin: 0 auto;
}

/* Azzera TUTTO il contenitore MailerLite */
.ml-form-wrapper #mlb2-eYrdbl,
.ml-form-wrapper .ml-block-form,
.ml-form-wrapper .ml-form-embedWrapper,
.ml-form-wrapper .ml-form-embedBody,
.ml-form-wrapper .ml-form-embedContent,
.ml-form-wrapper .ml-form-formContent,
.ml-form-wrapper form {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Nascondi titolo, sottotitolo, immagine di MailerLite */
.ml-form-wrapper .ml-form-embedContent h4,
.ml-form-wrapper .ml-form-embedContent h3,
.ml-form-wrapper .ml-form-embedContent p,
.ml-form-wrapper .ml-form-embedContent img,
.ml-form-wrapper .ml-form-embedHeader,
.ml-form-wrapper .ml-form-image {
  display: none !important;
}

/* Riga con input + bottone in flex orizzontale */
.ml-form-wrapper .ml-form-fieldRow,
.ml-form-wrapper .ml-field-group {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
  align-items: center !important;
}

/* Input email */
.ml-form-wrapper input[type="email"],
.ml-form-wrapper input[type="text"] {
  flex: 1 1 240px !important;
  background: var(--bg) !important;
  background-color: var(--bg) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  padding: 16px 22px !important;
  border-radius: 999px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  height: auto !important;
  line-height: 1.5 !important;
}

.ml-form-wrapper input[type="email"]:focus,
.ml-form-wrapper input[type="text"]:focus {
  border-color: #ff4d1c !important;
  outline: none !important;
  box-shadow: none !important;
}

.ml-form-wrapper input[type="email"]::placeholder,
.ml-form-wrapper input[type="text"]::placeholder {
  color: rgba(255,255,255,0.35) !important;
}

/* Bottone submit */
.ml-form-wrapper input[type="submit"],
.ml-form-wrapper button[type="submit"],
.ml-form-wrapper .ml-form-embedSubmit button,
.ml-form-wrapper .ml-form-embedSubmit input {
  flex: 0 0 auto !important;
  background: #ff4d1c !important;
  background-color: #ff4d1c !important;
  color: #07070f !important;
  border: none !important;
  padding: 16px 28px !important;
  border-radius: 999px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 10px 40px -10px rgba(255,77,28,0.5) !important;
  white-space: nowrap !important;
  height: auto !important;
  line-height: 1.5 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  width: auto !important;
}

.ml-form-wrapper input[type="submit"]:hover,
.ml-form-wrapper button[type="submit"]:hover,
.ml-form-wrapper .ml-form-embedSubmit button:hover {
  background: #ff6a3d !important;
  background-color: #ff6a3d !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 50px -10px rgba(255,77,28,0.6) !important;
}

/* Messaggio successo */
.ml-form-wrapper .ml-form-successBody,
.ml-form-wrapper .ml-form-successContent {
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  text-align: center !important;
}

.ml-form-wrapper .ml-form-successContent h4 {
  display: block !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 28px !important;
  color: #4ade80 !important;
  margin-bottom: 8px !important;
}

.ml-form-wrapper .ml-form-successContent p {
  display: block !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 15px !important;
}

/* Nascondi elementi inutili */
.ml-form-wrapper .ml-form-checkboxRow,
.ml-form-wrapper .ml-form-embedPermissions,
.ml-form-wrapper .ml-form-recaptcha,
.ml-form-wrapper .ml-error-container,
.ml-form-wrapper .ml-form-embedFooter,
.ml-form-wrapper [class*="poweredBy"],
.ml-form-wrapper [class*="branding"] {
  display: none !important;
}

/* Errori validazione */
.ml-form-wrapper .ml-field-error,
.ml-form-wrapper .ml-error {
  color: #ff8a6b !important;
  font-size: 13px !important;
  margin-top: 6px !important;
  background: transparent !important;
}
