/* ============================================================================
   Author: N1CHO
   Made for LynxLayers
   ============================================================================ */
/* ============================================================================
   LynxThemeN1CHO - Landing page styles (lynxlayers.me look).
   Loaded ONLY on the homepage (head.tpl conditional).
   FULLY TOKEN-DRIVEN: uses var(--token) from tokens.css, so the landing flips
   between dark (default) and light (.theme-light) automatically.
   FULL-BLEED: breaks out of six's narrow #main-body .container so sections
   span the full screen on large displays; content re-centered by .container.
   ============================================================================ */

/* Hide six's domain-search masthead + shortcut bar on the homepage (hero/CTAs replace them) */
#home-banner, .home-shortcuts { display: none !important; }

/* ---- Full-bleed: let the landing use the whole viewport ------------------- */
#main-body > .container,
#main-body > .container > .row {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#main-body .main-content { width: 100% !important; float: none !important; padding: 0 !important; }
section#main-body { padding-top: 0 !important; }  /* homepage hero owns its own top spacing */

/* ---- Landing root + atmosphere ------------------------------------------- */
.ll-landing { color: var(--text-primary); font-family: var(--font-sans); position: relative; overflow-x: clip; }
.ll-landing * { box-sizing: border-box; }
.ll-landing::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1200px 700px at 80% -10%, color-mix(in oklch, var(--primary-color) 9%, transparent), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, color-mix(in oklch, var(--primary-color) 6%, transparent), transparent 60%);
}
/* Subtle grid backdrop like the source site's .bg-grid */
.ll-landing::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(to right, color-mix(in oklch, var(--text-primary) 3.5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklch, var(--text-primary) 3.5%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
}
.ll-landing a { color: inherit; text-decoration: none; }
.ll-landing img, .ll-landing svg { display: block; max-width: 100%; }
.ll-landing .container { width: 100%; max-width: min(1320px, 92vw); margin: 0 auto; padding: 0 24px; }
/* Bootstrap puts clearfix ::before/::after on .container; as grid/flex items they
   break our layouts (the hero "two columns" bug). Neutralise them in the landing. */
.ll-landing .container::before, .ll-landing .container::after { content: none !important; }

/* ---- Buttons ------------------------------------------------------------- */
.ll-landing .btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 12px;
  font-weight: 600; font-size: 14px; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; white-space: nowrap;
}
.ll-landing .btn:hover { transform: translateY(-1px); }
.ll-landing .btn-primary { background: linear-gradient(180deg, var(--primary-color), var(--primary-hover)); color: var(--text-on-primary); box-shadow: var(--shadow-glow); }
.ll-landing .btn-primary:hover { filter: brightness(1.06); }
.ll-landing .btn-ghost { background: color-mix(in oklch, var(--text-primary) 5%, transparent); color: var(--text-primary); border-color: var(--border-strong); }
.ll-landing .btn-ghost:hover { background: color-mix(in oklch, var(--text-primary) 9%, transparent); border-color: var(--primary-color); }
.ll-landing .btn.block { width: 100%; justify-content: center; }

.ll-landing .pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: color-mix(in oklch, var(--primary-color) 10%, transparent); border: 1px solid color-mix(in oklch, var(--primary-color) 28%, transparent); color: var(--primary-strong); font-size: 13px; font-weight: 500; letter-spacing: .02em; }
.ll-landing .pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary-color); box-shadow: 0 0 12px var(--primary-color); animation: ll-pulse 2s ease-in-out infinite; }
@keyframes ll-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.85); } }

/* ---- Hero ---------------------------------------------------------------- */
.ll-landing .hero { position: relative; z-index: 1; padding: 80px 0 60px; }
.ll-landing .hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.ll-landing .eyebrow { margin: 24px 0 0; text-transform: uppercase; letter-spacing: .25em; font-size: 12px; color: var(--text-secondary); font-weight: 600; }
.ll-landing .hero-title { font-family: var(--font-display); font-size: clamp(40px, 6.5vw, 80px); line-height: 1; letter-spacing: -.03em; margin: 14px 0 22px; font-weight: 700; color: var(--text-primary); }
.ll-landing .grad { background: linear-gradient(120deg, var(--primary-strong) 0%, var(--primary-color) 50%, var(--primary-hover) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ll-landing .hero-sub { color: var(--text-secondary); font-size: 17px; max-width: 540px; margin: 0 0 28px; }
.ll-landing .check-grid { list-style: none; padding: 0; margin: 0 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; max-width: 520px; }
.ll-landing .check-grid li { display: flex; align-items: center; gap: 12px; color: var(--text-primary); font-size: 14px; }
.ll-landing .check { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(180deg, var(--primary-color), var(--primary-hover)); display: inline-block; position: relative; flex-shrink: 0; box-shadow: 0 0 0 4px color-mix(in oklch, var(--primary-color) 10%, transparent); }
.ll-landing .check::after { content: ''; position: absolute; left: 7px; top: 4px; width: 6px; height: 10px; border: solid var(--text-on-primary); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.ll-landing .hero-ctas { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.ll-landing .hero-stats { display: flex; align-items: center; gap: 28px; padding-top: 12px; flex-wrap: wrap; }
.ll-landing .stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 1.95vw, 36px); color: var(--primary-strong); line-height: 1; }
.ll-landing .stat-label { text-transform: uppercase; letter-spacing: .18em; font-size: 11px; color: var(--text-muted); margin-top: 6px; }
.ll-landing .stat-div { width: 1px; height: 36px; background: var(--border-strong); }
.ll-landing .hero-visual { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }
.ll-landing .hero-mark { width: 100%; max-width: 480px; animation: ll-float 7s ease-in-out infinite; }
@keyframes ll-float { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(2deg); } }
.ll-landing .orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .8; }

/* ---- Sections ------------------------------------------------------------ */
.ll-landing .section { position: relative; z-index: 1; padding: 100px 0; }
.ll-landing .section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.ll-landing .section-head h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); line-height: 1.05; letter-spacing: -.02em; margin: 0 0 16px; font-weight: 700; color: var(--text-primary); }
.ll-landing .section-head p { color: var(--text-secondary); font-size: 17px; margin: 0; }
.ll-landing .section-head .pill { margin-bottom: 18px; }

