/* =================================================================
 * World's Dispatch — public landing page
 * Dark, premium, "global command interface" aesthetic.
 * Palette locked to deep navy + electric blue accent.
 * ================================================================= */

:root {
  --bg:            #020711;
  --bg-2:          #050B18;
  --panel:         #071426;
  --panel-2:       #0A1B33;
  --panel-3:       #0E2440;
  --text:          #EAF3FF;
  --text-mute:     #8EA4C2;
  --text-quiet:    #5E7594;

  --accent:        #3BA7FF;
  --accent-glow:   #56D9FF;
  --amber:         #F4B95A;
  --risk:          #D85C5C;

  --line:          rgba(120, 170, 220, 0.16);
  --line-soft:     rgba(120, 170, 220, 0.08);
  --line-strong:   rgba(120, 170, 220, 0.32);

  --shadow-sm:     0 10px 30px -18px rgba(0, 0, 0, 0.60);
  --shadow-md:     0 30px 60px -30px rgba(0, 0, 0, 0.75);
  --shadow-lg:     0 60px 120px -50px rgba(0, 0, 0, 0.85);

  --radius:        2px;

  --f-sans:        "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-display:     "Space Grotesk", "Inter", sans-serif;
  --f-mono:        "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.lp {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* -----------------------------------------------------------------
 * Ambient background layers
 * ----------------------------------------------------------------- */
.lp-bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(120, 170, 220, 0.05) 1px, transparent 1px) 0 0 /
      64px 64px,
    linear-gradient(90deg, rgba(120, 170, 220, 0.05) 1px, transparent 1px) 0 0 /
      64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%,
              rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0) 90%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%,
              rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0) 90%);
  opacity: 0.6;
}
.lp-bg-vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 22%, rgba(59, 167, 255, 0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 12% 88%, rgba(86, 217, 255, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(2, 7, 17, 0) 0%, rgba(2, 7, 17, 0.7) 100%);
}

/* -----------------------------------------------------------------
 * Buttons
 * ----------------------------------------------------------------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 18px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 160ms ease, border-color 160ms ease,
              color 160ms ease, transform 100ms ease,
              box-shadow 200ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.lp-btn:active { transform: translateY(1px); }

.lp-btn-lg {
  height: 52px;
  padding: 0 28px;
  font-size: 14px;
  letter-spacing: 0.6px;
}
.lp-btn-arrow { transition: transform 200ms ease; }
.lp-btn:hover .lp-btn-arrow { transform: translateX(3px); }

.lp-btn-primary {
  color: #04101F;
  background: linear-gradient(180deg, #56D9FF 0%, #3BA7FF 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(59, 167, 255, 0.35),
    0 12px 28px -14px rgba(59, 167, 255, 0.6);
}
.lp-btn-primary:hover {
  background: linear-gradient(180deg, #7ce4ff 0%, #4cb2ff 100%);
  box-shadow:
    0 0 0 1px rgba(86, 217, 255, 0.55),
    0 18px 40px -16px rgba(86, 217, 255, 0.65);
}

.lp-btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: transparent;
}
.lp-btn-ghost:hover {
  color: var(--accent-glow);
  background: rgba(59, 167, 255, 0.06);
}

.lp-btn-line {
  color: var(--text);
  background: rgba(10, 27, 51, 0.55);
  border-color: var(--line-strong);
}
.lp-btn-line:hover {
  background: rgba(14, 36, 64, 0.85);
  border-color: rgba(120, 170, 220, 0.52);
  color: var(--accent-glow);
}

/* -----------------------------------------------------------------
 * Loading overlay
 * ----------------------------------------------------------------- */
.lp-loading {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--bg);
  color: var(--text);
  transition: opacity 400ms ease, visibility 0s linear 400ms;
}
body.is-ready .lp-loading {
  opacity: 0; visibility: hidden; pointer-events: none;
}
body.is-loading .lp-nav,
body.is-loading .lp-hero,
body.is-loading .lp-strip,
body.is-loading .lp-section,
body.is-loading .lp-final,
body.is-loading .lp-foot { opacity: 0; }
.lp-nav, .lp-hero, .lp-strip, .lp-section, .lp-final, .lp-foot {
  transition: opacity 500ms ease 120ms;
}
.lp-loading-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(120, 170, 220, 0.14);
  border-top-color: var(--accent-glow);
  animation: lp-spin 900ms linear infinite;
}
.lp-loading-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-mute);
}
@keyframes lp-spin { to { transform: rotate(360deg); } }

