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

:root {
  --indigo-50:  #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --slate-200:  #e2e8f0;
  --slate-400:  #94a3b8;
  --slate-500:  #64748b;
  --slate-600:  #475569;
  --slate-700:  #334155;
  --slate-800:  #1e293b;
  --slate-900:  #0f172a;
  --green-500:  #22c55e;
  --amber-400:  #fbbf24;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.1), 0 8px 16px rgba(0,0,0,.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Utilities ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.badge-green  { background: #dcfce7; color: #16a34a; }
.badge-indigo { background: var(--indigo-100); color: var(--indigo-700); }
.badge-slate  { background: var(--slate-100); color: var(--slate-600); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--indigo-600);
  color: #fff;
  box-shadow: 0 2px 8px rgba(79,70,229,.35);
}
.btn-primary:hover {
  background: var(--indigo-700);
  box-shadow: 0 4px 16px rgba(79,70,229,.4);
}

.btn-outline {
  background: #fff;
  color: var(--slate-700);
  border: 1.5px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--indigo-500);
  color: var(--indigo-600);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-600);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--slate-900); background: var(--slate-100); }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--indigo-600);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.5px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--slate-900); background: var(--slate-100); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, #e0e7ff 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--slate-900);
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 span {
  color: var(--indigo-600);
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--slate-500);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--slate-400);
}

/* ── Products ─────────────────────────────────────────────────────────────── */
.products {
  padding: 80px 0;
  background: var(--slate-50);
}

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

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--indigo-600);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.8px;
  color: var(--slate-900);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 520px;
  margin: 0 auto;
}

/* Featured product card */
.product-featured {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  margin-bottom: 32px;
}

.product-featured-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: var(--indigo-50);
}

.product-featured-content h3 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.6px;
  color: var(--slate-900);
  margin: 10px 0 8px;
}

.product-tagline {
  font-size: 16px;
  color: var(--slate-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-700);
}

.product-features li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--indigo-500);
  flex-shrink: 0;
}

.product-featured-visual {
  background: linear-gradient(135deg, var(--indigo-600) 0%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.product-featured-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.product-featured-visual::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  bottom: -60px;
  left: -40px;
}

.product-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
}

.mockup-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 20px;
  color: #fff;
}

.mockup-card + .mockup-card {
  margin-top: 12px;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mockup-label {
  font-size: 12px;
  font-weight: 600;
  opacity: .8;
}

.mockup-val {
  font-size: 18px;
  font-weight: 800;
}

.mockup-bar-wrap {
  height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
  overflow: hidden;
}

.mockup-bar {
  height: 100%;
  border-radius: 3px;
  background: rgba(255,255,255,.75);
}

.mockup-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.mockup-chip {
  padding: 3px 10px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

/* Coming soon cards */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.coming-soon-card {
  background: #fff;
  border: 1.5px dashed var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s;
}
.coming-soon-card:hover { border-color: var(--indigo-300); }

.coming-soon-card .icon {
  font-size: 28px;
}

.coming-soon-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-800);
}

.coming-soon-card p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ── Values ───────────────────────────────────────────────────────────────── */
.values {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--indigo-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -.2px;
}

.value-card p {
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--indigo-600) 0%, #7c3aed 100%);
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
}

.cta-banner p {
  font-size: 18px;
  opacity: .85;
  max-width: 480px;
  margin: 0 auto 36px;
}

.btn-white {
  background: #fff;
  color: var(--indigo-700);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--indigo-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.cta-note { margin-top: 16px; font-size: 13px; opacity: .65; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 52px 0 32px;
}

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

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--indigo-600);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--slate-400);
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a { color: var(--slate-500); transition: color .15s; }
.footer-bottom-links a:hover { color: var(--slate-300); }

/* ── Mobile nav menu ──────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.5);
  z-index: 200;
  backdrop-filter: blur(4px);
}

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

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .25s ease;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--slate-500);
  padding: 4px 8px;
  margin-bottom: 8px;
}

.mobile-menu-panel a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: 8px;
  transition: background .15s;
}
.mobile-menu-panel a:hover { background: var(--slate-100); }

.mobile-menu-panel .btn {
  margin-top: 12px;
  justify-content: center;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-hamburger { display: flex; }

  .product-featured {
    grid-template-columns: 1fr;
  }
  .product-featured-visual { min-height: 240px; }
  .product-mockup { max-width: 260px; }



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

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .hero { padding: 64px 0 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .product-featured-content { padding: 32px 24px; }
  .product-featured-content h3 { font-size: 24px; }

  .coming-soon-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; gap: 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