/* ---- Cards / bento ------------------------------------------------------- */
.ll-landing .card { background: linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; box-shadow: var(--shadow-md); }
.ll-landing .card:hover { transform: translateY(-4px); border-color: color-mix(in oklch, var(--primary-color) 30%, transparent); }
.ll-landing .card .ic { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: color-mix(in oklch, var(--primary-color) 12%, transparent); color: var(--primary-strong); margin-bottom: 18px; border: 1px solid color-mix(in oklch, var(--primary-color) 20%, transparent); }
.ll-landing .card h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 8px; font-weight: 600; letter-spacing: -.01em; color: var(--text-primary); }
.ll-landing .card p { margin: 0; color: var(--text-secondary); font-size: 14.5px; }
.ll-landing .bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.ll-landing .bento-1 { grid-column: span 2; } .ll-landing .bento-2 { grid-column: span 4; }
.ll-landing .bento-3 { grid-column: span 3; } .ll-landing .bento-4 { grid-column: span 3; }
.ll-landing .bento-5,.ll-landing .bento-6,.ll-landing .bento-7 { grid-column: span 2; }
.ll-landing .bento-8,.ll-landing .bento-9 { grid-column: span 3; }

/* ---- Stack / layers ------------------------------------------------------ */
.ll-landing .stack { display: flex; flex-direction: column; gap: 18px; max-width: 1080px; margin: 0 auto; }
.ll-landing .layer { position: relative; display: grid; grid-template-columns: 90px 1.4fr 1fr; align-items: center; gap: 32px; padding: 36px 40px; background: linear-gradient(135deg, var(--bg-surface), var(--bg-muted)); border: 1px solid var(--border-color); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.ll-landing .layer:hover { transform: translateY(-3px); border-color: color-mix(in oklch, var(--primary-color) 30%, transparent); }
.ll-landing .layer-mid { background: linear-gradient(135deg, color-mix(in oklch, var(--primary-color) 10%, var(--bg-surface)), var(--bg-muted)); border-color: color-mix(in oklch, var(--primary-color) 30%, transparent); }
.ll-landing .layer-num { font-family: var(--font-display); font-weight: 700; font-size: 64px; line-height: 1; background: linear-gradient(180deg, var(--primary-strong), var(--primary-color)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ll-landing .layer-tag { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: var(--primary-strong); font-weight: 700; margin-bottom: 8px; padding: 4px 10px; border-radius: 999px; background: color-mix(in oklch, var(--primary-color) 10%, transparent); border: 1px solid color-mix(in oklch, var(--primary-color) 22%, transparent); }
.ll-landing .layer-body h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 8px; font-weight: 600; color: var(--text-primary); }
.ll-landing .layer-body p { margin: 0; color: var(--text-secondary); font-size: 14.5px; max-width: 460px; }
.ll-landing .layer-stats { list-style: none; margin: 0; padding: 0 0 0 28px; display: flex; flex-direction: column; gap: 10px; border-left: 1px solid var(--border-strong); }
.ll-landing .layer-stats strong { font-family: var(--font-display); font-size: 18px; color: var(--primary-strong); font-weight: 700; }
.ll-landing .layer-stats span { font-size: 12.5px; color: var(--text-secondary); }

/* ---- Products ------------------------------------------------------------ */
.ll-landing .products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ll-landing .product { position: relative; background: linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 22px; transition: transform .2s, border-color .2s; box-shadow: var(--shadow-md); }
.ll-landing .product:hover { transform: translateY(-5px); border-color: color-mix(in oklch, var(--primary-color) 30%, transparent); }
.ll-landing .product.featured { border-color: color-mix(in oklch, var(--primary-color) 40%, transparent); background: linear-gradient(180deg, color-mix(in oklch, var(--primary-color) 8%, transparent), transparent 40%), linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); box-shadow: var(--shadow-glow); }
.ll-landing .ribbon { position: absolute; top: -10px; right: 18px; background: linear-gradient(180deg, var(--primary-color), var(--primary-hover)); color: var(--text-on-primary); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; }
.ll-landing .tag { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--primary-strong); font-weight: 600; margin-bottom: 10px; }
.ll-landing .product h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 8px; letter-spacing: -.01em; color: var(--text-primary); }
.ll-landing .product-desc { color: var(--text-secondary); font-size: 13.5px; margin: 0; }
.ll-landing .price { display: flex; align-items: baseline; gap: 6px; padding: 14px 0; border-top: 1px dashed var(--border-strong); border-bottom: 1px dashed var(--border-strong); }
.ll-landing .price-from { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.ll-landing .price-amount { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--text-primary); }
.ll-landing .price-period { color: var(--text-secondary); font-size: 13px; }
.ll-landing .spec { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ll-landing .spec li { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; padding-bottom: 8px; border-bottom: 1px solid var(--border-color); }
.ll-landing .spec li:last-child { border-bottom: 0; }
.ll-landing .spec li span { color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.ll-landing .spec li strong { color: var(--text-primary); font-weight: 500; }

/* ---- Panel / mock dashboard ---------------------------------------------- */
.ll-landing .panel-section { background: radial-gradient(800px 500px at 90% 50%, color-mix(in oklch, var(--primary-color) 6%, transparent), transparent 60%); }
.ll-landing .panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ll-landing .panel-copy h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); line-height: 1.1; letter-spacing: -.02em; margin: 18px 0; font-weight: 700; color: var(--text-primary); }
.ll-landing .panel-copy .lead { color: var(--text-secondary); font-size: 16.5px; margin: 0 0 30px; }
.ll-landing .feat-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 22px; }
.ll-landing .feat-list li { display: flex; align-items: flex-start; gap: 14px; }
.ll-landing .feat-ic { flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: color-mix(in oklch, var(--primary-color) 12%, transparent); color: var(--primary-strong); border: 1px solid color-mix(in oklch, var(--primary-color) 20%, transparent); margin-top: 2px; }
.ll-landing .feat-list h4 { font-family: var(--font-display); font-size: 16px; margin: 0 0 4px; font-weight: 600; color: var(--text-primary); }
.ll-landing .feat-list p { margin: 0; color: var(--text-secondary); font-size: 14px; }
.ll-landing .panel-mock { position: relative; min-height: 420px; border-radius: 16px; background: linear-gradient(180deg, var(--bg-surface), var(--bg-base)); border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); padding: 20px; }

