/**
 * Landing Page — Evident Technologies
 * 
 * Pro se journey-mapped design with depth system integration.
 * The depth system (depth.css) provides the 6-layer parallax starfield.
 * This file provides landing-specific layout, typography, and components.
 */

/* ── Base ─────────────────────────────────────────────────────────────── */

/* Prevent horizontal scroll at root level */
html {
  overflow-x: hidden;
  inline-size: 100%;
}

.landing-body {
  --glass-surface: rgb(16 24 39 / 54%);
  --glass-surface-strong: rgb(20 30 48 / 68%);
  --glass-edge: rgb(163 188 246 / 16%);
  --glass-shadow-soft: 0 18px 42px rgb(2 8 18 / 28%);
  --glass-shadow-deep: 0 28px 72px rgb(2 8 18 / 40%);
  --glass-highlight: linear-gradient(160deg, rgb(231 242 255 / 14%) 0%, rgb(203 221 255 / 6%) 36%, rgb(203 221 255 / 0%) 100%);
  --landing-glass-blur: 18px;
  --landing-glass-surface: linear-gradient(165deg, var(--glass-surface-strong) 0%, var(--glass-surface) 100%);
  --landing-glass-surface-deep: linear-gradient(165deg, rgb(11 18 31 / 78%) 0%, rgb(10 17 29 / 58%) 100%);
  color: #e8f0fc;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  inline-size: 100%;
  max-inline-size: 100vw;
  background: transparent; /* depth-stars provides background */
}

.landing-hero__frame,
.lv-panel,
.landing-hero__ledger-item,
.landing-journey__step-tool,
.landing-pipeline__card,
.landing-trust__item,
.landing-audience__card,
.landing-cta__content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--landing-glass-surface);
  border: 1px solid var(--glass-edge);
  box-shadow:
    var(--glass-shadow-soft),
    inset 0 1px 0 rgb(255 255 255 / 4%);
  backdrop-filter: blur(var(--landing-glass-blur)) saturate(145%);
}

.landing-hero__frame,
.lv-panel,
.landing-hero__ledger-item {
  background: var(--landing-glass-surface-deep);
}

.landing-journey__step-tool,
.landing-pipeline__card,
.landing-trust__item,
.landing-audience__card,
.landing-cta__content {
  box-shadow:
    var(--glass-shadow-soft),
    inset 0 1px 0 rgb(255 255 255 / 5%),
    inset 0 0 0 1px rgb(255 255 255 / 2%);
}

@supports not (backdrop-filter: blur(1px)) {
  .landing-hero__frame,
  .lv-panel,
  .landing-hero__ledger-item,
  .landing-journey__step-tool,
  .landing-pipeline__card,
  .landing-trust__item,
  .landing-audience__card,
  .landing-cta__content {
    background: rgb(10 17 29 / 90%);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .landing-hero__frame,
  .lv-panel,
  .landing-hero__ledger-item,
  .landing-journey__step-tool,
  .landing-pipeline__card,
  .landing-trust__item,
  .landing-audience__card,
  .landing-cta__content {
    backdrop-filter: none;
    background: rgb(10 17 29 / 92%);
  }
}

/* Ensure all sections respect viewport bounds */
.landing-hero,
.landing-journey,
.landing-pipeline,
.landing-trust,
.landing-audience,
.landing-cta,
.landing-footer {
  inline-size: 100%;
  max-inline-size: 100%;
  box-sizing: border-box;
  overflow-x: clip;
}

.landing-brand-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  isolation: isolate;
  overflow: visible;
}

.landing-brand__svg {
  display: block;
  height: 5.35rem;
  width: auto;
  filter: drop-shadow(0 20px 22px rgb(6 16 28 / 36%)) drop-shadow(0 0 28px rgb(151 197 253 / 20%));
}

/* ── Shared Header Integration ───────────────────────────────────────── */

.landing-anchor {
  display: block;
  block-size: 0;
  scroll-margin-top: calc(var(--site-header-height, 5.5rem) + 0.75rem);
}

