/* ═══════════════════════════════════════════════════════════════
   CO-OP Link — Landing Page
   Liquid Glass design system (shared with liquid-pricing.css)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --lp-midnight: #0a1628;
  --lp-deep: #0c58b7;
  --lp-primary: #1696e7;
  --lp-electric: #00d4ff;
  --lp-gold: #fbbf24;
  --lp-bg-light: #f0f4f8;
  --lp-bg-lighter: #f8fafc;
  --lp-text: #0f1923;
  --lp-text-gray: #5a6c7d;
  --lp-text-light: #8b98a5;
  --lp-glass: rgba(255, 255, 255, 0.08);
  --lp-glass-border: rgba(255, 255, 255, 0.14);
  --lp-radius: 24px;
  --lp-font-display: 'Outfit', sans-serif;
  --lp-font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--lp-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--lp-text);
  background: var(--lp-bg-lighter);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--lp-primary);
  text-decoration: none;
}

/* Minimal grid (replaces Bootstrap for the pricing markup too) */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.row {
  display: block;
}

/* ── Accessibility ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--lp-midnight);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lp-electric);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   Header
   ═══════════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.25);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}

.nav-logo img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--lp-font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  background: var(--lp-glass);
}

.nav-cta {
  display: inline-block;
  font-family: var(--lp-font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-midnight) !important;
  background: linear-gradient(120deg, #fff, #e6f7ff);
  padding: 11px 24px !important;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

.nav-cta:hover {
  background: #fff !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   Hero — liquid glass midnight
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 85% -10%, rgba(22, 150, 231, 0.35), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(0, 212, 255, 0.18), transparent 60%),
    linear-gradient(160deg, var(--lp-midnight) 0%, #0d2440 55%, #0c3a66 100%);
  color: #fff;
  padding: 170px 0 110px;
}

.hero-orbs::before,
.hero-orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: heroFloat 26s ease-in-out infinite;
  pointer-events: none;
}

.hero-orbs::before {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.35), transparent 70%);
  top: -160px;
  right: -80px;
}

.hero-orbs::after {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(22, 150, 231, 0.3), transparent 70%);
  bottom: -260px;
  left: -180px;
  animation-delay: -13s;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -60px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.94); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lp-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lp-electric);
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  border-radius: 999px;
  padding: 9px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: var(--lp-font-display);
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.hero h1 .word-link {
  background: linear-gradient(120deg, var(--lp-electric), var(--lp-primary), var(--lp-electric));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-sub {
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 54ch;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
}

.btn-primary,
.btn-ghost {
  font-family: var(--lp-font-display);
  font-size: 17px;
  font-weight: 700;
  border-radius: 999px;
  padding: 16px 36px;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  color: var(--lp-midnight);
  background: linear-gradient(120deg, var(--lp-electric), #7de8ff);
  box-shadow: 0 10px 34px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0, 212, 255, 0.55);
}

.btn-ghost {
  color: #fff;
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-proof li {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  color: var(--lp-electric);
  flex: none;
}

/* Glass phone frame */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  padding: 14px;
  border-radius: 44px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 40px 90px rgba(4, 12, 24, 0.55);
  transform: rotate(2.5deg);
  transition: transform 0.4s ease;
}

.phone-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.phone-frame img {
  display: block;
  border-radius: 32px;
  width: 300px;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════
   Shared section styles
   ═══════════════════════════════════════════════════════════════ */

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--lp-bg-lighter);
}

.section-tint {
  background: linear-gradient(170deg, var(--lp-bg-light) 0%, #e4edf5 100%);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.eyebrow {
  font-family: var(--lp-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--lp-primary), var(--lp-electric));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 18px;
}

.section-head h2,
.split-copy h2 {
  font-family: var(--lp-font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lp-text);
  margin: 0 0 18px;
}

.section-head p {
  font-size: 18px;
  color: var(--lp-text-gray);
  margin: 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════
   Feature cards
   ═══════════════════════════════════════════════════════════════ */

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

.feature-card {
  background: #fff;
  border: 1px solid rgba(15, 25, 35, 0.06);
  border-radius: var(--lp-radius);
  padding: 36px 32px;
  box-shadow: 0 6px 30px rgba(12, 88, 183, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(12, 88, 183, 0.14);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 150, 231, 0.12), rgba(0, 212, 255, 0.16));
  margin-bottom: 22px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--lp-deep);
}

.feature-card h3 {
  font-family: var(--lp-font-display);
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--lp-text);
}

.feature-card p {
  font-size: 15.5px;
  color: var(--lp-text-gray);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Split rows (benefit + screenshot)
   ═══════════════════════════════════════════════════════════════ */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.split + .split {
  margin-top: 110px;
}

.split-media {
  display: flex;
  justify-content: center;
}

.split-media .phone-frame {
  background: rgba(12, 88, 183, 0.06);
  border-color: rgba(12, 88, 183, 0.1);
  box-shadow: 0 30px 70px rgba(12, 88, 183, 0.18);
  transform: rotate(-2deg);
}

.split:nth-of-type(even) .split-media .phone-frame {
  transform: rotate(2deg);
}

.split-media .phone-frame:hover {
  transform: rotate(0);
}

.split-copy p {
  font-size: 17px;
  color: var(--lp-text-gray);
  margin: 0 0 26px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--lp-text);
}