/* ---- Trust / metrics / testimonials -------------------------------------- */
.ll-landing .testimonials { background: radial-gradient(700px 400px at 10% 50%, color-mix(in oklch, var(--primary-color) 6%, transparent), transparent 60%); }
.ll-landing .trust { display: grid; grid-template-columns: 1fr 1.2fr; grid-template-areas: "metrics spotlight" "minis spotlight"; gap: 22px; align-items: stretch; }
.ll-landing .trust-metrics { grid-area: metrics; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ll-landing .metric { background: linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 22px 20px; transition: border-color .2s, transform .2s; }
.ll-landing .metric:hover { border-color: color-mix(in oklch, var(--primary-color) 25%, transparent); transform: translateY(-2px); }
.ll-landing .metric-num { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1; color: var(--primary-strong); letter-spacing: -.02em; }
.ll-landing .metric-num small { font-size: 16px; color: var(--text-secondary); margin-left: 2px; font-weight: 500; }
.ll-landing .metric-label { font-size: 13px; color: var(--text-primary); font-weight: 600; margin-top: 10px; }
.ll-landing .metric-sub { color: var(--text-muted); font-size: 12px; margin-top: 4px; }
.ll-landing .spotlight { grid-area: spotlight; margin: 0; padding: 36px; background: radial-gradient(500px 300px at 100% 0%, color-mix(in oklch, var(--primary-color) 10%, transparent), transparent 60%), linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); border: 1px solid color-mix(in oklch, var(--primary-color) 25%, transparent); border-radius: var(--radius-lg); box-shadow: var(--shadow-glow); display: flex; flex-direction: column; gap: 22px; }
.ll-landing .spotlight blockquote { margin: 0; font-family: var(--font-display); font-size: 22px; line-height: 1.45; color: var(--text-primary); overflow-wrap: break-word; word-break: break-word; min-width: 0; }
.ll-landing .spot-stars { display: flex; gap: 4px; color: var(--primary-strong); }
.ll-landing .spotlight figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border-color); }
.ll-landing .spot-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-color), var(--primary-strong)); color: var(--text-on-primary); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; }
.ll-landing .spot-meta strong { font-size: 14.5px; color: var(--text-primary); font-weight: 600; } .ll-landing .spot-meta span { font-size: 13px; color: var(--text-secondary); }
.ll-landing .mini-quotes { grid-area: minis; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ll-landing .mini-q { padding: 18px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius); display: flex; flex-direction: column; gap: 10px; transition: border-color .2s; }
.ll-landing .mini-q:hover { border-color: color-mix(in oklch, var(--primary-color) 22%, transparent); }
.ll-landing .mini-q p { margin: 0; font-size: 13.5px; color: var(--text-primary); line-height: 1.5; } .ll-landing .mini-q span { font-size: 12px; color: var(--primary-strong); font-weight: 500; }
/* real per-review star fill (a rating may be < 5) */
.ll-landing .spot-stars svg.off { color: color-mix(in oklch, var(--text-muted) 50%, transparent); }

/* ---- Testimonials carousel: metrics + a card that rotates through ALL reviews ---- */
.ll-landing .trust--carousel { grid-template-columns: 1fr 1.2fr; grid-template-areas: "metrics carousel"; }
.ll-landing .trust--carousel .trust-metrics { grid-area: metrics; align-content: start; }
.ll-landing .ll-tcarousel { grid-area: carousel; position: relative; display: flex; flex-direction: column; gap: 16px; }
.ll-landing .tcar-track { position: relative; min-height: 240px; flex: 1 1 auto; }
/* inactive slides overlay (absolute); the active one is relative so the track
   sizes to it -> any review length fits, never clipped. */
.ll-landing .tcar-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: translateY(20px) scale(.985); transition: opacity .6s var(--ease-out), transform .65s var(--ease-out); pointer-events: none; }
.ll-landing .tcar-slide.is-active { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto; }
/* Defensive: the carousel alone controls slide visibility. Even if another layer
   (e.g. scroll-reveal) tries to force a non-active slide visible, keep it hidden so
   reviews never stack on top of each other. Active slide is exempt -> cross-fade
   still animates. */
.ll-landing .tcar-slide:not(.is-active) { opacity: 0 !important; }
.ll-landing .tcar-dots { display: flex; gap: 9px; justify-content: center; }
.ll-landing .tcar-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: var(--border-strong); cursor: pointer; transition: background .25s var(--ease-out), width .25s var(--ease-out); }
.ll-landing .tcar-dot:hover { background: color-mix(in oklch, var(--primary-color) 55%, var(--border-strong)); }
.ll-landing .tcar-dot.is-active { background: var(--primary-color); width: 26px; border-radius: 5px; }
@media (prefers-reduced-motion: reduce) { .ll-landing .tcar-slide { transition: none; } }
@media (max-width: 900px) { .ll-landing .trust--carousel { grid-template-columns: 1fr; grid-template-areas: "carousel" "metrics"; } }
.ll-landing .mini-stars { display: flex; gap: 3px; }
.ll-landing .mini-stars i { font-size: 11px; color: var(--primary-strong); }
.ll-landing .mini-stars i.off { color: color-mix(in oklch, var(--text-muted) 45%, transparent); }
/* metrics-only state (no verified reviews yet): real numbers full-width + honest note */
.ll-landing .trust--metrics-only { display: block; }
.ll-landing .trust--metrics-only .trust-metrics {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  max-width: 1040px; margin: 0 auto;
}
.ll-landing .trust-note {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin: 26px auto 0; max-width: 660px; text-align: center;
  color: var(--text-muted); font-size: 13.5px; line-height: 1.55;
}
.ll-landing .trust-note i { color: var(--primary-strong); flex-shrink: 0; }

/* ---- Payment + paths + CTA + announcements ------------------------------- */
/* ---- Payment methods (data-driven from WHMCS gateways) ------------------- */
.ll-landing .pay-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 900px; margin: 0 auto; }
.ll-landing .pay-card {
  --pm: var(--primary-color);
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 20px 11px 12px;
  background: color-mix(in oklch, var(--bg-surface) 86%, transparent);
  border: 1px solid var(--border-color); border-radius: 16px;
  color: var(--text-secondary); font-size: 14px; font-weight: 600; letter-spacing: .005em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.ll-landing .pay-ic {
  width: 36px; height: 36px; flex: none; display: grid; place-items: center;
  border-radius: 11px; color: var(--pm);
  background: color-mix(in oklch, var(--pm) 13%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--pm) 24%, transparent);
  transition: background .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.ll-landing .pay-ic svg { width: 19px; height: 19px; }
.ll-landing .pay-mono { font-size: 16px; font-weight: 800; line-height: 1; }
.ll-landing .pay-card:hover {
  color: var(--text-primary);
  border-color: color-mix(in oklch, var(--pm) 46%, transparent);
  background: color-mix(in oklch, var(--pm) 7%, var(--bg-surface));
  box-shadow: 0 12px 32px -14px color-mix(in oklch, var(--pm) 60%, transparent);
}
.ll-landing .pay-card:hover .pay-ic {
  background: color-mix(in oklch, var(--pm) 22%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--pm) 42%, transparent),
              0 0 20px -5px color-mix(in oklch, var(--pm) 65%, transparent);
}
/* Lift even after the scroll-reveal sets transform:none (higher specificity) */
.ll-landing .pay-card:hover,
html.ll-anim .ll-landing .pay-card.is-visible:hover { transform: translateY(-3px); }

