/* ============================================================
   Learnillion — Landing page styles
   Blinkist-inspired hero + animated feature sections.
   Requires catalog.css (for site nav + CSS vars).
   ============================================================ */

/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, var(--l-bg) 0%, #fefdfa 60%, var(--l-bg) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%; left: 30%; right: -10%; bottom: 0;
  background:
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(3, 101, 242, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 90% 70%, rgba(232, 185, 72, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--l-accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px;
  background: var(--l-accent); border-radius: 50%;
  animation: hero-pulse 2s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--l-ink);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--l-accent);
  font-weight: 500;
}
.hero-accent {
  position: relative;
  white-space: nowrap;
}
.hero-accent::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 12px;
  background: rgba(232, 185, 72, 0.45);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--l-ink-dim);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  background: var(--l-ink);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--l-ink);
}
.btn-primary:hover {
  background: var(--l-accent);
  border-color: var(--l-accent);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 101, 242, 0.25);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: transparent;
  color: var(--l-ink);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--l-border);
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--l-ink);
  text-decoration: none;
}

.hero-stats {
  display: flex; gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--l-border);
}
.hero-stat-num {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: var(--l-ink);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--l-ink-soft);
  font-weight: 600;
  margin-top: 6px;
}

/* ============ HERO PHONE MOCKUP ============ */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 560px;
}
.hero-phone {
  width: 290px;
  height: 580px;
  background: #0c0a09;
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 50px 100px -20px rgba(15, 23, 42, 0.25),
    0 0 0 2px rgba(255, 255, 255, 0.6),
    0 0 0 8px #1a1d29;
  animation: hero-phone-float 6s ease-in-out infinite;
}
@keyframes hero-phone-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}
.hero-phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #0c0a09;
  border-radius: 20px;
  z-index: 2;
}
.hero-phone-screen {
  background: var(--l-bg);
  border-radius: 34px;
  width: 100%; height: 100%;
  padding: 44px 20px 20px;
  overflow: hidden;
  position: relative;
}
.hero-phone-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  padding: 0 8px;
}
.hero-phone-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 700;
  color: var(--l-ink);
}
.hero-phone-dots {
  display: flex; gap: 4px;
}
.hero-phone-dots span {
  width: 4px; height: 4px;
  background: var(--l-ink);
  border-radius: 50%;
  opacity: 0.4;
}

.hero-phone-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; letter-spacing: 0.15em;
  color: var(--l-accent); font-weight: 600;
  margin-bottom: 6px;
}
.hero-phone-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.hero-phone-stage {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 16px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-chart { width: 100%; height: 100%; }
.hero-chart-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: hero-chart-draw 3s ease-out forwards;
  animation-delay: 0.6s;
}
@keyframes hero-chart-draw {
  to { stroke-dashoffset: 0; }
}
.hero-chart-dot {
  opacity: 0;
  animation: hero-chart-dot-appear 0.3s ease forwards;
  animation-delay: 3.4s;
}
@keyframes hero-chart-dot-appear {
  to { opacity: 1; }
}

.hero-phone-player {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: 12px;
  padding: 10px 12px;
}
.hero-phone-play {
  width: 32px; height: 32px;
  background: var(--l-accent);
  border-radius: 50%;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  padding-left: 2px;
  flex-shrink: 0;
}
.hero-phone-progress {
  flex: 1;
  height: 4px;
  background: var(--l-border);
  border-radius: 2px;
  overflow: hidden;
}
.hero-phone-progress-fill {
  height: 100%;
  background: var(--l-accent);
  width: 0%;
  animation: hero-progress-fill 6s linear infinite;
}
@keyframes hero-progress-fill {
  0% { width: 0%; }
  100% { width: 100%; }
}
.hero-phone-speed {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--l-accent);
  padding: 4px 8px;
  background: var(--l-accent-soft);
  border-radius: 6px;
}

/* AirPods floating */
.hero-airpod {
  position: absolute;
  width: 36px; height: 60px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 18px 18px 12px 12px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.2);
}
.hero-airpod::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: #f0edE8;
  border-radius: 50%;
  top: 8px; left: 50%;
  transform: translateX(-50%);
}
.hero-airpod-l {
  top: 18%; left: 4%;
  transform: rotate(-20deg);
  animation: airpod-float-l 5s ease-in-out infinite;
}
.hero-airpod-r {
  top: 14%; right: 2%;
  transform: rotate(25deg);
  animation: airpod-float-r 5.5s ease-in-out infinite;
  animation-delay: 0.6s;
}
@keyframes airpod-float-l {
  0%, 100% { transform: rotate(-20deg) translateY(0); }
  50% { transform: rotate(-22deg) translateY(-14px); }
}
@keyframes airpod-float-r {
  0%, 100% { transform: rotate(25deg) translateY(0); }
  50% { transform: rotate(23deg) translateY(-16px); }
}

