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

:root {
  --lavender:        #9B8EC4;
  --lavender-light:  #C4B5F4;
  --lavender-pale:   #EDE9FE;
  --lavender-ultra:  #F5F3FF;
  --violet:          #7C3AED;
  --violet-dark:     #5B21B6;
  --indigo:          #4F46E5;
  --indigo-dark:     #3730A3;
  --purple-deep:     #1E1B4B;
  --pink-accent:     #EC4899;
  --surface:         #ffffff;
  --surface-2:       #FAFAF9;
  --text-primary:    #1E1B4B;
  --text-secondary:  #6B7280;
  --text-muted:      #9CA3AF;
  --border:          rgba(155,142,196,0.2);
  --border-strong:   rgba(124,58,237,0.3);
  --shadow-sm:       0 1px 3px rgba(79,70,229,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:       0 4px 16px rgba(79,70,229,0.10), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:       0 12px 40px rgba(79,70,229,0.14), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-glow:     0 0 40px rgba(124,58,237,0.25);
  --gradient-primary: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 50%, #A855F7 100%);
  --gradient-hero:   linear-gradient(135deg, #312E81 0%, #4F46E5 40%, #7C3AED 100%);
  --gradient-light:  linear-gradient(135deg, var(--lavender-pale) 0%, #DDD6FE 100%);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Syne', var(--font-sans);
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #C4B5F4 0%, #F9A8D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}
.section-eyebrow.center { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-sub.center { text-align: center; }
.section-pad { padding: 100px 0; }
.fade-in-ready { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.08);
  color: var(--violet);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-ghost:hover { background: rgba(124,58,237,0.14); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--violet);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid var(--border-strong);
  transition: background 0.2s, transform 0.2s;
}
.btn-outline:hover { background: var(--lavender-pale); transform: translateY(-2px); }

/* ===== NAV ===== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav-wrapper.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon {
  font-size: 1.4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.logo-ai {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 6px 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--violet); background: var(--lavender-pale); }
.nav-divider { width: 1px; height: 20px; background: var(--border); margin: 0 4px; }
.btn-nav {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(124,58,237,0.3);
}
.btn-nav:hover { background: var(--gradient-primary) !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(124,58,237,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); 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 DRAWER ===== */
.mobile-drawer {
  position: fixed;
  top: var(--nav-height);
  right: -100%;
  width: min(320px, 85vw);
  height: calc(100vh - var(--nav-height));
  background: var(--surface);
  z-index: 99;
  box-shadow: var(--shadow-lg);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  padding: 24px 0;
  border-left: 1px solid var(--border);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer ul { list-style: none; }
.mobile-drawer ul li a {
  display: block;
  padding: 14px 28px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.mobile-drawer ul li a:hover { background: var(--lavender-pale); color: var(--violet); }
.drawer-divider { height: 1px; background: var(--border); margin: 12px 28px; }
.btn-drawer {
  display: block;
  margin: 16px 28px 0;
  background: var(--gradient-primary);
  color: #fff !important;
  padding: 14px 24px !important;
  border-radius: var(--radius-full) !important;
  text-align: center;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(30,27,75,0.3);
  backdrop-filter: blur(2px);
}
.drawer-overlay.open { display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
  padding: calc(var(--nav-height) + 80px) 64px 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; top: -100px; left: -150px; background: radial-gradient(circle, #9B8EC4 0%, #7C3AED 60%, transparent 100%); animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; top: 50%; right: -100px; background: radial-gradient(circle, #C4B5F4 0%, #6366F1 60%, transparent 100%); animation-delay: 2.5s; }
.orb-3 { width: 400px; height: 400px; bottom: -50px; left: 40%; background: radial-gradient(circle, #DDD6FE 0%, #A855F7 60%, transparent 100%); animation-delay: 5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155,142,196,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155,142,196,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { max-width: 600px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34,197,94,0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,0.7); }
  50% { box-shadow: 0 0 14px rgba(34,197,94,0.9); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; padding: 0 24px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text-primary); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.stat-sep { width: 1px; height: 40px; background: var(--border); margin: 0 24px 0 0; }

/* ===== PHONE MOCKUP ===== */
.hero-phones {
  position: relative;
  width: 320px;
  height: 580px;
  flex-shrink: 0;
}
.phone {
  position: absolute;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(30,27,75,0.3), 0 0 0 1px rgba(255,255,255,0.15);
}
.phone-back {
  width: 200px;
  height: 400px;
  top: 80px;
  left: 0;
  background: linear-gradient(145deg, #312E81 0%, #4F46E5 100%);
  transform: rotate(-6deg) scale(0.92);
  z-index: 1;
}
.phone-front {
  width: 220px;
  height: 440px;
  bottom: 0;
  right: 0;
  background: linear-gradient(145deg, #1E1B4B 0%, #312E81 100%);
  transform: rotate(3deg);
  z-index: 2;
}
.phone-screen { padding: 20px 16px; height: 100%; }
.screen-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.sh-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lavender-light); }
.sh-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.15); flex: 1; }
.screen-card { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 12px; margin-bottom: 10px; border: 1px solid rgba(255,255,255,0.1); }
.screen-card span { display: block; font-size: 0.72rem; font-weight: 600; color: var(--lavender-light); margin-bottom: 8px; }
.sc-lines > div { height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px; margin-bottom: 5px; }
.sc-lines > div:nth-child(2) { width: 75%; }
.sc-lines > div:nth-child(3) { width: 55%; }
.sc-progress { height: 6px; background: rgba(255,255,255,0.12); border-radius: 3px; margin-bottom: 6px; overflow: hidden; }
.sc-prog-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #22C55E, #86EFAC); }
.screen-card p { font-size: 0.68rem; color: rgba(255,255,255,0.5); }
.sf-greeting { font-size: 0.7rem; color: var(--lavender-light); font-weight: 500; margin-bottom: 4px; }
.sf-headline { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.sf-task { display: flex; align-items: center; gap: 8px; font-size: 0.73rem; color: rgba(255,255,255,0.8); margin-bottom: 9px; }
.t-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lavender-light); flex-shrink: 0; }
.t-dot.td { background: #22C55E; }
.sf-ai-chip {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,181,244,0.15);
  border: 1px solid rgba(196,181,244,0.25);
  border-radius: 9999px;
  padding: 7px 12px;
  font-size: 0.68rem;
  color: var(--lavender-light);
  font-weight: 600;
}
.chip-icon { font-size: 0.8rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== ABOUT ===== */
.about { background: var(--lavender-ultra); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-body { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.75; }
.about-body:last-of-type { margin-bottom: 28px; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon { font-size: 1.6rem; margin-bottom: 10px; }
.pillar h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.pillar p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== PRODUCTS ===== */
.products { background: var(--surface); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.product-card {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.card-featured {
  background: linear-gradient(145deg, #F5F3FF 0%, #EDE9FE 100%);
  border-color: rgba(124,58,237,0.25);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(124,58,237,0.1);
}
.card-featured:hover { box-shadow: var(--shadow-glow), var(--shadow-lg); }
.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.coming-badge { background: linear-gradient(135deg, #6B7280, #9CA3AF) !important; }
.product-icon { font-size: 2.4rem; margin-bottom: 16px; }
.product-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.product-tagline { font-size: 0.82rem; font-weight: 600; color: var(--violet); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.product-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.product-features { list-style: none; margin-bottom: 20px; }
.product-features li { font-size: 0.85rem; color: var(--text-primary); font-weight: 500; padding: 4px 0; }
.product-platforms { display: flex; gap: 8px; flex-wrap: wrap; }
.platform-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(124,58,237,0.08);
  color: var(--violet);
  border: 1px solid rgba(124,58,237,0.2);
}
.platform-tag.coming { background: rgba(156,163,175,0.1); color: var(--text-muted); border-color: rgba(156,163,175,0.25); }

/* ===== PLATFORM ===== */
.platform { background: var(--lavender-ultra); }
.platform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.platform-body { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.75; }
.platform-features { display: flex; flex-direction: column; gap: 20px; }
.pf-item { display: flex; gap: 14px; align-items: flex-start; }
.pf-check {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.pf-item div { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.pf-item strong { color: var(--text-primary); }

/* ===== PLATFORM VISUAL ===== */
.platform-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-center {
  position: relative;
  z-index: 2;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.3;
}
.pv-center small { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.05em; display: block; }
.pv-orbit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(124,58,237,0.25);
}
.pv-ring-1 { width: 60%; height: 60%; animation: spin 20s linear infinite; }
.pv-ring-2 { width: 90%; height: 90%; animation: spin 30s linear infinite reverse; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.pv-node {
  position: absolute;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--violet);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.pv-n1 { top: 4%;  left: 50%; transform: translateX(-50%); }
.pv-n2 { top: 50%; right: 0;  transform: translateY(-50%); }
.pv-n3 { bottom: 4%; left: 50%; transform: translateX(-50%); }
.pv-n4 { top: 50%; left: 0;   transform: translateY(-50%); }

/* ===== FOOTER ===== */
.footer { background: var(--purple-deep); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 12px; line-height: 1.6; }
.footer-links-group h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.footer-links-group ul { list-style: none; }
.footer-links-group ul li { margin-bottom: 10px; }
.footer-links-group ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links-group ul li a:hover { color: var(--lavender-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: calc(var(--nav-height) + 60px) 32px 60px; }
  .hero-phones { display: none; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .platform-inner { grid-template-columns: 1fr; gap: 48px; }
  .platform-visual { max-width: 340px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 72px 0; }
  .hero { padding: calc(var(--nav-height) + 40px) 24px 60px; }
.footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 16px 0 0; }
  .stat-sep { margin: 0 16px 0 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-sep { display: none; }
}

/* ===== PRODUCT SHOWCASE CARD ===== */
.product-showcase { display: flex; justify-content: center; }
.product-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 900px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.product-available-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(16,185,129,0.08);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.25);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.avail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px rgba(16,185,129,0.5);
}
.product-header { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.product-icon {
  width: 68px; height: 68px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(79,70,229,0.3);
  flex-shrink: 0;
}
.product-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.product-tagline { color: var(--text-secondary); font-size: 0.95rem; margin-top: 2px; }
.product-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 680px;
}
.product-features-mini { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.product-features-mini span {
  background: var(--lavender-ultra);
  color: var(--violet);
  border: 1px solid rgba(124,58,237,0.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
}
.product-platforms { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; }
.platform-label { font-size: 0.82rem; color: var(--text-muted); margin-right: 2px; }
.platform-badge {
  background: var(--text-primary);
  color: #fff;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}
.product-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .product-card { padding: 32px 24px; }
  .product-name { font-size: 1.7rem; }
  .product-icon { width: 52px; height: 52px; font-size: 1.5rem; }
  .product-actions { flex-direction: column; }
  .product-actions a { justify-content: center; }
}
