@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ══════════════════════════════════════════
   CSS VARIABLES
   ══════════════════════════════════════════ */
:root {
  --bg-primary: #07070d;
  --bg-secondary: #0c0c16;
  --bg-card: #11111b;
  --bg-card-hover: #1a1a2e;
  --accent: #6c5ce7;
  --accent-light: #a29bfe;
  --accent-glow: rgba(108,92,231,0.3);
  --gold: #C9A84C;
  --gold-light: #e8d48b;
  --gold-glow: rgba(201,168,76,0.25);
  --green: #00b894;
  --green-glow: rgba(0,184,148,0.3);
  --red: #e17055;
  --orange: #fdcb6e;
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --border: #222238;
  --nav-height: 64px;
}

/* ══════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}
a { color: var(--accent-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(7,7,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem; color: var(--text-primary);
}
.nav-logo img { height: 28px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--accent-light); }

.lang-toggle {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 14px; cursor: pointer;
  font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
  font-family: 'Inter', sans-serif; transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--text-primary); }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-secondary); border-radius: 2px; transition: all 0.3s;
}

/* ══════════════════════════════════════════
   SECTIONS (generic)
   ══════════════════════════════════════════ */
#fullpage {
  width: 100%;
}

.snap-section {
  scroll-snap-align: start;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
section {
  padding: clamp(40px, 5dvh, 80px) 48px;
  max-width: 1200px;
  width: 100%;
  position: relative;
}
.section-label {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--accent-light);
  margin-bottom: clamp(6px, 1dvh, 14px);
  padding: 4px 12px;
  border: 1px solid var(--accent);
  border-radius: 20px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5dvh, 2.4rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -1.2px;
  margin-bottom: clamp(8px, 1.5dvh, 18px);
}
.section-subtitle {
  font-size: clamp(0.82rem, 1.3dvh, 1rem); color: var(--text-secondary);
  line-height: 1.6; max-width: 680px;
}
.highlight { color: var(--accent-light); }
.gold { color: var(--gold); }
.green { color: var(--green); }
.divider { width: 60px; height: 3px; background: var(--accent); border-radius: 2px; margin: clamp(8px, 1dvh, 16px) 0; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
#hero {
  scroll-snap-align: start;
  min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
  max-width: none;
}
#hero-canvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; opacity: 0.12;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }

.device-container {
  position: relative;
  width: clamp(140px, 22dvh, 240px); height: clamp(140px, 22dvh, 240px);
  margin: 0 auto clamp(12px, 2dvh, 30px);
}
.device-img {
  width: 100%; height: 100%;
  object-fit: contain;
  animation: deviceFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(108,92,231,0.25));
}
.device-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 200%; height: 200%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-14px) rotate(0.5deg); }
  75% { transform: translateY(8px) rotate(-0.5deg); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%,-50%) scale(1.08); }
}

.hero-title {
  font-size: clamp(2.2rem, 5dvh, 3.4rem); font-weight: 900;
  letter-spacing: -2px; line-height: 1.08;
  margin-bottom: clamp(8px, 1.5dvh, 16px);
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: clamp(0.9rem, 1.5dvh, 1.15rem); color: var(--text-secondary);
  font-weight: 300; line-height: 1.5;
  margin-bottom: clamp(12px, 2dvh, 28px); max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: clamp(8px, 1dvh, 16px); }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: clamp(12px, 2dvh, 28px); }