/* Sound waves */
.hero-waves {
  position: absolute;
  top: 42%; right: 4%;
  display: flex; gap: 4px; align-items: center;
  height: 40px;
}
.hero-waves span {
  display: block;
  width: 3px;
  background: var(--l-accent);
  border-radius: 2px;
  animation: hero-wave 1.2s ease-in-out infinite;
}
.hero-waves span:nth-child(1) { height: 14px; animation-delay: 0s; }
.hero-waves span:nth-child(2) { height: 28px; animation-delay: 0.15s; }
.hero-waves span:nth-child(3) { height: 22px; animation-delay: 0.3s; }
.hero-waves span:nth-child(4) { height: 12px; animation-delay: 0.45s; }
@keyframes hero-wave {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-contrast {
  background: white;
  border-top: 1px solid var(--l-border);
  border-bottom: 1px solid var(--l-border);
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-centered {
  max-width: 800px;
  text-align: center;
}
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--l-accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--l-ink);
  margin-bottom: 20px;
}
.em-accent {
  font-style: italic;
  color: var(--l-accent);
  font-weight: 500;
}
.section-lead {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--l-ink-dim);
  max-width: 720px;
  margin: 0 auto;
}
.section-lead-tight { margin: 0; max-width: 560px; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* ============ STEPS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.step-card {
  background: white;
  border: 1px solid var(--l-border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.15);
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--l-accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.step-visual {
  height: 180px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: var(--l-bg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.step-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--l-ink);
  margin-bottom: 10px;
}
.step-desc {
  font-family: 'Source Serif 4', serif;
  color: var(--l-ink-dim);
  font-size: 16px;
  line-height: 1.5;
}

/* --- Step 1: mini phone with AirPods --- */
.step-1-anim {
  position: relative;
  width: 120px; height: 160px;
}
.step-1-phone {
  width: 100px; height: 160px;
  background: #0c0a09;
  border-radius: 16px;
  padding: 6px;
  margin: 0 auto;
  position: relative;
  animation: step1-phone-bob 3s ease-in-out infinite;
}
@keyframes step1-phone-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.step-1-screen {
  background: white;
  border-radius: 12px;
  height: 100%;
  padding: 20px 12px;
  display: flex; flex-direction: column; gap: 8px;
  justify-content: center;
}
.step-1-line {
  height: 5px;
  background: var(--l-border);
  border-radius: 2px;
}
.step-1-airpod {
  position: absolute;
  width: 18px; height: 30px;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: 9px 9px 6px 6px;
}
.step-1-airpod-l {
  top: 8%; left: -10%;
  transform: rotate(-20deg);
  animation: step1-pod-l 3s ease-in-out infinite;
}
.step-1-airpod-r {
  top: 12%; right: -10%;
  transform: rotate(20deg);
  animation: step1-pod-r 3s ease-in-out infinite 0.5s;
}
@keyframes step1-pod-l {
  0%, 100% { transform: rotate(-20deg) translateY(0); }
  50% { transform: rotate(-22deg) translateY(-4px); }
}
@keyframes step1-pod-r {
  0%, 100% { transform: rotate(20deg) translateY(0); }
  50% { transform: rotate(22deg) translateY(-6px); }
}

/* --- Step 2: countdown ring --- */
.step-2-timer {
  position: relative;
  width: 130px; height: 130px;
}
.step-2-timer svg {
  width: 100%; height: 100%;
}
.step-2-progress {
  animation: step2-ring 4s linear infinite;
}
@keyframes step2-ring {
  from { stroke-dashoffset: 276.46; }
  to { stroke-dashoffset: 0; }
}
.step-2-time {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px; font-weight: 700;
  color: var(--l-ink);
}

/* --- Step 3: checkmark --- */
.step-3-anim {
  width: 120px; height: 120px;
}
.step-3-check svg {
  width: 100%; height: 100%;
}
.step-3-ring {
  animation: step3-ring-draw 1.5s ease-out forwards infinite;
  animation-delay: 0s;
}
@keyframes step3-ring-draw {
  0% { stroke-dashoffset: 226; }
  50%, 100% { stroke-dashoffset: 0; }
}
.step-3-tick {
  animation: step3-tick-draw 1.5s ease-out forwards infinite;
}
@keyframes step3-tick-draw {
  0%, 40% { stroke-dashoffset: 60; }
  70%, 100% { stroke-dashoffset: 0; }
}

/* ============ PATHS TEASER ============ */
.paths-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.path-teaser {
  display: flex; flex-direction: column;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.path-teaser:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(15, 23, 42, 0.12);
  border-color: transparent;
}
.path-teaser-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--l-bg-soft);
  border-radius: 12px;
}
.path-teaser-name {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--l-ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.path-teaser-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  color: var(--l-ink-dim);
  line-height: 1.45;
  flex-grow: 1;
}
.path-teaser-meta {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--l-border-soft);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l-ink-dim);
  font-weight: 600;
}
.path-teaser-arrow {
  color: var(--l-accent);
  transition: transform 0.2s;
}
.path-teaser:hover .path-teaser-arrow { transform: translateX(4px); }

