/* ==========================================================================
   Infinity AI — marketing site stylesheet
   Shared across all pages: index, product, why-uae, security, vision, contact
   ========================================================================== */

:root {
  /* Base surfaces */
  --bg: #05060f;
  --bg-soft: #0a0d1c;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.09);
  --card-border-strong: rgba(255, 255, 255, 0.16);

  /* Brand — clearnet / main (blue-cyan) */
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --cyan-400: #22d3ee;
  --blue-900: #1e3a8a;
  --blue-950: #172554;

  /* Brand — Infinity Shield / institutional (purple) */
  --purple-200: #e9d5ff;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-900: #581c87;
  --purple-950: #3b0764;

  /* Brand — Infinity Studio (gold) */
  --gold-200: #fde68a;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-900: #78350f;

  /* Text */
  --text-primary: #f4f4f6;
  --text-secondary: #a1a1ac;
  --text-muted: #6b6b78;

  /* Type */
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shape */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* -------------------------------------------------------------------------
   Utility text styles
   ------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.eyebrow.is-purple { color: var(--purple-400); }

.eyebrow.is-gold { color: var(--gold-400); }

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-top: 14px;
  max-width: 720px;
}

.section-lede {
  margin-top: 18px;
  max-width: 640px;
  font-size: 17px;
  color: var(--text-secondary);
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text.is-purple {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text.is-gold {
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  color: #04101c;
  box-shadow: 0 10px 30px -8px rgba(59, 130, 246, 0.55);
}

.btn-primary:hover { box-shadow: 0 14px 36px -8px rgba(59, 130, 246, 0.7); }

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--card-border-strong);
  color: var(--text-primary);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.08); }

.btn-purple {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-900));
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(147, 51, 234, 0.55);
}

.btn-purple:hover { box-shadow: 0 14px 36px -8px rgba(147, 51, 234, 0.75); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-900));
  color: #1a1300;
  box-shadow: 0 10px 30px -8px rgba(245, 158, 11, 0.55);
}

.btn-gold:hover { box-shadow: 0 14px 36px -8px rgba(245, 158, 11, 0.75); }

.btn-whatsapp {
  background: #25d366;
  color: #04150c;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover { box-shadow: 0 14px 36px -8px rgba(37, 211, 102, 0.6); }

.btn-whatsapp svg { width: 18px; height: 18px; }

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* -------------------------------------------------------------------------
   Nav
   ------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5, 6, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}

.brand svg { width: 30px; height: 30px; }

.brand .word { letter-spacing: -0.01em; }