.trust-badge {
  font-size: clamp(0.6rem, 0.9dvh, 0.7rem); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--gold); border: 1px solid rgba(241,196,15,0.25);
  padding: 3px 10px; border-radius: 20px;
  background: rgba(241,196,15,0.06);
}
.pill {
  display: inline-block; padding: 4px 12px;
  border-radius: 20px; font-size: clamp(0.65rem, 1dvh, 0.75rem); font-weight: 600;
}
.pill-accent { background: rgba(108,92,231,0.15); color: var(--accent-light); border: 1px solid rgba(108,92,231,0.3); }
.pill-green { background: rgba(0,184,148,0.12); color: var(--green); border: 1px solid rgba(0,184,148,0.3); }
.pill-gold { background: rgba(201,168,76,0.12); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(8px, 1.2dvh, 14px) clamp(20px, 2.5vw, 32px); border-radius: 12px;
  font-size: clamp(0.78rem, 1.2dvh, 0.9rem); font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer; border: none; transition: all 0.25s;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover { background: #7d6ef0; transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow); }
.btn-outline {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--text-primary); }

.scroll-hint {
  position: absolute; bottom: clamp(10px, 1.5dvh, 28px); left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--text-muted); font-size: 0.7rem;
  animation: scrollBounce 2s infinite;
}
.scroll-hint svg { width: 20px; height: 20px; stroke: var(--text-muted); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   CARDS & GRIDS
   ══════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.5dvh, 24px); }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(12px, 1.5dvh, 20px); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(14px, 2dvh, 26px);
  transition: all 0.3s ease;
}
.card:hover { background: var(--bg-card-hover); border-color: var(--accent); transform: translateY(-3px); }
.card-icon { font-size: clamp(1.4rem, 2.5dvh, 2rem); margin-bottom: clamp(4px, 0.8dvh, 12px); display: block; }
.card h3 { font-size: clamp(0.85rem, 1.3dvh, 1.05rem); font-weight: 700; margin-bottom: clamp(4px, 0.6dvh, 8px); color: var(--text-primary); }
.card p { color: var(--text-secondary); font-size: clamp(0.72rem, 1.1dvh, 0.85rem); line-height: 1.5; }

/* ══════════════════════════════════════════
   BIG QUOTE
   ══════════════════════════════════════════ */
.big-quote {
  font-size: clamp(0.9rem, 1.4dvh, 1.2rem); font-weight: 300; line-height: 1.5;
  color: var(--text-secondary);
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin: clamp(16px, 2dvh, 32px) 0 0;
  max-width: 800px;
}
.big-quote strong { color: var(--text-primary); font-weight: 600; }

/* ══════════════════════════════════════════
   FLOW DIAGRAM
   ══════════════════════════════════════════ */