/* Per-brand accent — drives icon tint, border + glow on hover */
.ll-landing .pay-card[data-pm="paypal"] { --pm: #1e8fe1; }
.ll-landing .pay-card[data-pm="stripe"] { --pm: #8b85ff; }
.ll-landing .pay-card[data-pm="apple"]  { --pm: var(--text-primary); }
.ll-landing .pay-card[data-pm="google"] { --pm: #5a9bff; }
.ll-landing .pay-card[data-pm="crypto"] { --pm: #f7931a; }
.ll-landing .pay-card[data-pm="sepa"]   { --pm: #10b981; }
.ll-landing .pay-card[data-pm="mollie"] { --pm: #3b82f6; }
.ll-landing .pay-card[data-pm="skrill"] { --pm: #b3357f; }
.ll-landing .pay-card[data-pm="amazon"] { --pm: #ff9f0a; }
.ll-landing .paths { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1040px; margin: 0 auto; }
.ll-landing .path { position: relative; padding: 36px; background: radial-gradient(500px 250px at 0% 0%, color-mix(in oklch, var(--primary-color) 10%, transparent), transparent 60%), linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); border: 1px solid color-mix(in oklch, var(--primary-color) 25%, transparent); border-radius: var(--radius-lg); box-shadow: var(--shadow-glow); display: flex; flex-direction: column; gap: 18px; }
.ll-landing .path-alt { background: linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.ll-landing .path-head { display: flex; align-items: center; gap: 14px; }
.ll-landing .path-num { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(180deg, var(--primary-color), var(--primary-hover)); color: var(--text-on-primary); font-family: var(--font-display); font-weight: 700; font-size: 18px; flex-shrink: 0; }
.ll-landing .path-alt .path-num { background: color-mix(in oklch, var(--text-primary) 5%, transparent); color: var(--primary-strong); border: 1px solid var(--border-strong); }
.ll-landing .path h3 { font-family: var(--font-display); font-size: 22px; margin: 0; font-weight: 600; color: var(--text-primary); }
.ll-landing .path-lead { color: var(--text-secondary); margin: 0; font-size: 15px; }
.ll-landing .path-list { list-style: none; padding: 0; margin: 0 0 8px; display: flex; flex-direction: column; gap: 12px; }
.ll-landing .path-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-primary); }
.ll-landing .path-list .check { width: 18px; height: 18px; } .ll-landing .path-list .check::after { left: 5px; top: 3px; width: 5px; height: 8px; }
.ll-landing .path .btn { margin-top: auto; }
.ll-landing .cta-card { text-align: center; max-width: 940px; margin: 0 auto; padding: 60px 30px; background: radial-gradient(600px 300px at 50% 0%, color-mix(in oklch, var(--primary-color) 18%, transparent), transparent 65%), linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); border: 1px solid color-mix(in oklch, var(--primary-color) 25%, transparent); border-radius: var(--radius-lg); box-shadow: var(--shadow-glow), inset 0 1px 0 color-mix(in oklch, var(--primary-strong) 24%, transparent); position: relative; overflow: hidden; isolation: isolate; }
.ll-landing .cta-card h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); margin: 0 0 14px; font-weight: 700; color: var(--text-primary); }
.ll-landing .cta-card p { color: var(--text-secondary); margin: 0 0 28px; font-size: 17px; }
.ll-landing .cta-card .pill { margin-bottom: 22px; }
.ll-landing .cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.ll-landing .cta-actions .btn { padding: 14px 28px; font-size: 15px; }
/* Buttons: glyphs + a primary arrow that nudges forward on hover */
.ll-landing .cta-actions .btn svg { flex-shrink: 0; }
.ll-landing .cta-actions .btn .arr { transition: transform .2s var(--ease-out); }
.ll-landing .cta-actions .btn-primary:hover .arr { transform: translateX(3px); }
/* Trust row: three reassurances with the brand check, set off from the CTAs by
   a soft fading hairline (action -> reassurance). */
.ll-landing .cta-trust { position: relative; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 26px; max-width: 660px; margin: 32px auto 0; padding-top: 28px; }
.ll-landing .cta-trust::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: min(440px, 82%); height: 1px; background: linear-gradient(90deg, transparent, color-mix(in oklch, var(--primary-color) 32%, transparent), transparent); }
.ll-landing .cta-trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--text-secondary); }
.ll-landing .cta-trust .check { width: 17px; height: 17px; }
.ll-landing .cta-trust .check::after { left: 5px; top: 3px; width: 5px; height: 8px; }
/* Faint brand watermark for depth (above the card background, below the content) */
.ll-landing .cta-card::after { content: ''; position: absolute; z-index: -1; right: -64px; bottom: -86px; width: 360px; height: 360px; opacity: .06; background-color: var(--primary-color); -webkit-mask: url(../img/lynx-hero.webp) center / contain no-repeat; mask: url(../img/lynx-hero.webp) center / contain no-repeat; pointer-events: none; }
/* Centered flex: one card centers, two form a centered pair, 3-4 wrap neatly. */
.ll-landing .ann-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; max-width: 1040px; margin: 0 auto; }
.ll-landing .ann {
  position: relative; flex: 1 1 300px; max-width: 500px;
  background: linear-gradient(180deg, color-mix(in oklch, var(--bg-surface) 92%, var(--primary-color) 6%), var(--bg-surface));
  border: 1px solid var(--border-color); border-radius: var(--radius); padding: 24px 24px 26px;
  overflow: hidden;
  transition: border-color .25s var(--ease-out, cubic-bezier(.22,1,.36,1)),
              transform .25s var(--ease-out, cubic-bezier(.22,1,.36,1)),
              box-shadow .25s var(--ease-out, cubic-bezier(.22,1,.36,1));
}
/* Accent rail that grows in on hover */
.ll-landing .ann::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-strong));
  transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease-out, cubic-bezier(.22,1,.36,1));
}
.ll-landing .ann:hover {
  border-color: color-mix(in oklch, var(--primary-color) 35%, transparent); transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px color-mix(in oklch, var(--primary-color) 70%, transparent);
}
.ll-landing .ann:hover::before { transform: scaleY(1); }
.ll-landing .ann time { font-size: 12px; color: var(--primary-strong); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.ll-landing .ann h3 { font-family: var(--font-display); font-size: 18px; margin: 10px 0 8px; font-weight: 600; color: var(--text-primary); line-height: 1.35; }
.ll-landing .ann h3 a { color: inherit; transition: color .2s; }
.ll-landing .ann h3 a:hover { color: var(--primary-strong); }
.ll-landing .ann p { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width:980px) {
  .ll-landing .hero-grid { grid-template-columns: 1fr; } .ll-landing .hero-visual { min-height: 320px; order: -1; }
  .ll-landing .panel-grid { grid-template-columns: 1fr; gap: 40px; } .ll-landing .products { grid-template-columns: repeat(2, 1fr); }
  .ll-landing .section { padding: 70px 0; } .ll-landing .layer { grid-template-columns: 70px 1fr; gap: 20px; padding: 28px; }
  .ll-landing .layer-stats { grid-column: 1/-1; border-left: 0; border-top: 1px solid var(--border-strong); padding: 18px 0 0; flex-direction: row; flex-wrap: wrap; gap: 18px 28px; }
  .ll-landing .trust { grid-template-columns: 1fr; grid-template-areas: "spotlight" "metrics" "minis"; } .ll-landing .paths { grid-template-columns: 1fr; }
  .ll-landing .ann-list { grid-template-columns: 1fr; } .ll-landing .bento > * { grid-column: 1 / -1 !important; }
}
@media (max-width:640px) {
  .ll-landing .check-grid { grid-template-columns: 1fr; } .ll-landing .hero-stats { gap: 16px; }
  .ll-landing .products { grid-template-columns: 1fr; } .ll-landing .trust-metrics { grid-template-columns: 1fr 1fr; }
  .ll-landing .mini-quotes { grid-template-columns: 1fr; } .ll-landing .container { padding: 0 16px; } .ll-landing .layer { grid-template-columns: 1fr; padding: 24px; }
}

/* ============================================================================
   REMAKE POLISH (v2) - typography craft + premium interaction depth.
   Keeps the cyan tokens; elevates type hierarchy, mono technical signature,
   counter stability, and hover depth. Pairs with motion.css transitions.
   ============================================================================ */

/* Mono "engineered" signature on small uppercase technical labels */
.ll-landing .eyebrow, .ll-landing .tag, .ll-landing .price-from,
.ll-landing .stat-label, .ll-landing .metric-label, .ll-landing .layer-tag,
.ll-landing .ann time, .ll-landing .price-period {
  font-family: var(--font-mono); font-weight: 500; letter-spacing: .12em;
}
/* Precise, technical spec values + prices in mono */
.ll-landing .spec li strong { font-family: var(--font-mono); font-weight: 500; letter-spacing: -.01em; }
.ll-landing .price-amount { font-family: var(--font-mono); font-weight: 700; letter-spacing: -.02em; }

/* Lean into Bricolage's character on display headings */
.ll-landing .hero-title, .ll-landing .section-head h2, .ll-landing .cta-card h2,
.ll-landing .panel-copy h2 { font-weight: 800; letter-spacing: -.03em; }

/* Counters/prices must not jitter width while animating */
.ll-landing .stat-num, .ll-landing .metric-num, .ll-landing .price-amount { font-variant-numeric: tabular-nums; }

/* Premium hover depth (timing handled by motion.css) */
.ll-landing .product:hover, .ll-landing .card:hover, .ll-landing .layer:hover {
  transform: translateY(-6px);
  border-color: color-mix(in oklch, var(--primary-color) 42%, transparent) !important;
  box-shadow: 0 30px 64px -30px rgba(0, 0, 0, .72), var(--shadow-glow);
}
.ll-landing .metric:hover, .ll-landing .mini-q:hover, .ll-landing .ann:hover, .ll-landing .path:hover { transform: translateY(-4px); }

/* Hairline rhythm between stacked sections */
.ll-landing .section + .section { border-top: 1px solid color-mix(in oklch, var(--text-primary) 6%, transparent); }

/* Eyebrow reads as a quiet technical kicker */
.ll-landing .eyebrow { color: var(--text-muted); font-size: 11px; }

/* ============================================================================
   HERO V2 - centered, product-forward. Replaces the old left/triangle hero.
   ============================================================================ */
.ll-landing .hero-v2 { padding: 92px 0 72px; text-align: center; }
.ll-landing .hero-center { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.ll-landing .hero-v2 .pill { margin-bottom: 24px; }
.ll-landing .hero-v2 .hero-title { font-size: clamp(44px, 7vw, 88px); line-height: .98; margin: 0 0 22px; }
.ll-landing .hero-v2 .hero-sub { margin: 0 auto 30px; max-width: 600px; font-size: 18px; }
.ll-landing .hero-v2 .hero-ctas { justify-content: center; margin-bottom: 24px; }
.ll-landing .hero-chips { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; padding: 0; margin: 0; }
.ll-landing .hero-chips li { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-secondary); }
.ll-landing .hero-chips i { color: var(--primary-color); font-size: 13px; }

/* Console mock */
.ll-landing .hero-console {
  margin: 60px auto 44px; max-width: 1080px; text-align: left;
  background: linear-gradient(180deg, var(--bg-surface), var(--bg-base));
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  box-shadow: 0 70px 130px -50px rgba(0,0,0,.85), var(--shadow-glow); overflow: hidden;
}
.ll-landing .console-top { display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--border-color); background: color-mix(in oklch, var(--text-primary) 3%, transparent); }
.ll-landing .cdots { display: inline-flex; gap: 6px; }
.ll-landing .cdots i { width: 11px; height: 11px; border-radius: 50%; background: color-mix(in oklch, var(--text-primary) 16%, transparent); }
.ll-landing .console-name { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-muted); }
.ll-landing .console-live { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--color-success); }
.ll-landing .console-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 18px; }
.ll-landing .ctile { background: color-mix(in oklch, var(--text-primary) 3%, transparent); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 16px; }
.ll-landing .ctile-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.ll-landing .ctile-val { display: block; font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--text-primary); margin-top: 6px; line-height: 1; }
.ll-landing .ctile-val small { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-left: 3px; }
.ll-landing .ctile-sub { display: block; font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.ll-landing .cbars { display: flex; align-items: flex-end; gap: 4px; height: 34px; margin-top: 14px; }
.ll-landing .cbars i { flex: 1; background: linear-gradient(180deg, var(--primary-color), var(--primary-hover)); border-radius: 3px; opacity: .85; transform-origin: bottom; animation: ll-cbar 2.8s var(--ease-out) infinite; }
.ll-landing .cbars i:nth-child(2){animation-delay:.2s} .ll-landing .cbars i:nth-child(3){animation-delay:.4s} .ll-landing .cbars i:nth-child(4){animation-delay:.6s} .ll-landing .cbars i:nth-child(5){animation-delay:.8s} .ll-landing .cbars i:nth-child(6){animation-delay:1s} .ll-landing .cbars i:nth-child(7){animation-delay:1.2s}
@keyframes ll-cbar { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(.7)} }
.ll-landing .ctile-wide { grid-column: span 2; }
.ll-landing .cgraph { width: 100%; height: 92px; margin-top: 10px; display: block; }
.ll-landing .cgraph .cg0 { stop-color: var(--primary-color); stop-opacity: .42; }
.ll-landing .cgraph .cg1 { stop-color: var(--primary-color); stop-opacity: 0; }
.ll-landing .cgraph-area { fill: url(#llCg); }
.ll-landing .cgraph-line { fill: none; stroke: var(--primary-strong); stroke-width: 2.5; }
.ll-landing .ctile-uptime .ctile-val { color: var(--primary-strong); }
.ll-landing .cnodes { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.ll-landing .cnode { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12.5px; color: var(--text-secondary); padding: 9px 12px; background: color-mix(in oklch, var(--text-primary) 2.5%, transparent); border: 1px solid var(--border-color); border-radius: 10px; }
.ll-landing .cnode em { margin-left: auto; font-style: normal; color: var(--text-muted); }
.ll-landing .cnode .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ll-landing .cnode .dot.ok { background: var(--color-success); box-shadow: 0 0 8px var(--color-success); }
.ll-landing .cnode .dot.warn { background: var(--color-warning); box-shadow: 0 0 8px var(--color-warning); }
.ll-landing .hero-v2 .hero-stats { justify-content: center; }

@media (max-width: 760px) {
  .ll-landing .console-grid { grid-template-columns: 1fr 1fr; }
  .ll-landing .ctile-wide { grid-column: 1 / -1; }
  .ll-landing .cnodes { grid-template-columns: 1fr; }
}

/* ============================================================================
   BENTO features (replaces the 3 stacked "layer" rows)
   ============================================================================ */
.ll-landing .ll-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.ll-landing .bento-tile {
  background: linear-gradient(180deg, var(--bg-surface), var(--bg-muted));
  border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 12px;
}
.ll-landing .bento-2 { grid-column: span 2; }
.ll-landing .bento-4 { grid-column: span 4; }
.ll-landing .bento-ic {
  width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 15px; background: color-mix(in oklch, var(--primary-color) 12%, transparent);
  color: var(--primary-strong); border: 1px solid color-mix(in oklch, var(--primary-color) 22%, transparent); font-size: 19px;
}
.ll-landing .bento-tile h3 { font-family: var(--font-display); font-size: 23px; font-weight: 700; margin: 6px 0 0; color: var(--text-primary); letter-spacing: -.015em; }
.ll-landing .bento-tile p { margin: 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; max-width: 56ch; }
.ll-landing .bento-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 26px; margin: auto 0 0; padding: 18px 0 0; border-top: 1px solid var(--border-color); }
.ll-landing .bento-meta strong { display: block; font-family: var(--font-mono); font-size: 20px; color: var(--primary-strong); letter-spacing: -.01em; }
.ll-landing .bento-meta span { font-size: 12px; color: var(--text-muted); }
.ll-landing .bento-feature { background: radial-gradient(640px 320px at 0% 0%, color-mix(in oklch, var(--primary-color) 11%, transparent), transparent 60%), linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); }
.ll-landing .bento-accent { border-color: color-mix(in oklch, var(--primary-color) 32%, transparent); background: radial-gradient(420px 240px at 100% 0%, color-mix(in oklch, var(--primary-color) 12%, transparent), transparent 60%), linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); }

