/*
 * landing_agentic.css — sandboxed styles for /landing_agentic (dark theme)
 * Standalone: no Bootstrap, no shared base.css. All selectors prefixed `.la-`.
 */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --color-primary: #4d9dff;
  --color-primary-strong: #2f86ff;
  --color-primary-dark: #1c6ee0;
  --color-primary-glow: rgba(77, 157, 255, 0.35);
  --color-primary-soft: rgba(77, 157, 255, 0.10);

  /* Accents */
  --color-cyan: #22d3ee;
  --color-success: #34d399;
  --color-danger: #f87171;

  /* Neutrals — deep navy spectrum (slightly lifted for less-dark feel) */
  --color-bg: #0a1226;            /* page background */
  --color-bg-2: #0f1730;          /* alt section background */
  --color-bg-3: #131e3a;          /* deeper band background */
  --color-surface: #111a30;       /* card surface */
  --color-surface-2: #16213b;     /* raised surface */
  --color-surface-3: #1c2a47;     /* hover surface */
  --color-border: #1f2a44;
  --color-border-strong: #2a3a5e;
  --color-divider: rgba(255, 255, 255, 0.06);

  /* Text */
  --color-text: #e6ebf5;
  --color-text-strong: #ffffff;
  --color-text-muted: #98a4bd;
  --color-text-subtle: #6c7a96;

  /* Geometry */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Shadows (used sparingly on dark — tend to look muddy; prefer borders + glows) */
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --glow-primary: 0 0 0 1px rgba(77, 157, 255, 0.3), 0 8px 28px rgba(77, 157, 255, 0.18);

  /* Typography */
  --font-sans: 'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont,
               'Segoe UI', 'PingFang TC', 'Microsoft JhengHei', system-ui, sans-serif;

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

/* ---------- Minimal modern reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--color-bg); }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

/*
 * Remove the 41px reserve below the fixed topbar so the hero sits flush
 * against it (the gap is otherwise visible as a white/empty strip on this
 * dark-themed page). Only applies on /landing_agentic since this CSS is
 * page-scoped.
 */
.topbar-spacer { height: 0 !important; }

/*
 * Topbar brand color override (scoped to /landing_agentic only because
 * this stylesheet is page-specific). base.mak's topbar uses
 * .disclosure_sharp + .tracker_sharp; original styling is red. Match
 * the hero brand: white "Disclosure" + blue→cyan gradient "Tracker".
 */
.topbar .disclosure_sharp,
.topbar-inner .disclosure_sharp {
  color: var(--color-text-strong) !important;
}
.topbar .tracker_sharp,
.topbar-inner .tracker_sharp {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-primary); /* fallback if background-clip:text unsupported */
}

/*
 * Bootstrap modal text-color fix — login/signup modals from base.mak
 * inherit `body { color: #e6ebf5 }` (the dark-theme text colour) and
 * sit on Bootstrap's default white modal-content background, so the
 * text vanishes. Reset everything inside `.modal` to Bootstrap-default
 * dark on white. Scoped to .modal so the rest of the page is untouched.
 */
.modal,
.modal .modal-content,
.modal .modal-header,
.modal .modal-body,
.modal .modal-footer {
  color: #333;
}
.modal .modal-title,
.modal h1, .modal h2, .modal h3, .modal h4, .modal h5, .modal h6 {
  color: #333;
}
.modal input[type="text"],
.modal input[type="email"],
.modal input[type="password"],
.modal input[type="tel"],
.modal textarea,
.modal select {
  color: #333;
}
.modal a:not(.btn) {
  color: #337ab7; /* Bootstrap 3 default link */
}
.modal a:not(.btn):hover,
.modal a:not(.btn):focus {
  color: #23527c;
}
/* Form-submit error banners (.login-error / .signup-error / .signup-msg)
   were getting flattened to #333 by the broad `.modal { color }` rule.
   Restore the danger-red. */
.modal .login-error,
.modal .signup-error,
.modal .signup-msg {
  color: #d9534f;
}
/* Re-skin .btn-danger inside login/signup modals as the page's brand blue
   so the primary CTAs match landing_agentic instead of clashing red. */