/* -----------------------------------------------------------------
 * Site nav
 * ----------------------------------------------------------------- */
.lp-nav {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.lp-brand-mark {
  color: var(--accent-glow);
  filter: drop-shadow(0 0 12px rgba(86, 217, 255, 0.35));
}
.lp-brand-text {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}
.lp-brand-sub {
  font-family: var(--f-mono);
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-quiet);
}
.lp-nav-links {
  display: inline-flex;
  gap: 6px;
  justify-content: center;
}
.lp-nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-mute);
  transition: color 160ms ease, background 160ms ease;
}
.lp-nav-links a:hover {
  color: var(--text);
  background: rgba(120, 170, 220, 0.06);
}
.lp-nav-cta { display: inline-flex; gap: 8px; }

/* -----------------------------------------------------------------
 * Hero
 * ----------------------------------------------------------------- */
.lp-hero {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 40px 40px 100px;
  min-height: calc(100vh - 88px);
}

.lp-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-glow);
  background: rgba(59, 167, 255, 0.06);
  border: 1px solid rgba(59, 167, 255, 0.20);
}
.lp-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: lp-pulse 2.2s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.9); }
  50%      { opacity: 1;    transform: scale(1.15); }
}

.lp-hero-title {
  margin: 24px 0 22px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--text);
}
.lp-hero-title-tail {
  color: var(--text-mute);
  font-weight: 400;
}

.lp-hero-sub {
  margin: 0 0 34px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-mute);
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.lp-hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-quiet);
}
.lp-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-quiet);
}
.lp-dot-live {
  background: var(--accent-glow);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: lp-pulse 2.2s ease-in-out infinite;
}


/* -----------------------------------------------------------------
 * Hero — visual side (globe + signal cards + rings)
 * ----------------------------------------------------------------- */
.lp-hero-visual {
  position: relative;
  height: 620px;
  min-width: 0;
}

.lp-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.lp-globe canvas { display: block; background: transparent; }

.lp-globe-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.lp-globe-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  box-shadow: inset 0 0 24px rgba(59, 167, 255, 0.05);
}
.lp-globe-rings span:nth-child(1) { width: 460px; height: 460px; animation: lp-drift 24s ease-in-out infinite alternate; }
.lp-globe-rings span:nth-child(2) { width: 560px; height: 560px; border-color: rgba(120, 170, 220, 0.10); animation: lp-drift 32s ease-in-out infinite alternate-reverse; }
.lp-globe-rings span:nth-child(3) { width: 680px; height: 680px; border-color: rgba(120, 170, 220, 0.06); }
@keyframes lp-drift {
  0%   { transform: translate(-2px,  1px); }
  100% { transform: translate( 2px, -1px); }
}