.brand .word .infinity {
  background: linear-gradient(90deg, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-links a {
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover { color: var(--text-primary); background: rgba(255, 255, 255, 0.05); }

.nav-links a.active { color: var(--text-primary); background: rgba(255, 255, 255, 0.08); }

.nav-links a.security-link { color: var(--purple-400); }

.nav-links a.security-link:hover,
.nav-links a.security-link.active { color: var(--purple-200); background: rgba(147, 51, 234, 0.18); }

.nav-links a.ai-link { color: var(--blue-400); }

.nav-links a.ai-link:hover,
.nav-links a.ai-link.active { color: #bfdbfe; background: rgba(59, 130, 246, 0.18); }

.nav-links a.studio-link { color: var(--gold-400); }

.nav-links a.studio-link:hover,
.nav-links a.studio-link.active { color: var(--gold-200); background: rgba(245, 158, 11, 0.18); }

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg { width: 20px; height: 20px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile a {
  padding: 14px 4px;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-mobile a.active { color: var(--text-primary); }

.nav-mobile.is-open { display: flex; }

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* -------------------------------------------------------------------------
   Hero (photo background, shared darkening recipe from the app)
   ------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 40px 0;
  overflow: hidden;
}

.hero.is-compact { min-height: 0; display: block; padding: 88px 0 70px; }

.hero .hero-content { width: 100%; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .overlay-dark { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.hero-bg .overlay-tint { position: absolute; inset: 0; background: rgba(30, 58, 138, 0.28); }
.hero-bg .overlay-tint.is-purple { background: rgba(88, 28, 135, 0.28); }
.hero-bg .overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(23, 37, 84, 0.5), transparent 45%, rgba(5, 6, 15, 0.95));
}
.hero-bg .overlay-grad.is-purple {
  background: linear-gradient(to bottom, rgba(59, 7, 100, 0.55), transparent 45%, rgba(5, 6, 15, 0.95));
}

/* Deeper, more premium purple treatment (Infinity Shield feature section) */
.hero-bg .overlay-tint.is-purple-deep { background: rgba(46, 6, 82, 0.5); }
.hero-bg .overlay-grad.is-purple-deep {
  background: linear-gradient(to bottom, rgba(20, 3, 41, 0.85), rgba(59, 7, 100, 0.4) 42%, rgba(5, 6, 15, 0.97) 100%);
}
.hero-bg .overlay-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 132, 252, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 132, 252, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 78%);
}

/* -------------------------------------------------------------------------
   Video frame (demo / story embeds)
   ------------------------------------------------------------------------- */

.video-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 1920 / 916;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border-strong);
  background: #000;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hero-content { position: relative; z-index: 1; }

/* -------------------------------------------------------------------------
   App showcase (Clearnet / Infinity Shield screenshots — grid on desktop,
   swipeable one-at-a-time slider on mobile)
   ------------------------------------------------------------------------- */

.showcase { position: relative; }

.showcase-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.showcase-track::-webkit-scrollbar { display: none; }

.showcase-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.showcase-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border-strong);
  background: #000;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.showcase-caption {
  text-align: center;
  margin-top: 16px;
}

.showcase-caption p {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 14.5px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-arrow {
  display: flex;
  position: absolute;
  top: calc(50% - 24px);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--card-border-strong);
  background: rgba(5, 6, 15, 0.7);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  cursor: pointer;
  z-index: 2;
}

.showcase-arrow svg { width: 20px; height: 20px; }

.showcase-arrow.is-prev { left: -8px; }
.showcase-arrow.is-next { right: -8px; }

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.showcase-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--card-border-strong);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.showcase-dots button.is-active {
  background: linear-gradient(135deg, var(--blue-400), var(--cyan-400));
  transform: scale(1.25);
}

@media (min-width: 860px) {
  .showcase-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
  }
  .showcase-slide { scroll-snap-align: none; }
  .showcase-arrow, .showcase-dots { display: none; }
}

/* -------------------------------------------------------------------------
   Cards / grids
   ------------------------------------------------------------------------- */

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-strong);
  background: rgba(255, 255, 255, 0.06);
}

.card.is-purple:hover { border-color: rgba(147, 51, 234, 0.4); }

.card.is-gold:hover { border-color: rgba(245, 158, 11, 0.4); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  box-shadow: inset -3px -4px 8px rgba(0, 0, 0, 0.35), inset 3px 4px 8px rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

.icon-badge svg { width: 26px; height: 26px; color: #04101c; }

.icon-badge.is-purple {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-950));
}

.icon-badge.is-purple svg { color: #f4e9ff; }

.icon-badge.is-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-900));
}

