/* StrikeIQ - public landing page only. The authenticated portal keeps using
   styles.css untouched; this file is self-contained so the landing page stays
   light (no app CSS, no web fonts, no icon library). Font stacks mirror
   styles.css; --lp-mint is sampled from the official logo's "IQ" mark. */

:root {
  color-scheme: dark;
  --lp-bg: #05080a;
  --lp-bg-raised: #0a1013;
  --lp-line: rgba(255, 255, 255, 0.1);
  --lp-line-strong: rgba(255, 255, 255, 0.5);
  --lp-text: #eef2f4;
  --lp-text-dim: #aab5bb;
  --lp-text-faint: #7c8890;
  --lp-mint: #00f8a8;
  --lp-mint-deep: #00c98b;
  --lp-font: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --lp-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
  --lp-gutter: clamp(20px, 5vw, 88px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

body.lp-body {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--lp-mint);
  outline-offset: 3px;
  border-radius: 4px;
}

.lp-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.lp-skip {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--lp-mint);
  color: #03120c;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
}
.lp-skip:focus {
  top: 12px;
}

/* ------------------------------------------------------------------ buttons */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 48px;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font: 600 1.05rem/1 var(--lp-font);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lp-btn-primary {
  background: linear-gradient(180deg, #3cffc2, #00e79d);
  color: #03120c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 1px rgba(0, 248, 168, 0.4),
    0 12px 32px -12px rgba(0, 248, 168, 0.65);
}
.lp-btn-primary:hover {
  filter: brightness(1.07);
}

.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}
.lp-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.lp-btn-sm {
  min-height: 44px;
  padding: 0 1.4rem;
  font-size: 1rem;
}
.lp-btn-lg {
  min-height: 56px;
  padding: 0 1.9rem;
  font-size: 1.15rem;
}

.lp-ico-arrow,
.lp-ico-play {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-ico-play path {
  fill: currentColor;
  stroke: none;
}
.lp-ico-play {
  width: 1.4em;
  height: 1.4em;
  stroke-width: 1.6;
}

/* ------------------------------------------------------------------- header */

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 10, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lp-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  max-width: 1760px;
  margin: 0 auto;
  padding: 10px var(--lp-gutter);
}

.lp-logo {
  flex: none;
  display: block;
  line-height: 0;
}
.lp-logo img {
  display: block;
  width: clamp(180px, 14vw, 240px);
  height: auto;
  /* The official logo file has a solid black background; "screen" makes that
     black vanish against the page instead of showing a box. */
  mix-blend-mode: screen;
}

.lp-menu {
  flex: 1;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  min-width: 0;
}

.lp-nav {
  flex: 1;
}
.lp-nav ul {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3.2vw, 56px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-nav a {
  display: inline-block;
  padding: 10px 2px;
  color: var(--lp-text);
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.15s ease;
}
.lp-nav a:hover {
  color: var(--lp-mint);
}

.lp-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--lp-line-strong);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}
.lp-nav-toggle-bars,
.lp-nav-toggle-bars::before,
.lp-nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lp-nav-toggle-bars {
  position: relative;
}
.lp-nav-toggle-bars::before,
.lp-nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
}
.lp-nav-toggle-bars::before {
  top: -6px;
}
.lp-nav-toggle-bars::after {
  top: 6px;
}
.lp-nav-toggle[aria-expanded='true'] .lp-nav-toggle-bars {
  background: transparent;
}
.lp-nav-toggle[aria-expanded='true'] .lp-nav-toggle-bars::before {
  transform: translateY(6px) rotate(45deg);
}
.lp-nav-toggle[aria-expanded='true'] .lp-nav-toggle-bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

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

.lp-hero {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(58% 56% at 74% 46%, rgba(0, 248, 168, 0.12), transparent 70%),
    radial-gradient(38% 40% at 4% 0%, rgba(0, 248, 168, 0.05), transparent 70%);
}
.lp-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(75% 80% at 66% 46%, #000 15%, transparent 78%);
  mask-image: radial-gradient(75% 80% at 66% 46%, #000 15%, transparent 78%);
}

.lp-curve {
  position: absolute;
  left: 40%;
  right: 0;
  bottom: 8%;
  width: 60%;
  height: 50%;
  fill: none;
  stroke: var(--lp-mint);
  stroke-opacity: 0.16;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 35%);
  mask-image: linear-gradient(90deg, transparent, #000 35%);
}
.lp-curve path {
  vector-effect: non-scaling-stroke;
}

.lp-candles {
  position: absolute;
  right: -1.5vw;
  top: 12%;
  width: clamp(110px, 13vw, 240px);
  height: auto;
  opacity: 0.6;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 80%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 80%, transparent 100%);
}
.lp-candle-wicks {
  stroke: var(--lp-mint);
  stroke-opacity: 0.5;
  stroke-width: 2;
  fill: none;
}