/* Floating signal cards */
.lp-signals {
  position: absolute;
  inset: 0;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.lp-signal {
  position: absolute;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  min-width: 168px;
  background: rgba(7, 20, 38, 0.72);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation:
    lp-signal-in 700ms cubic-bezier(0.32, 0.72, 0.24, 1) forwards,
    lp-signal-breathe 6.5s ease-in-out infinite;
  animation-delay: var(--delay, 0s), calc(var(--delay, 0s) + 700ms);
}
.lp-signal > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.lp-signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.lp-dot-info { background: var(--accent-glow); box-shadow: 0 0 10px var(--accent-glow); }
.lp-dot-warn { background: var(--amber);      box-shadow: 0 0 10px var(--amber); }
.lp-dot-risk { background: var(--risk);       box-shadow: 0 0 10px var(--risk); }

.lp-signal-kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-quiet);
}
.lp-signal-line {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* Positioning: six cards fanned around the globe. Uses absolute
   percentages so the layout scales with the visual column. */
.lp-signal-1 { top:   6%; left: -4%; }
.lp-signal-2 { top:  22%; right: -6%; }
.lp-signal-3 { top:  46%; left: -12%; }
.lp-signal-4 { top:  60%; right: -8%; }
.lp-signal-5 { top:  80%; left:  4%; }
.lp-signal-6 { top:  86%; right:  6%; }

@keyframes lp-signal-in {
  from { opacity: 0; transform: translateY(6px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes lp-signal-breathe {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* -----------------------------------------------------------------
 * Trust / signal bar
 * ----------------------------------------------------------------- */
.lp-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 11, 24, 0.65);
}
.lp-strip-list {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  list-style: none;
}
.lp-strip-list li {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-strip-list li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line-strong);
}
.lp-strip-list li:first-child::before { display: none; }
.lp-strip-num {
  color: var(--accent-glow);
  font-weight: 500;
  margin-right: 4px;
}

/* -----------------------------------------------------------------
 * Section frame
 * ----------------------------------------------------------------- */
.lp-section {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 40px;
}
.lp-section-tight { padding: 80px 40px 120px; }

.lp-section-head {
  max-width: 720px;
  margin: 0 0 56px;
}
.lp-section-head-wide { max-width: 860px; margin-inline: auto; text-align: center; }

.lp-section-eyebrow {
  display: inline-flex;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 14px;
}
.lp-section-title {
  margin: 0 0 14px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
}
.lp-section-sub {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 620px;
}
.lp-section-head-wide .lp-section-sub { margin-inline: auto; }

/* -----------------------------------------------------------------
 * Value-prop cards
 * ----------------------------------------------------------------- */
.lp-grid {
  display: grid;
  gap: 20px;
}
.lp-grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.lp-card {
  position: relative;
  padding: 28px 26px 26px;
  background: linear-gradient(180deg,
    rgba(10, 27, 51, 0.78) 0%,
    rgba(7, 20, 38, 0.72) 100%);
  border: 1px solid var(--line);
  transition: border-color 200ms ease, transform 240ms ease,
              box-shadow 240ms ease, background 200ms ease;
  overflow: hidden;
}
.lp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%,
    rgba(59, 167, 255, 0.14) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}
.lp-card:hover {
  border-color: rgba(59, 167, 255, 0.32);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.lp-card:hover::before { opacity: 1; }
.lp-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--accent-glow);
  background: rgba(59, 167, 255, 0.08);
  border: 1px solid rgba(59, 167, 255, 0.20);
  margin-bottom: 20px;
}
.lp-card-title {
  margin: 0 0 8px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--text);
  letter-spacing: -0.2px;
}
.lp-card-body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-mute);
}

/* -----------------------------------------------------------------
 * Product preview
 * ----------------------------------------------------------------- */
.lp-preview {
  position: relative;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(14, 36, 64, 0.65) 0%, rgba(7, 20, 38, 0.75) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.lp-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(59, 167, 255, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(86, 217, 255, 0.05) 0%, transparent 55%);
  pointer-events: none;
}
.lp-preview-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.lp-preview-country {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.lp-preview-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 26px;
  background: rgba(59, 167, 255, 0.06);
  border: 1px solid rgba(59, 167, 255, 0.20);
}
.lp-preview-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-quiet);
}
.lp-preview-name {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.2px;
}

.lp-preview-tags { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.lp-tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 10px;
  color: var(--text-mute);
  border: 1px solid var(--line);
  background: rgba(7, 20, 38, 0.5);
}
.lp-tag-warn { color: var(--amber); border-color: rgba(244, 185, 90, 0.34); }

.lp-preview-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.lp-preview-card {
  grid-column: span 2;
  padding: 20px;
  background: rgba(5, 11, 24, 0.65);
  border: 1px solid var(--line);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-preview-card-lg { grid-column: span 4; }
.lp-preview-card-kicker {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-glow);
}
.lp-preview-card-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.2px;
}
.lp-preview-card-body {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.55;
}
.lp-preview-card-meta {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-quiet);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

.lp-preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-preview-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
}
.lp-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-pm-num {
  font-family: var(--f-mono);
  color: var(--accent-glow);
  font-size: 13px;
  font-weight: 500;
  min-width: 42px;
}