.icon-badge.is-gold svg { color: #fff7e0; }

.card h3 { font-size: 19px; margin-bottom: 10px; }

.card p { color: var(--text-secondary); font-size: 15px; }

/* Stat blocks */

.stat {
  padding: 26px 0;
  border-top: 1px solid var(--card-border);
}

.stat .num {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat .label { margin-top: 6px; color: var(--text-secondary); font-size: 14px; }

/* -------------------------------------------------------------------------
   Badges / pills
   ------------------------------------------------------------------------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: var(--text-secondary);
}

.pill.is-purple { border-color: rgba(147, 51, 234, 0.35); background: rgba(88, 28, 135, 0.15); color: var(--purple-200); }

.pill.is-gold { border-color: rgba(245, 158, 11, 0.35); background: rgba(120, 53, 15, 0.15); color: var(--gold-200); }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0 32px;
  background: var(--bg-soft);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
}

.footer-brand { max-width: 320px; }

.footer-brand .brand { margin-bottom: 12px; }

.footer-brand p { color: var(--text-secondary); font-size: 14px; }

.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--text-muted);
}

.uae-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12.5px;
  color: var(--text-muted);
}

/* -------------------------------------------------------------------------
   Reveal-on-scroll
   ------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------------------
   Misc section spacing
   ------------------------------------------------------------------------- */

.section { padding: 90px 0; }
.section.is-tight { padding: 60px 0; }
.section.is-alt { background: #0b1224; }

.section.is-light {
  background: #f4f6fb;
  color: #12121a;
}
.section.is-light .section-title { color: #0d0d16; }
.section.is-light .section-lede { color: #4a4a58; }
.section.is-light .eyebrow { color: var(--blue-500); }
.section.is-light .eyebrow .dot { box-shadow: 0 0 12px currentColor; }
.section.is-light .btn-outline {
  background: #ffffff;
  border-color: rgba(13, 13, 22, 0.35);
  color: #0d0d16;
  box-shadow: 0 1px 3px rgba(13, 13, 22, 0.08);
}
.section.is-light .btn-outline:hover {
  background: rgba(13, 13, 22, 0.05);
  border-color: rgba(13, 13, 22, 0.5);
}
.section.is-light .video-frame {
  border-color: rgba(13, 13, 22, 0.12);
  box-shadow: 0 30px 70px -20px rgba(13, 13, 22, 0.2), 0 0 0 1px rgba(13, 13, 22, 0.04);
}
.section.is-light .stat { border-top-color: rgba(13, 13, 22, 0.12); }
.section.is-light .stat .label { color: #45454f; }
.section.is-light .stat .num.gradient-text {
  background: linear-gradient(135deg, #1d4ed8, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section.is-light .card { background: rgba(13, 13, 22, 0.03); border-color: rgba(13, 13, 22, 0.1); }
.section.is-light .card h3 { color: #0d0d16; }
.section.is-light .card p { color: #4a4a58; }
.section.is-light h1,
.section.is-light h2,
.section.is-light h3,
.section.is-light h4 { color: #0d0d16; }
.section.is-light .eyebrow.is-purple { color: #9333ea; }
.section.is-light .divider { background: linear-gradient(to right, transparent, rgba(13, 13, 22, 0.15), transparent); }
.section.is-light .cta-band {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(8, 145, 178, 0.05));
  border-color: rgba(13, 13, 22, 0.14);
}
.section.is-light .cta-band.is-purple {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(88, 28, 135, 0.05));
  border-color: rgba(147, 51, 234, 0.3);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.12), transparent);
  margin: 0;
}

.avatar-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border-strong);
  max-width: 340px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

/* CTA band */

.cta-band {
  border-radius: var(--radius-lg);
  padding: 56px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(96, 165, 250, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-band.is-purple {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.18), rgba(88, 28, 135, 0.1));
  border-color: rgba(168, 85, 247, 0.3);
}

.cta-band.is-gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(120, 53, 15, 0.1));
  border-color: rgba(251, 191, 36, 0.3);
}

@media (max-width: 700px) {
  .cta-band { padding: 34px; }
  .hero { padding: 90px 0 60px; }
  .section { padding: 60px 0; }
}

/* Forms (contact page) */

.form-grid { display: grid; gap: 16px; }

.field label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14.5px;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue-400);
}

.field textarea { resize: vertical; min-height: 120px; }

/* Timeline (vision page) */

.timeline { position: relative; padding-left: 28px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-400), var(--purple-500));
  opacity: 0.5;
}

.timeline-item { position: relative; padding-bottom: 34px; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
}

.timeline-item h4 { font-size: 16px; margin-bottom: 6px; }
.timeline-item p { color: var(--text-secondary); font-size: 14.5px; }

.timeline-item.is-highlight::before {
  background: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.25);
}
.timeline-item.is-highlight h4 { color: var(--cyan-400); }

