/* ========== DESIGN TOKENS ========== */
:root {
  /* Colors — Dark IoT Theme (Glassmorphism + Dark Mode) */
  --bg-deep: #020203;
  --bg-base: #050506;
  --bg-elevated: #0a0a0c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.1);

  --foreground: #EDEDEF;
  --foreground-muted: #8A8F98;
  --foreground-subtle: #555960;

  --accent: #8B2252;
  --accent-light: #B83280;
  --accent-glow: rgba(139, 34, 82, 0.3);
  --accent-gradient: linear-gradient(135deg, #8B2252 0%, #B83280 50%, #D53F8C 100%);

  --green: #34D399;
  --green-glow: rgba(52, 211, 153, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --blur: 20px;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--easing);

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  background: rgba(139, 34, 82, 0.15);
  border: 1px solid rgba(139, 34, 82, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--foreground);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm {
  font-size: 0.85rem;
  padding: 8px 20px;
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-glass {
  background: var(--glass);
  color: var(--foreground);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

/* ========== GLASS CARD ========== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  transition: all var(--transition);
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 6, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--foreground);
}

.navbar-logo img {
  border-radius: 8px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground-muted);
  transition: color var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar-links a:hover {
  color: var(--foreground);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.4;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
  width: min(600px, 50vw);
  height: min(600px, 50vw);
  background: radial-gradient(circle, #8B2252 0%, #6B1740 100%);
  left: -10%;
  top: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: min(500px, 40vw);
  height: min(500px, 40vw);
  background: radial-gradient(circle, #B83280 0%, #8B2252 100%);
  right: -5%;
  top: 30%;
  animation-delay: -7s;
}

.blob-3 {
  width: min(400px, 35vw);
  height: min(400px, 35vw);
  background: radial-gradient(circle, #34D399 0%, #059669 100%);
  left: 30%;
  bottom: 0;
  animation-delay: -14s;
  opacity: 0.2;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -80px) scale(1.1); }
  50% { transform: translate(-40px, 60px) scale(0.95); }
  75% { transform: translate(80px, 40px) scale(1.05); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  animation: fadeSlideIn 0.8s ease-out forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--foreground-muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--green-glow);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--foreground);
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--foreground-muted);
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.pill {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--glass-border);
  color: var(--foreground-muted);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  animation: fadeSlideIn 0.8s 0.2s ease-out forwards;
  opacity: 0;
}

.hero-card {
  position: relative;
  padding: 32px;
  text-align: center;
  overflow: hidden;
}

.hero-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.hero-product-img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 24px;
  transition: transform 0.6s var(--easing);
}

.hero-card:hover .hero-product-img {
  transform: scale(1.05) translateY(-8px);
}

.hero-card-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--foreground-subtle);
  margin-top: 2px;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FEATURES BENTO ========== */
.features {
  padding: 120px 0;
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}

.bento-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 440px;
}

.bento-wide {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(139, 34, 82, 0.15);
  color: var(--accent-light);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.bento-img {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 55%;
  opacity: 0.15;
  filter: grayscale(0.5);
  pointer-events: none;
}

.bento-img-sm {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 80px;
  opacity: 0.2;
  pointer-events: none;
}

.bento-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.bento-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--foreground);
}

.bento-content p {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  line-height: 1.6;
  max-width: 400px;
}

.voice-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.voice-logos img {
  opacity: 0.6;
  transition: opacity var(--transition);
  border-radius: 6px;
}

.voice-logos img:hover {
  opacity: 1;
}

/* ========== VIDEO SHOWCASE ========== */
.video-showcase {
  padding: 120px 0;
  background: var(--bg-base);
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-elevated);
}

.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(139, 34, 82, 0.85);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
  box-shadow: 0 8px 32px var(--accent-glow);
  z-index: 2;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(184, 50, 128, 0.95);
}

.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.video-products-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.video-product-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  text-decoration: none;
}

.video-product-chip:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.video-product-chip img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
}

.video-product-chip span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--foreground-muted);
}

.video-product-chip:hover span {
  color: var(--foreground);
}

/* ========== PRODUCTS ========== */
.products {
  padding: 120px 0;
  background: var(--bg-base);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-img-wrap {
  position: relative;
  padding: 32px 20px;
  background: linear-gradient(135deg, rgba(139, 34, 82, 0.08), rgba(184, 50, 128, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  overflow: hidden;
}

.product-img-wrap img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.5s var(--easing);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.1) translateY(-6px);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--foreground);
}

.product-info p {
  font-size: 0.85rem;
  color: var(--foreground-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(139, 34, 82, 0.15);
  color: var(--accent-light);
  border: 1px solid rgba(139, 34, 82, 0.2);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  /* color: var(--green); */
}

/* ========== SPOTLIGHT ========== */
.spotlight {
  padding: 120px 0;
}

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

.spotlight-card {
  padding: 40px;
  text-align: center;
  overflow: hidden;
}

.spotlight-card img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  transition: transform 0.5s var(--easing);
}

.spotlight-card:hover img {
  transform: scale(1.03);
}

.spotlight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.spotlight-desc {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.spotlight-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.price-label {
  font-size: 0.9rem;
  color: var(--foreground-subtle);
}

/* ========== TOTAL CONTROL ========== */
.control {
  padding: 120px 0;
  background: var(--bg-base);
}

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

.control-desc {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.control-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.control-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.control-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(139, 34, 82, 0.15);
  color: var(--accent-light);
}

.control-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--foreground);
}

.control-feature p {
  font-size: 0.9rem;
  color: var(--foreground-muted);
}

.control-visual {
  position: relative;
}

.control-img-wrapper {
  position: relative;
}

.control-img-wrapper img {
  border-radius: var(--radius-xl);
  width: 100%;
}

.control-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
}

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

.floating-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-sm);
  color: var(--green);
}

.floating-label {
  display: block;
  font-size: 0.75rem;
  color: var(--foreground-subtle);
}

.floating-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

/* ========== CTA ========== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg .blob-1 {
  width: 500px;
  height: 500px;
  left: 20%;
  top: -20%;
  opacity: 0.3;
}

.cta-bg .blob-2 {
  width: 400px;
  height: 400px;
  right: 10%;
  bottom: -30%;
  opacity: 0.25;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--foreground-muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-base);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .navbar-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 280px;
}

.footer-address {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--foreground-subtle);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--foreground-muted);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--foreground);
  margin-bottom: 20px;
}

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

.footer-col a {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  transition: color var(--transition);
}

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

.footer-newsletter-desc {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--foreground-subtle);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--foreground-subtle);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--foreground-subtle);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--foreground-muted);
}

/* ========== ANIMATIONS ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.bento-grid [data-animate]:nth-child(1) { transition-delay: 0s; }
.bento-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.bento-grid [data-animate]:nth-child(3) { transition-delay: 0.15s; }
.bento-grid [data-animate]:nth-child(4) { transition-delay: 0.2s; }
.bento-grid [data-animate]:nth-child(5) { transition-delay: 0.25s; }

.products-grid [data-animate]:nth-child(1) { transition-delay: 0s; }
.products-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.products-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.products-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-grid,
  .control-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 6, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links a {
    font-size: 1.3rem;
  }

  .navbar-toggle {
    display: flex;
    z-index: 1001;
  }

  .navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .navbar-actions .btn {
    display: none;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .control-floating-card {
    right: 10px;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

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

  .section-title {
    font-size: 1.8rem;
  }

  .spotlight-price .price-tag {
    font-size: 2.2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
