/* =========================================================
   Digital Logic India — Premium Dark UI
   ========================================================= */

:root {
  /* Brand palette — Deep Violet × Amber Gold × Teal */
  --midnight: #07060f;
  --midnight-2: #0e0c24;
  --electric: #7c3aed;
  --purple: #f59e0b;
  --cyan: #06b6d4;
  --white: #ffffff;

  /* Surfaces */
  --bg: #07060f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);

  /* Text */
  --text: #edf0ff;
  --text-soft: #a8aed8;
  --text-mute: #6b73a8;

  /* Effects */
  --grad-brand: linear-gradient(120deg, var(--cyan), var(--electric) 45%, var(--purple));
  --grad-cta: linear-gradient(120deg, var(--electric), var(--purple));
  --glow: 0 0 40px rgba(124, 58, 237, 0.4);
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
  --radius: 20px;
  --radius-sm: 14px;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; letter-spacing: -0.02em; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--electric); color: #fff; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--electric); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* ---------- Background: Drifting Orbs + Sweep Beams + Dot Grid ---------- */
.aurora {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background: #07060f;
}

/* Radial-gradient orbs — no blur filter, so they stay crisp and deep */
.aurora__blob { position: absolute; border-radius: 50%; will-change: transform; }
.aurora__blob--1 {
  width: 70vw; height: 70vw;
  background: radial-gradient(circle at 40% 40%, rgba(124,58,237,0.42) 0%, rgba(124,58,237,0.07) 52%, transparent 72%);
  top: -20%; left: -18%;
  animation: orb-a 22s ease-in-out infinite alternate;
}
.aurora__blob--2 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle at 60% 60%, rgba(245,158,11,0.28) 0%, rgba(245,158,11,0.05) 52%, transparent 72%);
  bottom: -18%; right: -12%;
  animation: orb-b 28s ease-in-out infinite alternate;
}
.aurora__blob--3 {
  width: 44vw; height: 44vw;
  background: radial-gradient(circle at 50% 50%, rgba(6,182,212,0.22) 0%, transparent 66%);
  top: 32%; left: 26%;
  animation: orb-c 34s ease-in-out infinite alternate;
}

/* Diagonal sweep beam — violet — slides across the full viewport */
.aurora::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    transparent 0%, transparent 28%,
    rgba(124,58,237,0.18) calc(50% - 55px),
    rgba(124,58,237,0.26) 50%,
    rgba(124,58,237,0.18) calc(50% + 55px),
    transparent calc(50% + 110px), transparent 100%
  );
  animation: beam-glide 20s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  will-change: transform;
}
/* Diagonal sweep beam — amber */
.aurora::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    transparent 0%, transparent 18%,
    rgba(245,158,11,0.12) calc(50% - 38px),
    rgba(245,158,11,0.18) 50%,
    rgba(245,158,11,0.12) calc(50% + 38px),
    transparent calc(50% + 76px), transparent 100%
  );
  animation: beam-glide 28s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  animation-delay: -13s;
  will-change: transform;
}

/* Moving dot grid — fades to edges via mask */
.grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 88% 78% at 50% 42%, #000 12%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 88% 78% at 50% 42%, #000 12%, transparent 70%);
  animation: dots-shift 55s linear infinite;
}

@keyframes orb-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(9%, 13%) scale(1.18); }
}
@keyframes orb-b {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-9%, -10%) scale(1.14); }
}
@keyframes orb-c {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(7%, -12%) scale(1.22); }
}
/* Sweep: slides from far left to far right, then instantly resets while invisible */
@keyframes beam-glide {
  0%   { transform: translateX(-150%); opacity: 0; }
  8%   { opacity: 1; }
  72%  { opacity: 1; }
  84%  { opacity: 0; transform: translateX(150%); }
  85%  { opacity: 0; transform: translateX(-150%); }
  100% { opacity: 0; transform: translateX(-150%); }
}
@keyframes dots-shift { to { background-position: 36px 36px; } }

@media (prefers-reduced-motion: reduce) {
  .aurora__blob, .aurora::before, .aurora::after, .grid-overlay { animation: none; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section--alt::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(124,58,237,0.04), transparent); z-index: -1; }