.flow { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.flow-step {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: clamp(10px, 1.5dvh, 18px) clamp(12px, 1.5vw, 22px); text-align: center; min-width: 110px;
  transition: all 0.3s;
}
.flow-step:hover { border-color: var(--accent); transform: translateY(-2px); }
.flow-icon { font-size: clamp(1.2rem, 2dvh, 1.6rem); margin-bottom: 4px; }
.flow-label { font-size: clamp(0.7rem, 1dvh, 0.82rem); font-weight: 700; color: var(--text-primary); }
.flow-desc { font-size: clamp(0.6rem, 0.9dvh, 0.7rem); color: var(--text-muted); margin-top: 3px; line-height: 1.3; }
.flow-arrow { font-size: 1.2rem; color: var(--accent); padding: 0 4px; }

.flow-section-label {
  text-align: center; margin: clamp(12px, 2dvh, 28px) 0 clamp(8px, 1.5dvh, 16px);
  font-size: clamp(0.85rem, 1.3dvh, 1.05rem); font-weight: 600; color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(12px, 1.5dvh, 20px); margin-top: clamp(16px, 2dvh, 32px); }
.feature-card { position: relative; overflow: hidden; }
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover::after { opacity: 1; }

/* ══════════════════════════════════════════
   APP SHOWCASE / SLIDESHOW
   ══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════════ */
#comparison { text-align: center; }
.cmp-table-wrap {
  max-width: 820px; margin: clamp(16px, 2dvh, 32px) auto 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.cmp-table {
  width: 100%; border-collapse: collapse; text-align: center;
  font-size: clamp(0.72rem, 1.1dvh, 0.85rem);
}
.cmp-table th, .cmp-table td {
  padding: clamp(6px, 1dvh, 10px) 12px; border-bottom: 1px solid var(--border);
}
.cmp-table thead th {
  font-weight: 700; color: var(--text-primary); font-size: clamp(0.68rem, 1dvh, 0.8rem);
  text-transform: uppercase; letter-spacing: 0.5px; padding-bottom: clamp(8px, 1dvh, 14px);
}
.cmp-table tbody td:first-child {
  text-align: left; font-weight: 500; color: var(--text-secondary);
}
.cmp-highlight {
  background: rgba(108,92,231,0.06);
}
.cmp-table thead th.cmp-highlight {
  color: var(--accent-light); border-bottom: 2px solid var(--accent);
}
.cmp-yes { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.cmp-no { color: #e17055; font-weight: 500; font-size: 1.1rem; }
.cmp-partial { color: var(--gold); font-weight: 600; }

/* ══════════════════════════════════════════
   DEMO VIDEO
   ══════════════════════════════════════════ */
#demo { text-align: center; }
.demo-video-wrap {
  position: relative; max-width: min(550px, 55dvh); margin: clamp(12px, 2dvh, 32px) auto 0;
  border-radius: 12px; overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  aspect-ratio: 1328/888;
  background: #0a0a14;
}
.demo-video-wrap video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.demo-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35); cursor: pointer;
  transition: background 0.3s;
}
.demo-play-overlay:hover { background: rgba(0,0,0,0.2); }
.demo-play-overlay.hidden { display: none; }
.demo-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(108,92,231,0.85); border: none;
  color: #fff; font-size: 1.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding-left: 4px;
  transition: transform 0.2s, background 0.2s;
}
.demo-play-btn:hover { transform: scale(1.1); background: var(--accent); }

#app-showcase { text-align: center; }

.showcase-wrapper {
  position: relative;
  max-width: min(550px, 55dvh); margin: clamp(10px, 1.5dvh, 24px) auto 0;
}
.showcase-frame {
  position: relative;
  background: #0a0a14;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1328/950;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 60px rgba(108,92,231,0.08);
}
.showcase-topbar {
  height: 36px;
  background: #0f0f1a;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 14px; gap: 7px;
}
.showcase-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.showcase-dot:nth-child(1) { background: #e17055; }
.showcase-dot:nth-child(2) { background: #fdcb6e; }
.showcase-dot:nth-child(3) { background: #00b894; }

.showcase-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1328/888;
}
.showcase-slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.showcase-slide.active { opacity: 1; }
.showcase-slide img { width: 100%; height: 100%; object-fit: cover; }

.showcase-nav {
  display: flex; justify-content: center; gap: 8px;
  margin-top: clamp(8px, 1dvh, 16px);
}
.showcase-dot-btn {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--text-muted);
  border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.showcase-dot-btn.active {
  background: var(--accent-light);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--accent-glow);
}

.showcase-caption {
  margin-top: clamp(6px, 1dvh, 14px);
  min-height: 40px;
}
.showcase-caption h3 {
  font-size: clamp(0.85rem, 1.2dvh, 1rem); font-weight: 700; color: var(--text-primary); margin-bottom: 4px;
}
.showcase-caption p {
  font-size: clamp(0.75rem, 1dvh, 0.85rem); color: var(--text-secondary); line-height: 1.4; max-width: 600px; margin: 0 auto;
}

/* ══════════════════════════════════════════
   LIGHTBOX MODAL
   ══════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox-overlay.show { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute; top: 16px; right: 24px;
  background: none; border: none; color: #fff; font-size: 2.2rem;
  cursor: pointer; z-index: 10; line-height: 1;
  opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 1.6rem; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.7; transition: opacity 0.2s, background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.15); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-content {
  max-width: 90vw; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-content img {
  max-width: 100%; max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.lightbox-caption {
  color: #ccc; font-size: 0.95rem; margin-top: 16px; text-align: center;
}
.lightbox-counter {
  color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 6px;
}
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 1.2rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ══════════════════════════════════════════
   HARDWARE SECTION
   ══════════════════════════════════════════ */
#hardware {
  display: flex; flex-direction: column; align-items: center;
}
.hardware-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-top: 40px; width: 100%;
}
.hardware-visual {
  display: flex; align-items: center; justify-content: center;
}
.hardware-device {
  max-width: 340px;
  animation: deviceFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 48px rgba(108,92,231,0.2));
}
.hardware-info h3 {
  font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; color: var(--text-primary);
}
.hardware-info p {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
}
.hardware-pills { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }

/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */
#pricing { text-align: center; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2dvh, 28px); max-width: 700px; margin: clamp(12px, 2dvh, 28px) auto 0;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px; padding: clamp(16px, 2.5dvh, 32px) clamp(16px, 2vw, 28px);
  text-align: center; position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-featured {
  border-color: var(--accent-light);
  box-shadow: 0 0 40px rgba(108,92,231,0.12);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.pricing-header h3 {
  font-size: clamp(0.9rem, 1.4dvh, 1.15rem); font-weight: 700; color: var(--text-primary); margin-bottom: 4px;
}
.pricing-price {
  font-size: clamp(1.8rem, 3.5dvh, 2.6rem); font-weight: 800; color: var(--text-primary); line-height: 1;
}
.pricing-currency { font-size: clamp(0.9rem, 1.5dvh, 1.3rem); font-weight: 600; }
.pricing-period {
  font-size: clamp(0.7rem, 1dvh, 0.8rem); color: var(--text-muted); margin-top: 2px; margin-bottom: clamp(10px, 1.5dvh, 18px);
}
.pricing-features {
  list-style: none; padding: 0; margin: 0 0 clamp(10px, 1.5dvh, 20px); text-align: left;
}
.pricing-features li {
  padding: clamp(3px, 0.5dvh, 6px) 0; font-size: clamp(0.72rem, 1dvh, 0.82rem); color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li::before {
  content: '\2713'; color: var(--green); margin-right: 10px; font-weight: 700;
}
.pricing-features li.pricing-disabled {
  color: var(--text-muted); opacity: 0.5;
}
.pricing-features li.pricing-disabled::before {
  content: '\2717'; color: var(--text-muted);
}
/* ══════════════════════════════════════════
   HEIR PORTAL
   ══════════════════════════════════════════ */
#heir-portal { text-align: center; }
.heir-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3dvh, 40px);
  align-items: start; margin-top: clamp(12px, 2dvh, 30px); max-width: 900px; margin-left: auto; margin-right: auto;
}
.heir-slideshow { position: relative; }
.heir-slides { position: relative; }
.heir-slide {
  display: none; width: 100%; max-height: 55dvh; object-fit: contain; border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.heir-slide.active { display: block; }
.heir-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 12px;
}
.heir-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: var(--text-muted); cursor: pointer; padding: 0;
  transition: background 0.3s;
}
.heir-dot.active { background: var(--accent); }
.heir-screenshot {
  width: 100%; border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.heir-info { text-align: left; }
.heir-step {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: clamp(10px, 1.5dvh, 20px);
}
.heir-step-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.heir-step h4 {
  font-size: clamp(0.8rem, 1.2dvh, 0.95rem); font-weight: 700; color: var(--text-primary); margin: 0 0 2px;
}
.heir-step p {
  font-size: clamp(0.72rem, 1dvh, 0.82rem); color: var(--text-secondary); line-height: 1.4; margin: 0;
}

.pricing-btn { width: 100%; }

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
#faq { text-align: center; }
.faq-list {
  max-width: 700px; margin: clamp(12px, 2dvh, 30px) auto 0; text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; background: none; border: none; padding: clamp(10px, 1.5dvh, 18px) 40px clamp(10px, 1.5dvh, 18px) 0;
  font-size: clamp(0.82rem, 1.2dvh, 0.95rem); font-weight: 600; color: var(--text-primary);
  text-align: left; cursor: pointer; position: relative;
  font-family: inherit; transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-light); }
.faq-question::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 300; color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: '\2212'; transform: translateY(-50%) rotate(0deg);
  color: var(--accent-light);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}
.faq-item.open .faq-answer {
  max-height: 300px; padding: 0 0 20px;
}
.faq-answer p {
  font-size: clamp(0.75rem, 1.1dvh, 0.85rem); color: var(--text-secondary); line-height: 1.5; margin: 0;
}

/* ══════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════ */
#team { text-align: center; }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2dvh, 28px); max-width: 650px; margin: clamp(12px, 2dvh, 28px) auto 0;
}
.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px; padding: clamp(16px, 2.5dvh, 30px) clamp(16px, 2vw, 24px); text-align: center;
}
.team-avatar {
  width: clamp(40px, 6dvh, 56px); height: clamp(40px, 6dvh, 56px); border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; font-size: clamp(0.85rem, 1.3dvh, 1.1rem);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto clamp(8px, 1dvh, 14px);
}
.team-card h4 {
  font-size: clamp(0.85rem, 1.2dvh, 1rem); font-weight: 700; color: var(--text-primary); margin: 0 0 3px;
}
.team-role {
  font-size: clamp(0.65rem, 0.9dvh, 0.75rem); color: var(--accent-light); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 clamp(6px, 1dvh, 10px);
}
.team-bio {
  font-size: clamp(0.72rem, 1dvh, 0.82rem); color: var(--text-secondary); line-height: 1.5; margin: 0;
}