/* ==========================================================================
   Landing page additions — investor overview sections
   ========================================================================== */

/* Data tables (Platform Availability) */

.table-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.table-card table { width: 100%; border-collapse: collapse; }

.table-card th {
  text-align: left;
  padding: 16px 22px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue-400);
  border-bottom: 1px solid var(--card-border);
}

.table-card.is-purple th { color: var(--purple-400); }

.table-card td {
  padding: 16px 22px;
  font-size: 14.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--card-border);
}

.table-card td:first-child { color: var(--text-primary); font-weight: 600; }

.table-card tr:last-child td { border-bottom: none; }

.table-card tr:nth-child(even) td { background: rgba(255, 255, 255, 0.02); }

@media (max-width: 700px) {
  .table-card { overflow-x: auto; }
  .table-card table { min-width: 480px; }
}

.section.is-light .table-card { background: rgba(13, 13, 22, 0.03); border-color: rgba(13, 13, 22, 0.1); }
.section.is-light .table-card th { border-color: rgba(13, 13, 22, 0.1); }
.section.is-light .table-card td { color: #4a4a58; border-color: rgba(13, 13, 22, 0.08); }
.section.is-light .table-card td:first-child { color: #0d0d16; }
.section.is-light .table-card tr:nth-child(even) td { background: rgba(13, 13, 22, 0.02); }

/* Numbered / lettered badges (Go-to-Market phases) */

.num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  color: #04101c;
  margin-bottom: 16px;
}

.num-badge.is-purple {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-900));
  color: #fff;
}

.icon-badge.is-circle { border-radius: 50%; }

.icon-badge.is-sm { width: 40px; height: 40px; }
.icon-badge.is-sm svg { width: 20px; height: 20px; }

/* Dot bullet lists */

.dot-list { display: grid; gap: 10px; }

.dot-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 14.5px;
}

.dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-400);
}

.dot-list.is-blue li::before { background: var(--blue-400); }
.dot-list.is-gold li::before { background: var(--gold-400); }

.section.is-light .dot-list li { color: #4a4a58; }

/* Phase columns (Path to Institutional Scale) */

.phase-col { text-align: center; }
.phase-col .icon-badge { margin: 0 auto 18px; }
.phase-col h4 { font-size: 17px; margin-bottom: 4px; }
.phase-col .phase-sub { color: var(--text-muted); font-size: 13.5px; margin-bottom: 20px; }
.phase-col .dot-list { text-align: left; }

.phase-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 40px;
}
.phase-rule .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--blue-400), var(--purple-400));
  opacity: 0.5;
}

/* Contact grid (soft-ask section) */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.contact-item .contact-label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-item .contact-value { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.contact-item .contact-value.is-note { display: block; font-size: 13px; font-weight: 400; font-style: italic; color: var(--text-muted); margin-top: 4px; }

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Small quote / founder mini-card */

.quote-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.quote-card .avatar-frame.is-sm {
  width: 74px;
  height: 74px;
  max-width: 74px;
  border-radius: 50%;
  flex-shrink: 0;
}
.quote-card .avatar-frame.is-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-card h4 { font-size: 16px; margin-bottom: 2px; }
.quote-card .role { color: var(--text-muted); font-size: 13px; margin-bottom: 10px; }
.quote-card p.quote { color: var(--text-secondary); font-size: 14.5px; font-style: italic; }

@media (max-width: 600px) {
  .quote-card { flex-direction: column; }
}

/* Chat / product screenshot frame */

.shot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border-strong);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.03);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------
   Cookie consent bar
   ------------------------------------------------------------------------- */

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: none;
  background: rgba(10, 13, 28, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.cookie-bar.is-visible { display: block; }

.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-bar-inner p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 640px;
}

.cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-bar-inner { flex-direction: column; align-items: flex-start; }
  .cookie-bar-actions { width: 100%; }
  .cookie-bar-actions .btn { flex: 1; }
}
