/**
 * 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 ─────────────────────────────────────────────────────────────── */

/* Landing page root: clip (not hidden) so iOS Safari honours containment
   without suppressing the vertical scrollbar. inline-size: 100% keeps the
   root from ever growing a horizontal scroll axis. */
html {
  overflow-x: clip;
  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: clip;
  inline-size: 100%;
  /* 100% instead of 100vw: avoids the scrollbar-width overflow where
     100vw = viewport + scrollbar-gutter, pushing content 15-17px wide. */
  max-inline-size: 100%;
  background: transparent; /* depth-stars provides background */
}

.landing-hero__frame,
.lv-panel,
.landing-hero__ledger-item,
.landing-journey__step-tool,
.landing-pipeline__card,
.landing-pipeline__step,
.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-pipeline__step,
.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-pipeline__step,
  .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-pipeline__step,
  .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-artifacts,
.landing-faq,
.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 {
    /* min(360px, 100%) lets the visual column shrink below 360px on narrow
       tablets so the grid never forces the page wider than the viewport. */
    grid-template-columns: minmax(0, 1.15fr) minmax(min(360px, 100%), 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 0deg / 30%),
    0 2px 0 oklch(60% 0 0deg / 20%),
    0 3px 0 oklch(50% 0 0deg / 15%),
    0 4px 12px oklch(0% 0 0deg / 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 0deg / 30%),
    0 2px 0 oklch(60% 0 0deg / 20%),
    0 3px 0 oklch(50% 0 0deg / 15%),
    0 4px 12px oklch(0% 0 0deg / 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 {
  touch-action: manipulation;
  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:
    background 200ms ease,
    color 200ms ease,
    border-color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms 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 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.625rem 1rem;
  gap: 0.75rem;
  background: rgb(255 255 255 / 1.5%);
}

.lv-chain__label {
  font-size: 0.625rem;
  color: #94a3b8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.lv-chain__bar {
  position: relative;
  block-size: 3px;
  background: rgb(71 85 105 / 42%);
  border-radius: 999px;
  overflow: hidden;
}

.lv-chain__bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  inline-size: 0%;
  background: linear-gradient(90deg, rgb(74 222 128 / 80%) 0%, rgb(34 197 94 / 92%) 100%);
  border-radius: inherit;
  animation: lv-chain-progress 6s cubic-bezier(0.55, 0.08, 0.68, 0.53) infinite;
}

.lv-chain__bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  inline-size: 0.5rem;
  block-size: 0.5rem;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 10px rgb(134 239 172 / 70%);
  transform: translate(-50%, -50%);
  animation: lv-chain-marker 6s cubic-bezier(0.55, 0.08, 0.68, 0.53) infinite;
}

@keyframes lv-chain-progress {
  0% {
    inline-size: 0%;
  }

  18% {
    inline-size: 24%;
  }

  36% {
    inline-size: 48%;
  }

  54% {
    inline-size: 74%;
  }

  72% {
    inline-size: 100%;
  }

  92% {
    inline-size: 100%;
  }

  100% {
    inline-size: 0%;
  }
}