/* ---- Bento liveliness: lift on hover, icon reacts, lighter tiles centered --- */
.ll-landing .bento-tile { transition: transform .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .4s var(--ease-out); }
.ll-landing .bento-tile:hover { transform: translateY(-4px); border-color: color-mix(in oklch, var(--primary-color) 42%, var(--border-color)); box-shadow: 0 30px 60px -34px rgba(0,0,0,.7), var(--shadow-glow); }
.ll-landing .bento-ic { transition: transform .4s var(--ease-out), background .4s var(--ease-out); }
.ll-landing .bento-tile:hover .bento-ic { transform: scale(1.08); background: color-mix(in oklch, var(--primary-color) 18%, transparent); }
/* Tiles without a metric row would otherwise float their copy to the top and
   leave an awkward gap; centre them so they read as deliberate. */
.ll-landing .bento-tile:not(:has(.bento-meta)) { justify-content: center; }
/* The security tile is "always on": its icon emits a soft sonar pulse. */
.ll-landing .bento-accent .bento-ic { position: relative; background: color-mix(in oklch, var(--primary-color) 20%, transparent); border-color: color-mix(in oklch, var(--primary-color) 45%, transparent); }
.ll-landing .bento-accent .bento-ic::after { content: ''; position: absolute; inset: -1px; border-radius: inherit; border: 1px solid color-mix(in oklch, var(--primary-color) 55%, transparent); animation: ll-shield-pulse 2.8s var(--ease-out) infinite; pointer-events: none; }
@keyframes ll-shield-pulse { 0% { opacity: .85; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.7); } }
@media (prefers-reduced-motion: reduce) {
  .ll-landing .bento-tile:hover { transform: none; }
  .ll-landing .bento-accent .bento-ic::after { animation: none; opacity: .45; transform: none; }
}
@media (max-width: 900px) {
  .ll-landing .ll-bento { grid-template-columns: 1fr; }
  .ll-landing .bento-2, .ll-landing .bento-4 { grid-column: 1 / -1; }
}

