  :root {
    --bg: #080808;
    --bg-2: #0d0d0d;
    --bg-3: #111111;
    --surface: #161616;
    --border: rgba(255,255,255,0.07);
    --border-bright: rgba(255,255,255,0.12);
    --text: #f0f0f0;
    --text-muted: #6b6b6b;
    --text-dim: #3a3a3a;
    --accent: #e8ff47;
    --accent-dim: rgba(232,255,71,0.12);
    --accent-glow: rgba(232,255,71,0.25);
    --blue: #4f9cf9;
    --blue-dim: rgba(79,156,249,0.1);
    --red: #ff4f4f;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 12px;
    --max-w: 1160px;
    --glass-bg: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.09);
    --glass-hover-bg: rgba(255,255,255,0.07);
    --glass-hover-border: rgba(232,255,71,0.2);
    --glass-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  /* ─── LAYOUT ─── */
  .container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
  section { position: relative; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(8,8,8,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }
  .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .logo-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--accent);
    color: #000 !important;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 500 !important;
    font-size: 13px !important;
    transition: opacity 0.2s !important;
  }
  .nav-cta:hover { opacity: 0.88 !important; color: #000 !important; }
  .nav-cta-pulse {
    animation: cta-ring-pulse 2.5s ease-in-out infinite;
  }

  /* ─── BUTTONS ─── */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
  }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--border-bright);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-1px); }

  /* ─── LABELS ─── */
  .label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(232,255,71,0.2);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 24px;
  }
  .label-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    position: relative;
  }
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
  }
  .hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,255,71,0.10) 0%, transparent 65%);
    top: -120px; right: -120px;
    animation: orb-float-1 9s ease-in-out infinite;
  }
  .hero-orb-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(79,156,249,0.09) 0%, transparent 65%);
    bottom: -60px; left: -100px;
    animation: orb-float-2 11s ease-in-out infinite;
  }
  .hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,255,71,0.06) 0%, transparent 65%);
    top: 45%; left: 38%;
    animation: orb-float-3 13s ease-in-out infinite;
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    z-index: 0;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-left { display: flex; flex-direction: column; }
  h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 24px;
  }
  h1 em {
    font-style: normal;
    color: var(--accent);
  }
  .hero-tagline {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 300;
  }
  .hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 36px;
  }
  .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  /* Glass metric cards */
  .hero-metrics {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .metric-glass {
    flex: 1;
    min-width: 90px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .metric-glass .metric-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    display: block;
  }
  .metric-glass .metric-label {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    line-height: 1.3;
    display: block;
  }

  /* Voice orb */
  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .voice-orb-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .voice-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(232,255,71,0.12);
    animation: ring-pulse 3s ease-in-out infinite;
  }
  .voice-ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
  .voice-ring-2 { width: 78%; height: 78%; animation-delay: 0.6s; border-color: rgba(232,255,71,0.18); }
  .voice-ring-3 { width: 56%; height: 56%; animation-delay: 1.2s; border-color: rgba(232,255,71,0.25); }
  .voice-core {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(232,255,71,0.18), rgba(232,255,71,0.04) 60%, transparent);
    border: 1px solid rgba(232,255,71,0.28);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(232,255,71,0.08), inset 0 1px 0 rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .voice-bars { display: flex; align-items: center; gap: 3px; }
  .voice-bar {
    width: 3px;
    border-radius: 2px;
    background: var(--accent);
    animation: wave-bar 1.3s ease-in-out infinite;
  }
  .voice-bar:nth-child(1) { height: 8px;  animation-delay: 0s; }
  .voice-bar:nth-child(2) { height: 18px; animation-delay: 0.18s; }
  .voice-bar:nth-child(3) { height: 28px; animation-delay: 0.36s; }
  .voice-bar:nth-child(4) { height: 20px; animation-delay: 0.54s; }
  .voice-bar:nth-child(5) { height: 30px; animation-delay: 0.72s; }
  .voice-bar:nth-child(6) { height: 22px; animation-delay: 0.54s; }
  .voice-bar:nth-child(7) { height: 12px; animation-delay: 0.36s; }

  /* Floating chips */
  .orbit-chip {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 12px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    z-index: 3;
  }
  .chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
  .orbit-chip-1 { top: 10px;    right: -55px; animation: float-card 6s ease-in-out infinite; }
  .orbit-chip-2 { bottom: 50px; right: -65px; animation: float-card 7s ease-in-out infinite 1s; }
  .orbit-chip-3 { bottom: 10px; left: -55px;  animation: float-card 8s ease-in-out infinite 2s; }

  /* ─── SECTION HEADERS ─── */
  .section-header { margin-bottom: 64px; }
  h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 16px;
  }
  h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), #b8cc30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.65;
    font-weight: 300;
  }

  /* ─── PROBLEM ─── */
  #problem { padding: 120px 0; }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
  }
  .problem-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 28px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .problem-card:hover {
    background: var(--glass-hover-bg);
    border-color: rgba(255,75,75,0.25);
    transform: translateY(-3px);
    box-shadow: var(--glass-shadow);
  }
  .problem-icon { font-size: 28px; margin-bottom: 16px; }
  .problem-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--text);
  }
  .problem-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

  /* ─── SOLUTION ─── */
  #solution { padding: 120px 0; }
  .solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .solution-features { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
  .sol-feat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    transition: background 0.2s, border-color 0.2s;
  }
  .sol-feat:hover { background: var(--glass-hover-bg); border-color: rgba(232,255,71,0.15); color: var(--text); }
  .sol-feat-icon { font-size: 18px; flex-shrink: 0; }

  /* ─── HOW IT WORKS ─── */
  #how { padding: 120px 0; }
  .steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
  }
  /* Connecting line */
  .steps-row::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,255,71,0.3) 20%, rgba(232,255,71,0.3) 80%, transparent);
    z-index: 0;
  }
  .step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
  }
  .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid rgba(232,255,71,0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    margin: 0 auto 20px;
    transition: background 0.25s, box-shadow 0.25s;
  }
  .step-item:hover .step-number {
    background: rgba(232,255,71,0.1);
    box-shadow: 0 0 20px rgba(232,255,71,0.15);
  }
  .step-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; color: var(--text); }
  .step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

  /* ─── ADVANTAGES ─── */
  #advantages { padding: 120px 0; }
  .adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
  }
  .adv-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .adv-card:hover {
    background: var(--glass-hover-bg);
    border-color: var(--glass-hover-border);
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow);
  }
  .adv-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1;
  }
  .adv-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
  .adv-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ─── TECHNOLOGY ─── */