.landing-journey,
.landing-pipeline,
.landing-trust,
.landing-audience,
.landing-cta {
  scroll-margin-top: calc(var(--site-header-height, 5.5rem) + 0.75rem);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.landing-hero {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 2rem) clamp(3rem, 6vw, 5rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;

  /* Evident vellum texture — diagonal fine-line pattern on brand moments */
  background-image: repeating-linear-gradient(
    -45deg,
    rgb(77 124 111 / 2.5%) 0,
    rgb(77 124 111 / 2.5%) 1px,
    transparent 1px,
    transparent 6px
  );
}

/* ── Hero Cinematic Mesh Gradient ─────────────────────────────── */

.landing-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.landing-hero__mesh::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgb(31 58 153 / 18%) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgb(74 45 181 / 12%) 0%, transparent 45%),
    radial-gradient(ellipse 70% 55% at 60% 80%, rgb(45 120 255 / 14%) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgb(200 140 0 / 8%) 0%, transparent 40%);
  animation: ev-mesh-drift 20s ease-in-out infinite alternate;
  will-change: background-position;
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero__mesh::before {
    animation: none;
  }
}

/* ── Hero CTA Glow ────────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .landing-btn--primary {
    animation: ev-cta-glow 4s ease-in-out infinite;
  }
}

.landing-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (width >= 900px) {
  .landing-hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    padding-block-start: 1.5rem;
  }

  .landing-hero__content {
    grid-column: 1;
    min-width: 0;
    isolation: isolate;
    z-index: 1;
  }

  .landing-hero__title {
    max-inline-size: clamp(18ch, 26ch, 32ch);
    text-wrap: pretty;
  }

  .landing-hero__body {
    max-inline-size: 52ch;
  }

  .landing-hero__actions,
  .landing-hero__note {
    max-inline-size: 52ch;
  }
}

.landing-hero__visual {
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 0;
}

@media (width < 900px) {
  .landing-hero__inner {
    text-align: center;
  }

  .landing-hero__body {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero__actions {
    justify-content: center;
  }
}

@media (width <= 768px) {
  .landing-hero {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 1.5rem) clamp(2rem, 4vw, 4rem);
  }

  .landing-hero__inner {
    gap: 2rem;
  }
}

.landing-hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(147 197 253 / 80%);
  margin: 0 0 2rem;
  padding-inline-start: 0.125em;
}

.landing-hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 4.6vw, 4.75rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  color: #f0f4ff;
  max-inline-size: clamp(18ch, 26ch, 32ch);
  text-wrap: balance;
}

@media (width <= 768px) {
  .landing-hero__title {
    font-size: clamp(1.85rem, 6vw, 3.15rem);
    line-height: 1.1;
    max-inline-size: 100%;
  }
}

.landing-hero__title-line {
  display: block;
  max-inline-size: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}

.landing-hero__title--strong {
  font-weight: 800;
  font-style: italic;
}

.landing-hero__title--accent {
  font-style: italic;
  font-weight: 600;
  display: inline-block;
  padding-inline-end: 0.3em;
  padding-block-end: 0.1em;
  line-height: 1.2;
  background: linear-gradient(135deg, #93c5fd 0%, #f7b32b 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Accent text shimmer — subtle highlight sweep */