/* ============================================================================
   REMAKE v3 — Featured plans (price-led cards) + trust + CTA. Same cyan tokens.
   ============================================================================ */
.ll-landing .products { gap: 22px; align-items: stretch; }
.ll-landing .product {
  position: relative; padding: 28px 26px; gap: 14px;
  background: linear-gradient(180deg, var(--bg-surface), var(--bg-muted));
  border: 1px solid var(--border-color); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.ll-landing .product .tag { color: var(--primary-strong); margin: 0; }
.ll-landing .product h3 { font-size: 23px; margin: 2px 0 0; font-weight: 700; letter-spacing: -.015em; }
.ll-landing .product-desc { min-height: 0; margin: 0; color: var(--text-secondary); }
.ll-landing .product .price {
  display: flex; align-items: baseline; gap: 4px; margin: 6px 0 2px; padding: 16px 18px;
  border: 1px solid var(--border-color); border-radius: var(--radius);
  background: color-mix(in oklch, var(--primary-color) 7%, transparent);
}
.ll-landing .product .price-from { color: var(--text-muted); }
.ll-landing .product .price-amount { font-size: 38px; line-height: 1; }
.ll-landing .product .price-period { color: var(--text-secondary); }
.ll-landing .product .spec { gap: 11px; margin: 4px 0; }
.ll-landing .product .spec li { padding-bottom: 11px; }
.ll-landing .product .btn.block { margin-top: auto; padding: 13px; }
/* Popular plan: glow + border + ribbon (no resting transform, to avoid reveal conflict) */
.ll-landing .product.featured {
  border-color: color-mix(in oklch, var(--primary-color) 48%, transparent);
  box-shadow: var(--shadow-glow);
  background: radial-gradient(440px 210px at 50% 0%, color-mix(in oklch, var(--primary-color) 13%, transparent), transparent 66%), linear-gradient(180deg, var(--bg-surface), var(--bg-muted));
}
.ll-landing .product .ribbon {
  position: absolute; top: 14px; right: 14px; padding: 5px 12px; border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-hover)); color: var(--text-on-primary);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

