/* ============================================
   Lalo Rally — Informational Page
   Bold palette: Electric Orange + Violet + Yellow
   ============================================ */

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

:root {
  /* Bold core palette */
  --bg: #0b0b12;
  --bg-elevated: #131320;
  --bg-card: #181826;
  --bg-card-hover: #20203030;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);

  --text-primary: #f5f5f7;
  --text-secondary: #9c9caa;
  --text-muted: #6b6b7a;

  /* Bold accents */
  --orange: #ff5a1f;
  --orange-light: #ff7849;
  --orange-glow: rgba(255, 90, 31, 0.35);

  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --violet-glow: rgba(124, 58, 237, 0.35);

  --yellow: #facc15;
  --yellow-light: #fde047;

  --green: #22c55e;

  --accent: var(--orange);
  --accent-light: var(--orange-light);
  --accent-glow: var(--orange-glow);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --container: 1180px;
  --section-gap: 120px;
  --radius: 14px;
  --radius-lg: 24px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* --- Utility --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(120deg, var(--orange) 0%, var(--yellow) 50%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: var(--section-gap) 0; position: relative; }

.section__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  padding: 6px 12px;
  background: rgba(255, 90, 31, 0.08);
  border: 1px solid rgba(255, 90, 31, 0.25);
  border-radius: 999px;
}

.section__title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 56px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 1rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff7027 100%);
  color: #fff;
  box-shadow: 0 8px 32px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.18); }

.btn--secondary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 8px 32px var(--violet-glow), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--secondary:hover { transform: translateY(-2px); background: var(--violet-light); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-light); background: rgba(255, 90, 31, 0.06); }

/* --- Header / Nav --- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: var(--transition); }
.header--scrolled {
  background: rgba(11, 11, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; z-index: 101; letter-spacing: -0.01em; }
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 10px;
  font-weight: 800; font-size: 1.05rem; color: #1a0a00;
  box-shadow: 0 4px 16px var(--orange-glow);
}
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link { font-size: 0.94rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.nav__link:hover { color: var(--text-primary); }
.nav__link--cta {
  padding: 9px 18px;
  background: var(--orange);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--orange-glow);
}
.nav__link--cta:hover { background: var(--orange-light); transform: translateY(-1px); }

.nav__toggle { display: none; background: transparent; border: none; padding: 8px; flex-direction: column; gap: 5px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); }
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================ HERO ============================================ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: float 14s ease-in-out infinite;
}
.hero__blob--1 { width: 480px; height: 480px; background: var(--orange); top: -120px; right: -120px; }
.hero__blob--2 { width: 420px; height: 420px; background: var(--violet); bottom: -120px; left: -100px; animation-delay: -7s; }
@keyframes float { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(40px, -30px); } }

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange-light);
  background: rgba(255, 90, 31, 0.1);
  border: 1px solid rgba(255, 90, 31, 0.3);
  border-radius: 999px;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.18rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.55;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero__trust-item { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust-item svg { color: var(--orange); }

/* --- Hero Phone --- */
.hero__right { display: flex; justify-content: center; }

.phone-mock {
  position: relative;
  width: 320px;
  background: linear-gradient(180deg, #1a1a2a, #0e0e18);
  border-radius: 38px;
  padding: 14px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform: rotate(-3deg);
}
.phone-mock--lg { width: 360px; transform: rotate(0); }

.phone-mock__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-mock__screen {
  background: #0a0a12;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 540px;
}
.phone-mock__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 36px 16px 12px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #14141e, #0a0a12);
}
.phone-mock__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #1a0a00; font-size: 0.95rem;
  box-shadow: 0 0 12px var(--orange-glow);
}
.phone-mock__name { font-weight: 700; font-size: 0.92rem; }
.phone-mock__status { font-size: 0.72rem; color: var(--text-muted); }

.phone-mock__body {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.phone-mock__body::-webkit-scrollbar { width: 0; }

.bubble {
  max-width: 78%;
  padding: 9px 13px;
  font-size: 0.86rem;
  line-height: 1.4;
  border-radius: 16px;
  word-wrap: break-word;
  animation: bubble-in 0.35s ease-out;
}
@keyframes bubble-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.bubble--in {
  align-self: flex-start;
  background: #1c1c2a;
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}
.bubble--out {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--orange), #ff7027);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.bubble--meta {
  align-self: center;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--violet-light);
  font-size: 0.74rem;
  font-family: var(--font-mono);
  padding: 6px 10px;
  border-radius: 8px;
}

.phone-mock__input {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--border);
  background: #0a0a12;
}
.phone-mock__input input {
  flex: 1;
  background: #1c1c2a;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.86rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.phone-mock__input input:focus { border-color: var(--orange); }
.phone-mock__input button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--orange-glow);
}
.phone-mock__input button:hover { transform: scale(1.06); background: var(--orange-light); }

/* ============================================ WHAT ============================================ */
.value-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.value-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 90, 31, 0.06) 100%);
  opacity: 0;
  transition: var(--transition);
}
.value-tile:hover { border-color: rgba(255, 90, 31, 0.4); transform: translateY(-4px); }
.value-tile:hover::before { opacity: 1; }
.value-tile__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.18), rgba(124, 58, 237, 0.15));
  border: 1px solid rgba(255, 90, 31, 0.28);
  color: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-tile h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.015em; }
.value-tile p { color: var(--text-secondary); font-size: 0.94rem; line-height: 1.5; }