.lp-preview-spark {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-top: auto;
}
.lp-preview-spark span {
  flex: 1;
  background: linear-gradient(180deg, var(--accent-glow) 0%, var(--accent) 100%);
  opacity: 0.75;
}
.lp-preview-spark span:nth-child(1) { height: 40%; }
.lp-preview-spark span:nth-child(2) { height: 55%; }
.lp-preview-spark span:nth-child(3) { height: 48%; }
.lp-preview-spark span:nth-child(4) { height: 72%; }
.lp-preview-spark span:nth-child(5) { height: 62%; }
.lp-preview-spark span:nth-child(6) { height: 88%; }
.lp-preview-spark span:nth-child(7) { height: 76%; }

.lp-preview-bars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-preview-bars li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  align-items: center;
}
.lp-bar-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-mute);
}
.lp-bar {
  display: block;
  height: 6px;
  background: rgba(120, 170, 220, 0.10);
  overflow: hidden;
}
.lp-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-glow) 100%);
}

.lp-risk {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  align-items: center;
  margin-top: auto;
}
.lp-risk-value {
  grid-row: 1 / 3;
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--amber);
  line-height: 1;
  padding-right: 4px;
}
.lp-risk-scale {
  display: inline-flex;
  gap: 3px;
}
.lp-risk-scale span {
  width: 20px;
  height: 4px;
  background: rgba(120, 170, 220, 0.14);
}
.lp-risk-scale .is-on { background: var(--amber); }
.lp-risk-note {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-quiet);
}

.lp-preview-tree {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-preview-tree li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
  color: var(--text);
}
.lp-preview-tree li:last-child { border-bottom: 0; }
.lp-preview-tree em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-quiet);
}

/* -----------------------------------------------------------------
 * Daily / weekly split
 * ----------------------------------------------------------------- */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.lp-split-half {
  padding: 40px 36px 44px;
  background:
    linear-gradient(180deg, rgba(10, 27, 51, 0.78) 0%, rgba(7, 20, 38, 0.72) 100%);
  border: 1px solid var(--line);
  position: relative;
}
.lp-split-half::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 44px;
  background: linear-gradient(90deg, var(--accent-glow) 0%, transparent 100%);
}
.lp-split-title {
  margin: 12px 0 12px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.lp-split-body {
  margin: 0 0 20px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
}
.lp-split-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-split-list li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--text);
}
.lp-split-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--accent-glow);
}

/* -----------------------------------------------------------------
 * World conversation (attention pulses)
 * ----------------------------------------------------------------- */
.lp-conversation { padding-bottom: 140px; }

.lp-attention {
  position: relative;
  height: 460px;
  margin-top: 40px;
  background:
    linear-gradient(180deg, rgba(10, 27, 51, 0.5) 0%, rgba(7, 20, 38, 0.6) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.lp-attention-map {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(120, 170, 220, 0.18) 1px, transparent 1.5px),
    radial-gradient(rgba(120, 170, 220, 0.10) 1px, transparent 1.5px);
  background-size: 12px 12px, 20px 20px;
  background-position: 0 0, 6px 6px;
  mask-image: radial-gradient(ellipse at 50% 55%,
              rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0) 90%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 55%,
              rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0) 90%);
  opacity: 0.75;
}

.lp-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-glow);
  box-shadow: 0 0 12px var(--accent-glow);
}
.lp-pulse::before,
.lp-pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--accent-glow);
  border-radius: 50%;
  animation: lp-pulse-out 3.2s ease-out infinite;
}
.lp-pulse::after { animation-delay: 1.6s; }
@keyframes lp-pulse-out {
  0%   { opacity: 0.6; transform: scale(0.4); }
  100% { opacity: 0;   transform: scale(2.6); }
}
.lp-pulse-a { top: 32%; left: 18%; }
.lp-pulse-b { top: 22%; left: 46%; background: var(--amber); box-shadow: 0 0 12px var(--amber); }
.lp-pulse-b::before, .lp-pulse-b::after { border-color: var(--amber); }
.lp-pulse-c { top: 40%; left: 62%; }
.lp-pulse-d { top: 58%; left: 34%; }
.lp-pulse-e { top: 66%; left: 74%; background: var(--risk); box-shadow: 0 0 12px var(--risk); }
.lp-pulse-e::before, .lp-pulse-e::after { border-color: var(--risk); }
.lp-pulse-f { top: 44%; left: 86%; }