.modal .btn-danger {
  background-color: var(--color-primary);
  border-color: var(--color-primary-strong);
  color: #fff;
}
.modal .btn-danger:hover,
.modal .btn-danger:focus,
.modal .btn-danger:active,
.modal .btn-danger:active:hover {
  background-color: var(--color-primary-strong);
  border-color: var(--color-primary-dark);
  color: #fff;
}

/*
 * Push the "DisclosureTracker" brand inward from the viewport edge.
 * Bootstrap's .navbar-brand carries a -15px margin-left that pulls it
 * flush against the container — override that on this page so the logo
 * sits with breathing room from the left.
 */
.topbar .navbar-brand {
  margin-left: 24px !important;
}
@media (max-width: 767px) {
  .topbar .navbar-brand { margin-left: 12px !important; }
}

/* ---------- Page wrapper (sits inside base.mak's body) ---------- */
.la-page {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
}
/* Subtle ambient grid texture inside the landing area only */
.la-page::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}
/* Ensure non-banded sections (e.g. testimonials) sit on the dark bg */
.la-section { background: var(--color-bg); }
.la-section--soft { background: var(--color-bg-2); }

/* ---------- Layout primitives ---------- */
.la-container {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  z-index: 1;
}

/* ---------- Buttons ---------- */
.la-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  transition: transform 0.15s var(--ease),
              box-shadow 0.2s var(--ease),
              background-color 0.2s var(--ease),
              border-color 0.2s var(--ease),
              color 0.2s var(--ease);
  white-space: nowrap;
}
.la-btn:hover { transform: translateY(-1px); }
.la-btn:active { transform: translateY(0); }
.la-btn:focus-visible {
  outline: 3px solid var(--color-primary-glow);
  outline-offset: 2px;
}
/* Override Bootstrap's global `a:hover { color:#23527c; text-decoration:underline }`
   (loaded via base.mak) which otherwise turns button text blue + underlined on hover. */
a.la-btn,
a.la-btn:hover,
a.la-btn:focus,
a.la-btn:active,
a.la-btn:visited {
  text-decoration: none;
}

.la-btn--primary,
.la-btn--primary:hover,
.la-btn--primary:focus,
.la-btn--primary:active,
.la-btn--primary:visited {
  color: #fff;
}
.la-btn--primary {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
  box-shadow: var(--glow-primary);
}
.la-btn--primary:hover {
  background: linear-gradient(180deg, #5fa8ff 0%, var(--color-primary) 100%);
  box-shadow: 0 0 0 1px rgba(77, 157, 255, 0.45), 0 14px 36px rgba(77, 157, 255, 0.28);
}

.la-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  border-color: var(--color-border-strong);
  backdrop-filter: blur(8px);
}
.la-btn--ghost,
.la-btn--ghost:focus,
.la-btn--ghost:visited {
  color: var(--color-text);
}
.la-btn--ghost:hover,
.la-btn--ghost:active {
  background: rgba(255, 255, 255, 0.06);
  border-color: #3b4a6e;
  color: var(--color-text-strong);
}

.la-btn--lg { padding: 14px 30px; font-size: 16px; border-radius: 11px; }
.la-btn--xl { padding: 17px 36px; font-size: 17px; border-radius: 12px; }

/* ---------- Sticky fixbar (slides in on scroll past hero) ---------- */
.la-fixbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 0;
  background: rgba(8, 14, 32, 0.88);
  border-bottom: 1px solid rgba(77, 157, 255, 0.18);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
          backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}
.la-fixbar--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.la-fixbar__inner {
  display: flex;
  align-items: center;
  gap: 22px;
}
.la-fixbar__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color 0.15s var(--ease);
}
.la-fixbar__link:hover { color: var(--color-text-strong); }
.la-fixbar__link--accent {
  color: var(--color-text-strong);
  font-weight: 600;
}
.la-fixbar__cta {
  margin-left: auto;
  flex-shrink: 0;
  padding: 10px 22px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
}

@media (max-width: 900px) {
  .la-fixbar__inner { gap: 14px; }
  .la-fixbar__link { font-size: 13px; }
  /* Hide secondary links on small viewports — keep CTA visible */
  .la-fixbar__link:nth-of-type(n+4) { display: none; }
}
@media (max-width: 540px) {
  .la-fixbar__link:not(.la-fixbar__link--accent) { display: none; }
  .la-fixbar__cta { padding: 9px 16px !important; font-size: 14px !important; }
}