/* ══════════════════════════════════════════
   ROADMAP
   ══════════════════════════════════════════ */
#roadmap { text-align: center; }
.roadmap-timeline {
  position: relative; max-width: 600px; margin: clamp(12px, 2dvh, 28px) auto 0;
  padding-left: 32px; text-align: left;
}
.roadmap-timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: var(--border);
}
.roadmap-item {
  position: relative; margin-bottom: clamp(12px, 2dvh, 26px);
}
.roadmap-item:last-child { margin-bottom: 0; }
.roadmap-dot {
  position: absolute; left: -32px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--text-muted);
}
.roadmap-done .roadmap-dot {
  background: var(--green); border-color: var(--green);
}
.roadmap-current .roadmap-dot {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.roadmap-date {
  font-size: 0.75rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.roadmap-content h4 {
  font-size: clamp(0.8rem, 1.2dvh, 0.95rem); font-weight: 700; color: var(--text-primary); margin: 2px 0 4px;
}
.roadmap-content p {
  font-size: clamp(0.72rem, 1dvh, 0.82rem); color: var(--text-secondary); line-height: 1.4; margin: 0;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.snap-section.footer-snap {
  min-height: auto;
}
.footer {
  text-align: center;
  padding: 80px 48px 40px;
  max-width: 800px;
  width: 100%;
}
.footer-cta-title {
  font-size: 2.2rem; font-weight: 800;
  letter-spacing: -1px; margin-bottom: 16px;
}
.footer-cta-sub {
  font-size: 1.05rem; color: var(--text-secondary);
  margin-bottom: 36px; line-height: 1.6;
}
.footer-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.footer-socials {
  display: flex; gap: 16px; margin-bottom: 4px;
}
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-muted); transition: all 0.3s;
}
.social-link:hover {
  color: var(--accent-light); border-color: var(--accent);
  background: rgba(108,92,231,0.1); transform: translateY(-2px);
}
.footer-nav {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 12px; font-size: 0.8rem;
}
.footer-nav a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent); }
.footer-nav span { color: var(--text-muted); }
.footer-company {
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
}
.footer-copy { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* ══════════════════════════════════════════
   COMING SOON MODAL
   ══════════════════════════════════════════ */
.cs-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7,7,13,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cs-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cs-box {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 48px 56px;
  box-shadow: 0 24px 80px rgba(108,92,231,0.2);
  transform: scale(0.9);
  transition: transform 0.35s ease;
}
.cs-overlay.show .cs-box { transform: scale(1); }
.cs-icon { font-size: 3rem; margin-bottom: 16px; }
.cs-title {
  font-size: 1.8rem; font-weight: 800; color: var(--text-primary);
  margin-bottom: 8px;
}
.cs-text {
  font-size: 1rem; color: var(--text-secondary); line-height: 1.5;
}

/* ── Contact Modal ── */
.contact-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  width: 90%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 24px 80px rgba(108,92,231,0.2);
  transform: scale(0.9);
  transition: transform 0.35s ease;
}
.cs-overlay.show .contact-modal { transform: scale(1); }
.contact-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--text-secondary);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.contact-close:hover { color: var(--text-primary); }
.contact-title {
  font-size: 1.5rem; font-weight: 700; margin-bottom: 6px;
  color: var(--text-primary);
}
.contact-sub {
  font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5;
}
.contact-row { display: flex; gap: 12px; }
.contact-row .contact-field { flex: 1; }
.contact-field { margin-bottom: 16px; }
.contact-field label {
  display: block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-secondary); margin-bottom: 6px;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--accent); }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--text-muted); }
.contact-field textarea { resize: vertical; min-height: 90px; }
.contact-alt {
  text-align: center; margin-top: 16px;
  font-size: 0.8rem; color: var(--text-secondary);
}
.contact-alt a { color: var(--gold); text-decoration: none; }
.contact-alt a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .contact-modal { padding: 32px 20px; }
  .contact-row { flex-direction: column; gap: 0; }
}

/* ══════════════════════════════════════════
   WAITLIST FORM
   ══════════════════════════════════════════ */