/* Trust: refined stat band + bigger spotlight */
.ll-landing .metric { background: linear-gradient(180deg, var(--bg-surface), var(--bg-muted)); }
.ll-landing .metric-num { font-size: 42px; font-family: var(--font-display); }
.ll-landing .spotlight blockquote { font-size: 24px; }

/* CTA: bolder close */
.ll-landing .cta-card { padding: 76px 30px; }
.ll-landing .cta-card h2 { font-size: clamp(34px, 5vw, 56px); }
.ll-landing .cta-card p { font-size: 18px; max-width: 560px; margin: 0 auto 30px; }

/* Consistent, larger section headings across the page */
.ll-landing .section-head h2 { font-size: clamp(32px, 4.4vw, 50px); }
.ll-landing .panel-copy h2 { font-size: clamp(30px, 3.8vw, 46px); }

/* ============================================================================
   HERO V3 — animated Lynx emblem LEFT, content RIGHT (unique, cyan brand)
   ============================================================================ */
.ll-landing .hero-v3 { padding: 64px 0 64px; text-align: left; }
.ll-landing .hero-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 50px; align-items: center; position: relative; min-height: calc(100vh - 132px); min-height: calc(100svh - 132px); padding-bottom: 58px; }

/* "Scroll to explore" cue pinned to the bottom of the first full-height view */
.ll-landing .hero-scroll {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px; z-index: 4;
  text-decoration: none; color: var(--text-muted);
  opacity: 0; animation: ll-scroll-in .7s var(--ease-out) .5s forwards;
  transition: color .25s var(--ease-out);
}
.ll-landing .hero-scroll:hover { color: var(--text-secondary); }
.ll-landing .hero-scroll-mouse {
  width: 26px; height: 42px; border-radius: 14px; display: flex; justify-content: center; padding-top: 7px;
  border: 2px solid color-mix(in oklch, var(--text-primary) 28%, transparent);
  transition: border-color .25s var(--ease-out);
}
.ll-landing .hero-scroll:hover .hero-scroll-mouse { border-color: var(--primary-color); }
.ll-landing .hero-scroll-wheel {
  width: 4px; height: 8px; border-radius: 3px; background: var(--primary-color);
  animation: ll-scroll-wheel 1.7s var(--ease-out) infinite;
}
.ll-landing .hero-scroll-label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
@keyframes ll-scroll-wheel { 0% { opacity: 0; transform: translateY(-4px); } 25% { opacity: 1; } 60% { opacity: 1; transform: translateY(9px); } 100% { opacity: 0; transform: translateY(11px); } }
@keyframes ll-scroll-in { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: .9; transform: translate(-50%, 0); } }
@media (max-width: 991px) {
  .ll-landing .hero-split { min-height: 0; padding-bottom: 0; }
  .ll-landing .hero-scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ll-landing .hero-scroll { animation: none !important; opacity: .9; transform: translateX(-50%); }
  .ll-landing .hero-scroll-wheel { animation: none !important; }
}
.ll-landing .hero-v3 .hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.ll-landing .hero-v3 .pill { margin-bottom: 22px; }
.ll-landing .hero-v3 .hero-title { font-size: clamp(48px, 6.6vw, 104px); line-height: .96; margin: 0 0 24px; }
.ll-landing .hero-v3 .hero-sub { max-width: 560px; font-size: clamp(18px, 1.3vw, 21px); margin: 0 0 32px; }
.ll-landing .hero-v3 .hero-ctas { justify-content: flex-start; margin-bottom: 28px; }
.ll-landing .hero-v3 .hero-ctas .btn { font-size: 15px; padding: 14px 26px; }
.ll-landing .hero-v3 .hero-chips { justify-content: flex-start; gap: 12px 26px; font-size: 14.5px; }
.ll-landing .hero-v3 .hero-stats { justify-content: flex-start; margin-top: 34px; gap: 24px; }

/* Emblem stage */
.ll-landing .hero-emblem { position: relative; display: flex; align-items: center; justify-content: center; min-height: clamp(400px, 48vh, 560px); }
.ll-landing .lynx-mark {
  display: block; width: 100%; max-width: clamp(360px, 31vw, 520px); aspect-ratio: 1 / 1; height: auto;
  overflow: visible; position: relative; z-index: 2;
  /* The brand mark ships as a flat white silhouette. Paint it through a CSS
     mask so it can be recoloured per theme instead of staying white-on-white. */
  background-color: color-mix(in oklch, white 93%, var(--primary-color));
  -webkit-mask: url(../img/lynx-hero.webp) center / contain no-repeat;
  mask: url(../img/lynx-hero.webp) center / contain no-repeat;
  animation: ll-floaty 7s cubic-bezier(.45,.05,.55,.95) infinite; will-change: transform;
}
/* Light theme: paint the mark in the theme primary (cyan) so it reads against
   the light hero background, matching the navbar brand mark. */