/* ---------- Hero ---------- */
.la-hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
  background: linear-gradient(180deg, #0e1632 0%, #0a1226 100%);
  isolation: isolate;
}

/* Hero content sits above all background layers */
.la-hero > .la-container { position: relative; z-index: 2; }

/* ---------- Animated aurora background ---------- */
.la-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* fade out at the very bottom so the next section blends */
  mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}

/*
 * Vanta.js DOTS effect — three.js-powered animated dot field with
 * mouse-reactive ripples. Initialized from landing_agentic.js once
 * window.VANTA loads. The element is its own stacking context so the
 * canvas Vanta injects fills the hero behind the content.
 */
.la-hero__vanta {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.la-hero__vanta canvas {
  display: block;
}

/* Radial glows + grid texture overlay — sits ABOVE the Vanta canvas
   (z-index: 1) so the glows tint the animation and the grid reads
   cleanly on top. Ported from /landing_agentic_grid for the canonical
   /landing surface. Mask-fades at the bottom so the next section blends. */
.la-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(900px 600px at 85% -10%, rgba(34, 211, 238, 0.18), transparent 60%),
    radial-gradient(1000px 700px at -5% 10%, rgba(77, 157, 255, 0.22), transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}

/* Bottom accent line (static — visual hinge between hero and tagline band) */
.la-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 157, 255, 0.35), transparent);
  z-index: 2;
}

/* Eyebrow dot: gentle pulse that radiates outward. */
@keyframes la-eyebrow-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(77, 157, 255, 0.22); }
  50%      { box-shadow: 0 0 0 9px rgba(77, 157, 255, 0);   }
}
.la-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}
.la-hero__copy { max-width: 540px; }
.la-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(77, 157, 255, 0.10);
  color: var(--color-primary);
  border: 1px solid rgba(77, 157, 255, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Crossover icon — bigger "X" with thinner stroke. One diagonal in brand
   blue, the other in cyan (two-pillar metaphor). Rounded line caps for a
   polished look. Sized in em to scale with parent font size.
   Alt option saved: two interlocking circles (Venn) — see git history. */
.la-tagline-x {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  margin: 0 0.35em;
  vertical-align: middle;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><line x1='4' y1='4' x2='16' y2='16' stroke='%234d9dff' stroke-width='1.4' stroke-linecap='round'/><line x1='16' y1='4' x2='4' y2='16' stroke='%2322d3ee' stroke-width='1.4' stroke-linecap='round'/></svg>") center / contain no-repeat;
}
/* Tighter gap inside the hero eyebrow pill (flex gap is 8px there) */
.la-hero__eyebrow .la-tagline-x {
  margin: 0 -4px;
}
.la-hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(77, 157, 255, 0.22);
  animation: la-eyebrow-pulse 2.6s ease-out infinite;
}
.la-hero__brand {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.la-hero__brand .la-brand-disclosure { color: var(--color-text-strong); }
.la-hero__brand .la-brand-tracker {
  color: var(--color-primary);
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.la-hero__tagline {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--color-text-strong);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.la-hero__lede {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.la-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.la-hero__signin-link {
  font-size: 14px;
  color: var(--color-text-muted);
}
.la-hero__signin-link a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(77, 157, 255, 0.4);
}
.la-hero__signin-link a:hover {
  text-decoration-color: var(--color-primary);
}
.la-hero__quote {
  margin-top: 36px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius);
}
.la-hero__quote-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.75;
}
.la-hero__quote-text .la-q { color: var(--color-primary); font-size: 22px; line-height: 0; vertical-align: middle; margin: 0 2px; }
.la-hero__quote-author {
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-text-subtle);
}