.check-list svg {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 2px;
  color: var(--lp-primary);
}

/* ═══════════════════════════════════════════════════════════════
   Screenshot gallery — CSS scroll-snap, no carousel JS
   ═══════════════════════════════════════════════════════════════ */

.shots {
  background:
    radial-gradient(900px 500px at 110% 0%, rgba(0, 212, 255, 0.12), transparent 60%),
    linear-gradient(160deg, var(--lp-midnight) 0%, #0d2a4a 100%);
  color: #fff;
}

.shots .section-head h2 {
  color: #fff;
}

.shots .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.shots-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 8px 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.shots-track figure {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: center;
  text-align: center;
}

.shots-track img {
  width: 240px;
  height: auto;
  border-radius: 28px;
  border: 1px solid var(--lp-glass-border);
  background: var(--lp-glass);
  padding: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(4, 12, 24, 0.5);
  transition: transform 0.3s ease;
}

.shots-track figure:hover img {
  transform: translateY(-8px);
}

.shots-track figcaption {
  font-family: var(--lp-font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
}

.shots-hint {
  text-align: center;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(15, 25, 35, 0.07);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(12, 88, 183, 0.05);
  overflow: hidden;
}

.faq-item summary {
  font-family: var(--lp-font-display);
  font-size: 18px;
  font-weight: 700;
  padding: 22px 56px 22px 28px;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--lp-text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 26px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--lp-primary);
  border-bottom: 2.5px solid var(--lp-primary);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item div {
  padding: 0 28px 24px;
  color: var(--lp-text-gray);
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   Final CTA
   ═══════════════════════════════════════════════════════════════ */

.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% -20%, rgba(0, 212, 255, 0.25), transparent 65%),
    linear-gradient(160deg, var(--lp-midnight), #0c3a66);
  color: #fff;
  border-radius: 32px;
  padding: 90px 32px;
}

.cta-final h2 {
  font-family: var(--lp-font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 52ch;
  margin: 0 auto 36px;
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--lp-midnight);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 36px;
}

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

.footer-brand img {
  width: 160px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14.5px;
  max-width: 34ch;
  margin: 0;
}

.site-footer h3 {
  font-family: var(--lp-font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.site-footer ul a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  transition: color 0.2s ease;
}

.site-footer ul a:hover {
  color: var(--lp-electric);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
  .hero {
    padding: 140px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .phone-frame img {
    width: 240px;
  }

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

  .split {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .split-media {
    order: -1;
  }

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

  /* Mobile nav */
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--lp-glass-border);
    border-radius: 20px;
    padding: 18px;
    display: none;
  }

  .nav-menu.is-open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-links a {
    display: block;
    text-align: center;
    padding: 14px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 80px 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Convergence — "six tools, one app"
   ═══════════════════════════════════════════════════════════════ */

.pile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.pile-chips {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pile-chips li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(15, 25, 35, 0.08);
  border-radius: 14px;
  padding: 13px 18px;
  font-family: var(--lp-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--lp-text-gray);
  box-shadow: 0 3px 14px rgba(12, 88, 183, 0.06);
  text-decoration: line-through;
  text-decoration-color: rgba(217, 119, 6, 0.55);
  text-decoration-thickness: 2px;
}

.pile-chips svg {
  width: 19px;
  height: 19px;
  color: var(--lp-text-light);
  flex: none;
}

.pile-beam {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pile-beam svg {
  width: 90px;
  height: 60px;
  overflow: visible;
}

.pile-beam path {
  stroke: var(--lp-primary);
  stroke-width: 2.5;
  fill: none;
  stroke-dasharray: 6 8;
  animation: beamFlow 1.4s linear infinite;
}

@keyframes beamFlow {
  to { stroke-dashoffset: -14; }
}

.pile-app {
  background: linear-gradient(160deg, var(--lp-midnight), #0c3a66);
  border-radius: 28px;
  padding: 36px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 26px 60px rgba(12, 88, 183, 0.3);
}

.pile-app img {
  width: 120px;
  height: auto;
  margin-bottom: 14px;
}

.pile-app strong {
  display: block;
  font-family: var(--lp-font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.pile-app span {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* Stat tiles */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 72px auto 0;
}

.stat-tile {
  background: #fff;
  border: 1px solid rgba(15, 25, 35, 0.06);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 26px rgba(12, 88, 183, 0.07);
}

.stat-tile .stat-num {
  font-family: var(--lp-font-display);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lp-deep);
  display: block;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-tile .stat-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--lp-text-gray);
}

/* Marquee of extra features */
.chip-marquee {
  margin-top: 56px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.chip-marquee ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.chip-marquee:hover ul {
  animation-play-state: paused;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.chip-marquee li {
  flex: none;
  font-family: var(--lp-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-deep);
  background: rgba(22, 150, 231, 0.09);
  border: 1px solid rgba(22, 150, 231, 0.18);
  border-radius: 999px;
  padding: 9px 18px;
}

/* ═══════════════════════════════════════════════════════════════
   AI spotlight
   ═══════════════════════════════════════════════════════════════ */

.ai-section {
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(0, 212, 255, 0.14), transparent 60%),
    linear-gradient(160deg, var(--lp-midnight) 0%, #102a4d 100%);
  color: #fff;
}

.ai-section .split-copy h2 {
  color: #fff;
}

.ai-section .split-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.ai-section .check-list li {
  color: rgba(255, 255, 255, 0.9);
}

.ai-section .check-list svg {
  color: var(--lp-electric);
}

.ai-flow {
  display: grid;
  gap: 22px;
  max-width: 420px;
  margin: 0 auto;
}

.ai-doc,
.ai-result {
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  border-radius: 20px;
  padding: 22px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ai-doc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--lp-font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.ai-doc-head svg {
  width: 22px;
  height: 22px;
  color: var(--lp-electric);
  flex: none;
}

.ai-doc-lines span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 8px;
}

.ai-doc-lines span:nth-child(1) { width: 92%; }
.ai-doc-lines span:nth-child(2) { width: 78%; }
.ai-doc-lines span:nth-child(3) { width: 85%; }

.ai-beam {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--lp-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-electric);
}

.ai-beam::before,
.ai-beam::after {
  content: '';
  width: 46px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--lp-electric) 0 6px, transparent 6px 12px);
  animation: beamFlow 1.2s linear infinite;
}

.ai-result {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.12);
  animation: aiGlow 3.5s ease-in-out infinite;
}

@keyframes aiGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(0, 212, 255, 0.1); }
  50% { box-shadow: 0 0 52px rgba(0, 212, 255, 0.26); }
}

.ai-result h4 {
  font-family: var(--lp-font-display);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}

.ai-result p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
}

.ai-result-cta {
  display: inline-block;
  font-family: var(--lp-font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lp-midnight);
  background: linear-gradient(120deg, var(--lp-electric), #7de8ff);
  border-radius: 999px;
  padding: 9px 20px;
}

.ai-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.ai-formats li {
  font-family: var(--lp-font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ═══════════════════════════════════════════════════════════════
   Dashboard mock — ledger & reports charts
   ═══════════════════════════════════════════════════════════════ */

.dash-card {
  background: #fff;
  border: 1px solid rgba(15, 25, 35, 0.07);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(12, 88, 183, 0.13);
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
}

.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(15, 25, 35, 0.07);
  background: var(--lp-bg-lighter);
}

.dash-titlebar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(15, 25, 35, 0.12);
}

.dash-titlebar span {
  margin-left: 10px;
  font-family: var(--lp-font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lp-text-light);
}

.dash-body {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 32px;
  padding: 32px;
}

.dash-panel h4 {
  font-family: var(--lp-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 4px;
}

.dash-panel .dash-note {
  font-size: 12.5px;
  color: var(--lp-text-light);
  margin: 0 0 16px;
}

.dash-legend {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text-gray);
}

.dash-legend li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dash-legend i {
  width: 11px;
  height: 11px;
  border-radius: 3.5px;
}

.chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-svg .grid-line {
  stroke: #e8eef4;
  stroke-width: 1;
}

.chart-svg .axis-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  fill: #8b98a5;
}

.chart-svg .direct-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  fill: #0f1923;
}

.chart-svg rect.bar {
  transition: opacity 0.15s ease;
}

.chart-svg rect.bar:hover {
  opacity: 0.8;
}

/* Donut */
.donut-wrap {
  position: relative;
  width: 200px;
  margin: 6px auto 14px;
}

.donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.donut-center strong {
  font-family: var(--lp-font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--lp-deep);
  line-height: 1;
}

.donut-center span {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-text-gray);
}

/* Report chips */
.dash-chips {
  padding: 0 32px 32px;
}

.dash-chips h4 {
  font-family: var(--lp-font-display);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--lp-text);
}

.dash-chips ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dash-chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lp-font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lp-deep);
  background: rgba(22, 150, 231, 0.08);
  border: 1px solid rgba(22, 150, 231, 0.16);
  border-radius: 999px;
  padding: 9px 18px;
}

.dash-chips svg {
  width: 15px;
  height: 15px;
  flex: none;
}

/* Responsive for new sections */
@media (max-width: 991px) {
  .pile-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pile-beam svg {
    transform: rotate(90deg);
    height: 90px;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .dash-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .stat-row {
    gap: 14px;
  }

  .stat-tile .stat-num {
    font-size: 36px;
  }
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-orbs::before,
  .hero-orbs::after,
  .hero h1 .word-link {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .phone-frame,
  .feature-card,
  .shots-track img {
    transition: none;
  }

  .pile-beam path,
  .ai-beam::before,
  .ai-beam::after,
  .ai-result,
  .chip-marquee ul {
    animation: none;
  }

  .chip-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .chip-marquee ul {
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}