/* ============ EXECUTION SYSTEM (landing) ============ */
.exec-system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.exec-system-copy { max-width: 480px; }
.exec-system-visual {
  position: relative;
  min-height: 420px;
}
.exec-float {
  position: absolute;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.12);
  display: flex; flex-direction: column; gap: 4px;
  min-width: 220px;
  transition: transform 0.3s;
}
.exec-float:hover { transform: translateY(-4px) rotate(0) !important; }
.exec-float-icon {
  font-size: 24px; line-height: 1;
  margin-bottom: 6px;
}
.exec-float-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--l-ink);
}
.exec-float-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--l-ink-dim);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.exec-float-template {
  top: 10%; left: 2%;
  transform: rotate(-3deg);
  animation: exec-float-1 7s ease-in-out infinite;
}
.exec-float-script {
  top: 30%; right: 4%;
  transform: rotate(2.5deg);
  animation: exec-float-2 7s ease-in-out infinite 0.8s;
}
.exec-float-prompt {
  top: 55%; left: 14%;
  transform: rotate(3deg);
  animation: exec-float-3 7s ease-in-out infinite 1.6s;
}
.exec-float-checklist {
  top: 68%; right: 8%;
  transform: rotate(-2deg);
  animation: exec-float-4 7s ease-in-out infinite 2.4s;
}
@keyframes exec-float-1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-12px); }
}
@keyframes exec-float-2 {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50%      { transform: rotate(2.5deg) translateY(-10px); }
}
@keyframes exec-float-3 {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-14px); }
}
@keyframes exec-float-4 {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-10px); }
}
@media (max-width: 900px) {
  .exec-system-grid { grid-template-columns: 1fr; gap: 32px; }
  .exec-system-visual { min-height: 360px; }
  .exec-float { min-width: 180px; padding: 12px 14px; }
  .exec-float-title { font-size: 14px; }
}

/* ============ MANIFESTO ============ */
.section-manifesto {
  background: var(--l-ink);
  color: white;
  padding: 120px 0;
}
.section-manifesto .section-inner {
  text-align: center;
}
.manifesto-title {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.manifesto-title em {
  font-style: italic;
  color: var(--l-accent);
}
.manifesto-sub {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}
.section-manifesto .btn-primary {
  background: var(--l-accent);
  border-color: var(--l-accent);
}
.section-manifesto .btn-primary:hover {
  background: white;
  color: var(--l-accent);
  border-color: white;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #0c0a09;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 24px;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 17px;
  color: white;
}
.footer-brand .dot {
  width: 8px; height: 8px;
  background: var(--l-accent);
  border-radius: 50%;
}
.footer-links {
  display: flex; gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-links a:hover { color: white; text-decoration: none; }
.footer-legal {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* ============ CATALOG HERO (for browse/skill-paths) ============ */
.catalog-hero {
  background: linear-gradient(180deg, #fefdfa 0%, var(--l-bg) 100%);
  border-bottom: 1px solid var(--l-border);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 85% 30%, rgba(3, 101, 242, 0.08), transparent 70%);
  pointer-events: none;
}
.catalog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.catalog-hero h1 {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--l-ink);
  max-width: 820px;
  margin-bottom: 18px;
}
.catalog-hero h1 em {
  font-style: italic;
  color: var(--l-accent);
  font-weight: 500;
}
.catalog-hero-sub {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--l-ink-dim);
  max-width: 640px;
}
.catalog-hero-pills {
  display: inline-flex; gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.catalog-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--l-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--l-ink-dim);
}
.catalog-hero-pill .dot {
  width: 6px; height: 6px;
  background: var(--l-accent);
  border-radius: 50%;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 480px; }
  .hero-stats { gap: 24px; }
  .section { padding: 72px 0; }
  .section-manifesto { padding: 88px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .catalog-hero { padding: 48px 0; }
}

@media (max-width: 640px) {
  .hero-phone { width: 240px; height: 500px; }
  .hero-phone-notch { width: 80px; }
  .hero-phone-title { font-size: 17px; }
  .hero-stat-num { font-size: 24px; }
  .hero-stats { flex-wrap: wrap; }
  .site-footer-inner { flex-direction: column; align-items: flex-start; }
}