.la-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.la-hero__visual::before {
  content: '';
  position: absolute;
  inset: -80px -40px;
  background: radial-gradient(closest-side, rgba(77, 157, 255, 0.32), transparent 72%);
  z-index: 0;
  pointer-events: none;
}
.la-hero__visual::after {
  content: '';
  position: absolute;
  inset: 12% -6% -10% -6%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(34, 211, 238, 0.18), transparent 70%);
  filter: blur(40px);
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Browser-window mockup (used by hero) ---------- */
.la-window {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 14px;
  background: linear-gradient(180deg, #0e1530 0%, #0a1124 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.la-window::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(77, 157, 255, 0.08) 0%, transparent 30%);
}
.la-window__chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  background: linear-gradient(180deg, #161e3a 0%, #111935 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.la-window__dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}
.la-window__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3a4358;
  box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.3);
}
.la-window__dots span:nth-child(1) { background: #ff5f57; }
.la-window__dots span:nth-child(2) { background: #febc2e; }
.la-window__dots span:nth-child(3) { background: #28c840; }
.la-window__url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 360px;
  margin: 0 auto;
  padding: 5px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  font-size: 12px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  color: #b8c2d6;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.la-window__lock {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(180deg, #6c7a96, #4d5970);
  position: relative;
  flex-shrink: 0;
}
.la-window__lock::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -3px;
  width: 5px;
  height: 4px;
  border: 1px solid #6c7a96;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  transform: translateX(-50%);
}
.la-window__chrome-spacer {
  width: 50px;
  flex-shrink: 0;
}
.la-window__viewport {
  position: relative;
  width: 100%;
  /* Aspect ratio = visible chart content of the iMac source (~1200x794
   * inside a 1370x1275 image, excluding the black bezel and chin). */
  aspect-ratio: 151 / 100;
  overflow: hidden;
  background: #050813;
}
.la-window__shot {
  /*
   * Source is an iMac mockup. Scale + offset so the chart content (NOT
   * including the black bezel or stand) fills the viewport edge to edge.
   * Panel sits at roughly x:[6.5%, 94%], y:[6.4%, 68.7%] of the source,
   * so panel center is ~50%/37%. Slight extra zoom (>113%) hides any
   * stray bezel pixels.
   */
  position: absolute;
  width: 120%;
  left: -9%;
  top: -13%;
  max-width: none;
  display: block;
}

/* ---------- Stock search (subscribed users) ---------- */

/* Eye-catching pill — glowing border + subtle pulse to draw the eye */
.la-stock-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  max-width: 540px;
  padding: 6px 6px 6px 18px;
  background: linear-gradient(180deg, rgba(20, 30, 60, 0.85) 0%, rgba(15, 24, 50, 0.85) 100%);
  border: 1px solid rgba(77, 157, 255, 0.40);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 4px rgba(77, 157, 255, 0.06),
    0 12px 32px rgba(77, 157, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: la-search-pulse 3.4s ease-in-out infinite;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.la-stock-search:focus-within {
  animation: none;
  border-color: var(--color-primary);
  box-shadow:
    0 0 0 5px rgba(77, 157, 255, 0.18),
    0 18px 48px rgba(77, 157, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.la-stock-search__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}
.la-stock-search input {
  flex: 1;
  min-width: 0;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  color: var(--color-text-strong);
  background: transparent;
  border: none;
  outline: none;
  letter-spacing: 0.01em;
}
.la-stock-search input::placeholder {
  color: var(--color-text-subtle);
  font-weight: 400;
}
.la-stock-search__submit {
  flex-shrink: 0;
  padding: 11px 22px !important;
  font-size: 15px !important;
  border-radius: 10px !important;
}

@keyframes la-search-pulse {
  0%, 100% {
    border-color: rgba(77, 157, 255, 0.40);
    box-shadow:
      0 0 0 4px rgba(77, 157, 255, 0.06),
      0 12px 32px rgba(77, 157, 255, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  50% {
    border-color: rgba(77, 157, 255, 0.80);
    box-shadow:
      0 0 0 6px rgba(77, 157, 255, 0.14),
      0 18px 48px rgba(77, 157, 255, 0.40),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

/* jquery.autocomplete dropdown — dark themed for the hero search box.
 * The plugin appends a single .autocomplete-suggestions div to <body>, so
 * these rules stay global; they're scoped to the plugin's own classes. */
.autocomplete-suggestions {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border-strong) !important;
  border-radius: 10px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(77, 157, 255, 0.15) !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  color: var(--color-text) !important;
  overflow: hidden;
  margin-top: 6px;
  padding: 6px 0;
}
.autocomplete-suggestion {
  padding: 9px 14px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.12s var(--ease);
}
.autocomplete-suggestion strong {
  color: var(--color-primary);
  font-weight: 600;
}
.autocomplete-selected,
.autocomplete-suggestion:hover {
  background: rgba(77, 157, 255, 0.14) !important;
  color: var(--color-text-strong) !important;
}
.autocomplete-no-suggestion {
  padding: 10px 14px;
  color: var(--color-text-subtle);
  font-style: italic;
}

/* ---------- Section: tagline band ---------- */
.la-tagline-band {
  position: relative;
  padding: 32px 0;
  text-align: center;
  background:
    radial-gradient(800px 200px at 50% 0%, rgba(77, 157, 255, 0.10), transparent 70%),
    var(--color-bg-3);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.la-tagline-band__text {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--color-text-strong);
  letter-spacing: 0.01em;
}

/* ---------- Section heading ---------- */
.la-section { padding: 100px 0; position: relative; }
.la-section--soft { background: var(--color-bg-2); }
.la-section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.la-section__eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(77, 157, 255, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(77, 157, 255, 0.20);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.la-section__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-strong);
}
.la-section__sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.la-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.la-testimonial {
  position: relative;
  background: var(--color-surface);
  padding: 28px 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease),
              border-color 0.25s var(--ease),
              background 0.25s var(--ease);
}
.la-testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(77, 157, 255, 0.0), rgba(77, 157, 255, 0.0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: background 0.25s var(--ease);
}
.la-testimonial:hover {
  transform: translateY(-3px);
  background: var(--color-surface-2);
  border-color: var(--color-border-strong);
}
.la-testimonial:hover::before {
  background: linear-gradient(135deg, rgba(77, 157, 255, 0.45), rgba(34, 211, 238, 0.15));
}
.la-testimonial__quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
  flex: 1;
}
.la-testimonial__quote .la-q {
  color: var(--color-primary);
  font-size: 22px;
  line-height: 0;
  vertical-align: middle;
  margin: 0 2px;
}
.la-testimonial__person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.la-testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-strong);
  flex-shrink: 0;
}
.la-testimonial__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-strong);
}
.la-testimonial__title {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ---------- Case studies ---------- */
.la-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.la-case {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 28px 26px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease),
              border-color 0.25s var(--ease),
              background 0.25s var(--ease);
}
.la-case:hover {
  transform: translateY(-4px);
  background: var(--color-surface-2);
  border-color: var(--color-primary);
}
.la-case__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  filter: brightness(0.95) saturate(0.95);
}
.la-case__logo img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}
.la-case__symbol {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-strong);
  text-align: center;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}