@media (prefers-reduced-motion: no-preference) {
  .landing-hero__title--accent {
    background-size: 300% 100%;
    background-image: linear-gradient(135deg, #93c5fd 0%, #f7b32b 30%, #fef3c7 50%, #f7b32b 70%, #93c5fd 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ev-text-shimmer 6s ease-in-out infinite;
  }
}

/* Hero title 3D embossed depth */
.landing-hero__title {
  text-shadow:
    0 1px 0 oklch(70% 0 0 / 30%),
    0 2px 0 oklch(60% 0 0 / 20%),
    0 3px 0 oklch(50% 0 0 / 15%),
    0 4px 12px oklch(0% 0 0 / 15%);
}

@media (width >= 1180px) {
  .landing-hero__title--accent {
    background-size: 300% 100%;
    background-image: linear-gradient(135deg, #93c5fd 0%, #f7b32b 30%, #fef3c7 50%, #f7b32b 70%, #93c5fd 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ev-text-shimmer 6s ease-in-out infinite;
  }
}

/* Hero title 3D embossed depth */
.landing-hero__title {
  text-shadow:
    0 1px 0 oklch(70% 0 0 / 30%),
    0 2px 0 oklch(60% 0 0 / 20%),
    0 3px 0 oklch(50% 0 0 / 15%),
    0 4px 12px oklch(0% 0 0 / 15%);
}

@media (width <= 768px) {
  .landing-hero__title--accent {
    display: block;
    white-space: normal;
  }
}

@media (width <= 430px) {
  .landing-hero__title {
    font-size: clamp(1.55rem, 8.5vw, 2.2rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
  }

  .landing-hero__title-line {
    text-wrap: pretty;
  }

  .landing-hero__title--accent {
    padding-block-end: 0.16em;
  }
}

.landing-hero__body {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #9ca3af;
  margin: 0 0 3rem;
  max-width: 100%;
  line-height: 1.8;
}

@media (width <= 1024px) {
  .landing-hero__body {
    font-size: 1.125rem;
  }
}

@media (width <= 768px) {
  .landing-hero__body {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.landing-hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Second visual rule intentionally removed — consolidated above */

.landing-hero__frame {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 1.4rem;
  box-shadow:
    var(--glass-shadow-deep),
    inset 0 1px 0 rgb(255 255 255 / 5%),
    inset 0 0 0 1px rgb(255 255 255 / 3%);
  overflow: hidden;
}

.landing-hero__halo,
.landing-hero__orbit {
  position: absolute;
  pointer-events: none;
}

.landing-hero__halo {
  inset: auto;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}

.landing-hero__halo--warm {
  top: -3rem;
  left: -2rem;
  width: 10rem;
  height: 10rem;
  background: rgb(199 71 94 / 18%);
}

.landing-hero__halo--cool {
  right: -2rem;
  bottom: -2rem;
  width: 12rem;
  height: 12rem;
  background: rgb(45 120 255 / 16%);
}

.landing-hero__orbit {
  inset-inline: 8%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgb(148 163 184 / 12%);
  transform: translateX(-50%);
}

.landing-hero__orbit--outer {
  top: 6%;
  width: min(88%, 560px);
  height: 78%;
}

.landing-hero__orbit--inner {
  top: 16%;
  width: min(64%, 400px);
  height: 52%;
  border-color: rgb(98 181 255 / 16%);
}

.landing-hero__note {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin: 0;
}

.landing-hero__comma-space {
  display: inline-block;
  width: clamp(0.5rem, 2vw, 1.2rem);
}

/* ── Buttons ────────────────────────────────────────────────────────────── */

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 0.625rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.landing-btn--primary {
  background: rgb(31 58 153 / 85%);
  color: #fff;
  border-color: rgb(59 130 246 / 30%);
  position: relative;
  overflow: hidden;
}

.landing-btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgb(255 255 255 / 10%) 50%, transparent 80%);
  transform: translateX(-100%);
  transition: transform 600ms var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
}

.landing-btn--primary:hover::after {
  transform: translateX(100%);
}

.landing-btn--primary:hover,
.landing-btn--primary:focus-visible {
  background: rgb(31 58 153 / 100%);
  border-color: rgb(59 130 246 / 50%);
  transform: translateY(-2px);
  outline: 2px solid #f7b32b;
  outline-offset: 0.22rem;
  box-shadow:
    0 0 0 0.4rem rgb(247 179 43 / 18%),
    0 14px 34px rgb(31 58 153 / 42%),
    0 0 28px rgb(247 179 43 / 12%),
    0 0 0 1px rgb(59 130 246 / 24%);
}

.landing-btn--primary:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 80ms;
}

/* ── Focus Ring Enhancement (gold brand ring) ──────────────────── */

.landing-btn:focus-visible {
  outline: 2px solid #f7b32b;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgb(247 179 43 / 18%);
}

@media (prefers-reduced-motion: reduce) {
  .landing-btn--primary::after {
    display: none;
  }
}

.landing-btn--outline {
  background: transparent;
  color: #e8f0fc;
  border-color: rgb(255 255 255 / 20%);
}

.landing-btn--outline:hover,
.landing-btn--outline:focus-visible {
  background: rgb(255 255 255 / 5%);
  border-color: rgb(255 255 255 / 30%);
  color: #fff;
  transform: translateY(-2px);
  outline: 2px solid #f7b32b;
  outline-offset: 0.22rem;
  box-shadow:
    0 0 0 0.4rem rgb(247 179 43 / 14%),
    0 12px 26px rgb(3 10 20 / 30%);
}

.landing-btn--outline:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 80ms;
}

.landing-btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ── Evidence Verification Panel (Hero Visual) ──────────────────────────── */

.lv-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  background: rgb(5 13 24 / 92%);
  border: 1px solid rgb(59 130 246 / 20%);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgb(59 130 246 / 8%),
    0 24px 64px rgb(0 0 0 / 50%),
    0 0 80px rgb(59 130 246 / 6%),
    inset 0 0 0 1px rgb(98 181 255 / 15%);
  box-sizing: border-box;
  backdrop-filter: blur(20px) saturate(1.4);
}