.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.gradient-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 70px); text-align: center; }
.section__head h2 { font-size: clamp(2rem, 5vw, 3.3rem); margin-bottom: 18px; }
.section__lead { color: var(--text-soft); font-size: clamp(1rem, 2vw, 1.15rem); }

/* ---------- Buttons ---------- */
.btn {
  --pad: 13px 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad); border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.btn--lg { --pad: 16px 32px; font-size: 1rem; }
.btn--primary { background: var(--grad-cta); color: #fff; box-shadow: 0 10px 30px -8px rgba(124,58,237,0.55); }
.btn--primary:hover { box-shadow: 0 14px 44px -8px rgba(245,158,11,0.5); transform: translateY(-2px); }
.btn--ghost { background: var(--surface-2); color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }

.pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border); font-size: 0.85rem; color: var(--text-soft); margin-bottom: 26px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.link-arrow { color: var(--cyan); font-weight: 600; font-size: 0.9rem; display: inline-block; margin-top: 6px; transition: gap .2s; }

/* ---------- Navbar ---------- */
.nav { position: fixed; top: 16px; left: 0; right: 0; z-index: 50; padding: 0 16px; transition: top .3s var(--ease); }
.nav__inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 14px 12px 20px; border-radius: 100px; box-shadow: var(--shadow); }
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.05rem; }
.nav__logo { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--grad-cta); color: #fff; box-shadow: var(--glow); }
.nav__brand-accent { color: var(--cyan); }
.nav__links { display: flex; gap: 28px; font-size: 0.92rem; color: var(--text-soft); }
.nav__links a { position: relative; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad-brand); transition: width .25s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 11px 22px; font-size: 0.9rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { position: absolute; top: 76px; left: 16px; right: 16px; flex-direction: column; gap: 6px; padding: 18px; border-radius: var(--radius); box-shadow: var(--shadow); }
.nav__mobile a { padding: 12px; border-radius: 12px; color: var(--text-soft); }
.nav__mobile a:hover { background: var(--surface-2); color: var(--text); }
.nav__mobile .btn { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 60px; overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__inner { position: relative; z-index: 1; }
.hero__content { max-width: 820px; }
.hero__title { font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 700; margin-bottom: 24px; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--text-soft); max-width: 620px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__flow { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-family: 'Space Grotesk'; font-size: 0.95rem; }
.flow__node { padding: 8px 16px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); color: var(--text-soft); }
.flow__node--glow { background: var(--grad-cta); color: #fff; border-color: transparent; box-shadow: 0 0 26px rgba(124,58,237,0.6); }
.flow__arrow { color: var(--cyan); }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); }
.hero__scroll span { width: 22px; height: 36px; border: 2px solid var(--border-strong); border-radius: 12px; position: relative; }
.hero__scroll span::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; border-radius: 2px; background: var(--cyan); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } }

/* ---------- Marquee ---------- */
.trust { padding: 26px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.015); overflow: hidden; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 26px; width: max-content; animation: marquee 32s linear infinite; font-family: 'Space Grotesk'; color: var(--text-soft); font-size: 1.05rem; }
.marquee__track span:nth-child(even) { color: var(--cyan); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---------- Service icons ---------- */
.service-icon, .problem-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; margin-bottom: 18px; position: relative; }
.service-icon::before, .problem-card__icon::before {
  content: ""; width: 24px; height: 24px; background: var(--grad-brand);
  -webkit-mask: var(--ic) center / contain no-repeat; mask: var(--ic) center / contain no-repeat;
}
[data-icon="cart"]    { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 18a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm10 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3 3h2l2.4 12.4a1 1 0 0 0 1 .8h9.7a1 1 0 0 0 1-.8L21 7H6'/%3E%3C/svg%3E"); }
[data-icon="video"]   { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 5h13a2 2 0 0 1 2 2v2l4-2v10l-4-2v2a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E"); }
[data-icon="layout"]  { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 3h8v18H3zM13 3h8v8h-8zM13 13h8v8h-8z'/%3E%3C/svg%3E"); }
[data-icon="megaphone"]{ --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 10v4h4l6 5V5L7 10H3Zm15-3v10a4 4 0 0 0 0-10Z'/%3E%3C/svg%3E"); }
[data-icon="magnet"]  { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M5 3h4v8a3 3 0 0 0 6 0V3h4v8a7 7 0 0 1-14 0V3Zm0 14h4v4H5zm10 0h4v4h-4z'/%3E%3C/svg%3E"); }
[data-icon="brand"]   { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='m12 2 2.4 5.3 5.8.6-4.3 3.9 1.2 5.7L12 14.8 6.9 17.5l1.2-5.7L3.8 7.9l5.8-.6z'/%3E%3C/svg%3E"); }
[data-icon="strategy"]{ --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 3h2v16h16v2H3zM7 14l4-4 3 3 5-6 1.5 1.3L14 16l-3-3-3 3z'/%3E%3C/svg%3E"); }
[data-icon="automate"]{ --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm8 4 2-1.5-1-2.6-2.4.5a6.9 6.9 0 0 0-1.4-1.4l.5-2.4-2.6-1L13.5 4h-3L9 2 6.4 3l.5 2.4A6.9 6.9 0 0 0 5.5 6.8L3.1 6.3 2 8.9 4 10.4a6.8 6.8 0 0 0 0 3.2L2 15.1l1 2.6 2.4-.5a6.9 6.9 0 0 0 1.4 1.4L6.4 21l2.6 1 1.5-2h3l1.5 2 2.6-1-.5-2.4a6.9 6.9 0 0 0 1.4-1.4l2.4.5 1-2.6L20 12Z'/%3E%3C/svg%3E"); }
[data-icon="badge"]   { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a5 5 0 0 0-5 5c0 1.8 1 3.4 2.4 4.3L8 22l4-2 4 2-1.4-10.7A5 5 0 0 0 12 2Z'/%3E%3C/svg%3E"); }
[data-icon="support"] { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a9 9 0 0 0-9 9v5a3 3 0 0 0 3 3h1v-7H5a7 7 0 0 1 14 0h-2v7h1a3 3 0 0 0 3-3v-5a9 9 0 0 0-9-9Z'/%3E%3C/svg%3E"); }
[data-icon="offline"] { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 4h16l-1 5H5L4 4Zm1 7h14v9H5v-9Zm4 2v5h6v-5H9Z'/%3E%3C/svg%3E"); }
[data-icon="social"]  { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18 8a3 3 0 1 0-2.8-4H15a3 3 0 0 0 .2 1L8.9 8.6a3 3 0 1 0 0 6.8l6.3 3.6a3 3 0 1 0 1-1.7l-6.3-3.6a3 3 0 0 0 0-1.4l6.3-3.6c.5.5 1.2.9 1.8.9Z'/%3E%3C/svg%3E"); }
[data-icon="sales"]   { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 17l6-6 4 4 8-8v5h2V3h-8v2h5l-7 7-4-4-8 8z'/%3E%3C/svg%3E"); }
[data-icon="maze"]    { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 3h18v18H3V3Zm2 2v14h14V5H5Zm2 2h6v2H9v4h4v2H7V7Zm8 0h2v10h-2V7Z'/%3E%3C/svg%3E"); }
[data-icon="expert"]  { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2 3 6v6c0 5 3.8 9 9 10 5.2-1 9-5 9-10V6l-9-4Zm-1 13-3-3 1.4-1.4L11 12.2l3.6-3.6L16 10l-5 5Z'/%3E%3C/svg%3E"); }
[data-icon="spark"]   { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M11 2 7 12h4l-1 10 7-12h-4l2-8z'/%3E%3C/svg%3E"); }
[data-icon="web"]     { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4H4V6h16v2ZM4 18v-8h16v8H4Zm2-5h8v2H6zm0 3h5v1H6z'/%3E%3C/svg%3E"); }
[data-icon="mobile"]  { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm0 3v12h10V5H7Zm3 13h4v1h-4z'/%3E%3C/svg%3E"); }

/* ---------- Problem grid ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card { padding: 28px; border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.problem-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.problem-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.problem-card p { color: var(--text-soft); font-size: 0.95rem; }
.problem-card--solve { background: linear-gradient(135deg, rgba(124,58,237,0.16), rgba(245,158,11,0.10)); border-color: var(--border-strong); }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento__card { padding: 28px; border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.bento__card--wide { grid-column: span 2; }
.bento__card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.bento__card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.bento__card p { color: var(--text-soft); font-size: 0.95rem; }
.chip-row { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip-row li { font-size: 0.78rem; padding: 5px 12px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-soft); }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split--reverse .split__text { order: 2; }
.split__text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.feature-list { list-style: none; margin-top: 30px; display: grid; gap: 18px; }
.feature-list--2col { grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.feature-list li { display: flex; gap: 14px; }
.feature-list__check { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 7px; background: var(--grad-cta); position: relative; margin-top: 2px; box-shadow: 0 0 16px rgba(124,58,237,0.45); }
.feature-list__check::after { content: ""; position: absolute; left: 8px; top: 5px; width: 6px; height: 11px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.feature-list strong { font-family: 'Space Grotesk'; font-weight: 600; }
.feature-list p { color: var(--text-soft); font-size: 0.9rem; margin-top: 2px; }

/* Marketplace visual */
.split__visual { perspective: 1200px; }
.market-card { padding: 26px; border-radius: var(--radius); box-shadow: var(--shadow); }
.market-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.market-badge { font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; }
.market-badge--amazon { background: rgba(255,153,0,0.16); color: #ffb648; border: 1px solid rgba(255,153,0,0.3); }
.market-badge--flipkart { background: rgba(124,58,237,0.18); color: #b794f4; border: 1px solid rgba(124,58,237,0.35); }
.live-dot { margin-left: auto; font-size: 0.72rem; color: var(--cyan); display: flex; align-items: center; gap: 6px; }
.live-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 1.6s infinite; }
.market-card__label { display: block; font-size: 0.75rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; }
.market-card__value { font-family: 'Space Grotesk'; font-size: 2.4rem; font-weight: 700; }
.market-bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; margin: 22px 0; }
.market-bars span { flex: 1; height: var(--h); background: var(--grad-brand); border-radius: 6px 6px 0 0; opacity: 0.85; transform-origin: bottom; animation: barrise 1s var(--ease) backwards; }
.market-bars span:nth-child(8) { box-shadow: 0 0 18px rgba(0,212,255,0.5); }
@keyframes barrise { from { transform: scaleY(0); } }
.market-card__foot { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--border); }
.market-card__foot strong { font-family: 'Space Grotesk'; font-size: 1.15rem; color: var(--cyan); }

/* Workflow */
.workflow { display: grid; gap: 0; }
.workflow__step { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-sm); align-items: flex-start; }
.workflow__step--glow { background: linear-gradient(135deg, rgba(124,58,237,0.16), rgba(245,158,11,0.12)); border-color: var(--border-strong); }
.workflow__num { font-family: 'Space Grotesk'; font-weight: 700; color: var(--cyan); font-size: 1.1rem; }
.workflow__step strong { font-family: 'Space Grotesk'; }
.workflow__step p { color: var(--text-soft); font-size: 0.88rem; }
.workflow__line { width: 2px; height: 22px; margin-left: 40px; background: linear-gradient(var(--electric), var(--purple)); opacity: 0.5; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 50px; }
.stat { padding: 30px 24px; border-radius: var(--radius); text-align: center; }
.stat__num { display: block; font-family: 'Space Grotesk'; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--text-soft); font-size: 0.9rem; }

.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why-card { padding: 24px; border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s; }
.why-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-card p { color: var(--text-soft); font-size: 0.86rem; }

/* ---------- Stories ---------- */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story { padding: 28px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 18px; transition: transform .3s var(--ease), border-color .3s; }
.story:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.story__tag { font-size: 0.8rem; color: var(--cyan); font-weight: 600; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ba__col { padding: 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.ba__col span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); }
.ba__col strong { display: block; font-family: 'Space Grotesk'; font-size: 1.7rem; margin: 4px 0; }
.ba__col small { font-size: 0.9rem; color: var(--text-mute); }
.ba__col p { font-size: 0.78rem; color: var(--text-soft); }
.ba__col--before { background: rgba(255,255,255,0.02); }
.ba__col--before strong { color: var(--text-mute); }
.ba__col--after { background: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(245,158,11,0.10)); }
.ba__col--after strong { color: var(--cyan); }
.story__quote { color: var(--text-soft); font-size: 0.92rem; font-style: italic; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; position: relative; max-width: 820px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--electric), var(--purple), transparent); }
.timeline__item { position: relative; padding-bottom: 40px; }
.timeline__item--last { padding-bottom: 0; }
.timeline__dot { position: absolute; left: -40px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--grad-cta); box-shadow: 0 0 0 5px rgba(124,58,237,0.18), 0 0 16px var(--electric); }
.timeline__step { font-size: 0.78rem; color: var(--cyan); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.timeline__item h3 { font-size: 1.3rem; margin: 6px 0 8px; }
.timeline__item p { color: var(--text-soft); max-width: 560px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq__item { border-radius: var(--radius-sm); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: 0 0 20px; width: 20px; height: 20px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--cyan); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq__icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__body { padding: 0 24px 22px; color: var(--text-soft); }
.faq__item[open] summary { color: var(--cyan); }

/* ---------- CTA ---------- */
.cta { padding: clamp(60px, 9vw, 120px) 0; }
.cta__card { max-width: 760px; margin: 0 auto; padding: clamp(34px, 6vw, 60px); border-radius: 28px; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta__card::before { content: ""; position: absolute; inset: -2px; background: var(--grad-brand); opacity: 0.12; z-index: -1; filter: blur(30px); }
.cta__card h2 { font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 14px; }
.cta__card > p { color: var(--text-soft); max-width: 520px; margin: 0 auto 32px; }
.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; color: var(--text-soft); font-weight: 500; }
.field input { padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: var(--text); font-size: 0.95rem; font-family: inherit; transition: border-color .2s, box-shadow .2s; }
.field input::placeholder { color: var(--text-mute); }
.field input:focus { outline: none; border-color: var(--electric); box-shadow: 0 0 0 3px rgba(124,58,237,0.22); }
.cta__formnote { grid-column: 1/-1; text-align: center; font-size: 0.9rem; min-height: 1.2em; }
.cta__formnote.success { color: var(--cyan); }
.cta__formnote.error { color: #ff7a90; }
.cta__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin-top: 26px; font-size: 0.85rem; color: var(--text-mute); }
.cta__trust span:first-child { color: #ffd166; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 70px 0 30px; background: rgba(255,255,255,0.012); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 50px; }
.footer__brand p { color: var(--text-soft); font-size: 0.9rem; margin-top: 14px; max-width: 280px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); margin-bottom: 4px; }
.footer__col a { color: var(--text-soft); font-size: 0.92rem; transition: color .2s; }
.footer__col a:hover { color: var(--cyan); }
.footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--text-mute); font-size: 0.82rem; }

/* ---------- Floating CTAs ---------- */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 45; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(37,211,102,0.6); transition: transform .25s var(--ease); }
.whatsapp-fab:hover { transform: scale(1.08) translateY(-2px); }

.sticky-cta { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 140%); z-index: 44; display: flex; align-items: center; gap: 18px; padding: 12px 12px 12px 22px; border-radius: 100px; box-shadow: var(--shadow); opacity: 0; transition: transform .5s var(--ease), opacity .4s; max-width: calc(100vw - 100px); }
.sticky-cta.show { transform: translate(-50%, 0); opacity: 1; }
.sticky-cta span { font-size: 0.9rem; color: var(--text); }
.sticky-cta .btn { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(3,7,18,0.7); backdrop-filter: blur(6px); }
.modal__card { position: relative; max-width: 480px; padding: 40px; border-radius: 24px; text-align: center; box-shadow: var(--shadow); animation: modalin .4s var(--ease); }
@keyframes modalin { from { opacity: 0; transform: translateY(24px) scale(.96); } }
.modal__card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.modal__card > p { color: var(--text-soft); margin-bottom: 24px; }
.modal__close { position: absolute; top: 16px; right: 18px; background: none; border: 0; color: var(--text-soft); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.modal__dismiss { display: block; margin: 16px auto 0; background: none; border: 0; color: var(--text-mute); font-size: 0.85rem; cursor: pointer; text-decoration: underline; }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-brand); z-index: 70; box-shadow: 0 0 12px var(--cyan); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .problem-grid, .stories, .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--wide { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__text { order: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .problem-grid, .stories, .bento, .why-grid, .feature-list--2col { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
  .cta__form { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer__brand { grid-column: 1 / -1; }
  .sticky-cta span { display: none; }
  .sticky-cta { padding: 8px; left: auto; right: 90px; transform: translateY(140%); }
  .sticky-cta.show { transform: translateY(0); }
  .hero__flow { font-size: 0.82rem; }
}