.la-case__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.la-case__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}
.la-case__highlight {
  color: var(--color-success);
  font-weight: 700;
}
.la-case__highlight--down { color: var(--color-danger); }
.la-cases-more {
  text-align: center;
  margin-top: 48px;
}
.la-features-more {
  text-align: center;
  margin-top: 16px;
}
.la-cases-more a,
.la-features-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid rgba(77, 157, 255, 0.25);
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}
.la-cases-more a:hover,
.la-features-more a:hover {
  background: var(--color-primary-soft);
  border-color: var(--color-primary);
}

/* ---------- Course CTA band ---------- */
.la-course-band {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background:
    radial-gradient(800px 360px at 30% 50%, rgba(77, 157, 255, 0.18), transparent 60%),
    radial-gradient(600px 280px at 80% 50%, rgba(34, 211, 238, 0.10), transparent 60%),
    linear-gradient(135deg, #0c1530 0%, #142440 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.la-course-band__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  margin-bottom: 26px;
  color: var(--color-text-strong);
  letter-spacing: -0.005em;
}

/* ---------- Features ---------- */
.la-features {
  padding: 120px 0;
  background: var(--color-bg);
}
.la-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.la-feature:last-child { margin-bottom: 0; }
.la-feature--reverse .la-feature__visual { order: 2; }
.la-feature--reverse .la-feature__copy { order: 1; }

.la-feature__visual {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(closest-side at 30% 30%, rgba(77, 157, 255, 0.18), transparent 70%),
    linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  padding: 36px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.la-feature__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 200px at 80% 80%, rgba(34, 211, 238, 0.10), transparent 70%);
}
.la-feature__visual img {
  position: relative;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.la-feature__eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(77, 157, 255, 0.10);
  color: var(--color-primary);
  border: 1px solid rgba(77, 157, 255, 0.22);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 6px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Eyebrow row — places eyebrow + "全新登場" badge side-by-side. */
.la-feature__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.la-feature__eyebrow-row .la-feature__eyebrow {
  margin-bottom: 0;
}

/* "查看更多" CTA below Feature 4 copy — pulls user to the 4-card breakout below. */
.la-feature__more-btn {
  margin-top: 22px;
  padding: 9px 18px;
  font-size: 13px;
}

/* "全新登場" pill — matches .la-pricing-agentic__new-badge (toggle-new-badge style). */
.la-feature__new-badge {
  display: inline-block;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
  background: #f87171;
  border-radius: 4px;
  white-space: nowrap;
}
.la-feature__title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--color-text-strong);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.la-feature__subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 18px;
}
.la-feature__text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.la-feature__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.la-feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.5;
}
.la-feature__list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(77, 157, 255, 0.18);
}