.lv-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(255 255 255 / 7%), transparent 30%), linear-gradient(180deg, transparent, rgb(98 181 255 / 5%));
  pointer-events: none;
}

.lv-panel::after {
  content: "";
  position: absolute;
  inset: 1rem auto 1rem 0.75rem;
  width: 1px;
  background: linear-gradient(180deg, rgb(199 71 94 / 0%), rgb(199 71 94 / 34%), rgb(98 181 255 / 28%), rgb(98 181 255 / 0%));
  background-size: 100% 200%;
  opacity: 0.65;
  pointer-events: none;
  animation: ev-border-sweep 4s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .lv-panel::after {
    animation: none;
  }
}

.lv-panel__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  background: rgb(255 255 255 / 3%);
  border-bottom: 1px solid rgb(59 130 246 / 12%);
}

.lv-panel__dots {
  display: flex;
  gap: 0.375rem;
  flex-shrink: 0;
}

.lv-panel__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(255 255 255 / 12%);
}

.lv-panel__dots span:first-child {
  background: #c0392b;
  opacity: 0.7;
}

.lv-panel__dots span:nth-child(2) {
  background: #e67e22;
  opacity: 0.7;
}

.lv-panel__dots span:last-child {
  background: #27ae60;
  opacity: 0.7;
}

.lv-panel__title {
  flex: 1;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.6875rem;
  color: #94a3b8;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lv-panel__live {
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.625rem;
  color: #22c55e;
  letter-spacing: 0.06em;
  animation: lv-live-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes lv-live-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.lv-panel__body {
  padding: 0.25rem 0;
}

/* ── Shared row ── */

.lv-row,
.lv-hash,
.lv-chain {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 4%);
  opacity: 0;
  animation: lv-row-in 0.4s ease forwards;
}

.lv-row--1 {
  animation-delay: 0.3s;
}

.lv-row--2 {
  animation-delay: 0.9s;
}

.lv-row--3 {
  animation-delay: 1.5s;
}

.lv-row--4 {
  animation-delay: 2.1s;
}

.lv-row--5 {
  animation-delay: 2.7s;
}

.lv-row--6 {
  animation-delay: 3.3s;
  border-bottom: none;
}

