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

:root {
  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-card: #16161f;
  --border: rgba(255,255,255,0.07);
  --text: #f1f0ff;
  --text-muted: #8b8aa0;
  --purple: #6C63FF;
  --green: #00C896;
  --orange: #FF6B35;
  --blue: #0EA5E9;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-icon { font-size: 1.5rem; }
.logo-text strong { color: var(--purple); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  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); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.orb-1 {
  width: 600px; height: 600px;
  background: var(--purple);
  top: -200px; left: -100px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: var(--blue);
  bottom: 0; right: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  background: var(--green);
  top: 50%; left: 50%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content, .hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,99,255,0.15);
  border: 1px solid rgba(108,99,255,0.3);
  color: #a78bfa;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  box-shadow: 0 4px 24px rgba(108,99,255,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,99,255,0.5);
}

.btn-ghost {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Phone Mockup */
.hero-visual {
  flex: 0 0 auto;
}

.phone-mockup {
  width: 280px;
  background: var(--bg-card);
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

.phone-mockup::before {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 0 auto 14px;
}

.phone-screen {
  background: #0d0d14;
  border-radius: 28px;
  padding: 20px 16px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}

.app-icon-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, border-color 0.3s;
  animation: cardFloat 4s ease-in-out infinite;
}

.app-icon-card:nth-child(2) { animation-delay: 0.5s; }
.app-icon-card:nth-child(3) { animation-delay: 1s; }
.app-icon-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.app-icon-card:hover { border-color: var(--c); }

.app-icon-card span {
  font-size: 1.8rem;
  display: block;
}

.app-icon-card small {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}

/* ── SECTION SHARED ── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.section-tag {
  display: inline-block;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.25);
  color: #a78bfa;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── APPS ── */
.apps {
  padding: 120px 0;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 40px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.app-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.app-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.app-card.reverse .app-card-inner {
  direction: rtl;
}

.app-card.reverse .app-card-inner > * {
  direction: ltr;
}

.app-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent);
  padding: 48px;
  border-right: 1px solid var(--border);
}

.app-card.reverse .app-card-visual {
  border-right: none;
  border-left: 1px solid var(--border);
}

/* App Screen Mock */
.app-screen {
  width: 220px;
  background: #0d0d14;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.app-screen-header {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.app-screen-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.app-screen-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Post Saver Mock */
.mock-post {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 10px;
}

.mock-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C63FF, #a78bfa);
  flex-shrink: 0;
}

.mock-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }

.mock-line {
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}

.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w80 { width: 80%; }
.w90 { width: 90%; }

.mock-save-btn {
  font-size: 1rem;
  cursor: pointer;
}

.mock-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  padding: 6px;
  background: rgba(108,99,255,0.08);
  border-radius: 8px;
}

/* QR Mock */
.qr-scanner-mock {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.qr-frame {
  width: 130px; height: 130px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: #00C896;
  border-style: solid;
}

.qr-corner.tl { top: 0; left: 0; border-width: 3px 0 0 3px; }
.qr-corner.tr { top: 0; right: 0; border-width: 3px 3px 0 0; }
.qr-corner.bl { bottom: 0; left: 0; border-width: 0 0 3px 3px; }
.qr-corner.br { bottom: 0; right: 0; border-width: 0 3px 3px 0; }

.qr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  width: 80px; height: 80px;
}

.qr-cell {
  border-radius: 2px;
}

.qr-cell.dark { background: rgba(255,255,255,0.8); }
.qr-cell.light { background: rgba(255,255,255,0.08); }

.qr-scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00C896, transparent);
  top: 50%;
  animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
  0% { top: 15%; opacity: 1; }
  100% { top: 85%; opacity: 0.3; }
}

/* Brick Mock */
.brick-mock { display: flex; flex-direction: column; gap: 8px; }

.brick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 8px 10px;
}

.brick-item > span:first-child { font-size: 1rem; }

.brick-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }

.brick-count {
  font-size: 0.75rem;
  font-weight: 700;
}

.mock-progress {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.progress-bar {
  height: 100%;
  border-radius: 2px;
}

/* Water Mock */
.water-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.water-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(14,165,233,0.3);
  background: rgba(14,165,233,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.water-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72%;
  background: linear-gradient(180deg, rgba(14,165,233,0.3), rgba(14,165,233,0.6));
  animation: waterRise 3s ease-in-out infinite alternate;
}

@keyframes waterRise {
  from { height: 65%; }
  to { height: 78%; }
}

.water-text {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0EA5E9;
}

.water-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.water-stat, .water-reminder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 6px 8px;
}

.water-stat strong, .water-reminder strong {
  font-size: 0.68rem;
  color: var(--text);
}

/* App Card Content */
.app-card-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.app-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.app-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.app-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.feature-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.app-store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  transition: all 0.25s;
  font-size: 0.85rem;
}

.store-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.store-icon { font-size: 1.2rem; }

.store-text { display: flex; flex-direction: column; }

.store-text small {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
}

.store-text strong {
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(108,99,255,0.04), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  width: 44px; height: 44px;
  background: rgba(108,99,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.about-card:hover::before { transform: scaleX(1); }

.about-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.about-card > span { font-size: 1.8rem; }

.about-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.about-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
}

.contact-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 700px;
  margin-top: 24px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  text-align: center;
}

.contact-card:hover {
  border-color: rgba(108,99,255,0.4);
  transform: translateY(-3px);
  background: rgba(108,99,255,0.05);
}

.contact-icon { font-size: 2rem; }

.contact-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  word-break: break-all;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .logo-text strong { color: var(--purple); }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.6;
  margin-top: 4px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}

.lang-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 100px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.lang-btn:hover { color: var(--text); }

.lang-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
}

.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 12px 0 4px;
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }

  .hero-desc { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }

  .app-card-inner {
    grid-template-columns: 1fr;
  }

  .app-card.reverse .app-card-inner { direction: ltr; }

  .app-card-visual {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px;
  }

  .app-card.reverse .app-card-visual {
    border-left: none;
    border-bottom: 1px solid var(--border);
  }

  .app-card-content { padding: 36px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

  .hero-title { font-size: 2.4rem; }

  .contact-cards { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero { padding: 100px 16px 60px; }
  .app-card-content { padding: 24px; }
  .app-card-visual { padding: 24px; }
  .about-cards { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.3rem; }
}