/* ---------- Final CTA band ---------- */
.la-final-cta {
  position: relative;
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(900px 450px at 50% 0%, rgba(77, 157, 255, 0.20), transparent 60%),
    radial-gradient(700px 360px at 50% 100%, rgba(34, 211, 238, 0.10), transparent 60%),
    linear-gradient(180deg, var(--color-bg-3) 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-border);
}
.la-final-cta__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-strong);
  margin-bottom: 14px;
}
.la-final-cta__sub {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* ---------- Reveal-on-scroll animation ---------- */
.la-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.la-reveal.la-in-view {
  opacity: 1;
  transform: none;
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(77, 157, 255, 0.35);
  color: var(--color-text-strong);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .la-hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .la-hero__copy { max-width: none; }
  .la-feature {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .la-feature--reverse .la-feature__visual,
  .la-feature--reverse .la-feature__copy {
    order: initial;
  }
  .la-feature__visual { min-height: 280px; padding: 28px; }
  .la-testimonials-grid,
  .la-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .la-section { padding: 80px 0; }
  .la-features { padding: 80px 0; }
}

@media (max-width: 720px) {
  .la-hero { padding: 40px 0 64px; }
  .la-hero__brand { font-size: 36px; }
  .la-hero__tagline { font-size: 22px; }
  .la-hero__lede { font-size: 16px; }
  .la-hero__ctas { flex-direction: column; align-items: stretch; }
  .la-hero__ctas .la-btn { justify-content: center; }

  .la-stock-search { padding: 6px 6px 6px 14px; }
  .la-stock-search input { font-size: 15px; padding: 13px 4px; }
  .la-stock-search__submit { padding: 10px 16px !important; font-size: 14px !important; }

  .la-testimonials-grid,
  .la-cases-grid {
    grid-template-columns: 1fr;
  }

  .la-section { padding: 64px 0; }
  .la-features { padding: 64px 0; }
  .la-feature__list { grid-template-columns: 1fr; }

  .la-tagline-band { padding: 24px 0; }
  .la-course-band { padding: 64px 0; }
  .la-final-cta { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .la-reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
 * Agentic AI Highlight Section
 * Shared between /landing_agentic and /price_plan_agentic.
 * On landing it sits below the feature zig-zag block as a
 * dedicated breakout; on pricing it sits between the tier
 * cards and the feature matrix. Radial-glow on dark navy.
 * ========================================================== */
.la-pricing-agentic-section {
  position: relative;
  padding: 88px 0 96px;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.la-pricing-agentic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(77, 157, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(34, 211, 238, 0.06) 0%, transparent 60%),
    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: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
}
.la-pricing-agentic-section > .la-container { position: relative; z-index: 1; }

.la-pricing-agentic__head {
  text-align: center;
  margin-bottom: 56px;
}
.la-pricing-agentic__eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.la-pricing-agentic__new-badge {
  display: inline-block;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
  background: #f87171;
  border-radius: 4px;
  position: relative;
  top: -10px;
}

.la-pricing-agentic__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.la-pricing-agentic__card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.la-pricing-agentic__card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: 0 14px 40px rgba(77, 157, 255, 0.18);
}
.la-pricing-agentic__card--pro {
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border-color: var(--color-border-strong);
}
.la-pricing-agentic__pro-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: #ef4444;
  border-radius: 4px;
}
.la-pricing-agentic__card-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.la-pricing-agentic__card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text-strong);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.la-pricing-agentic__card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 18px;
}
.la-pricing-agentic__card-avail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--color-divider);
}
.la-pricing-agentic__tier-chip {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  background: rgba(77, 157, 255, 0.08);
  border: 1px solid rgba(77, 157, 255, 0.22);
  border-radius: 6px;
}
.la-pricing-agentic__tier-chip--pro {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
  border-color: transparent;
}