@keyframes lv-row-in {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Stage tags ── */

.lv-row__tag {
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2em 0.5em;
  border-radius: 0.25em;
  flex-shrink: 0;
  min-width: 4.5rem;
  text-align: center;
}

.lv-row__tag--intake {
  background: rgb(59 130 246 / 15%);
  color: #93c5fd;
  border: 1px solid rgb(59 130 246 / 25%);
}

.lv-row__tag--custody {
  background: rgb(139 92 246 / 15%);
  color: #c4b5fd;
  border: 1px solid rgb(139 92 246 / 25%);
}

.lv-row__tag--analyze {
  background: rgb(34 197 94 / 12%);
  color: #86efac;
  border: 1px solid rgb(34 197 94 / 20%);
}

.lv-row__tag--export {
  background: rgb(251 191 36 / 12%);
  color: #fcd34d;
  border: 1px solid rgb(251 191 36 / 20%);
}

.lv-row__file {
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.75rem;
  color: #cbd5e1;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lv-row__meta {
  font-size: 0.6875rem;
  color: #475569;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.lv-row__check {
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgb(34 197 94 / 50%);
}

.lv-row__check--pending {
  color: #64748b;
  text-shadow: none;
}

.lv-row__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgb(34 197 94 / 60%);
  animation: lv-pulse 1.4s ease-in-out infinite;
}

@keyframes lv-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

/* ── Hash row ── */

.lv-hash {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: rgb(34 197 94 / 4%);
}

.lv-hash__label {
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.5625rem;
  color: #94a3b8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lv-hash__value {
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.75rem;
  color: #4ade80;
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px rgb(74 222 128 / 30%);
  word-break: break-all;
  width: 100%;
}

.lv-hash__note {
  font-size: 0.5625rem;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: italic;
}

/* ── Chain row ── */

.lv-chain {
  padding: 0.625rem 1rem;
  gap: 0.75rem;
  background: rgb(255 255 255 / 1.5%);
}

.lv-chain__label {
  font-size: 0.6875rem;
  color: #94a3b8;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.lv-chain__bar {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgb(34 197 94 / 60%) 0%, rgb(34 197 94 / 60%) 70%, rgb(55 65 81 / 40%) 70%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.lv-chain__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgb(34 197 94 / 40%) 100%);
  animation: lv-chain-sweep 3s ease-in-out infinite;
}

@keyframes lv-chain-sweep {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.lv-chain__status {
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.625rem;
  color: #22c55e;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgb(34 197 94 / 40%);
}

/* ── Caption below panel ── */

.landing-hero__visual-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: #94a3b8;
  text-align: center;
  letter-spacing: 0.03em;
}

.landing-hero__ledger {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.landing-hero__ledger-item {
  margin: 0;
  padding: 0.8rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid rgb(255 255 255 / 7%);
  background: linear-gradient(180deg, rgb(10 18 31 / 80%), rgb(8 15 27 / 58%));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%);
}

.landing-hero__ledger-item dt {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #93c5fd;
}

.landing-hero__ledger-item dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #f0f4ff;
}

/* ── Reduced-motion override ── */

@media (prefers-reduced-motion: reduce) {
  .lv-row,
  .lv-hash,
  .lv-chain {
    animation: none;
    opacity: 1;
  }

  .lv-panel__live,
  .lv-row__pulse,
  .lv-chain__bar::after {
    animation: none;
  }

  .landing-hero__halo,
  .landing-hero__orbit {
    display: none;
  }
}

/* ── Mobile ── */

@media (width <= 768px) {
  .lv-panel {
    max-width: 100%;
    width: 100%;
  }

  .landing-hero__ledger {
    grid-template-columns: 1fr;
  }

  .lv-hash__value {
    font-size: 0.6875rem;
    word-break: break-all;
  }

  /* Ensure all container widths respect viewport */
  .site-header__inner,
  .landing-hero__inner,
  .landing-journey__inner,
  .landing-pipeline__inner,
  .landing-trust__inner,
  .landing-audience__inner,
  .landing-cta__inner,
  .landing-footer__inner {
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
  }
}