.lp-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(8px, 2vw, 32px);
  max-width: 1760px;
  margin: 0 auto;
  padding: clamp(16px, 2vw, 32px) var(--lp-gutter) clamp(24px, 3vw, 48px);
  /* 76px ~ sticky header height, so header + hero never exceed one viewport. */
  min-height: clamp(540px, calc(100svh - 76px), 880px);
}
@media (min-width: 1101px) {
  /* On wide/short-ratio screens cap the height so the content isn't floating in dead space. */
  .lp-hero-inner {
    min-height: clamp(540px, min(calc(100svh - 76px), calc(46vw + 60px)), 880px);
  }
}

.lp-eyebrow {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 0 clamp(18px, 2.4vw, 32px);
  color: var(--lp-text-dim);
  font-size: clamp(0.66rem, 0.5rem + 0.42vw, 0.9rem);
  letter-spacing: clamp(0.16em, 0.02em + 0.2vw, 0.34em);
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-eyebrow span + span::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1em;
  margin: 0 0.9em 0 0.6em;
  vertical-align: -0.12em;
  background: var(--lp-mint);
}

.lp-h1 {
  margin: 0;
  font-size: clamp(2.3rem, 0.8rem + 3vw, 4.2rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.025em;
}
.lp-h1-line {
  display: block;
  padding-bottom: 0.04em;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 25%, #aab4ba 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-h1-line.lp-accent {
  color: var(--lp-mint);
  background: linear-gradient(180deg, #38ffc0 20%, #00d996 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (forced-colors: active) {
  .lp-h1-line,
  .lp-h1-line.lp-accent {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: CanvasText;
  }
}

.lp-lead {
  max-width: 31em;
  margin: clamp(16px, 2vw, 28px) 0 0;
  color: #c3cbd0;
  font-size: clamp(1.02rem, 0.9rem + 0.45vw, 1.32rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.lp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(24px, 3vw, 40px);
}

.lp-caps {
  display: flex;
  flex-wrap: wrap;
  margin: clamp(22px, 2.6vw, 44px) 0 0;
  padding: 0;
  list-style: none;
}
.lp-caps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 2px clamp(12px, 1.5vw, 26px);
  text-align: center;
  font-size: clamp(0.84rem, 0.74rem + 0.25vw, 1rem);
  line-height: 1.25;
  color: #e6ecef;
}
.lp-caps li:first-child {
  padding-left: 0;
}
.lp-caps li + li {
  border-left: 1px solid var(--lp-line);
}
.lp-caps svg {
  width: 32px;
  height: 32px;
  fill: var(--lp-mint);
  stroke: none;
}
.lp-caps svg.lp-stroke {
  fill: none;
  stroke: var(--lp-mint);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-caps svg .lp-fill {
  fill: var(--lp-mint);
  stroke: none;
}

.lp-slogan {
  position: absolute;
  right: clamp(12px, 1.6vw, 30px);
  bottom: 24%;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 0.55em;
  color: var(--lp-text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-align: right;
  text-transform: uppercase;
}
@media (min-width: 1440px) {
  .lp-slogan {
    display: flex;
  }
}

/* ------------------------------------------------------------ device visual */

.lp-visual {
  position: relative;
  margin: 0 calc(var(--lp-gutter) * -0.55) 0 0;
  min-width: 0;
}

/* Thin luminous horizon under the deck: ties the laptop into the hero background. */
.lp-visual::after {
  content: '';
  position: absolute;
  left: -5%;
  right: -12%;
  bottom: 2%;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(0, 248, 168, 0.4) 25%, rgba(0, 248, 168, 0.4) 75%, transparent);
  box-shadow: 0 0 30px 6px rgba(0, 248, 168, 0.1);
}

/* Keep the right-hand margin clear for the slogan so it never touches the laptop. */
@media (min-width: 1440px) {
  .lp-visual {
    margin-right: max(0px, calc(150px - var(--lp-gutter)));
  }
}

.lp-laptop {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 0 15% auto;
  transform-style: preserve-3d;
  transform: perspective(2400px) rotateY(-14deg) rotateX(4deg);
  transform-origin: 42% 62%;
}

.lp-lid {
  position: relative;
  transform-origin: 50% 100%;
  transform: rotateX(7deg);
  border-radius: 1.6% / 2.5%;
  background: linear-gradient(160deg, #1b2226, #0a0e10 40%, #06090b);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 30px 90px -30px rgba(0, 248, 168, 0.35);
}
.lp-lid::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 5%);
}
.lp-bezel {
  position: relative;
  padding: 1.5% 1.2% 1.7%;
}
.lp-cam {
  position: absolute;
  left: 50%;
  top: 0.55%;
  width: 0.7%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1c262b;
  transform: translateX(-50%);
}
.lp-screen {
  position: relative;
  container-type: inline-size;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.7% / 1.1%;
  background: #050a0c;
}
.lp-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.07), transparent 32%);
}

