/* ═══════════════════════════════════════════════════════════
   LURE Landing Page — styles
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0f;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --teal:        #00c8b4;
  --teal-dim:    rgba(0,200,180,0.12);
  --teal-glow:   rgba(0,200,180,0.28);
  --teal-border: rgba(0,200,180,0.22);
  --bg:          #0a0a0f;
  --bg-card:     #0d1520;
  --bg-dark:     #060a10;
  --border:      #1a2a3a;
  --text:        #ffffff;
  --muted:       #778899;
  --faint:       #3a4a5a;
  --r:           12px;
  --r-sm:        8px;
  --trans:       0.2s ease;
}

/* ── Typography helpers ─────────────────────────────────────── */
h1, h2, h3 { line-height: 1.2; font-weight: 700; }

code {
  font-family: 'Courier New', monospace;
  font-size: 0.82em;
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 5px;
}

kbd {
  font-family: 'Courier New', monospace;
  font-size: 0.78em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  padding: 2px 7px;
  border-radius: 4px;
  color: #aabbcc;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section--alt { background: rgba(13,21,32,0.55); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary { background: var(--teal); color: #000; }
.btn-primary:hover {
  background: #00e0cb;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--teal-glow);
}

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

.btn-discord { background: #5865f2; color: #fff; }
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }

.btn-lg  { padding: 14px 30px; font-size: 0.97rem; border-radius: var(--r); }
.btn-sm  { padding: 8px 16px; font-size: 0.8rem; }
.btn-full { width: 100%; }

.btn-pulse { animation: pulse-anim 3s ease-in-out infinite; }
@keyframes pulse-anim {
  0%, 100% { box-shadow: 0 0 0 0 var(--teal-glow); }
  50%       { box-shadow: 0 0 0 10px transparent; }
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 0.3s, background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo .dot { color: var(--teal); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
  flex: 1;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Mobile-only items inside nav-links */
.nav-mobile-sep { display: none; width: 100%; height: 1px; background: var(--border); }
.nav-mobile-btn { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(0,200,180,0.07) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,42,58,0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,42,58,0.25) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.03;
  margin-bottom: 22px;
  background: linear-gradient(160deg, #ffffff 0%, #9ab8cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 590px;
  margin: 0 auto 12px;
  line-height: 1.75;
}
.hero-note {
  font-size: 0.85rem;
  color: #556677;
  margin-bottom: 38px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* ── Fishing bar card (hero) ────────────────────────────────── */
.fbar-card {
  max-width: 560px;
  margin: 0 auto 40px;
  background: #060d15;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.fbar-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.fbar-card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.fbar-card-dot.red    { background: #ff5f57; }
.fbar-card-dot.yellow { background: #febc2e; }
.fbar-card-dot.green  { background: #28c840; }
.fbar-card-title {
  font-size: 0.75rem;
  color: var(--faint);
  margin-left: 6px;
  letter-spacing: 0.3px;
}
.fbar-card-body { padding: 16px 20px 18px; }

.fbar-stat-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
  font-size: 0.78rem;
}
.fbar-stat { color: var(--muted); }
.fbar-stat-num { color: var(--teal); font-weight: 700; font-variant-numeric: tabular-nums; }
.fbar-stat-status {
  margin-left: auto;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  min-width: 90px;
  text-align: right;
}
.fbar-stat-status.catching { color: var(--teal); }

/* Fishing track (shared between hero and compat) */
.fbar-track {
  position: relative;
  height: 26px;
  background: #0d1825;
  border-radius: 13px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 10px;
}
.fbar-zone {
  position: absolute;
  top: 0; bottom: 0;
  left: 38%; width: 22%;
  background: rgba(0,200,180,0.15);
  border-left:  2px solid rgba(0,200,180,0.5);
  border-right: 2px solid rgba(0,200,180,0.5);
  transition: background 0.08s;
}
.fbar-zone.lit { background: rgba(0,200,180,0.35); }

.fbar-float {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #7a9ab0;
  left: 5%;
  box-shadow: 0 0 6px rgba(122,154,176,0.35);
  transition: background 0.1s, box-shadow 0.1s;
  will-change: left;
}
.fbar-float.in-zone {
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal-glow);
}

.fbar-flash {
  position: absolute;
  inset: 0;
  background: rgba(0,200,180,0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.06s;
}
.fbar-flash.active { opacity: 1; }

.fbar-footer-row {
  display: flex;
  align-items: center;
  font-size: 0.72rem;
  color: var(--faint);
}
.fbar-frame-label  { font-variant-numeric: tabular-nums; }
.fbar-confirm-label { margin-left: 16px; color: var(--teal); font-weight: 600; }
.fbar-key-label    { margin-left: auto; color: #2a3a4a; }

/* ── Trust badges ───────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.badge {
  padding: 5px 13px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.76rem;
  color: var(--muted);
}

/* ── Section headers ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Features grid ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-border);
  box-shadow: 0 10px 40px rgba(0,200,180,0.07);
}

.feature-card--accent {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(130deg, rgba(0,200,180,0.055) 0%, var(--bg-card) 55%);
  border-color: var(--teal-border);
}
.feature-card--accent .feature-icon { font-size: 2.6rem; flex-shrink: 0; margin-bottom: 0; }
.feature-card--accent h3 { font-size: 1.05rem; }
.feature-card-accent-text { flex: 1; }

.feature-icon {
  font-size: 1.9rem;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.feature-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 9px; }
.feature-card p  { font-size: 0.86rem; color: var(--muted); line-height: 1.68; }

/* ── Steps (How it works) ───────────────────────────────────── */
.steps-list {
  max-width: 740px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: rgba(0,200,180,0.18);
  line-height: 1.1;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}

.step-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step-body p  { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }
.step-body code { display: inline-block; margin-top: 7px; }

.step-btn { align-self: center; flex-shrink: 0; }

.hotkeys-bar {
  max-width: 740px;
  margin: 36px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.hotkeys-label { font-size: 0.78rem; color: var(--muted); margin-right: 6px; flex-shrink: 0; }
.hotkeys-keys  { display: flex; gap: 16px; flex-wrap: wrap; flex: 1; }
.hk { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--muted); }
.hotkeys-note  { font-size: 0.74rem; color: var(--faint); margin-left: auto; }

/* ── Calibration ────────────────────────────────────────────── */
.cal-grid {
  max-width: 740px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.25s ease, border-color 0.25s;
}
.cal-card:hover { transform: translateY(-3px); border-color: var(--teal-border); }

.cal-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.22;
  line-height: 1;
  flex-shrink: 0;
  width: 38px;
}
.cal-body h3 { font-size: 0.94rem; font-weight: 700; margin-bottom: 7px; }
.cal-body p  { font-size: 0.84rem; color: var(--muted); line-height: 1.62; }
.cal-body code { display: inline-block; margin-top: 7px; }

.c-green   { color: #00e87c; font-weight: 600; }
.c-red     { color: #ff4a6b; font-weight: 600; }
.c-primary { color: var(--teal); font-weight: 600; }

.cal-note {
  max-width: 740px;
  margin: 24px auto 0;
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
  border-radius: var(--r-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.cal-note svg { color: var(--teal); flex-shrink: 0; }

/* ── Compatibility ──────────────────────────────────────────── */
.compat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.compat-lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.compat-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.compat-checks li { display: flex; gap: 12px; font-size: 0.88rem; color: var(--muted); }
.ck { color: var(--teal); flex-shrink: 0; font-weight: 700; }

.compat-discord { font-size: 0.87rem; color: var(--muted); }
.compat-discord a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

.compat-demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}
.compat-demo-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.compat-demo-status {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 600;
  min-height: 1.4em;
}
.compat-demo-status.catching { color: var(--teal); }
.compat-demo-note {
  font-size: 0.74rem;
  color: var(--faint);
  margin-top: 10px;
  text-align: center;
}

/* Compat bar needs slightly smaller float */
#compat-track .fbar-float { width: 14px; height: 14px; }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-border);
  box-shadow: 0 12px 40px rgba(0,200,180,0.07);
}
.pricing-card--featured {
  border-color: var(--teal);
  background: linear-gradient(145deg, rgba(0,200,180,0.06) 0%, var(--bg-card) 50%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #000;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-head { margin-bottom: 22px; }
.pricing-head h3 { font-size: 0.9rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.pricing-price {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-period { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-list li {
  font-size: 0.86rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.pricing-equiv {
  font-size: 0.74rem;
  color: rgba(0,200,180,0.55);
  text-align: center;
  margin-top: 10px;
}

.pricing-footer {
  text-align: center;
  margin-top: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-footer p { font-size: 0.84rem; color: var(--muted); margin-bottom: 8px; }
.pricing-lock { font-size: 0.78rem !important; color: var(--faint) !important; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: var(--teal-border); }

.faq-q {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  transition: color var(--trans);
}
.faq-q:hover { color: var(--teal); }

.faq-arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.32s ease, color var(--trans);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--teal); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-a p {
  padding: 0 22px 18px;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section { position: relative; text-align: center; overflow: hidden; }
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(0,200,180,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; }
.cta-content h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.cta-content > p {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.72;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-micro {
  font-size: 0.78rem !important;
  color: var(--faint) !important;
  margin: 0 auto !important;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo { font-size: 1.45rem; font-weight: 900; margin-bottom: 5px; }
.footer-logo .dot { color: var(--teal); }
.footer-brand p { font-size: 0.8rem; color: var(--muted); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  font-size: 0.84rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--teal); }

.footer-discord-btn { align-self: start; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-disclaimer { color: var(--faint) !important; }

/* ── Fade-in animations ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ══════════════════════════════════════════════════ RESPONSIVE */

@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--accent { grid-column: span 2; }
}

@media (max-width: 900px) {
  .compat-layout { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav mobile */
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    inset: 60px 0 0 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 32px 24px 40px;
    gap: 6px;
    z-index: 998;
    overflow-y: auto;
  }
  .nav-links.open a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    padding: 10px 0;
    display: block;
    width: 100%;
  }
  .nav-mobile-sep { display: block; margin: 12px 0; }
  .nav-mobile-btn {
    display: block;
    width: 100%;
    margin-top: 4px;
  }
  .nav-mobile-btn .btn { width: 100%; justify-content: center; padding: 13px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--accent { grid-column: span 1; flex-direction: column; }
  .feature-card--accent .feature-icon { margin-bottom: 12px; }

  /* Steps */
  .step { grid-template-columns: 48px 1fr; }
  .step-btn { display: none; }

  /* Calibration */
  .cal-grid { grid-template-columns: 1fr; }

  /* Hotkeys */
  .hotkeys-note { display: none; }
  .hotkeys-bar  { gap: 8px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-nav  { flex-direction: row; flex-wrap: wrap; gap: 10px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }
  .trust-badges .badge { font-size: 0.7rem; }
  .fbar-card-title { display: none; }
}