/* Extra small devices */
@media (width <= 375px) {
  .landing-hero {
    padding: 3rem 1rem 2rem;
  }

  .site-header__inner {
    padding: 0.5rem 1rem;
  }

  .lv-panel {
    border-radius: 0.5rem;
  }
}

/* ── Section Shared ────────────────────────────────────────────────────── */

.landing-section-head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.landing-section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  margin: 0 0 1rem;
}

.landing-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #f0f4ff;
  line-height: 1.2;
}

.landing-section-body {
  font-size: 1.0625rem;
  color: #9ca3af;
  line-height: 1.7;
  margin: 0;
}

/* ── Journey Section ───────────────────────────────────────────────────── */

.landing-journey {
  padding: 6rem 2rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.landing-journey__inner {
  max-width: 900px;
  margin: 0 auto;
}

.landing-journey__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: journey-step;
  position: relative;
}

/* Vertical timeline line */
.landing-journey__steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 23px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgb(199 71 94 / 40%) 0%,
    rgb(217 175 103 / 30%) 25%,
    rgb(59 130 246 / 30%) 50%,
    rgb(98 181 255 / 40%) 100%
  );
}

.landing-journey__step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.landing-journey__step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.landing-journey__step-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  background: rgb(6 16 28 / 90%);
  border: 2px solid rgb(59 130 246 / 40%);
  color: #93c5fd;
}

.landing-journey__step-content {
  flex: 1;
  padding-top: 0.25rem;
}

.landing-journey__step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
  text-shadow: 0 1px 2px rgb(0 0 0 / 30%);
}

.landing-journey__step-body {
  font-size: 0.9375rem;
  color: #9ca3af;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.landing-journey__step-tool {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  .landing-journey__step-tool {
    transition:
      border-color 220ms ease,
      box-shadow 220ms var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1)),
      transform 220ms var(--ease-spring, cubic-bezier(0.22, 1, 0.36, 1));
  }

  .landing-journey__step:hover .landing-journey__step-tool {
    transform: translateY(-1px);
    border-color: rgb(163 188 246 / 24%);
    box-shadow:
      var(--glass-shadow-deep),
      inset 0 1px 0 rgb(255 255 255 / 7%),
      inset 0 0 0 1px rgb(255 255 255 / 2%);
  }
}

