/* ============================================================
   REP'D MERCHANDISE — LANDING PAGE STYLES (v2)
   ============================================================ */

:root {
  --green: #00e87a;
  --green-dark: #00c468;
  --green-glow: rgba(0,232,122,0.14);
  --green-dim: rgba(0,232,122,0.06);
  --black: #080809;
  --dark:  #0e0e10;
  --dark-2: #141416;
  --dark-3: #1a1a1d;
  --dark-4: #202024;
  --border: rgba(255,255,255,0.06);
  --border-mid: rgba(255,255,255,0.10);
  --border-hi: rgba(255,255,255,0.16);
  --text: #efefef;
  --text-muted: #888896;
  --text-dim: #50505e;
  --font: 'Inter', sans-serif;
  --r: 12px;
  --r-lg: 20px;
  --ease: cubic-bezier(0.22,1,0.36,1);
  --t: 0.24s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.text-green  { color: var(--green); }

/* ---- TYPE ---- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-label.text-center { display: block; }

.section-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.026em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 56px;
}
.section-sub.text-center { margin-left: auto; margin-right: auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--green-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--text); }

.btn-arrow { transition: transform var(--t); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8,8,9,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-img { height: 40px; width: auto; }
.nav-logo-text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--green) !important;
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px;
}
.nav-cta:hover { background: var(--green-dark) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}
.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 18px; }
.nav-mobile a { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.nav-mobile a:hover { color: var(--green); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-canvas { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 40% 50%, black 20%, transparent 80%);
}

.hero-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -14deg,
    transparent 0, transparent 36px,
    rgba(0,232,122,0.03) 36px, rgba(0,232,122,0.03) 37px,
    transparent 37px, transparent 80px,
    rgba(255,255,255,0.015) 80px, rgba(255,255,255,0.015) 81px
  );
}

.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow--1 {
  top: -10%; right: -5%;
  width: 650px; height: 550px;
  background: radial-gradient(ellipse, rgba(0,232,122,0.1) 0%, transparent 65%);
}
.hero-glow--2 {
  bottom: -15%; left: -5%;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,232,122,0.05) 0%, transparent 65%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}

.hero-logo-wrap { margin-bottom: 36px; }
.hero-logo { height: 64px; width: auto; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  padding: 7px 16px;
  border: 1px solid rgba(0,232,122,0.25);
  border-radius: 100px;
  background: rgba(0,232,122,0.05);
  margin-bottom: 22px;
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pillPulse 2s ease-in-out infinite;
}
@keyframes pillPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.6); }
}

.hero-headline {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.038em;
  margin-bottom: 10px;
}
.hero-hl-green { color: var(--green); }

.hero-sub-large {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

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

/* ---- STORE MOCKUP ---- */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-store-mockup {
  width: 100%;
  max-width: 420px;
  background: var(--dark-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,232,122,0.08);
}

.store-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
}
.store-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.store-dot--red   { background: #ff5f57; }
.store-dot--amber { background: #ffbd2e; }
.store-dot--green { background: #28ca41; }
.store-url {
  font-size: 11px;
  color: var(--text-dim);
  margin-left: 10px;
  font-family: monospace;
  letter-spacing: 0.02em;
}

.store-body { padding: 0 }

.store-hero-bar {
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, rgba(0,232,122,0.08) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.store-brand-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text);
}
.store-hero-sub {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-products {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
}
.store-product {
  background: var(--dark-2);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background var(--t);
}
.store-product:hover { background: var(--dark-3); }

.store-product-img {
  font-size: 28px;
  width: 52px; height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-1 { background: rgba(0,232,122,0.07); }
.sp-2 { background: rgba(255,255,255,0.04); }
.sp-3 { background: rgba(255,180,0,0.07); }

.store-product-name { font-size: 10px; font-weight: 600; color: var(--text-muted); text-align: center; }
.store-product-price { font-size: 12px; font-weight: 700; color: var(--text); }

.store-product-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 100px;
}
.sold  { background: rgba(255,80,80,0.12); color: #ff6060; }
.live  { background: rgba(0,232,122,0.12); color: var(--green); }
.few   { background: rgba(255,180,0,0.12); color: #ffb400; }

.store-stats-row {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  gap: 0;
}
.store-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.store-stat-sep {
  width: 1px; height: 36px;
  background: var(--border-mid);
  margin: 0 20px;
  flex-shrink: 0;
}
.ss-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ss-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   WHY MERCH
   ============================================================ */
.why-merch {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.why-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.why-intro {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.why-fails {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.why-fail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 14px 20px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all var(--t);
}
.why-fail:hover { border-color: var(--border-hi); transform: translateX(4px); }

.fail-x {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,70,70,0.1);
  color: #ff5050;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-shift {
  padding: 24px 28px;
  background: rgba(0,232,122,0.04);
  border: 1px solid rgba(0,232,122,0.18);
  border-radius: var(--r);
}
.why-shift-headline {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-shift p:last-child {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   WHO WE WORK WITH
   ============================================================ */
.who-we-work-with {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

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

.audience-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all 0.3s var(--ease);
}
.audience-card:hover {
  border-color: rgba(0,232,122,0.25);
  background: rgba(0,232,122,0.03);
  transform: translateY(-4px);
}
.audience-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.audience-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.audience-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 22px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s var(--ease);
}
.step-card:hover {
  border-color: rgba(0,232,122,0.3);
  background: rgba(0,232,122,0.03);
  transform: translateY(-4px);
}

.step-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { font-size: 32px; margin: 16px 0 14px; display: block; }
.step-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.step-card strong { color: var(--text); }

/* ============================================================
   WHAT YOU GET
   ============================================================ */
.what-you-get {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.deliverable-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 20px;
  transition: all 0.3s var(--ease);
}
.deliverable-card:hover {
  border-color: rgba(0,232,122,0.25);
  background: rgba(0,232,122,0.03);
  transform: translateY(-3px);
}
.del-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.deliverable-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.deliverable-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   THE MODEL
   ============================================================ */
.model {
  padding: 130px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.model-bg { position: absolute; inset: 0; pointer-events: none; }
.model-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -14deg,
    transparent 0, transparent 44px,
    rgba(0,232,122,0.025) 44px, rgba(0,232,122,0.025) 45px
  );
}
.model-glow {
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,232,122,0.07) 0%, transparent 65%);
}

.model-inner { position: relative; z-index: 2; }
.model .section-sub { margin-left: auto; margin-right: auto; }

.model-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.model-col {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.model-col:hover:not(.model-col--featured) {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}

.model-col--featured {
  background: var(--dark-3);
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 28px 72px rgba(0,232,122,0.1);
  transform: translateY(-12px);
}

.model-col-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.model-col-top { margin-bottom: 28px; }

.model-col-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.model-col-num--green { color: var(--green); }

.model-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.model-col-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.model-col-list { margin-bottom: 28px; }

.model-col-list-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.model-col-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.model-col-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.tick {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}
.tick--em { color: var(--green); font-weight: 800; }

.cross {
  color: #ff5050;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 11px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,70,70,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.faq-inner { max-width: 760px; }
.faq .section-title { margin-bottom: 8px; }
.faq .section-sub { margin-bottom: 40px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  transition: color var(--t);
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  transition: color var(--t);
}
.faq-q[aria-expanded="true"] { color: var(--green); }
.faq-q[aria-expanded="true"]::after { content: '−'; color: var(--green); }

.faq-a { display: none; padding-bottom: 22px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--dark);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.final-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.fcta-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -14deg,
    transparent 0, transparent 38px,
    rgba(0,232,122,0.025) 38px, rgba(0,232,122,0.025) 39px
  );
}
.fcta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,232,122,0.07) 0%, transparent 65%);
}

.final-cta .container { position: relative; z-index: 2; }

/* Banner strip CTA */
.final-cta-block { padding: 72px 0; }
.final-cta-block + .final-cta-block { border-top: 1px solid var(--border); }

.final-cta-block--apply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.final-cta-left { max-width: 580px; }
.final-cta-headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.final-cta-left p {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Big centred CTA */
.final-cta-block--big {
  text-align: center;
  padding: 100px 0 80px;
}
.final-logo-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.final-logo { height: 52px; width: auto; opacity: 0.85; }

.final-big-headline {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.final-big-sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 52px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo img {
  height: 36px; width: auto;
  opacity: 0.6;
  transition: opacity var(--t);
  margin: 0 auto;
}
.footer-logo:hover img { opacity: 1; }
.footer-tagline { font-size: 13px; color: var(--text-dim); }
.footer-email {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-email:hover { color: var(--green); }
.footer-contact { display: flex; align-items: center; gap: 20px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--text-muted); }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { justify-content: flex-start; }
  .hero-store-mockup { max-width: 100%; }

  .why-inner { grid-template-columns: 1fr; gap: 40px; }

  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .model-cols { grid-template-columns: 1fr; }
  .model-col--featured { transform: none; }
}

@media (max-width: 900px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 18px; }
  .nav-links li:nth-child(-n+2) { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

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

  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .final-cta-block--apply {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .section-title { font-size: clamp(28px, 7vw, 42px); }
  .final-big-headline { font-size: clamp(32px, 8vw, 52px); }
}

@media (max-width: 520px) {
  .audience-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .store-products { grid-template-columns: repeat(3,1fr); }
  .hero-store-mockup { display: none; }
}