.la-pricing-agentic__footnote {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.la-pricing-agentic__footnote a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s var(--ease);
}
.la-pricing-agentic__footnote a:hover { color: var(--color-cyan); }

@media (max-width: 768px) {
  .la-pricing-agentic-section { padding: 64px 0 72px; }
  .la-pricing-agentic__grid { grid-template-columns: 1fr; gap: 16px; }
  .la-pricing-agentic__card { padding: 26px 22px 22px; }
  .la-pricing-agentic__card-title { font-size: 17px; }
}

/* =============================================================
   la-stats-band START — animated stats strip between testimonials
   and case studies. To unwind: delete this entire fenced block +
   the matching <section class="la-stats-band"> in landing_agentic.mak.
   ============================================================= */
.la-stats-band {
  position: relative;
  padding: 56px 0;
  background:
    radial-gradient(900px 240px at 50% 0%, rgba(77, 157, 255, 0.10), transparent 70%),
    var(--color-bg-3);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
/* 2-group layout: 追蹤 (3 stats) + AI 生成 (2 stats) with vertical divider between */
.la-stats-band__layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
}
.la-stats-band__group {
  flex: 1 1 auto;
  min-width: 0;
}
.la-stats-band__group--tracking { flex-basis: 60%; }
.la-stats-band__group--ai       { flex-basis: 40%; }
.la-stats-band__group-label {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.la-stats-band__group-label--tracking {
  color: var(--color-primary);
  background: rgba(77, 157, 255, 0.10);
  border: 1px solid rgba(77, 157, 255, 0.22);
}
.la-stats-band__group-label--ai {
  color: var(--color-cyan);
  background: rgba(34, 211, 238, 0.10);
  border: 1px solid rgba(34, 211, 238, 0.22);
}
.la-stats-band__group-grid {
  display: grid;
  gap: 24px 18px;
  text-align: center;
}
.la-stats-band__group-grid--3 { grid-template-columns: repeat(3, 1fr); }
.la-stats-band__group-grid--2 { grid-template-columns: repeat(2, 1fr); }
.la-stats-band__divider {
  flex: 0 0 1px;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--color-border-strong) 30%,
    var(--color-border-strong) 70%,
    transparent 100%
  );
  margin: 0 8px;
}
/* AI group accent — cyan + sign + soft cyan glow on number gradient */
.la-stats-band__group--ai .la-stat__plus {
  color: var(--color-cyan);
  -webkit-text-fill-color: var(--color-cyan);
}
.la-stats-band__group--ai .la-stat__num {
  background: linear-gradient(180deg, #ffffff 0%, #c8f1f8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.la-stat {
  padding: 8px 4px;
}
.la-stat__num {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--color-text-strong);
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #ffffff 0%, #cfe1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.la-stat__count {
  display: inline-block;
  min-width: 0;
}
.la-stat__unit {
  font-size: 0.72em;
  font-weight: 700;
  margin-left: 2px;
  color: var(--color-text-strong);
  -webkit-text-fill-color: transparent;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}
.la-stat__plus {
  color: var(--color-primary);
  -webkit-text-fill-color: var(--color-primary);
  font-weight: 700;
  margin-left: 2px;
}
.la-stat__label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.005em;
  line-height: 1.45;
}
.la-stat__label-fine {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--color-text-subtle);
  letter-spacing: 0;
}
@media (max-width: 960px) {
  .la-stats-band__layout {
    flex-direction: column;
    gap: 36px;
    align-items: stretch;
  }
  .la-stats-band__group--tracking,
  .la-stats-band__group--ai { flex-basis: auto; }
  .la-stats-band__group { text-align: center; }
  .la-stats-band__divider {
    flex: 0 0 1px;
    align-self: center;
    width: 60%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--color-border-strong) 30%,
      var(--color-border-strong) 70%,
      transparent 100%
    );
    margin: 0;
  }
}
@media (max-width: 640px) {
  .la-stats-band { padding: 40px 0; }
  .la-stats-band__group-grid--3,
  .la-stats-band__group-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .la-stat__num { font-size: 24px; }
  .la-stat__label { font-size: 13px; }
  .la-stat__label-fine { font-size: 11px; }
}
/* la-stats-band END */