.landing-journey__step-tool-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-journey__step-tool-value {
  font-size: 0.8125rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ── Pipeline Section ──────────────────────────────────────────────────── */

.landing-pipeline {
  padding: 6rem 2rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.landing-pipeline__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-pipeline__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: stretch;
}

@media (width >= 90rem) {
  .landing-pipeline__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landing-pipeline__card {
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}

@media (prefers-reduced-motion: no-preference) {
  .landing-pipeline__card {
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
  }
}

.landing-pipeline__card:hover {
  transform: translateY(-3px);
  border-color: rgb(163 188 246 / 24%);
  box-shadow:
    var(--glass-shadow-deep),
    inset 0 1px 0 rgb(255 255 255 / 7%),
    inset 0 0 0 1px rgb(255 255 255 / 2%);
}

.landing-pipeline__card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.landing-pipeline__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
  text-shadow: 0 1px 2px rgb(0 0 0 / 30%);
}

.landing-pipeline__card-body {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  flex: 1 1 auto;
}

.landing-pipeline__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.landing-pipeline__card-list li {
  font-size: 0.8125rem;
  color: #93c5fd;
  padding-left: 1.25rem;
  position: relative;
}

.landing-pipeline__card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* ── Trust Section ─────────────────────────────────────────────────────── */

.landing-trust {
  padding: 6rem 2rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.landing-trust__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: stretch;
}

@media (width >= 90rem) {
  .landing-trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landing-trust__item {
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (prefers-reduced-motion: no-preference) {
  .landing-trust__item {
    transition: border-color 0.3s ease;
  }
}

.landing-trust__item:hover {
  border-color: rgb(163 188 246 / 24%);
  box-shadow:
    var(--glass-shadow-deep),
    inset 0 1px 0 rgb(255 255 255 / 7%),
    inset 0 0 0 1px rgb(255 255 255 / 2%);
}

.landing-trust__check {
  width: 44px;
  height: 44px;
  background: rgb(34 197 94 / 15%);
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.landing-trust__item-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  text-shadow: 0 1px 2px rgb(0 0 0 / 30%);
}

.landing-trust__item-body {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 auto;
}

/* ── Audience Section ──────────────────────────────────────────────────── */

.landing-audience {
  padding: 6rem 2rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.landing-audience__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: stretch;
}

@media (width >= 48rem) {
  .landing-audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width >= 90rem) {
  .landing-audience__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landing-audience__card {
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}

@media (prefers-reduced-motion: no-preference) {
  .landing-audience__card {
    transition: border-color 0.3s ease;
  }
}

.landing-audience__card:hover {
  border-color: rgb(163 188 246 / 24%);
  box-shadow:
    var(--glass-shadow-deep),
    inset 0 1px 0 rgb(255 255 255 / 7%),
    inset 0 0 0 1px rgb(255 255 255 / 2%);
}

.landing-audience__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  text-shadow: 0 1px 2px rgb(0 0 0 / 30%);
}

.landing-audience__card-body {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  flex: 1 1 auto;
}

.landing-audience__card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-audience__card-link:hover,
.landing-audience__card-link:focus-visible {
  color: #bfdbfe;
}

/* ── CTA Section ───────────────────────────────────────────────────────── */

.landing-cta {
  padding: 6rem 2rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

.landing-cta__inner {
  max-width: 800px;
  margin: 0 auto;
}

.landing-cta__content {
  padding: 4rem 3rem;
  border-radius: 1.5rem;
  text-align: center;
}

.landing-cta__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #f0f4ff;
  margin: 0 0 1.25rem;
  line-height: 1.3;
}

.landing-cta__body {
  font-size: 1.0625rem;
  color: #9ca3af;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

.landing-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.landing-cta__note {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin: 0;
}

/* ── Footer ────────────────────────────────────────────────────────────── */

.landing-footer {
  padding: 4.5rem 2rem 2.35rem;
  border-top: 1px solid rgb(126 157 202 / 8%);
  overflow: visible;
}

.landing-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, minmax(clamp(180px, 18vw, 220px), 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: 3rem;
}

/* ── Section Transition Vignettes ─────────────────────────────── */
/* Subtle radial gradient overlays between sections create depth
   and atmosphere, reinforcing the sirens-to-scales scroll narrative.
   Each section gets a warm-to-cool vignette that shifts with scroll. */

.landing-journey::before,
.landing-pipeline::before,
.landing-trust::before,
.landing-audience::before,
.landing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

/* Journey: warm amber glow at top (sirens zone) */
.landing-journey::before {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgb(217 175 103 / 4%), transparent),
    radial-gradient(ellipse 60% 30% at 30% 100%, rgb(139 92 42 / 3%), transparent);
}

/* Pipeline: transitional — warm fading, cool emerging */
.landing-pipeline::before {
  background:
    radial-gradient(ellipse 70% 35% at 70% 0%, rgb(180 140 80 / 3%), transparent),
    radial-gradient(ellipse 60% 30% at 30% 100%, rgb(47 93 159 / 4%), transparent);
}

/* Trust: cool sapphire glow (scales zone) */
.landing-trust::before {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgb(47 93 159 / 5%), transparent),
    radial-gradient(ellipse 50% 25% at 80% 100%, rgb(98 181 255 / 3%), transparent);
}

/* Audience: deep cool atmosphere */
.landing-audience::before {
  background:
    radial-gradient(ellipse 70% 35% at 40% 0%, rgb(47 93 159 / 4%), transparent),
    radial-gradient(ellipse 60% 30% at 60% 100%, rgb(98 181 255 / 3%), transparent);
}

/* CTA: balanced warm-cool convergence */
.landing-cta::before {
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgb(217 175 103 / 3%), transparent),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgb(47 93 159 / 4%), transparent);
}