.lp-topic {
  position: absolute;
  padding: 6px 12px;
  background: rgba(7, 20, 38, 0.85);
  border: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text);
  backdrop-filter: blur(8px);
}
.lp-topic-a { top: 20%; left: 8%; }
.lp-topic-b { top: 10%; left: 41%; color: var(--amber); border-color: rgba(244, 185, 90, 0.34); }
.lp-topic-c { top: 30%; left: 65%; }
.lp-topic-d { top: 74%; left: 24%; }
.lp-topic-e { top: 78%; left: 68%; color: var(--risk); border-color: rgba(216, 92, 92, 0.34); }
.lp-topic-f { top: 52%; left: 88%; }

/* -----------------------------------------------------------------
 * Final CTA
 * ----------------------------------------------------------------- */
.lp-final {
  position: relative;
  z-index: 2;
  padding: 140px 40px 160px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(59, 167, 255, 0.10) 0%, transparent 55%);
}
.lp-final-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.lp-final-title {
  margin: 0 0 14px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--text);
}
.lp-final-sub {
  margin: 0 0 40px;
  font-size: 17px;
  color: var(--text-mute);
  line-height: 1.55;
}
.lp-final-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* -----------------------------------------------------------------
 * Footer
 * ----------------------------------------------------------------- */
.lp-foot {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-quiet);
  font-size: 12px;
  letter-spacing: 0.2px;
  flex-wrap: wrap;
}
.lp-foot-brand {
  font-family: var(--f-display);
  color: var(--text-mute);
  font-weight: 500;
}
.lp-foot-mono {
  font-family: var(--f-mono);
  letter-spacing: 1.6px;
  color: var(--accent-glow);
}
.lp-foot-sep { color: var(--line-strong); }

/* -----------------------------------------------------------------
 * Reduced motion
 * ----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .lp-loading-ring,
  .lp-signal,
  .lp-pulse::before,
  .lp-pulse::after,
  .lp-eyebrow-dot,
  .lp-dot-live,
  .lp-globe-rings span { animation: none !important; }
}

/* -----------------------------------------------------------------
 * Responsive
 * ----------------------------------------------------------------- */