.waitlist-form { width: 100%; max-width: 480px; margin: 0 auto; text-align: center; }
.waitlist-input-wrap {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.waitlist-input-wrap:focus-within { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
.waitlist-input {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  min-width: 0;
}
.waitlist-input::placeholder { color: var(--text-muted); }
.waitlist-btn {
  border-radius: 0 10px 10px 0 !important;
  padding: 14px 24px !important;
  white-space: nowrap;
  font-size: 0.9rem !important;
  border: none !important;
  flex-shrink: 0;
}
.waitlist-msg {
  text-align: center;
  margin-top: 8px;
  font-size: 0.85rem;
  min-height: 22px;
}
.waitlist-msg.success { color: var(--green); }
.waitlist-msg.error { color: var(--red); }
.waitlist-msg.loading { color: var(--text-secondary); }
.waitlist-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.waitlist-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: waitlistPulse 2s ease-in-out infinite;
}
@keyframes waitlistPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@media (max-width: 480px) {
  .waitlist-input-wrap { flex-direction: column; }
  .waitlist-btn { border-radius: 0 0 10px 10px !important; width: 100%; }
  .waitlist-input { text-align: center; }
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s 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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════
   SUPPORT TICKET
   ══════════════════════════════════════════ */
.support-step { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.support-label { display: block; font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 6px; font-weight: 600; }
.support-input-row { display: flex; gap: 8px; }
.support-input, .support-select, .support-textarea {
  width: 100%; padding: 10px 14px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-size: 0.85rem; outline: none;
  transition: border-color 0.2s;
}
.support-input:focus, .support-select:focus, .support-textarea:focus { border-color: var(--accent); }
.support-textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.support-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.support-btn { white-space: nowrap; flex-shrink: 0; padding: 10px 20px; font-size: 0.85rem; }
.support-field { margin-bottom: 12px; }
.support-msg { font-size: 0.78rem; margin-top: 8px; min-height: 1.2em; }
.support-msg.error { color: #e74c3c; }
.support-msg.success { color: #00b894; }
.support-hint { font-size: 0.72rem; color: var(--text-muted); margin-top: 12px; }
.support-sub { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 10px; }
.support-sub-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.support-timer { font-size: 0.75rem; color: var(--text-muted); font-family: monospace; }
.support-link { font-size: 0.75rem; color: var(--accent); text-decoration: none; }
.support-link:hover { text-decoration: underline; }
.support-verified-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,184,148,0.08); border: 1px solid rgba(0,184,148,0.2); border-radius: 6px; padding: 6px 12px; font-size: 0.8rem; margin-bottom: 16px; }
.support-ticket-number { font-family: monospace; font-size: 1.3rem; color: var(--accent); font-weight: 700; letter-spacing: 1px; margin: 8px 0; }

.ticket-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 14px; margin-bottom: 8px; }
.ticket-item-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.ticket-item-number { font-family: monospace; font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.ticket-item-subject { font-size: 0.85rem; color: var(--text-primary); font-weight: 500; }
.ticket-item-meta { display: flex; gap: 8px; align-items: center; font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }
.ticket-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; }
.ticket-badge.open { background: rgba(52,152,219,0.15); color: #3498db; }
.ticket-badge.inprogress { background: rgba(241,196,15,0.15); color: #f1c40f; }
.ticket-badge.resolved { background: rgba(0,184,148,0.15); color: #00b894; }
.ticket-badge.closed { background: rgba(127,140,141,0.15); color: #7f8c8d; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: clamp(32px, 4dvh, 60px) 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hardware-layout { grid-template-columns: 1fr; text-align: center; }
  .hardware-pills { justify-content: center; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: rgba(7,7,13,0.97); backdrop-filter: blur(16px);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  html {
    scroll-snap-type: none;
  }
  .snap-section {
    min-height: auto;
    scroll-snap-align: none;
  }
  #hero {
    scroll-snap-align: none;
    min-height: 100vh;
  }

  section { padding: 60px 20px 40px; }
  .device-container { width: 160px; height: 160px; }

  .grid-2, .grid-3, .features-grid, .pricing-grid, .heir-layout, .team-grid { grid-template-columns: 1fr; }
  .flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); padding: 4px 0; }

  .showcase-frame { border-radius: 10px; }
  .hardware-layout { gap: 32px; }
  .hardware-device { max-width: 220px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .footer-cta-buttons { flex-direction: column; align-items: center; }
}