.theme-light .ll-landing .lynx-mark {
  background-color: var(--primary-color);
  filter: drop-shadow(0 0 26px color-mix(in oklch, var(--primary-color) 32%, transparent));
}
@keyframes ll-floaty { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(-1deg); } }
.ll-landing .lynx-mark .lxg0 { stop-color: var(--primary-strong); }
.ll-landing .lynx-mark .lxg1 { stop-color: var(--primary-color); }
.ll-landing .lynx-mark .lx-base { fill: url(#lxg); }
.ll-landing .lynx-mark .lx-f1 { fill: color-mix(in oklch, var(--primary-color) 50%, var(--bg-base)); }
.ll-landing .lynx-mark .lx-f2 { fill: color-mix(in oklch, var(--primary-strong) 80%, transparent); }
.ll-landing .lynx-mark .lx-f3 { fill: color-mix(in oklch, var(--primary-color) 64%, var(--bg-base)); }
.ll-landing .lynx-mark .lx-f4 { fill: color-mix(in oklch, var(--primary-color) 56%, var(--bg-base)); }
.ll-landing .lynx-mark .lx-f5 { fill: color-mix(in oklch, var(--primary-strong) 90%, transparent); }
.ll-landing .lynx-mark .lx-eye { fill: var(--bg-base); }
.ll-landing .lynx-mark .lx-nose { fill: var(--bg-base); }
.ll-landing .lynx-mark .lx-tuft { stroke: var(--primary-strong); stroke-width: 5; stroke-linecap: round; }

/* Glow + dashed ring + orbiting particles */
.ll-landing .emblem-glow { position: absolute; width: 62%; height: 62%; border-radius: 50%; background: radial-gradient(circle, color-mix(in oklch, var(--primary-color) 42%, transparent), transparent 70%); filter: blur(44px); z-index: 0; animation: ll-glow 5s ease-in-out infinite; transition: transform .6s var(--ease-out, cubic-bezier(.22,1,.36,1)); }
.ll-landing .hero-emblem:hover .emblem-glow { transform: scale(1.14); }
@keyframes ll-glow { 0%,100% { opacity: .45; } 50% { opacity: .8; } }
.ll-landing .emblem-ring { position: absolute; width: min(90%, 460px); aspect-ratio: 1; border-radius: 50%; border: 1px dashed color-mix(in oklch, var(--primary-color) 28%, transparent); z-index: 1; animation: ll-spin 44s linear infinite; }
@keyframes ll-spin { to { transform: rotate(360deg); } }
.ll-landing .orbit {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary-strong); box-shadow: 0 0 14px var(--primary-color);
  z-index: 3; will-change: transform, opacity;
}
/* Pulled out toward the corners so they clear the emblem, then each drifts on
   its own smooth path with a gentle shimmer (no longer a synced up/down bob). */
.ll-landing .orbit-1 { top: 6%; left: 8%; animation: ll-orbit-a 7s cubic-bezier(.45,.05,.55,.95) infinite; }
.ll-landing .orbit-2 { bottom: 10%; right: 8%; width: 7px; height: 7px; animation: ll-orbit-b 9s cubic-bezier(.45,.05,.55,.95) infinite; }
.ll-landing .orbit-3 { top: 50%; right: 2%; width: 5px; height: 5px; animation: ll-orbit-c 8s cubic-bezier(.45,.05,.55,.95) infinite; }
@keyframes ll-orbit-a {
  0%,100% { transform: translate(0,0); opacity: .6; }
  50% { transform: translate(-9px,-22px); opacity: 1; }
}
@keyframes ll-orbit-b {
  0%,100% { transform: translate(0,0); opacity: .5; }
  50% { transform: translate(11px,16px); opacity: .95; }
}
@keyframes ll-orbit-c {
  0%,100% { transform: translate(0,0); opacity: .45; }
  50% { transform: translate(10px,-14px); opacity: .9; }
}

@media (max-width: 900px) {
  .ll-landing .hero-split { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .ll-landing .hero-v3 .hero-copy { align-items: center; }
  .ll-landing .hero-v3 .hero-sub { margin-left: auto; margin-right: auto; }
  .ll-landing .hero-v3 .hero-ctas, .ll-landing .hero-v3 .hero-chips, .ll-landing .hero-v3 .hero-stats { justify-content: center; }
  .ll-landing .hero-emblem { min-height: 280px; order: -1; }
  .ll-landing .lynx-mark { max-width: 220px; }
  /* Grid/flex children default to min-width:auto and refuse to shrink below
     their content, forcing the 1fr track wider than the viewport (clipped
     title/sub/buttons on the right). Let them shrink and wrap long words. */
  .ll-landing .hero-split, .ll-landing .hero-v3 .hero-copy { min-width: 0; }
  .ll-landing .hero-v3 .hero-copy > * { max-width: 100%; }
  .ll-landing .hero-v3 .hero-title { overflow-wrap: break-word; }
}

/* ---- Phones: tighten the hero so nothing clips and the title fits --------- */
@media (max-width: 600px) {
  .ll-landing .hero-v3 { padding: 30px 0 44px; }
  .ll-landing .hero-v3 .hero-title { font-size: clamp(32px, 9vw, 52px); line-height: 1.04; margin: 0 0 18px; }
  .ll-landing .hero-v3 .hero-sub { font-size: 16px; margin-bottom: 26px; }
  .ll-landing .hero-v3 .pill { margin-bottom: 18px; }
  .ll-landing .hero-v3 .hero-ctas { width: 100%; gap: 12px; }
  .ll-landing .hero-v3 .hero-ctas .btn { flex: 1 1 46%; justify-content: center; padding: 13px 18px; }
  .ll-landing .hero-v3 .hero-stats { gap: 18px 24px; margin-top: 26px; }
  .ll-landing .hero-emblem { min-height: 220px; }
  .ll-landing .lynx-mark { max-width: 188px; }
  .ll-landing .section { padding: 64px 0; }
}

/* ============================================================================
   PERFORMANCE — composite the fixed glow/grid layers so they don't repaint on
   scroll, and hint the GPU on the few animated elements. Big FPS win.
   ============================================================================ */
.ll-landing::before, .ll-landing::after { transform: translateZ(0); will-change: transform; }
.ll-landing .emblem-glow { will-change: opacity; }
.ll-landing .emblem-ring { will-change: transform; }
.ll-landing .lynx-mark { will-change: transform; }
/* Pause all decorative loops once the user scrolls past the hero (saved CPU/GPU) */
@media (prefers-reduced-motion: reduce) { .ll-landing .emblem-glow, .ll-landing .emblem-ring, .ll-landing .orbit, .ll-landing .cbars i, .ll-landing .lynx-mark { animation: none !important; } }