/* ============================================ FEATURES ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature--full { grid-column: 1 / -1; }

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.feature:hover { border-color: var(--border-hover); }
.feature[open] { border-color: rgba(255, 90, 31, 0.35); background: linear-gradient(180deg, var(--bg-card), #1d1428); }

.feature__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.feature__summary::-webkit-details-marker { display: none; }
.feature__summary h3 { flex: 1; font-size: 1.15rem; font-weight: 700; letter-spacing: -0.015em; }
.feature__chev {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: var(--transition);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.feature[open] .feature__chev { transform: rotate(45deg); color: var(--orange); border-color: var(--orange); }

.feature__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature__icon--orange { background: rgba(255, 90, 31, 0.14); color: var(--orange-light); border: 1px solid rgba(255, 90, 31, 0.3); }
.feature__icon--violet { background: rgba(124, 58, 237, 0.14); color: var(--violet-light); border: 1px solid rgba(124, 58, 237, 0.3); }
.feature__icon--yellow { background: rgba(250, 204, 21, 0.12); color: var(--yellow); border: 1px solid rgba(250, 204, 21, 0.3); }

.feature__list {
  padding: 0 26px 24px 86px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.5;
}
.feature__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.feature__list li em { color: var(--text-primary); font-style: normal; font-weight: 600; padding: 1px 6px; background: rgba(255, 90, 31, 0.08); border-radius: 4px; }

/* ============================================ HOW ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  counter-reset: step;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.step:hover { border-color: var(--orange); transform: translateY(-3px); }
.step__num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255, 90, 31, 0.1);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.015em; }
.step p { color: var(--text-secondary); font-size: 0.94rem; }
.step p em { color: var(--orange-light); font-style: normal; font-weight: 600; }

/* ============================================ DEMO ============================================ */
.demo { background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04), transparent); }
.demo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.demo__intro { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 24px; max-width: 500px; }

.demo__suggestions { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.chip:hover { background: rgba(255, 90, 31, 0.1); border-color: var(--orange); color: var(--orange-light); }

.demo__phone { display: flex; justify-content: center; }

/* ============================================ USE CASES ============================================ */
.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.use-case {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  text-align: center;
}
.use-case:hover { border-color: var(--orange); transform: translateY(-3px); background: linear-gradient(180deg, var(--bg-card), #1c1419); }
.use-case__icon { font-size: 2.4rem; margin-bottom: 14px; line-height: 1; }
.use-case h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.use-case p { color: var(--text-secondary); font-size: 0.9rem; }

/* ============================================ DIFFERENTIATION ============================================ */
.diff__table {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.diff__row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  border-bottom: 1px solid var(--border);
}
.diff__row:last-child { border-bottom: none; }
.diff__row > div {
  padding: 18px 24px;
  font-size: 0.96rem;
  display: flex;
  align-items: center;
}
.diff__row > div:not(:last-child) { border-right: 1px solid var(--border); }
.diff__row--head > div {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
}
.diff__row--head .diff__rally { color: var(--orange); }
.diff__row > div:nth-child(1) { font-weight: 600; color: var(--text-primary); }
.diff__row > div:nth-child(2) { color: var(--text-muted); }
.diff__rally {
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.06), rgba(124, 58, 237, 0.04));
  color: var(--text-primary) !important;
  font-weight: 600;
  position: relative;
}

/* ============================================ FUTURE ============================================ */
.future__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.future__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.future__item:hover { border-color: var(--violet); transform: translateY(-3px); }
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet-light);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 6px;
  margin-bottom: 14px;
}
.future__item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.015em; }
.future__item p { color: var(--text-secondary); font-size: 0.94rem; }

/* ============================================ CTA ============================================ */
.cta__card {
  background:
    radial-gradient(ellipse at top left, rgba(255, 90, 31, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(124, 58, 237, 0.18), transparent 60%),
    linear-gradient(180deg, #181828, #0f0f1a);
  border: 1px solid rgba(255, 90, 31, 0.35);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}
.cta__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}
.cta__sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 36px;
  position: relative;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative;
}

/* ============================================ FOOTER ============================================ */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(255, 90, 31, 0.03));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer__tagline { color: var(--text-secondary); margin-top: 14px; font-size: 0.94rem; max-width: 280px; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--text-secondary); font-size: 0.94rem; transition: var(--transition); }
.footer__col a:hover { color: var(--orange-light); }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.86rem;
}
.footer__domain { font-family: var(--font-mono); }

/* ============================================ ANIMATIONS ============================================ */
.animate-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-in[data-delay="1"] { animation-delay: 0.1s; }
.animate-in[data-delay="2"] { animation-delay: 0.2s; }
.animate-in[data-delay="3"] { animation-delay: 0.3s; }
.animate-in[data-delay="4"] { animation-delay: 0.4s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll[data-delay="1"] { transition-delay: 0.08s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.16s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.24s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.32s; }
.animate-on-scroll[data-delay="5"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="6"] { transition-delay: 0.48s; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 960px) {
  :root { --section-gap: 90px; }
  .hero { padding: 130px 0 80px; min-height: auto; }
  .hero__content { grid-template-columns: 1fr; gap: 50px; }
  .hero__right { order: 2; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature--full { grid-column: 1; }
  .steps { grid-template-columns: 1fr; }
  .demo__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .diff__row { grid-template-columns: 1fr; }
  .diff__row > div { border-right: none !important; border-bottom: 1px solid var(--border); }
  .diff__row > div:last-child { border-bottom: none; }
  .diff__row--head { display: none; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(11, 11, 18, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav__links.active { transform: translateX(0); }
  .nav__link { font-size: 1.2rem; }
}

@media (max-width: 600px) {
  :root { --section-gap: 70px; }
  .container { padding: 0 18px; }
  .cta__card { padding: 48px 24px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .feature__list { padding-left: 26px; }
  .phone-mock { width: 100%; max-width: 320px; transform: rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