.lp-deck {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  aspect-ratio: 100 / 58;
  transform-origin: 50% 0;
  transform: rotateX(77deg);
  border-radius: 0 0 3% 3% / 0 0 5% 5%;
  background: linear-gradient(180deg, #5d676d 0%, #8b959b 16%, #79838a 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 0 60px -10px rgba(0, 248, 168, 0.45);
}
.lp-deck::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4%;
  background: linear-gradient(180deg, #0b1013, #2a3237);
}
.lp-deck::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(70% 45% at 50% 0%, rgba(0, 248, 168, 0.16), transparent 70%);
}
.lp-keys {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 9%;
  height: 50%;
  background-color: #090c0e;
  background-image:
    linear-gradient(transparent calc(100% - 2px), #35414a 0),
    linear-gradient(90deg, transparent calc(100% - 2px), #35414a 0);
  background-size: 100% 16.66%, 6.25% 100%;
  border-radius: 1.5%;
  box-shadow: 0 0 0 3px #0d1215;
}
.lp-trackpad {
  position: absolute;
  left: 34%;
  right: 34%;
  bottom: 7%;
  height: 24%;
  border-radius: 6%;
  background: linear-gradient(180deg, #7b858b, #9aa4a9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.lp-ground {
  position: absolute;
  left: 4%;
  right: -6%;
  bottom: 0;
  height: 22%;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 248, 168, 0.22), transparent 72%);
  filter: blur(6px);
}

/* Illustrated Overview screen. Real labels from the portal; every value is a
   placeholder bar, never a number. Sized in em against the screen's own width
   so the whole illustration scales with the laptop. */

.ui {
  --ui-line: rgba(255, 255, 255, 0.08);
  --ui-dim: #8794a0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-family: var(--lp-font);
  font-size: 1.14cqw;
  line-height: 1.2;
  color: #dbe3e7;
  background: linear-gradient(180deg, #071013, #050a0c);
}
.ui-top,
.ui-nav,
.ui-cmd {
  display: flex;
  align-items: center;
  gap: 0.9em;
  border-bottom: 1px solid var(--ui-line);
}
.ui-top {
  justify-content: space-between;
  padding: 0.85em 1.4em;
}
.ui-brand {
  font-weight: 800;
  font-size: 1.5em;
  letter-spacing: 0.06em;
}
.ui-brand b {
  color: var(--lp-mint);
}
.ui-brand small {
  margin-left: 1em;
  color: var(--ui-dim);
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.ui-top-r {
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.ui-glyph {
  color: var(--ui-dim);
  font-size: 1.05em;
  line-height: 1;
}
.ui-sep-v {
  width: 1px;
  height: 1.4em;
  background: var(--ui-line);
}
.ui-acct {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.3em 0.6em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.35em;
}

.ui-nav {
  padding: 0.55em 1.4em;
  gap: 0;
  white-space: nowrap;
  overflow: hidden;
}
.ui-grp {
  margin: 0 0.35em 0 0.7em;
  color: var(--ui-dim);
  font-size: 0.62em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ui-grp:first-child {
  margin-left: 0;
}
.ui-link {
  padding: 0.35em 0.42em;
  border-radius: 0.35em;
  color: #c6d0d5;
  font-size: 0.8em;
}
.ui-link.is-active {
  color: var(--lp-mint);
  background: rgba(0, 248, 168, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 248, 168, 0.35);
}

.ui-cmd {
  padding: 0.6em 1.4em;
  font-size: 0.86em;
}
.ui-field {
  display: inline-flex;
  align-items: center;
  padding: 0.45em 0.7em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.35em;
}
.ui-btn {
  padding: 0.45em 0.9em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.35em;
  background: rgba(255, 255, 255, 0.04);
}
.ui-lbl {
  color: var(--ui-dim);
  font-size: 0.9em;
}
.ui-toggle {
  position: relative;
  width: 2.3em;
  height: 1.2em;
  border-radius: 1em;
  background: rgba(0, 248, 168, 0.85);
}
.ui-toggle::after {
  content: '';
  position: absolute;
  right: 0.15em;
  top: 0.15em;
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
  background: #04120c;
}
.ui-spacer {
  flex: 1;
}

.ui-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 1em 1.4em 1.2em;
}
.ui-ws-head {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1.1em;
}
.ui-ws-head b {
  font-size: 1.5em;
  letter-spacing: 0.02em;
}
.ui-sub {
  color: var(--ui-dim);
  font-size: 0.95em;
}
.ui-status {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  font-size: 0.78em;
}
.ui-tk {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
}
.ui-tk b {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.ui-tk .sk {
  width: 3.1em;
}
.ui-tk .sk:last-child {
  width: 2.2em;
  background: rgba(0, 248, 168, 0.28);
}
.ui-tk-sep {
  color: var(--ui-line);
}
.ui-kpi-title {
  margin-bottom: 0.6em;
  color: var(--ui-dim);
  font-size: 0.76em;
  letter-spacing: 0.14em;
}
.ui-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9em;
  margin-bottom: 1.1em;
}
.ui-kpi {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  padding: 0.9em 1em 0.85em;
  border: 1px solid var(--ui-line);
  border-top: 2px solid rgba(0, 248, 168, 0.55);
  border-radius: 0.35em;
  background: rgba(255, 255, 255, 0.025);
}
.ui-kpi > span:first-child {
  color: #c6d0d5;
  font-size: 0.78em;
  letter-spacing: 0.1em;
}
.ui-kpi em {
  color: var(--ui-dim);
  font-size: 0.8em;
  font-style: normal;
}
.ui-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.9em;
  flex: 1;
  min-height: 0;
}
.ui-col {
  display: flex;
  flex-direction: column;
  gap: 0.9em;
  min-height: 0;
}
.ui-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 0.9em 1em 0.5em;
  border: 1px solid var(--ui-line);
  border-radius: 0.35em;
  background: rgba(255, 255, 255, 0.02);
}
.ui-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9em;
  margin-bottom: 0.6em;
}
.ui-panel-head b {
  display: block;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}
.ui-panel-head small {
  display: block;
  margin-top: 0.25em;
  color: var(--ui-dim);
  font-size: 0.66em;
  letter-spacing: 0.08em;
}
.ui-all {
  color: var(--lp-mint);
  font-size: 0.62em;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.ui-table {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}
.ui-t-fut {
  --cols: 1.35fr repeat(6, 1fr);
}
.ui-t-rad {
  --cols: 1.1fr 0.9fr 1fr 1fr;
}
.ui-t-sig {
  --cols: 0.9fr 1.1fr 0.9fr 1fr;
}
.ui-tr {
  display: grid;
  flex: 1;
  grid-template-columns: var(--cols);
  align-items: center;
  column-gap: 0.9em;
  border-top: 1px solid var(--ui-line);
}
.ui-th {
  flex: none;
  padding: 0.35em 0 0.5em;
  border-top: 0;
  color: var(--ui-dim);
  font-size: 0.6em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ui-th span {
  text-align: right;
}
.ui-th span:first-child {
  text-align: left;
}
.ui-th span.c {
  text-align: center;
}
.ui-sym {
  color: #dbe3e7;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.ui-tr .sk {
  width: var(--w, 60%);
  justify-self: end;
}
.ui-tr .sk.l {
  justify-self: start;
}
.ui-tr .sk.c {
  justify-self: center;
}
.ui-tr .sk.tier {
  height: 1.05em;
  background: rgba(0, 248, 168, 0.22);
}

.sk {
  display: block;
  flex: none;
  width: var(--w, 4em);
  height: 0.72em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}
.sk-lg {
  height: 1.7em;
  border-radius: 0.3em;
  background: rgba(255, 255, 255, 0.14);
}

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

.lp-section {
  padding: clamp(56px, 7vw, 112px) var(--lp-gutter);
  border-top: 1px solid var(--lp-line);
  scroll-margin-top: 72px;
}
.lp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lp-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 2fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.lp-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 96px);
}
.lp-block {
  scroll-margin-top: 96px;
}
.lp-section .lp-kicker {
  margin: 0 0 12px;
  color: var(--lp-mint);
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.lp-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.lp-section p {
  color: var(--lp-text-dim);
  font-size: 1.05rem;
  text-wrap: pretty;
}
.lp-section-head p,
.lp-block p {
  margin: 0 0 16px;
}
.lp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lp-cards li {
  padding: 20px 22px 22px;
  border: 1px solid var(--lp-line);
  border-left: 2px solid rgba(0, 248, 168, 0.6);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}
.lp-cards h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}
.lp-cards p {
  margin: 0;
  font-size: 0.98rem;
}

.lp-footer {
  border-top: 1px solid var(--lp-line);
  padding: 28px var(--lp-gutter);
  color: var(--lp-text-faint);
  font-size: 0.85rem;
}
.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* -------------------------------------------------------------- responsive */

@media (max-width: 1279px) {
  .lp-hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
  .lp-btn-lg {
    min-height: 52px;
    padding: 0 1.4rem;
    font-size: 1.05rem;
  }
}

@media (max-width: 1100px) {
  .lp-nav ul {
    gap: clamp(14px, 2vw, 28px);
  }
  .lp-nav a {
    font-size: 0.98rem;
  }
  .lp-btn-sm {
    padding: 0 1.05rem;
  }
  .lp-caps li {
    padding-inline: 12px;
  }
}

@media (max-width: 1000px) {
  .lp-caps li {
    padding-inline: 10px;
    font-size: 0.82rem;
  }
  .lp-js .lp-nav-toggle {
    display: inline-flex;
  }
  .lp-js .lp-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px var(--lp-gutter) 24px;
    background: #06090b;
    border-bottom: 1px solid var(--lp-line);
  }
  .lp-js .lp-menu.is-open {
    display: flex;
  }
  .lp-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .lp-nav a {
    display: block;
    padding: 14px 2px;
    border-bottom: 1px solid var(--lp-line);
  }
  .lp-actions {
    margin-top: 12px;
  }
  .lp-actions .lp-btn {
    flex: 1;
  }
  /* Without JS the menu stays inline and wraps under the logo. */
  html:not(.lp-js) .lp-header-inner {
    flex-wrap: wrap;
  }
  html:not(.lp-js) .lp-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px 20px;
  }
  html:not(.lp-js) .lp-nav a {
    border: 0;
    padding: 8px 2px;
  }
}