@media (max-width: 1200px) {
  .lp-grid-6           { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-preview-grid     { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lp-preview-card     { grid-column: span 2; }
  .lp-preview-card-lg  { grid-column: span 4; }
}

@media (max-width: 960px) {
  .lp-nav {
    grid-template-columns: 1fr auto;
    padding: 16px 20px;
    gap: 12px;
  }
  .lp-nav-links { display: none; }

  .lp-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 24px 20px 80px;
    min-height: auto;
  }
  .lp-hero-visual {
    order: -1;
    height: 420px;
  }
  .lp-globe { width: 420px; height: 420px; }
  .lp-globe-rings span:nth-child(1) { width: 320px; height: 320px; }
  .lp-globe-rings span:nth-child(2) { width: 400px; height: 400px; }
  .lp-globe-rings span:nth-child(3) { width: 480px; height: 480px; }
  .lp-signal { min-width: 148px; padding: 8px 12px; }
  .lp-signal-line { font-size: 12px; }

  .lp-strip-list  { padding: 12px 20px; gap: 10px 22px; }
  .lp-section     { padding: 80px 20px; }
  .lp-section-tight { padding: 60px 20px 80px; }
  .lp-final       { padding: 100px 20px 120px; }
  .lp-foot        { padding: 16px 20px 28px; }
}

@media (max-width: 700px) {
  .lp-grid-6        { grid-template-columns: 1fr; }
  .lp-preview-grid  { grid-template-columns: 1fr; }
  .lp-preview-card,
  .lp-preview-card-lg { grid-column: span 1; }

  .lp-split         { grid-template-columns: 1fr; }
  .lp-split-half    { padding: 30px 24px 32px; }

  .lp-attention     { height: 380px; }
  .lp-topic         { font-size: 10px; padding: 5px 9px; }

  .lp-hero-visual   { height: 340px; }
  .lp-globe         { width: 340px; height: 340px; }
  .lp-signal-1, .lp-signal-2, .lp-signal-3,
  .lp-signal-4, .lp-signal-5, .lp-signal-6 { min-width: 130px; font-size: 11px; }
}


/* ==================================================================
 * Responsive refinements (tablet + phone)
 * Tuned against: 390 (iPhone 15), 430 (iPhone 15 Pro Max),
 * 768 (iPad portrait), 1024 (iPad landscape), 1440 (desktop).
 * ================================================================== */

/* iPad landscape and small desktop — keep the split hero but shrink globe. */
@media (max-width: 1180px) and (min-width: 961px) {
  .lp-hero            { gap: 40px; padding: 32px 32px 80px; }
  .lp-hero-visual     { height: 540px; }
  .lp-globe           { width: 540px; height: 540px; }
  .lp-globe-rings span:nth-child(1) { width: 400px; height: 400px; }
  .lp-globe-rings span:nth-child(2) { width: 490px; height: 490px; }
  .lp-globe-rings span:nth-child(3) { width: 580px; height: 580px; }
  .lp-section         { padding: 96px 32px; }
  .lp-final           { padding: 120px 32px; }
}

/* iPad portrait — single-column hero, but still generous spacing. */
@media (max-width: 960px) and (min-width: 701px) {
  .lp-hero { padding: 28px 28px 90px; gap: 48px; }
  .lp-hero-visual { height: 480px; }
  .lp-globe { width: 480px; height: 480px; }
  .lp-hero-title  { font-size: clamp(36px, 5.5vw, 54px); }
  .lp-hero-sub    { font-size: 16px; }
  .lp-section     { padding: 88px 28px; }
  .lp-final       { padding: 110px 28px 128px; }
  .lp-preview-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
  .lp-preview      { padding: 20px; }
  .lp-split        { gap: 20px; }
  .lp-split-half   { padding: 32px 28px; }
  .lp-attention    { height: 400px; }
}

/* iPhone landscape / very narrow tablet */
@media (max-width: 700px) {
  html, body { overflow-x: hidden; }

  .lp-nav {
    padding: 14px 18px;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .lp-nav-links { display: none; }
  .lp-nav-cta   { gap: 6px; }
  .lp-brand-text { font-size: 15px; }
  .lp-brand-sub  { display: none; }

  /* Hero: give the globe less air and shrink the meta strip so it fits. */
  .lp-hero {
    padding: 20px 18px 64px;
    gap: 28px;
  }
  .lp-hero-title  {
    font-size: clamp(30px, 8vw, 44px);
    letter-spacing: -0.4px;
    margin: 18px 0 14px;
  }
  .lp-hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
    max-width: none;
  }
  .lp-eyebrow    { font-size: 10px; padding: 5px 10px; letter-spacing: 1.6px; }
  .lp-hero-cta   { gap: 10px; margin-bottom: 24px; }
  .lp-hero-cta .lp-btn-lg {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 16px;
    font-size: 13px;
    justify-content: center;
  }
  .lp-hero-meta  { gap: 10px 14px; }
  .lp-hero-meta li { font-size: 10px; letter-spacing: 1.2px; }

  /* Shrink the globe further and lose most floating signals — they
     overlap the copy on a narrow viewport. Keep two so the hero
     still shows life. */
  .lp-hero-visual { height: 300px; }
  .lp-globe       { width: 320px; height: 320px; }
  .lp-globe-rings span:nth-child(1) { width: 220px; height: 220px; }
  .lp-globe-rings span:nth-child(2) { width: 280px; height: 280px; }
  .lp-globe-rings span:nth-child(3) { width: 340px; height: 340px; }

  .lp-signals .lp-signal:nth-child(n+4) { display: none; }
  .lp-signals .lp-signal { min-width: 128px; padding: 8px 10px; }
  .lp-signal-line   { font-size: 12px; }
  .lp-signal-kicker { font-size: 9.5px; letter-spacing: 1px; }
  .lp-signal-1 { top: 4%;  left: -2%; }
  .lp-signal-2 { top: 20%; right: -2%; }
  .lp-signal-3 { top: 80%; left:  0; }

  /* Signal-bar wraps naturally */
  .lp-strip-list { padding: 12px 18px; gap: 8px 18px; font-size: 10px; }
  .lp-strip-list li { font-size: 10px; letter-spacing: 1.2px; }

  /* Content sections */
  .lp-section         { padding: 72px 18px; }
  .lp-section-tight   { padding: 56px 18px 80px; }
  .lp-section-title   { font-size: clamp(26px, 6.5vw, 34px); }
  .lp-section-sub     { font-size: 15px; }
  .lp-section-head    { margin-bottom: 40px; }

  /* Value-prop cards */
  .lp-grid            { gap: 14px; }
  .lp-grid-6          { grid-template-columns: 1fr; }
  .lp-card            { padding: 22px 20px; }
  .lp-card-title      { font-size: 17px; }
  .lp-card-body       { font-size: 14px; }
  .lp-card-icon       { width: 36px; height: 36px; margin-bottom: 16px; }

  /* Product preview */
  .lp-preview        { padding: 16px; }
  .lp-preview-head   { flex-direction: column; align-items: flex-start; gap: 14px; }
  .lp-preview-flag   { width: 40px; height: 40px; font-size: 22px; }
  .lp-preview-name   { font-size: 18px; }
  .lp-preview-tags   { flex-wrap: wrap; }
  .lp-preview-grid   { grid-template-columns: 1fr; gap: 12px; }
  .lp-preview-card,
  .lp-preview-card-lg { grid-column: span 1; min-height: 0; padding: 16px; }

  /* Daily / weekly split */
  .lp-split          { grid-template-columns: 1fr; gap: 16px; }
  .lp-split-half     { padding: 28px 22px 30px; }
  .lp-split-title    { font-size: 22px; }
  .lp-split-body     { font-size: 14px; }

  /* World-conversation panel — hide the topic labels that would
     otherwise overlap the pulses on a narrow viewport, and shrink. */
  .lp-conversation   { padding-bottom: 100px; }
  .lp-attention      { height: 320px; }
  .lp-topic          { font-size: 9.5px; padding: 4px 8px; letter-spacing: 1px; }
  .lp-topic-c, .lp-topic-e, .lp-topic-f { display: none; }
  .lp-pulse::before, .lp-pulse::after { animation-duration: 4s; }

  /* Final CTA */
  .lp-final          { padding: 84px 18px 96px; }
  .lp-final-title    { font-size: clamp(28px, 7vw, 40px); }
  .lp-final-sub      { font-size: 15px; }
  .lp-final-cta      { flex-direction: column; align-items: stretch; gap: 10px; }
  .lp-final-cta .lp-btn-lg { width: 100%; justify-content: center; }

  /* Footer */
  .lp-foot           { padding: 16px 18px 32px; font-size: 11px; text-align: center; }
  .lp-foot-sep       { display: none; }
}

/* Small iPhone (390px and below) — squeeze one more notch. */
@media (max-width: 400px) {
  .lp-hero-title    { font-size: 28px; }
  .lp-hero-sub      { font-size: 14px; }
  .lp-hero-meta li  { font-size: 9.5px; }
  .lp-hero-visual   { height: 260px; }
  .lp-globe         { width: 280px; height: 280px; }
  .lp-signal-1, .lp-signal-2, .lp-signal-3 { min-width: 118px; }
  .lp-signal-line   { font-size: 11px; }
  .lp-strip-list li { font-size: 9.5px; letter-spacing: 1px; }
  .lp-section       { padding: 56px 16px; }
  .lp-section-tight { padding: 44px 16px 64px; }
  .lp-preview       { padding: 14px; }
  .lp-final         { padding: 68px 16px 80px; }
}

/* Ensure the tap targets on interactive controls meet the 44-px
   Apple HIG guideline in every viewport. */
@media (hover: none) and (pointer: coarse) {
  .lp-btn,
  .lp-nav-links a,
  .lp-nav-cta   a { min-height: 44px; }
}