@keyframes lv-chain-marker {
  0% {
    left: 0%;
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  18% {
    left: 24%;
  }

  36% {
    left: 48%;
  }

  54% {
    left: 74%;
  }

  72% {
    left: 100%;
  }

  92% {
    left: 100%;
    opacity: 1;
  }

  100% {
    left: 0%;
    opacity: 0;
  }
}

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

.lv-chain__phase {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(35%);
  animation: lv-chain-phase 6s linear infinite;
}

.lv-chain__phase--1 {
  animation-delay: 0s;
}

.lv-chain__phase--2 {
  animation-delay: 1.08s;
}

.lv-chain__phase--3 {
  animation-delay: 2.16s;
}

.lv-chain__phase--4 {
  animation-delay: 3.24s;
}

.lv-chain__phase--5 {
  animation-delay: 4.32s;
}

@keyframes lv-chain-phase {
  0%,
  22% {
    opacity: 1;
    transform: translateY(0);
  }

  28%,
  100% {
    opacity: 0;
    transform: translateY(-30%);
  }
}

/* ── 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::before,
  .lv-chain__bar::after,
  .lv-chain__phase {
    animation: none;
  }

  .lv-chain__bar::before {
    inline-size: 100%;
  }

  .lv-chain__bar::after {
    left: 100%;
    opacity: 1;
  }

  .lv-chain__phase {
    opacity: 0;
    transform: none;
  }

  .lv-chain__phase--5 {
    opacity: 1;
    position: relative;
  }

  .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-artifacts__inner,
  .landing-faq__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;
}

.landing-section-note {
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(148 163 184 / 45%);
  margin: 0.75rem 0 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;
}

.landing-pipeline__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (width <= 900px) {
  .landing-pipeline__steps {
    grid-template-columns: 1fr;
  }
}

.landing-pipeline__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border-radius: 1rem;
  min-block-size: 100%;
}

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

.landing-pipeline__step: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__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 2.35rem;
  block-size: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgb(96 165 250 / 28%);
  background: rgb(14 28 52 / 58%);
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.625rem;
  font-weight: 700;
  color: #93c5fd;
  letter-spacing: 0.08em;
}

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

.landing-pipeline__step-desc {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
}

.landing-pipeline__detail-link {
  margin: 2rem 0 0;
  text-align: center;
}

.landing-pipeline__detail-link a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
  text-decoration: none;
  border-bottom: 1px solid rgb(147 197 253 / 35%);
  padding-bottom: 0.2rem;
}

.landing-pipeline__detail-link a:hover,
.landing-pipeline__detail-link a:focus-visible {
  color: #bfdbfe;
  border-bottom-color: rgb(191 219 254 / 65%);
}

/* ── 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;
}

/* ── Artifacts / Sample Output Section ──────────────────────────────────── */

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

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

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

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

.landing-artifacts__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--landing-glass-surface);
  border: 1px solid var(--glass-edge);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  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%);
  backdrop-filter: blur(var(--landing-glass-blur)) saturate(145%);
}

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

.landing-artifacts__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-artifacts__card-preview {
  margin-bottom: 1.5rem;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid rgb(59 130 246 / 12%);
}

.artifact-mock {
  padding: 0 1.25rem 1.25rem;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.75rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.artifact-mock__header {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 0.25rem;
}

.artifact-mock__line {
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── per-type tints ───────────────────────────────────────────────────── */

.artifact-mock--pdf {
  background: rgb(4 12 28 / 90%);
}

.artifact-mock--json {
  background: rgb(4 16 10 / 90%);
}

.artifact-mock--report {
  background: rgb(18 13 4 / 90%);
}

/* ── window chrome bar ────────────────────────────────────────────────── */

.artifact-mock__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline: -1.25rem;
  padding: 0.4375rem 1.25rem;
  background: rgb(0 0 0 / 22%);
  border-bottom: 1px solid rgb(255 255 255 / 5%);
}

.artifact-mock__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.artifact-mock--pdf .artifact-mock__dot {
  background: #60a5fa;
}

.artifact-mock--json .artifact-mock__dot {
  background: #34d399;
}

.artifact-mock--report .artifact-mock__dot {
  background: #fbbf24;
}

.artifact-mock__filename {
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: rgb(148 163 184 / 65%);
}

/* ── JSON syntax coloring ─────────────────────────────────────────────── */

.json-key {
  color: #93c5fd;
}

.json-string {
  color: #86efac;
}

.json-number {
  color: #fcd34d;
}

/* ── card-level type accent ───────────────────────────────────────────── */

.landing-artifacts__card--pdf {
  border-top-color: rgb(96 165 250 / 25%);
}

.landing-artifacts__card--json {
  border-top-color: rgb(52 211 153 / 25%);
}

.landing-artifacts__card--log {
  border-top-color: rgb(251 191 36 / 25%);
}

/* ── tier badge ───────────────────────────────────────────────────────── */

.tier-badge {
  display: inline-block;
  padding: 0.1875rem 0.5rem;
  margin-block-end: 0.875rem;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.25rem;
  border: 1px solid currentcolor;
}

.tier-badge--starter {
  color: rgb(96 165 250 / 75%);
  background: rgb(96 165 250 / 8%);
}

.tier-badge--core {
  color: rgb(52 211 153 / 75%);
  background: rgb(52 211 153 / 8%);
}

.tier-badge--all {
  color: rgb(148 163 184 / 65%);
  background: rgb(148 163 184 / 8%);
}

.landing-artifacts__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-artifacts__card-body {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  flex: 1 1 auto;
}

/* ── FAQ Section ───────────────────────────────────────────────────────── */

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

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

.landing-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.landing-faq__item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--landing-glass-surface);
  border: 1px solid var(--glass-edge);
  border-radius: 0.875rem;
  box-shadow:
    var(--glass-shadow-soft),
    inset 0 1px 0 rgb(255 255 255 / 5%);
  backdrop-filter: blur(var(--landing-glass-blur)) saturate(145%);
}