@media (max-width: 860px) {
  .lp-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 40px;
    padding-top: 28px;
  }
  .lp-h1 {
    font-size: clamp(2.2rem, 1.2rem + 5.4vw, 3.6rem);
  }
  .lp-visual {
    margin: 0;
  }
  .lp-laptop {
    width: 96%;
    margin: 0 auto 15%;
    transform: perspective(1800px) rotateY(-8deg) rotateX(3deg);
  }
  .lp-curve {
    display: none;
  }
  .lp-candles {
    top: auto;
    bottom: 8%;
    opacity: 0.4;
  }
  .lp-split,
  .lp-duo {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .lp-cta .lp-btn {
    flex: 1 1 100%;
  }
  .lp-caps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .lp-caps li {
    padding: 18px 8px;
    border: 0;
  }
  .lp-caps li + li {
    border-left: 0;
  }
  .lp-caps li:nth-child(even) {
    border-left: 1px solid var(--lp-line);
  }
  .lp-caps li:nth-child(n + 3) {
    border-top: 1px solid var(--lp-line);
  }
  .lp-eyebrow {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 10px 28px;
    letter-spacing: 0.22em;
  }
  .lp-eyebrow span + span::before {
    display: none;
  }
  .lp-laptop {
    width: 100%;
  }
  .lp-cards-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