#tech { padding: 120px 0; }
.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.tech-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 14px 18px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tech-pill:hover {
  background: var(--glass-hover-bg);
  border-color: rgba(232,255,71,0.2);
  box-shadow: 0 0 20px rgba(232,255,71,0.05);
}
.tech-pill-name { font-size: 13px; font-weight: 500; color: var(--text); }
.tech-pill-tag { font-size: 11px; color: var(--text-muted); font-weight: 300; letter-spacing: 0.02em; }
.tech-visual {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 32px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 2;
  overflow: hidden;
}
.code-line { display: block; }
.code-comment { color: var(--text-dim); }
.code-key { color: var(--accent); }
.code-str { color: #7ec97e; }
.code-val { color: #4f9cf9; }

  /* ─── POC ─── */
#poc { padding: 120px 0; }
.poc-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.poc-card:hover {
  border-color: var(--glass-hover-border);
}
.poc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 40px 32px;
  align-items: start;
}
.poc-demo-screen {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  min-height: 200px;
  backdrop-filter: blur(8px);
}
.demo-chat { display: flex; flex-direction: column; gap: 14px; }
.demo-msg { display: flex; align-items: flex-start; gap: 10px; }
.demo-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}
.demo-avatar.ai { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(232,255,71,0.2); }
.demo-avatar.user { background: rgba(255,255,255,0.08); color: var(--text-muted); border: 1px solid var(--border); }
.demo-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}
.demo-bubble.ai { background: var(--accent-dim); border-color: rgba(232,255,71,0.15); color: rgba(255,255,255,0.75); }
.poc-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}
.poc-feat {
  padding: 28px 32px;
  background: rgba(8,8,8,0.6);
  transition: background 0.2s;
}
.poc-feat:hover { background: var(--glass-bg); }
.poc-feat-icon { font-size: 22px; margin-bottom: 12px; }
.poc-feat-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--text); letter-spacing: -0.01em; }
.poc-feat-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.poc-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 40px;
  border-top: 1px solid var(--border);
  background: rgba(232,255,71,0.03);
  flex-wrap: wrap;
}
.poc-cta-text { font-size: 14px; color: var(--text-muted); font-weight: 300; }
.poc-cta-text strong { color: var(--text); font-weight: 500; }