.landing-faq__question {
  margin: 0;
}

.landing-faq__question button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #f0f4ff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease;
  font-family: inherit;
}

.landing-faq__question button:hover,
.landing-faq__question button:focus-visible {
  color: #93c5fd;
}

.landing-faq__question button:focus-visible {
  outline: 2px solid #f7b32b;
  outline-offset: -2px;
}

.landing-faq__question button::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: #93c5fd;
  transition: transform 200ms ease;
}

.landing-faq__question button[aria-expanded="true"]::after {
  content: "−";
  transform: rotate(0deg);
}

.landing-faq__answer {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  color: #9ca3af;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.landing-faq__answer p {
  margin: 0;
}

.landing-faq__answer p + p {
  margin-top: 0.75rem;
}

.landing-faq__answer a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-faq__answer a:hover,
.landing-faq__answer a:focus-visible {
  color: #bfdbfe;
}

/* ── 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-artifacts::before,
.landing-faq::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);
}

/* Artifacts: warm amber glow (output zone) */
.landing-artifacts::before {
  background:
    radial-gradient(ellipse 70% 35% at 50% 0%, rgb(217 175 103 / 4%), transparent),
    radial-gradient(ellipse 60% 30% at 40% 100%, rgb(139 92 42 / 3%), transparent);
}