@media (width <= 48rem) {
  .landing-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.landing-footer__brand {
  max-width: 22rem;
  overflow: visible;
}

.landing-footer__brand .landing-brand__svg {
  height: 5.15rem;
  width: auto;
  margin-bottom: 1.7rem;
}

.landing-footer__brand .landing-brand-shell {
  transform: none;
  margin-bottom: 0;
}

.landing-footer__tagline {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.landing-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  padding: 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.35),
    0 0 16px rgba(255, 255, 255, 0.2),
    0 0 24px rgba(247, 179, 43, 0.12);
  opacity: 0.85;
  cursor: default;
}

.landing-footer__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.landing-footer__col-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  font-weight: 500;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.35),
    0 0 16px rgba(255, 255, 255, 0.2),
    0 0 24px rgba(247, 179, 43, 0.12);
  padding: 0.25rem 0.35rem;
  border-radius: 0.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  position: relative;
  display: inline-flex;
}

.landing-footer__col-list a:hover,
.landing-footer__col-list a:focus-visible {
  color: #fef3c7;
  background: linear-gradient(180deg, rgba(247, 179, 43, 0.15) 0%, rgba(247, 179, 43, 0.08) 100%);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.35),
    0 0 30px rgba(247, 179, 43, 0.25);
}

.landing-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgb(126 157 202 / 8%);
  color: #475569;
  font-size: 0.8125rem;
}

.landing-body .scene-divider__label {
  color: #475569 !important;
}

.landing-footer__bottom p {
  margin: 0;
}

/* ── Bright White Glow Text — Landing Footer ────────────────────────────── */

.landing-footer__tagline {
  color: #ffffff;
  font-weight: 500;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 255, 255, 0.25),
    0 0 30px rgba(247, 179, 43, 0.15);
}

.landing-footer__col-title {
  color: #ffffff;
  font-weight: 700;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.35),
    0 0 16px rgba(255, 255, 255, 0.2),
    0 0 24px rgba(247, 179, 43, 0.12);
}

.landing-footer__bottom p {
  color: #ffffff;
  font-weight: 500;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.35),
    0 0 16px rgba(255, 255, 255, 0.2),
    0 0 24px rgba(247, 179, 43, 0.12);
}

/* ── Animations ────────────────────────────────────────────────────────── */

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-animate].landing-animate-in {
  opacity: 1;
  transform: translateY(0);
}

[data-delay] {
  transition-delay: var(--delay, 0ms);
}

/* No-JS fallback */
html.no-js [data-animate] {
  opacity: 1;
  transform: none;
}

/* ── Responsive ────────────────────────────────────────────────────────── */

@media (width <= 1024px) {
  .landing-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .landing-hero__visual {
    order: -1;
  }

  .landing-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 768px) {
  .landing-brand__svg {
    height: 4.65rem;
  }

  .landing-footer__brand .landing-brand__svg {
    height: 4.35rem;
  }

  .landing-hero {
    padding: 5rem 1.5rem 4rem;
    min-height: auto;
  }

  .landing-hero__actions {
    flex-direction: column;
  }

  .landing-btn {
    width: 100%;
  }

  .landing-pipeline-preview {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .landing-pipeline-preview__connector {
    display: none;
  }

  .landing-journey__steps::before {
    left: 17px;
  }

  .landing-journey__step {
    gap: 1rem;
  }

  .landing-journey__step-marker {
    width: 36px;
    height: 36px;
  }

  .landing-journey__step-number {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .landing-pipeline__grid {
    grid-template-columns: 1fr;
  }

  .landing-trust__grid {
    grid-template-columns: 1fr;
  }

  .landing-audience__grid {
    grid-template-columns: 1fr;
  }

  .landing-cta__content {
    padding: 2.5rem 1.5rem;
  }

  .landing-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .landing-footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ── Reduced Motion (Final Catch-All) ──────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