/* ─── PRICING ─── */
#pricing { padding: 120px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { border-color: rgba(232,255,71,0.15); }
.pricing-card.recommended {
  border-color: rgba(232,255,71,0.3);
  box-shadow: 0 0 40px rgba(232,255,71,0.07), inset 0 0 60px rgba(232,255,71,0.02);
}
.pricing-card.recommended:hover {
  box-shadow: 0 0 60px rgba(232,255,71,0.12), inset 0 0 60px rgba(232,255,71,0.03);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pricing-plan-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.pricing-plan-desc { font-size: 12px; color: var(--text-muted); font-weight: 300; margin-top: 6px; margin-bottom: 20px; line-height: 1.5; }
.pricing-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.pricing-amount { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.pricing-currency { font-size: 14px; color: var(--text-muted); font-weight: 300; }
.pricing-period { font-size: 12px; color: var(--text-muted); font-weight: 300; }
.pricing-setup { font-size: 11px; color: var(--text-dim); margin-bottom: 20px; }
.pricing-cta { display: block; text-align: center; margin-bottom: 24px; width: 100%; box-sizing: border-box; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pricing-features li { font-size: 12px; color: var(--text-muted); font-weight: 300; display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: ''; width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.pricing-features li.included { color: rgba(255,255,255,0.65); }
.pricing-features li.included::before { background: rgba(232,255,71,0.25); border: 1px solid rgba(232,255,71,0.4); }
.pricing-features li.excluded::before { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }

/* Pricing toggle */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 12px; }
.pricing-toggle-label { font-size: 13px; color: var(--text-muted); cursor: pointer; transition: color 0.2s; }
.pricing-toggle-label.active { color: var(--text); font-weight: 500; }
.pricing-toggle-switch {
  width: 44px; height: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.pricing-toggle-switch.active { background: rgba(232,255,71,0.15); border-color: rgba(232,255,71,0.3); }
.pricing-toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.pricing-toggle-switch.active .pricing-toggle-knob { transform: translateX(20px); background: var(--accent); }
.pricing-commitment { text-align: center; font-size: 11px; color: var(--text-dim); margin-bottom: 40px; }
.pricing-save { background: rgba(232,255,71,0.1); border: 1px solid rgba(232,255,71,0.2); border-radius: 4px; padding: 2px 6px; font-size: 10px; color: var(--accent); margin-left: 6px; }

/* Addons */
.pricing-addons { margin-top: 64px; }
.pricing-addons-header { margin-bottom: 24px; }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.addon-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.addon-card:hover { background: var(--glass-hover-bg); border-color: rgba(232,255,71,0.15); }
.addon-name { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.addon-price { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.addon-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ─── CTA FINAL ─── */
#cta-final {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,255,71,0.04) 0%, transparent 70%);
  pointer-events: none;
}
#cta-final .container {
  position: relative;
  z-index: 1;
}
#cta-final > .container > .fade-up {
  background: var(--glass-bg);
  border: 1px solid rgba(232,255,71,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  box-shadow: 0 0 80px rgba(232,255,71,0.04);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
}
.cta-title em { font-style: normal; color: var(--accent); }
.cta-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-final-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

  /* ─── FOOTER ─── */
  footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
  }
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-text { font-size: 12px; color: var(--text-dim); font-weight: 300; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 12px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-muted); }

  /* ─── ANIMATIONS ON SCROLL ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--text-dim); border-radius: 2px; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
    .adv-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-layout, .solution-layout { grid-template-columns: 1fr; gap: 48px; }
    .steps-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .steps-row::before { display: none; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .problem-grid { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; }
    .poc-header { grid-template-columns: 1fr; }
    .poc-body { grid-template-columns: 1fr; }
    .poc-cta-bar { flex-direction: column; gap: 16px; text-align: center; }
    .hero-metrics { flex-wrap: wrap; gap: 24px; }
    .metric-divider { display: none; }
  }

/* ─── GLASS ANIMATIONS ─── */
@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-30px, 20px) scale(1.05); }
  66%       { transform: translate(15px, -25px) scale(0.97); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(20px, -15px) scale(1.03); }
  70%       { transform: translate(-10px, 25px) scale(0.98); }
}
@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-15px, 20px); }
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%       { transform: scale(1.04); opacity: 0.9; }
}
@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50%       { transform: scaleY(1.4); opacity: 1; }
}
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes cta-ring-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,255,71,0.35); }
  70%  { box-shadow: 0 0 0 10px rgba(232,255,71,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,255,71,0); }
}
@keyframes count-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 24px; }
  .steps-row::before { display: none; }
  .poc-header { grid-template-columns: 1fr; }
  .poc-body { grid-template-columns: 1fr; }
  .solution-layout { grid-template-columns: 1fr; }
  .tech-layout { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  #cta-final > .container > .fade-up { padding: 40px 24px; }
  h1 { font-size: 36px; }
}