/* FAQ: cool sapphire glow (trust zone) */
.landing-faq::before {
  background:
    radial-gradient(ellipse 70% 35% at 50% 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: #fff;
  margin: 0 0 1rem;
  padding: 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 8px rgb(255 255 255 / 35%),
    0 0 16px rgb(255 255 255 / 20%),
    0 0 24px rgb(247 179 43 / 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: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  transition:
    color 200ms ease,
    background 200ms ease,
    text-shadow 200ms ease;
  font-weight: 500;
  text-shadow:
    0 0 8px rgb(255 255 255 / 35%),
    0 0 16px rgb(255 255 255 / 20%),
    0 0 24px rgb(247 179 43 / 12%);
  padding: 0.25rem 0.35rem;
  border-radius: 0.25rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 2%) 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, rgb(247 179 43 / 15%) 0%, rgb(247 179 43 / 8%) 100%);
  text-shadow:
    0 0 10px rgb(255 255 255 / 50%),
    0 0 20px rgb(255 255 255 / 35%),
    0 0 30px rgb(247 179 43 / 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: #fff;
  font-weight: 500;
  text-shadow:
    0 0 10px rgb(255 255 255 / 40%),
    0 0 20px rgb(255 255 255 / 25%),
    0 0 30px rgb(247 179 43 / 15%);
}

.landing-footer__col-title {
  color: #fff;
  font-weight: 700;
  text-shadow:
    0 0 8px rgb(255 255 255 / 35%),
    0 0 16px rgb(255 255 255 / 20%),
    0 0 24px rgb(247 179 43 / 12%);
}

.landing-footer__bottom p {
  color: #fff;
  font-weight: 500;
  text-shadow:
    0 0 8px rgb(255 255 255 / 35%),
    0 0 16px rgb(255 255 255 / 20%),
    0 0 24px rgb(247 179 43 / 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 {
    touch-action: manipulation;
    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,
  .landing-pipeline__steps {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .landing-faq__question button {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .landing-faq__answer {
    padding: 0 1.25rem 1rem;
  }

  .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;
  }
}

/* �� Interaction QA hardening �� */
.landing-btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: none) {
  .landing-btn--primary:hover,
  .landing-btn--outline:hover {
    transform: none;
    box-shadow: none;
  }
}

/* =========================================================
   RECEIVING SECTION BLEND SYSTEM
   Goal: next section enters from hero atmosphere instead of
   starting as a hard new block
   ========================================================= */

/* Adjust selector if your first section after the hero differs.
   This targets the first major section beneath the authority hero. */
.icu-authority-hero + section,
.icu-authority-hero + .landing-section,
.icu-authority-hero + .evidence-processing-lifecycle,
.icu-authority-hero + .pipeline-lifecycle {
  position: relative;
  margin-top: -72px;
  padding-top: 132px;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 6, 14, 0.0) 0px,
      rgba(3, 6, 14, 0.78) 72px,
      rgba(3, 6, 14, 0.98) 180px,
      rgba(5, 9, 20, 1) 320px
    );
}

/* soft receiving veil */
.icu-authority-hero + section::before,
.icu-authority-hero + .landing-section::before,
.icu-authority-hero + .evidence-processing-lifecycle::before,
.icu-authority-hero + .pipeline-lifecycle::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 260px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(112, 138, 205, 0.10) 0%,
      rgba(112, 138, 205, 0.05) 26%,
      rgba(0, 0, 0, 0) 58%
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.025) 0%,
      rgba(255, 255, 255, 0.012) 18%,
      rgba(255, 255, 255, 0) 100%
    );
}

/* reduce the “circle jumps out too early” issue */
.icu-authority-hero + section .orb,
.icu-authority-hero + section .circle,
.icu-authority-hero + section .lifecycle-orb,
.icu-authority-hero + .landing-section .orb,
.icu-authority-hero + .evidence-processing-lifecycle .orb,
.icu-authority-hero + .pipeline-lifecycle .orb {
  opacity: 0.24;
  filter: blur(2px);
}

/* keep section content above the fade layer */
.icu-authority-hero + section > *,
.icu-authority-hero + .landing-section > *,
.icu-authority-hero + .evidence-processing-lifecycle > *,
.icu-authority-hero + .pipeline-lifecycle > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .icu-authority-hero + section,
  .icu-authority-hero + .landing-section,
  .icu-authority-hero + .evidence-processing-lifecycle,
  .icu-authority-hero + .pipeline-lifecycle {
    margin-top: -40px;
    padding-top: 96px;
  }
}

/* =========================================================
   Oath Standard — public duty doctrine band
   Kept separate from the Preamble to avoid source confusion.
   ========================================================= */

.oath-standard {
  position: relative;
  z-index: 2;
  margin-top: clamp(-120px, -10vh, -64px);
  padding: clamp(140px, 18vh, 220px) 20px clamp(72px, 10vh, 120px);
  background:
    linear-gradient(to bottom, rgba(3, 7, 18, 0), #030712 120px, #070b16 100%);
  color: #f8fafc;
}

.oath-standard__inner {
  width: min(920px, 100%);
  margin-inline: auto;
  border: 1px solid rgba(214, 174, 88, 0.30);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(2, 6, 23, 0.94));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.30);
  padding: clamp(24px, 4vw, 42px);
}

