/* The front page. Loaded after fx.css and built on its tokens. Everything here is scoped under
   .lp, so none of it can reach a page inside the product. */

body.landing { background: #0c0d0f; }
body.landing > main { padding: 0; }

.lp {
  --lp-bg: #0c0d0f; --lp-ink: #eef0f2; --lp-dim: #999ea6; --lp-faint: #6b7078;
  --lp-line: rgba(255, 255, 255, .08); --lp-glass: rgba(21, 23, 26, .55);
  --lp-v: #6fd35a; --lp-c: #45d9e6; --lp-p: #e5484d; --lp-g: #6fd35a;
  position: relative; color: var(--lp-ink); overflow-x: clip;
  font-family: "Segoe UI Variable Text", "Segoe UI", -apple-system, BlinkMacSystemFont, Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.lp h1, .lp h2, .lp h3 { font-family: var(--font-display); color: #eef0f2; }
.lp code { font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; font-size: .9em;
  background: rgba(255, 255, 255, .07); padding: 2px 6px; border-radius: 6px; color: #dfe2e6; }
.lp svg { width: 1em; height: 1em; flex: none; }

/* --- nav ---------------------------------------------------------------------------- */

.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: 68px;
  display: flex; align-items: center; gap: 28px; padding: 0 max(24px, 3vw);
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.lp-nav.scrolled {
  background: rgba(13, 14, 16, .72); border-bottom-color: var(--lp-line);
  -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4);
}
.lp-logo { display: inline-flex; align-items: center; gap: 10px; font: 700 20px var(--font-display);
  color: #eef0f2; text-decoration: none; letter-spacing: .01em; }
.lp-logo b { font-weight: 700; color: var(--lp-v); }
.lp-logo .mark { width: 32px; height: 32px; border-radius: 6px; display: grid; place-items: center; background: var(--lp-v); }
.lp-logo .mark svg path { stroke: #0e0f11; }
.lp-logo .mark svg { width: 17px; height: 17px; }
.lp-logo.small { font-size: 15px; }
.lp-logo.small .mark { width: 24px; height: 24px; border-radius: 7px; }
.lp-links { display: flex; gap: 26px; margin-left: auto; }
.lp-links a { position: relative; color: #b8bcc3; text-decoration: none; font-size: 14px; font-weight: 500; }
.lp-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--lp-v); transform: scaleX(0); transition: transform .3s var(--fx-ease); }
.lp-links a:hover { color: #fff; }
.lp-links a:hover::after { transform: scaleX(1); }
.lp .btn-discord.lp-nav-signin { width: auto; padding: 9px 16px; font-size: 14px; border-radius: 11px; }
.lp .btn-discord.lp-nav-signin svg { width: 18px; height: 18px; }
.lp-nologin { font-size: 13px; color: var(--lp-dim); }

/* --- hero --------------------------------------------------------------------------- */

.lp-hero {
  position: relative; height: 100vh; min-height: 680px; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(ellipse 70% 60% at 72% 42%, rgba(111, 211, 90, .30), transparent 62%),
    radial-gradient(ellipse 50% 45% at 85% 85%, rgba(229, 72, 77, .10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(69, 217, 230, .10), transparent 60%),
    linear-gradient(#111214, #0c0d0f);
}
.lp-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .35;
  background-image:
    radial-gradient(rgba(255, 255, 255, .7) 1px, transparent 1.4px),
    radial-gradient(rgba(200, 205, 215, .5) 1px, transparent 1.4px);
  background-size: 83px 83px, 131px 131px;
  background-position: 0 0, 40px 60px;
  -webkit-mask: radial-gradient(ellipse 90% 70% at 70% 0%, #000, transparent 72%);
          mask: radial-gradient(ellipse 90% 70% at 70% 0%, #000, transparent 72%);
}
.lp-world { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.lp-world.flat { left: auto; width: 58%; }
.lp-world-labels { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.lp-hero-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 13, 15, .94) 0%, rgba(12, 13, 15, .72) 28%, rgba(12, 13, 15, 0) 55%),
    linear-gradient(0deg, var(--lp-bg) 0%, rgba(12, 13, 15, 0) 24%),
    linear-gradient(180deg, rgba(12, 13, 15, .55) 0%, rgba(12, 13, 15, 0) 16%);
}
.lp-hero-copy {
  position: relative; z-index: 3; height: 100%; max-width: 700px;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0 60px max(28px, 6vw);
}
.lp-hero-copy > * { animation: fx-rise 1s var(--fx-ease) both; }
.lp-hero-copy > *:nth-child(2) { animation-delay: .08s; }
.lp-hero-copy > *:nth-child(3) { animation-delay: .16s; }
.lp-hero-copy > *:nth-child(4) { animation-delay: .24s; }
.lp-hero-copy > *:nth-child(5) { animation-delay: .32s; }
.lp-eyebrow {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 11px; border-radius: 999px; font-size: 13px; font-weight: 500;
  color: #d8dbdf; text-decoration: none; background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: border-color .25s, background .25s;
}
.lp-eyebrow:hover { border-color: rgba(111, 211, 90, .6); background: rgba(111, 211, 90, .12); }
.lp-eyebrow svg { width: 14px; height: 14px; opacity: .7; }
.lp-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--lp-g); flex: none; }
.lp-dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--lp-g);
  animation: lp-ring 1.8s ease-out infinite; }
.lp-dot.red { background: var(--lp-p); }
.lp-dot.red::after { border-color: var(--lp-p); }
@keyframes lp-ring { from { transform: scale(.5); opacity: .9; } to { transform: scale(1.8); opacity: 0; } }
.lp h1 {
  font-size: clamp(48px, 7.6vw, 118px); line-height: .92; letter-spacing: -.01em; font-weight: 700;
  margin: 26px 0 24px; text-transform: uppercase;
}
/* The one word that is the point, in the signal colour. No gradient. */
.lp-grad { color: var(--lp-v); }
.lp-lede { font-size: clamp(16px, 1.4vw, 19.5px); line-height: 1.6; color: #b6bac1; max-width: 33em; margin: 0; }
.lp-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 34px 0 30px; }
.lp .btn-discord.lp-big { width: auto; padding: 15px 26px; font-size: 16px; border-radius: 10px; }
.lp-ghost {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 10px;
  color: #e8e9eb; text-decoration: none; font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .03);
  transition: background .25s, border-color .25s, transform .25s var(--fx-ease);
}
.lp-ghost svg { transition: transform .3s var(--fx-ease); }
.lp-ghost:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .3); }
.lp-ghost:hover svg { transform: translateX(4px); }
.lp-live {
  max-width: 470px; padding: 12px 16px 11px; border-radius: 10px;
  background: var(--lp-glass); border: 1px solid rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}
.lp-pulse { display: block; width: 100%; height: 44px; }
.lp-live-label { font-size: 13px; color: #c4c7cc; min-height: 19px; margin-top: 2px; }
.lp-live-label b { color: #fff; font-weight: 650; font-variant-numeric: tabular-nums; }
.lp-live-label .soft { color: #8f949b; }
.lp-live-label .bad { color: #f5b0b2; }
.lp-caption {
  position: absolute; z-index: 3; right: max(24px, 3vw); bottom: 30px; max-width: 290px; margin: 0;
  font-size: 11.5px; line-height: 1.5; color: #7c818a; text-align: right;
}
.lp-scroll { position: absolute; z-index: 3; left: 50%; bottom: 26px; translate: -50% 0;
  width: 24px; height: 38px; border-radius: 10px; border: 2px solid rgba(255, 255, 255, .28); }
.lp-scroll span { position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 2px; background: #fff; animation: lp-wheel 1.8s ease-in-out infinite; }
@keyframes lp-wheel { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* Labels over the world. Anchored at their point by JS; this lifts them above it. */
.w3d-label {
  position: absolute; left: 0; top: 0; translate: -50% calc(-100% - 30px);
  display: flex; flex-direction: column; gap: 2px; min-width: 190px;
  padding: 10px 13px 10px 14px; border-radius: 12px; font-size: 12px; line-height: 1.4;
  color: #dcdee2; background: rgba(18, 19, 21, .78); border: 1px solid rgba(255, 255, 255, .12);
  border-left: 3px solid var(--lp-p);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
  opacity: 0; transition: opacity .6s var(--fx-ease); will-change: transform;
}
.w3d-label::after {
  content: ''; position: absolute; left: 50%; bottom: -30px; width: 1px; height: 30px;
  background: linear-gradient(rgba(229, 72, 77, .8), rgba(229, 72, 77, 0));
}
.w3d-label b { color: #fff; font-weight: 650; font-size: 12.5px; }
.w3d-label.sev-high { border-left-color: #ff8a3d; }
.w3d-label.sev-high::after { background: linear-gradient(rgba(224, 123, 60, .8), rgba(224, 123, 60, 0)); }
.w3d-label.sev-warn { border-left-color: #f5c542; }
.w3d-label.sev-warn::after { background: linear-gradient(rgba(245, 197, 66, .8), rgba(245, 197, 66, 0)); }
.w3d-label.on { opacity: 1; }
.w3d-label.ping { animation: lp-ping .8s var(--fx-ease); }
@keyframes lp-ping {
  0% { box-shadow: 0 0 0 0 rgba(229, 72, 77, .7), 0 14px 40px rgba(0, 0, 0, .45); scale: .92; }
  60% { scale: 1.04; }
  100% { box-shadow: 0 0 0 18px rgba(229, 72, 77, 0), 0 14px 40px rgba(0, 0, 0, .45); scale: 1; }
}

/* --- stats band ---------------------------------------------------------------------- */

.lp-stats {
  position: relative; z-index: 4; max-width: 1240px; margin: -34px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.lp-stat {
  padding: 24px 24px 22px; border-radius: 10px; background: rgba(20, 21, 23, .7);
  border: 1px solid var(--lp-line); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .7);
}
.lp-stat b { display: block; font: 700 60px/1 var(--font-display); font-variant-numeric: tabular-nums; color: #eef0f2; }
.lp-stat b small { font-size: 26px; margin-left: 3px; }
.lp-stat > span { display: block; margin-top: 10px; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #c7cad0; }
.lp-stat p { margin: 6px 0 0; font-size: 13px; line-height: 1.5; color: var(--lp-dim); }
.lp-stat-live { border-color: rgba(111, 211, 90, .3); background:
  radial-gradient(ellipse 80% 80% at 100% 0%, rgba(111, 211, 90, .14), transparent 60%), rgba(20, 21, 23, .7); }
.lp-stat-live b { color: var(--lp-v); }

/* --- sections ------------------------------------------------------------------------ */

.lp-section { max-width: 1240px; margin: 0 auto; padding: 150px 32px 0; }
.lp-head { text-align: center; max-width: 840px; margin: 0 auto 64px; }
.lp-kicker {
  display: inline-block; padding: 5px 11px; border-radius: 4px; font: 600 11px var(--font-mono);
  letter-spacing: .16em; text-transform: uppercase; color: #9ff0f6;
  background: rgba(111, 211, 90, .1); border: 1px solid rgba(111, 211, 90, .35);
}
.lp h2 { font-size: clamp(36px, 5.2vw, 70px); line-height: 1; letter-spacing: -.005em; font-weight: 700; margin: 20px 0; }
.lp-head p { font-size: 18px; line-height: 1.6; color: var(--lp-dim); margin: 0 auto; max-width: 40em; }
.lp-dim { color: #5d6269; }

[data-reveal] { opacity: 0; translate: 0 44px;
  transition: opacity 1s var(--fx-ease), translate 1s var(--fx-ease);
  transition-delay: calc(var(--i, 0) * 70ms); }
[data-reveal].in { opacity: 1; translate: 0 0; }

/* --- product window ------------------------------------------------------------------- */

.lp-stage { position: relative; max-width: 1080px; margin: 0 auto; perspective: 1700px; padding: 10px 0 30px; }
.lp-window {
  transform: rotateX(var(--lean, 26deg)) translateY(var(--rise, 60px)); transform-origin: 50% 100%;
  border-radius: 10px; overflow: hidden; background: #111214;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 70px 140px -40px rgba(0, 0, 0, .9);
}
.lp-win-bar { display: flex; align-items: center; gap: 7px; height: 42px; padding: 0 16px;
  background: rgba(255, 255, 255, .03); border-bottom: 1px solid var(--lp-line); }
.lp-win-bar i, .lp-code-bar i { width: 11px; height: 11px; border-radius: 50%; background: #34373c; }
.lp-win-bar span { margin: 0 auto; padding: 5px 16px; border-radius: 8px; font-size: 12px; color: #8b9098;
  background: rgba(255, 255, 255, .05); }
.lp-win-body { display: grid; grid-template-columns: 190px 1fr; min-height: 470px; }
.lp-win-side { display: flex; flex-direction: column; gap: 3px; padding: 18px 12px;
  border-right: 1px solid var(--lp-line); background: rgba(255, 255, 255, .015); }
.lp-win-side b { font-size: 13px; color: #fff; padding: 0 10px 10px; }
.lp-win-side span { font-size: 13px; color: #8b9098; padding: 7px 10px; border-radius: 8px; }
.lp-win-side span.on { color: #fff; background: rgba(111, 211, 90, .12); box-shadow: inset 2px 0 0 var(--lp-v); }
.lp-win-main { display: grid; gap: 14px; padding: 20px; align-content: start; }
.lp-win-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lp-win-stats div { padding: 12px 14px; border-radius: 8px; background: #16171a;
  border: 1px solid var(--lp-line); }
.lp-win-stats small { display: block; font: 10.5px var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: #7c818a; }
.lp-win-stats b { font: 700 25px var(--font-display); font-variant-numeric: tabular-nums; color: #fff; transition: color .3s; }
.lp-win-stats b.gold { color: #f5c542; }
.lp-win-stats b.emerald { color: #17dd62; }
.lp-win-stats b.grass { color: #6fd35a; }
.lp-win-stats b.diamond { color: #45d9e6; }
.lp-win-stats b.hot { color: var(--lp-p); }
.lp-win-stats i { font-style: normal; font-size: 13px; color: #7c818a; margin-left: 3px; }
.lp-win-chart { position: relative; height: 190px; border-radius: 8px; background: #0e0f11;
  border: 1px solid var(--lp-line); overflow: hidden; }
.lp-win-chart canvas { display: block; width: 100%; height: 100%; }
.lp-win-limit { position: absolute; right: 10px; top: 8px; font-size: 10.5px; color: rgba(245, 197, 66, .8); }
.lp-win-finding { padding: 14px 16px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, .08);
  border-left: 3px solid #e07b3c; background: #16171a;
  opacity: .25; transform: translateY(8px); transition: opacity .6s var(--fx-ease), transform .6s var(--fx-ease); }
.lp-win-finding.in { opacity: 1; transform: none; }
.lp-f-head { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.lp-f-head b { color: #fff; }
.lp-sev { padding: 3px 9px; border-radius: 4px; font: 700 11px var(--font-mono); text-transform: uppercase;
  letter-spacing: .06em; color: #1c0d04; background: #e07b3c; }
.lp-conf { margin-left: auto; font-size: 12px; color: #8b9098; }
.lp-f-text { margin: 8px 0 0; min-height: 3.1em; font-size: 13.5px; line-height: 1.55; color: #d2d5da; }
.typing::after { content: ''; display: inline-block; width: 7px; height: 1.05em; margin-left: 2px;
  vertical-align: -2px; background: var(--lp-c); animation: lp-caret .8s steps(1) infinite; }
@keyframes lp-caret { 50% { opacity: 0; } }

.lp-chip {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 15px; border-radius: 10px; font-size: 13px; font-weight: 600; color: #fff;
  background: rgba(24, 26, 29, .8); border: 1px solid rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5); animation: lp-float 6s ease-in-out infinite;
}
.lp-chip svg { color: var(--lp-g); width: 16px; height: 16px; }
.lp-chip-a { top: 14%; left: -4%; transform: translateY(calc(var(--depth, 0) * 120px)); }
.lp-chip-b { top: 44%; right: -5%; transform: translateY(calc(var(--depth, 0) * 200px)); animation-delay: -2s;
  border-color: rgba(229, 72, 77, .45); }
.lp-chip-c { bottom: 8%; left: 8%; transform: translateY(calc(var(--depth, 0) * 80px)); animation-delay: -4s; }
@keyframes lp-float { 50% { translate: 0 -12px; } }
@media (max-width: 1260px) { .lp-chip-a { left: 1%; } .lp-chip-b { right: 1%; } }
.lp-note { text-align: center; font-size: 12px; color: #6b7078; margin: 26px 0 0; }

/* --- feature cards -------------------------------------------------------------------- */

.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1080px; margin: 0 auto; }
.lp-card {
  position: relative; padding: 18px 18px 22px; border-radius: 10px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  border: 1px solid var(--lp-line);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .6s var(--fx-ease), border-color .3s, opacity 1s var(--fx-ease), translate 1s var(--fx-ease);
  transition-delay: 0s, 0s, calc(var(--i, 0) * 70ms), calc(var(--i, 0) * 70ms);
}
.lp-card.tilting { transition: transform .08s linear, border-color .3s, opacity 1s, translate 1s; }
.lp-card:hover { border-color: rgba(111, 211, 90, .45); }
.lp-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.lp-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--lp-dim); }
.lp-glare { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 0%), rgba(255, 255, 255, .13), transparent 46%); }
.lp-card.tilting .lp-glare { opacity: 1; }

.lp-viz { position: relative; height: 150px; margin-bottom: 18px; border-radius: 10px; overflow: hidden;
  background: radial-gradient(ellipse 80% 90% at 50% 100%, rgba(111, 211, 90, .16), transparent 70%), rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .06); }
.lp-viz canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.lp-viz-tag { position: absolute; top: 10px; right: 10px; z-index: 1; padding: 3px 8px; border-radius: 999px;
  font: 600 11px ui-monospace, "Cascadia Mono", Consolas, monospace; color: #cfd4ff;
  background: rgba(111, 211, 90, .16); border: 1px solid rgba(111, 211, 90, .3); }
.lp-viz-tick canvas { top: 30px; height: 100px; }

.lp-type { padding: 16px; }
.lp-type p { margin: 10px 0 0; font: 12.5px/1.6 ui-monospace, "Cascadia Mono", Consolas, monospace; color: #d6d9dd; }

.lp-bars { display: grid; gap: 11px; padding: 20px 16px; }
.lp-bar { display: grid; grid-template-columns: 96px 1fr; align-items: center; gap: 10px; font-size: 12px; color: #a9adb4; }
.lp-bar i { display: block; height: 11px; width: var(--v); border-radius: 6px; transform-origin: left;
  background: var(--lp-g); transform: scaleX(0); }
.lp-card.in .lp-bar i { animation: lp-grow 1.3s var(--fx-ease) var(--d) both; }
.lp-bar:first-child i { background: var(--lp-v); }
@keyframes lp-grow { to { transform: scaleX(1); } }

.lp-lanes { display: grid; gap: 10px; padding: 34px 14px 16px; }
.lp-lane { position: relative; height: 18px; border-bottom: 1px dashed rgba(255, 255, 255, .1); overflow: hidden; }
.lp-lane i { position: absolute; top: 5px; width: 8px; height: 8px; border-radius: 50%; background: var(--lp-c);
  animation: lp-lane var(--s) linear infinite; }
.lp-lane.out i { background: var(--lp-v); animation-direction: reverse; }
.lp-lane i:nth-child(2) { animation-delay: calc(var(--s) * -.25); }
.lp-lane i:nth-child(3) { animation-delay: calc(var(--s) * -.5); }
.lp-lane i:nth-child(4) { animation-delay: calc(var(--s) * -.75); }
@keyframes lp-lane { from { left: -10px; } to { left: 100%; } }

.lp-flame { display: flex; flex-direction: column-reverse; gap: 3px; padding: 18px 14px; height: 100%; justify-content: flex-start; }
.lp-flame-row { display: flex; gap: 3px; }
.lp-flame-row span { height: 22px; border-radius: 4px; flex: 0 0 calc(var(--w) * 1% - 3px);
  background: hsl(calc(8 + var(--h) / 9) 88% 56%); opacity: .88; animation: lp-flick 3s ease-in-out infinite;
  animation-delay: calc(var(--h) * -10ms); }
@keyframes lp-flick { 50% { opacity: .62; } }

.lp-approve { position: absolute; inset: 16px; padding: 14px; border-radius: 10px;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(245, 197, 66, .35);
  display: flex; flex-direction: column; gap: 6px; }
.lp-approve small { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #f5c542; }
.lp-approve b { font-size: 14px; color: #fff; }
.lp-approve-row { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.lp-approve em { font-style: normal; font-size: 11px; color: #a9adb4; margin-right: auto; }
.lp-approve i { font-style: normal; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 8px; }
.lp-yes { color: #062016; background: var(--lp-g); animation: lp-yes 3.2s ease-in-out infinite; }
.lp-no { color: #e8e9eb; background: rgba(255, 255, 255, .08); }
@keyframes lp-yes { 0%, 60%, 100% { box-shadow: 0 0 0 0 rgba(111, 211, 90, 0); } 70% { box-shadow: 0 0 0 8px rgba(111, 211, 90, .25); } }

.lp-net { position: absolute; inset: 0; display: grid; place-items: center; }
.lp-net-core { position: absolute; padding: 8px 12px; border-radius: 999px; font-size: 11px; font-weight: 700;
  color: #0e0f11; background: var(--lp-v);
  animation: lp-core 2.4s ease-in-out infinite; }
.lp-net-node { position: absolute; display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; color: #cdd0d5;
  white-space: nowrap; transform: rotate(var(--a)) translate(64px) rotate(calc(-1 * var(--a))); }
.lp-net-node i { width: 9px; height: 9px; border-radius: 50%; background: var(--lp-g); }
.lp-net-node.hot i { background: var(--lp-v); animation: lp-hot 1.2s ease-in-out infinite; }
.lp-net-node::after { content: ''; position: absolute; left: 4px; top: 50%; width: 5px; height: 5px; margin-top: -2.5px;
  border-radius: 50%; background: #fff; box-shadow: 0 0 8px #fff; opacity: 0;
  animation: lp-packet 2.4s ease-in infinite; animation-delay: calc(var(--i) * -.4s); }
@keyframes lp-packet {
  0% { transform: rotate(calc(var(--a) + 180deg)) translateX(0); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: rotate(calc(var(--a) + 180deg)) translateX(54px); opacity: 0; }
}
@keyframes lp-core { 50% { outline: 6px solid rgba(111, 211, 90, .18); } }
@keyframes lp-hot { 50% { transform: scale(1.5); } }

/* --- how it works --------------------------------------------------------------------- */

.lp-flow { position: relative; }
.lp-flow-line { position: absolute; left: 0; right: 0; top: -20px; width: 100%; height: 120px; pointer-events: none; }
.lp-flow-line path { animation: lp-dash 1.2s linear infinite; }
@keyframes lp-dash { to { stroke-dashoffset: -32; } }
.lp-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 80px; }
.lp-step { padding: 26px; border-radius: 10px; background: rgba(20, 21, 23, .72); border: 1px solid var(--lp-line);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.lp-num { display: block; font: 700 58px/1 var(--font-display); color: var(--lp-v); }
.lp-step h3 { margin: 16px 0 8px; font-size: 21px; }
.lp-step p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--lp-dim); }

/* --- honest band ---------------------------------------------------------------------- */

.lp-honest { margin: 160px 0 0; padding: 110px 32px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(111, 211, 90, .16), transparent 70%),
    linear-gradient(180deg, transparent, rgba(111, 211, 90, .05) 50%, transparent);
  border-top: 1px solid var(--lp-line); border-bottom: 1px solid var(--lp-line); }
.lp-honest-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.lp-honest h2 em { font-style: normal; position: relative; color: #fff; }
.lp-honest h2 em::after { content: ''; position: absolute; left: 0; right: 0; bottom: .04em; height: .1em; background: var(--lp-v); }
.lp-honest p { font-size: 18px; line-height: 1.6; color: var(--lp-dim); max-width: 38em; margin: 0 auto; }
.lp-honest-demo { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 44px; }
.lp-mini { width: 250px; padding: 18px 20px; border-radius: 10px; text-align: left;
  background: rgba(20, 21, 23, .8); border: 1px solid var(--lp-line); }
.lp-mini small { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #7c818a; }
.lp-mini b { display: block; margin: 8px 0 10px; font-size: 26px; font-weight: 750; }
.lp-mini span { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; }
.lp-mini.good { border-color: rgba(111, 211, 90, .45); }
.lp-mini.good b { color: #c8cbd0; font-style: italic; font-weight: 600; }
.lp-mini.good span { color: var(--lp-g); }
.lp-mini.bad { opacity: .6; }
.lp-mini.bad b { color: #8b9098; text-decoration: line-through; text-decoration-color: var(--lp-p); text-decoration-thickness: 3px; }
.lp-mini.bad span { color: #f28b8e; }

/* --- install -------------------------------------------------------------------------- */

.lp-install { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.lp-install h2 { margin-top: 18px; }
.lp-list { list-style: none; counter-reset: lp; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.lp-list li { counter-increment: lp; position: relative; padding-left: 48px; font-size: 16px; line-height: 1.55; color: var(--lp-dim); }
.lp-list li b { color: #fff; font-weight: 600; }
.lp-list li::before { content: counter(lp); position: absolute; left: 0; top: -3px; width: 32px; height: 32px;
  border-radius: 6px; display: grid; place-items: center; font: 700 15px var(--font-display); color: #0e0f11;
  background: var(--lp-v); }
.lp-code { border-radius: 10px; overflow: hidden; background: #070918; border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 50px 120px -40px rgba(69, 217, 230, .35), 0 0 0 1px rgba(111, 211, 90, .1); }
.lp-code-bar { display: flex; align-items: center; gap: 7px; height: 42px; padding: 0 14px;
  background: rgba(255, 255, 255, .03); border-bottom: 1px solid var(--lp-line); }
.lp-code-bar span { margin-left: 10px; font-size: 12.5px; color: #8b9098; }
.lp-copy { margin-left: auto; padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer;
  color: #fff; background: rgba(111, 211, 90, .2); border: 1px solid rgba(111, 211, 90, .4); }
.lp-copy:hover { background: rgba(111, 211, 90, .32); }
.lp-code pre { margin: 0; padding: 24px 26px 28px; font: 15px/1.9 ui-monospace, "Cascadia Mono", Consolas, monospace;
  color: #e8e9eb; background: none; border: 0; white-space: pre-wrap; word-break: break-all; }
.lp-code .k { color: #9ff0f6; } .lp-code .v { color: #45d9e6; } .lp-code .s { color: #6fd35a; }
.lp-code .c { color: #5d6269; } .lp-code .p { color: #f28b8e; }

/* --- faq ------------------------------------------------------------------------------ */

.lp-faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.lp-q { border-radius: 10px; background: rgba(20, 21, 23, .6); border: 1px solid var(--lp-line); transition: border-color .3s, background .3s; }
.lp-q[open] { border-color: rgba(111, 211, 90, .4); background: rgba(28, 30, 34, .6); }
.lp-q summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 22px; font-size: 17px; font-weight: 600; color: #fff; }
.lp-q summary::-webkit-details-marker { display: none; }
.lp-q summary i { position: relative; width: 14px; height: 14px; flex: none; transition: transform .35s var(--fx-ease); }
.lp-q summary i::before, .lp-q summary i::after { content: ''; position: absolute; left: 0; right: 0; top: 6px; height: 2px;
  border-radius: 2px; background: #9ff0f6; }
.lp-q summary i::after { transform: rotate(90deg); }
.lp-q[open] summary i { transform: rotate(45deg); }
.lp-q p { margin: 0; padding: 0 22px 22px; font-size: 15px; line-height: 1.65; color: var(--lp-dim); }

/* --- final ------------------------------------------------------------------------------ */

.lp-final { position: relative; isolation: isolate; overflow: hidden; margin-top: 170px; padding: 170px 32px; text-align: center; }
.lp-final-aurora { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.lp-final::after { content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, var(--lp-bg), transparent 30%, transparent 70%, var(--lp-bg)); }
.lp-final-inner { max-width: 760px; margin: 0 auto; }
.lp-final h2 { font-size: clamp(42px, 6.4vw, 92px); }
.lp-final p { font-size: 18px; line-height: 1.6; color: #c4c7cc; margin: 0 auto 34px; max-width: 34em; }

.lp-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  max-width: 1240px; margin: 0 auto; padding: 30px 32px 40px; border-top: 1px solid var(--lp-line);
  font-size: 13px; color: #6b7078; }

/* --- smaller screens ------------------------------------------------------------------------ */

@media (max-width: 1100px) {
  .lp-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .lp-links { display: none; }
  .lp-nav { gap: 12px; }
  .lp-nav .lp-logo { margin-right: auto; }
  .lp-hero { min-height: 760px; }
  .lp-hero-shade { background: linear-gradient(0deg, var(--lp-bg) 8%, rgba(12, 13, 15, .82) 46%, rgba(12, 13, 15, 0) 72%); }
  .lp-hero-copy { justify-content: flex-end; padding: 90px 22px 86px; }
  .lp-caption { display: none; }
  .lp-win-body { grid-template-columns: 1fr; }
  .lp-win-side { display: none; }
  .lp-win-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-chip { display: none; }
  .lp-steps { grid-template-columns: 1fr; padding-top: 20px; }
  .lp-flow-line { display: none; }
  .lp-install { grid-template-columns: 1fr; gap: 36px; }
  .lp-section { padding-top: 110px; }
}
@media (max-width: 600px) {
  .lp-grid, .lp-stats { grid-template-columns: 1fr; }
  .lp-stats { padding: 0 16px; }
  .lp-section { padding: 90px 16px 0; }
  .lp-stat b { font-size: 44px; }
  .lp-nav .btn-discord.lp-nav-signin span { display: none; }
  .w3d-label { min-width: 150px; font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .lp *, .lp *::before, .lp *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; translate: 0 0; }
}

/* Materials on the front page: every figure and section marker in the colour of what it is. */
.lp-kicker { color: var(--lp-c); border-color: rgba(69, 217, 230, .35); background: rgba(69, 217, 230, .08); }
.lp-stat:nth-child(1) b { color: #f5c542; }
.lp-stat:nth-child(2) b { color: #45d9e6; }
.lp-stat:nth-child(3) b { color: #a778ff; }
.lp-num { color: var(--lp-c); }
.lp-step:nth-child(2) .lp-num { color: #f5c542; }
.lp-step:nth-child(3) .lp-num { color: var(--lp-v); }
.lp-bar i { background: #a778ff; }
.lp-bar:first-child i { background: #e5484d; }
.lp-lane i { background: #45d9e6; }
.lp-lane.out i { background: #a778ff; }
.lp-net-core { background: #45d9e6; color: #062a2e; }

/* --- the tour ---------------------------------------------------------------------------- */

.lp-tour-wide { max-width: 1180px; margin: 0 auto; }
.lp-tour-wide .tr { margin: 0; }
.lp-tour-cap { max-width: 780px; margin: 14px auto 0; text-align: center; font-size: 13px; color: var(--lp-dim); }
.lp-tour-row { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 48px; align-items: center; margin-top: 110px; }
.lp-tour-row.flip .lp-tour-vis { order: 2; }
.lp-card-flat { border-radius: 10px; border: 1px solid var(--lp-line); background: #141517; overflow: hidden; position: relative; }
.lp-tour-vis.t3d { padding: 6px 8px; }
.lp-tour-vis .t3d-canvas { height: 440px; }
.lp-globe-stage { height: 460px; }
.lp-orbit-canvas { display: block; width: 100%; height: 420px; cursor: grab; }
.lp-tour-n { display: block; font: 700 54px/1 var(--font-display); }
.lp-tour-n.tone-lapis { color: #6f93ff; }
.lp-tour-n.tone-grass { color: #6fd35a; }
.lp-tour-n.tone-diamond { color: #45d9e6; }
.lp-tour-copy h3 { margin: 14px 0 12px; font-size: clamp(26px, 2.6vw, 36px); line-height: 1.05; font-weight: 700; }
.lp-tour-copy p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--lp-dim); }
.lp-ticks { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 9px; }
.lp-ticks li { position: relative; padding-left: 22px; font-size: 14px; color: #c4c7cc; }
.lp-ticks li::before { content: ''; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; border-radius: 2px; background: currentColor; opacity: .5; }
.lp-tour-row .lp-ticks li::before { background: var(--lp-v); opacity: 1; }

/* Small pictures for the files and alerts cards. */
.lp-file { position: absolute; inset: 14px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, .08); background: #0e0f11; overflow: hidden; }
.lp-file-bar { padding: 6px 10px; font: 11px var(--font-mono); color: #8b9098; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.lp-file-body { display: grid; gap: 6px; padding: 10px; font: 11.5px var(--font-mono); }
.lp-file-body span { display: flex; gap: 4px; align-items: baseline; white-space: nowrap; overflow: hidden; }
.lp-file-body i { font-style: normal; color: #a778ff; }
.lp-file-body b { font-weight: 500; color: #45d9e6; }
.lp-file-body b.mask { color: #8b9098; letter-spacing: 1px; }
.lp-file-body em { margin-left: auto; font-style: normal; font-size: 10.5px; padding: 1px 6px; border-radius: 4px; color: #8b9098; border: 1px solid rgba(255, 255, 255, .1); }
.lp-file-body em.warn { color: #f5c542; border-color: rgba(245, 197, 66, .4); }
.lp-hook { position: absolute; inset: 16px; display: flex; flex-direction: column; gap: 8px; }
.lp-hook-who { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.lp-hook-av { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font: 700 11px var(--font-display); color: #0f2e0a; background: #6fd35a; }
.lp-hook-who b { color: #eef0f2; }
.lp-hook-who em { font-style: normal; font-size: 10.5px; padding: 1px 6px; border-radius: 4px; color: #0e0f11; background: #45d9e6; }
.lp-hook-embed { border-left: 3px solid #f5c542; border-radius: 0; background: rgba(255, 255, 255, .04); padding: 9px 12px; display: grid; gap: 3px; }
.lp-hook-embed b { font-size: 13px; color: #eef0f2; }
.lp-hook-embed span { font-size: 12px; color: #8b9098; }

@media (max-width: 900px) {
  .lp-tour-row { grid-template-columns: 1fr; gap: 24px; margin-top: 70px; }
  .lp-tour-row.flip .lp-tour-vis { order: 0; }
  .lp-tour-vis .t3d-canvas, .lp-orbit-canvas { height: 320px; }
  .lp-globe-stage { height: 360px; }
}
