/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #09080f;
  --bg-card: #12101c;
  --bg-card-hover: #1a1729;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(124,58,237,0.4);
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --gold: #f59e0b;
  --blue: #0ea5e9;
  --green: #10b981;
  --text: #e2e8f0;
  --text-muted: #8892a4;
  --text-dim: #4a5568;
  --font: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 60px rgba(124,58,237,0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-disabled {
  opacity: 0.25;
  pointer-events: none;
  filter: grayscale(1) blur(0.5px);
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
}
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: #fff;
  box-shadow: 0 4px 30px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(124,58,237,0.5);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid rgba(124,58,237,0.4);
}
.btn-outline:hover {
  background: rgba(124,58,237,0.1);
  border-color: var(--purple-light);
}

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(9,8,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.5px;
  z-index: 101;
}
.logo-dot {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--purple);
}
.logo-accent { color: var(--purple-light); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 16px; z-index: 101; }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

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

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: rgba(124,58,237,0.18);
  top: -200px; left: -200px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: rgba(245,158,11,0.08);
  bottom: -100px; right: 10%;
}
.glow-3 {
  width: 300px; height: 300px;
  background: rgba(14,165,233,0.08);
  top: 30%; right: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards;
}
.pill-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.3s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
}
.stat-suffix { font-size: 24px; font-weight: 700; color: var(--purple-light); }
.stat-label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Sections ──────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-dark {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  background: rgba(124,58,237,0.12);
  color: var(--purple-light);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Products Grid ─────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card-featured {
  border-color: rgba(124,58,237,0.3);
  background: linear-gradient(145deg, #14112a 0%, #12101c 100%);
  grid-row: span 1;
  box-shadow: 0 4px 60px rgba(124,58,237,0.12);
}
.product-card-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(124,58,237,0.15);
  border-radius: 50%;
  filter: blur(60px);
  top: -50px; right: -50px;
  pointer-events: none;
}

.card-coming-soon { opacity: 0.75; }
.card-coming-soon:hover { opacity: 1; }

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.product-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color, var(--purple));
}
.product-badge-featured {
  background: linear-gradient(135deg, var(--gold) 0%, #f97316 100%);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.coming-soon-tag {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-tagline {
  font-size: 14px;
  color: var(--purple-light);
  font-weight: 600;
  margin-bottom: 16px;
}
.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.feat-icon {
  width: 18px; height: 18px;
  background: rgba(124,58,237,0.2);
  color: var(--purple-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.price-label { display: block; font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.price-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.price-period { font-size: 14px; font-weight: 400; color: var(--text-muted); }

.product-waitlist { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border); }
.product-waitlist p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

/* ── Why Grid ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.why-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(245,158,11,0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-bg-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(124,58,237,0.1);
  border-radius: 50%;
  filter: blur(80px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item h5 { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-item a, .contact-item span { color: var(--text); font-size: 15px; text-decoration: none; }
.contact-item a:hover { color: var(--purple-light); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: #1a1729; color: var(--text); }

/* ── Footer ────────────────────────────────────────────── */
.footer { padding: 60px 0 0; border-top: 1px solid var(--border); }
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 16px; line-height: 1.7; }
.footer-links { display: flex; gap: 64px; justify-content: flex-end; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-dim); margin-bottom: 4px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .card-featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 100px 40px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
  }
  .nav-links.active { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,0.5); }
  .nav-links a { font-size: 20px; font-weight: 600; }

  .hero { padding-top: 140px; }
  .hero-title { font-size: 42px; }
  .section-title { font-size: 32px; }

  .products-grid { grid-template-columns: 1fr; }
  .card-featured { grid-column: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 32px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .btn-sm { padding: 8px 16px; font-size: 13px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Product CTA Group ─────────────────────────────────── */
.product-cta-group { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Download Section ──────────────────────────────────── */
.section-download { background: linear-gradient(180deg, transparent, rgba(124,58,237,0.04), transparent); }

.download-card {
  background: var(--bg-card);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  box-shadow: 0 4px 60px rgba(124,58,237,0.1);
}
.download-card-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(124,58,237,0.08);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px; left: -50px;
  pointer-events: none;
}
.download-info { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 220px; }
.dl-app-icon { font-size: 48px; line-height: 1; }
.download-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.dl-version { font-size: 13px; color: var(--purple-light); font-weight: 600; margin-bottom: 4px; }
.dl-meta { font-size: 13px; color: var(--text-muted); }

.download-buttons { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-dl-win {
  background: linear-gradient(135deg, #0078d4 0%, #0ea5e9 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,120,212,0.3);
}
.btn-dl-win:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,120,212,0.45); }

.btn-dl-mac {
  background: linear-gradient(135deg, #1f1f1f 0%, #444 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-dl-mac:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.6); }

.btn-dl-mac .dl-icon-svg { filter: drop-shadow(0 0 8px rgba(255,255,255,0.2)); }

.btn-dl-highlight {
  box-shadow: 0 0 0 3px rgba(124,58,237,0.4) !important;
  transform: scale(1.04) !important;
}

.dl-os-hint {
  font-size: 12px;
  color: var(--purple-light);
  padding: 6px 14px;
  background: rgba(124,58,237,0.1);
  border-radius: 50px;
  display: none;
}
.dl-os-hint.show { display: inline-block; }

.download-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.dl-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.dl-step-num {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.dl-step strong { display: block; font-size: 14px; margin-bottom: 2px; }
.dl-step span { font-size: 12px; color: var(--text-muted); }
.dl-step-arrow { color: var(--text-dim); font-size: 20px; }

.dl-note { text-align: center; font-size: 14px; color: var(--text-muted); }
.dl-note a { color: var(--purple-light); text-decoration: none; }
.dl-note a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .download-card { flex-direction: column; align-items: flex-start; }
  .download-steps { gap: 8px; }
  .dl-step-arrow { display: none; }
}