.oath-standard__kicker {
  margin: 0 0 12px;
  color: #d6ae58;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oath-standard h2 {
  margin: 0;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.oath-standard__lede {
  margin-top: 22px;
  color: #f8fafc;
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
  font-weight: 700;
}

.oath-standard p {
  max-width: 760px;
  color: #dbe4f0;
  line-height: 1.72;
}

.oath-standard blockquote {
  max-width: 760px;
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid rgba(214, 174, 88, 0.78);
  background: rgba(2, 6, 23, 0.56);
  color: #fff7ed;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  font-weight: 800;
  line-height: 1.55;
}

.oath-standard__note {
  color: #cbd5e1;
}

.oath-standard__closing {
  margin-bottom: 0;
  color: #f8fafc;
  font-weight: 800;
}

@media (max-width: 768px) {
  .oath-standard {
    margin-top: -72px;
    padding-top: 120px;
  }

  .oath-standard__inner {
    border-radius: 16px;
  }
}

/* =========================================================
   Oath Standard — Civic Void Bridge
   Purpose: make the space between the authority hero and
   lifecycle/Metatron section feel intentional, not empty.
   ========================================================= */

.oath-standard {
  position: relative;
  overflow: clip;
  isolation: isolate;
  margin-top: clamp(-130px, -10vh, -72px);
  padding:
    clamp(160px, 21vh, 260px)
    20px
    clamp(92px, 13vh, 150px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(214, 174, 88, 0.08), transparent 34%),
    radial-gradient(ellipse at 50% 42%, rgba(45, 74, 130, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(3, 7, 18, 0), #030712 18%, #02040a 72%, #050812 100%);
  color: #f8fafc;
}

.oath-standard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(226, 232, 240, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(214, 174, 88, 0.14) 0 1px, transparent 1px);
  background-size: 72px 72px, 138px 138px;
  background-position: 0 0, 34px 28px;
  opacity: 0.18;
}

.oath-standard::after {
  content: "";
  position: absolute;
  inset-inline: 50%;
  top: 0;
  width: min(720px, 80vw);
  height: min(720px, 80vw);
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(2, 6, 23, 0.94) 0 34%, rgba(2, 6, 23, 0.46) 35%, transparent 68%);
  box-shadow:
    0 0 120px rgba(15, 23, 42, 0.88),
    inset 0 0 80px rgba(214, 174, 88, 0.035);
  opacity: 0.78;
}

.oath-standard__inner {
  position: relative;
  width: min(880px, 100%);
  margin-inline: auto;
  border: 1px solid rgba(214, 174, 88, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.92));
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.oath-standard__inner::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(214, 174, 88, 0.18), transparent);
  opacity: 0.42;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.oath-standard blockquote {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.78), rgba(15, 23, 42, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

@media (prefers-reduced-motion: no-preference) {
  .oath-standard::before {
    animation: evident-void-drift 28s linear infinite;
  }

  @keyframes evident-void-drift {
    from {
      background-position: 0 0, 34px 28px;
    }

    to {
      background-position: 72px 72px, 172px 166px;
    }
  }
}

@media (max-width: 768px) {
  .oath-standard {
    margin-top: -84px;
    padding-top: 128px;
    padding-bottom: 84px;
  }

  .oath-standard::after {
    width: 92vw;
    height: 92vw;
  }
}

/* === EVIDENT ICU OATH MASTHEAD CARD FINAL START === */

/*
  Oath Standard final layout:
  - masthead escapes the card
  - doctrine text gets full card width
  - bridge stays compact between helicopter authority and Signal to Structure
  - desktop, tablet, and mobile stay readable
*/

.oath-standard {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: clip;
  margin-top: clamp(-76px, -6vh, -38px);
  padding:
    clamp(90px, 12vh, 148px)
    clamp(16px, 3vw, 32px)
    clamp(58px, 8vh, 96px);
  color: #f8fafc;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 7, 18, 0) 0%,
      rgba(3, 7, 18, 0.72) 18%,
      rgba(5, 10, 22, 0.92) 56%,
      rgba(8, 14, 31, 0.98) 100%
    ),
    radial-gradient(ellipse at 50% 22%, rgba(214, 174, 88, 0.08), transparent 36%),
    radial-gradient(ellipse at 22% 16%, rgba(146, 52, 78, 0.11), transparent 34%),
    radial-gradient(ellipse at 78% 42%, rgba(61, 93, 158, 0.15), transparent 42%);
}

.oath-standard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(226, 232, 240, 0.13) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(214, 174, 88, 0.10) 0 1px, transparent 1px);
  background-size: 78px 78px, 148px 148px;
  background-position: 0 0, 38px 30px;
  opacity: 0.13;
}

.oath-standard::after {
  content: "";
  position: absolute;
  inset-inline: 50%;
  top: clamp(20px, 5vh, 58px);
  z-index: -1;
  width: min(720px, 78vw);
  height: min(720px, 78vw);
  border-radius: 999px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(2, 6, 23, 0.80) 0 34%, rgba(2, 6, 23, 0.28) 45%, transparent 70%);
  opacity: 0.68;
}

.oath-standard__shell {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.oath-standard__masthead {
  width: min(980px, 100%);
  margin: 0 auto clamp(22px, 4vw, 38px);
  text-align: center;
}

.oath-standard__kicker {
  margin: 0 0 12px;
  color: #d6ae58;
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  font-weight: 950;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.oath-standard h2 {
  margin: 0;
  color: #efe2c6;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-wrap: balance;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.03),
    0 24px 90px rgba(0, 0, 0, 0.42);
}

.oath-standard__card {
  width: min(900px, 100%);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(214, 174, 88, 0.25);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.70), rgba(2, 6, 23, 0.86));
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.oath-standard__card > * {
  max-width: 760px;
  margin-inline: auto;
}

.oath-standard__card p {
  color: #cbd5e1;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.72;
}

.oath-standard__lede {
  margin-top: 0;
  color: #f8fafc !important;
  font-size: clamp(1.08rem, 1.45vw, 1.24rem) !important;
  font-weight: 850;
}

.oath-standard blockquote {
  margin-block: clamp(20px, 3vw, 30px);
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 28px);
  border-left: 4px solid rgba(214, 174, 88, 0.78);
  border-radius: 0 16px 16px 0;
  background:
    linear-gradient(90deg, rgba(214, 174, 88, 0.075), rgba(15, 23, 42, 0.20));
  color: #fff7ed;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  font-weight: 850;
  line-height: 1.55;
}

.oath-standard__note {
  color: #aeb9c9 !important;
}

.oath-standard__closing {
  margin-bottom: 0;
  color: #f8fafc !important;
  font-weight: 900;
}

.oath-standard + * {
  position: relative;
  z-index: 1;
  margin-top: clamp(-42px, -4vh, -18px);
  padding-top: clamp(58px, 8vh, 100px);
}

.oath-standard + *::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: clamp(100px, 14vh, 180px);
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(8, 14, 31, 0.94), rgba(8, 14, 31, 0));
  z-index: 0;
}

.oath-standard + * > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .oath-standard::before {
    animation: evident-oath-field-drift-final 44s linear infinite;
  }

  @keyframes evident-oath-field-drift-final {
    from {
      background-position: 0 0, 38px 30px;
    }

    to {
      background-position: 78px 78px, 186px 178px;
    }
  }
}

@media (max-width: 900px) {
  .oath-standard {
    margin-top: -58px;
    padding-top: 88px;
  }

  .oath-standard h2 {
    font-size: clamp(3rem, 13vw, 5.4rem);
  }

  .oath-standard__card {
    width: min(760px, 100%);
  }
}

@media (max-width: 560px) {
  .oath-standard {
    padding-inline: 14px;
    padding-top: 78px;
    padding-bottom: 70px;
  }

  .oath-standard__masthead {
    text-align: left;
  }

  .oath-standard h2 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .oath-standard__card {
    padding: 20px;
    border-radius: 18px;
  }

  .oath-standard__card > * {
    max-width: none;
  }

  .oath-standard blockquote {
    padding-inline: 16px;
  }
}

/* === EVIDENT ICU OATH MASTHEAD CARD FINAL END === */
