:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-elevated: #0b1628;
  --surface: rgba(10, 19, 35, 0.88);
  --surface-strong: rgba(7, 13, 24, 0.94);
  --surface-soft: rgba(17, 29, 52, 0.84);
  --surface-muted: rgba(13, 25, 46, 0.78);
  --line: rgba(142, 184, 255, 0.16);
  --line-strong: rgba(133, 194, 255, 0.32);
  --text: #edf4ff;
  --text-strong: #ffffff;
  --muted: #9aacc7;
  --muted-strong: #c6d5eb;
  --primary: #4fa3ff;
  --primary-strong: #7cd2ff;
  --violet: #8f7bff;
  --primary-soft: rgba(79, 163, 255, 0.16);
  --primary-glow: rgba(79, 163, 255, 0.28);
  --success-soft: rgba(91, 220, 177, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.32);
  --danger: #ff8d8d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(80, 149, 255, 0.14), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(143, 123, 255, 0.13), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(48, 207, 208, 0.08), transparent 28%),
    linear-gradient(180deg, #050b14 0%, #08111e 36%, #091523 100%);
  color: var(--text);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(138, 177, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 177, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 85%);
}

body::after {
  background: radial-gradient(circle at center, transparent 45%, rgba(2, 6, 12, 0.42) 100%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.page-shell-home {
  padding-top: 2.25rem;
  padding-bottom: 5.5rem;
  --hero-pointer-x: 0;
  --hero-pointer-y: 0;
}

.prismark-home {
  --prismark-blue: #2388ff;
  --prismark-cyan: #3fdcff;
  --prismark-border: rgba(110, 175, 255, 0.22);
  --prismark-border-strong: rgba(124, 205, 255, 0.42);
  --prismark-panel: linear-gradient(180deg, rgba(8, 12, 18, 0.98) 0%, rgba(5, 9, 15, 0.98) 100%);
  --prismark-panel-soft: linear-gradient(180deg, rgba(11, 17, 27, 0.96) 0%, rgba(7, 12, 20, 0.96) 100%);
  --prismark-highlight: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(63, 220, 255, 0.72));
}

.prismark-home .card {
  border-radius: 18px;
  border-color: var(--prismark-border);
  background: var(--prismark-panel);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
}

.prismark-home .card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(63, 220, 255, 0.08), transparent 18%);
}

.prismark-home .ambient-panel::after {
  inset: auto -42px -58px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 136, 255, 0.16), rgba(63, 220, 255, 0.03) 52%, transparent 72%);
  filter: blur(8px);
}

.prismark-home .button-primary {
  background: linear-gradient(135deg, #ffffff 0%, #d7ecff 12%, #3ca4ff 48%, #177fff 100%);
  color: #04101c;
  box-shadow: 0 14px 28px rgba(11, 92, 194, 0.28);
}

.prismark-home .button-primary:hover {
  box-shadow: 0 18px 34px rgba(11, 92, 194, 0.34);
}

.prismark-home .eyebrow,
.prismark-home .section-kicker {
  border-radius: 8px;
  border-color: rgba(124, 205, 255, 0.24);
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.98) 0%, rgba(8, 13, 22, 0.98) 100%);
  color: #d3ebff;
}

.prismark-home .hero-note {
  border-top-color: rgba(124, 205, 255, 0.16);
}

.prismark-home .hero-brand-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}

.prismark-home .brand-logo {
  display: block;
  width: clamp(198px, 24vw, 278px);
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 8px 20px rgba(5, 15, 30, 0.24));
  opacity: 0.96;
}

.prismark-flow {
  --prismark-blue: #2388ff;
  --prismark-cyan: #3fdcff;
  --prismark-border: rgba(110, 175, 255, 0.22);
  --prismark-border-strong: rgba(124, 205, 255, 0.42);
  --prismark-panel: linear-gradient(180deg, rgba(8, 12, 18, 0.98) 0%, rgba(5, 9, 15, 0.98) 100%);
  --prismark-panel-soft: linear-gradient(180deg, rgba(11, 17, 27, 0.96) 0%, rgba(7, 12, 20, 0.96) 100%);
}

.prismark-flow .card {
  border-radius: 18px;
  border-color: var(--prismark-border);
  background: var(--prismark-panel);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
}

.prismark-flow .card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(63, 220, 255, 0.08), transparent 18%);
}

.prismark-flow .ambient-panel::after {
  inset: auto -42px -58px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 136, 255, 0.16), rgba(63, 220, 255, 0.03) 52%, transparent 72%);
  filter: blur(8px);
}

.prismark-flow .button-primary {
  background: linear-gradient(135deg, #ffffff 0%, #d7ecff 12%, #3ca4ff 48%, #177fff 100%);
  color: #04101c;
  box-shadow: 0 14px 28px rgba(11, 92, 194, 0.28);
}

.prismark-flow .button-primary:hover {
  box-shadow: 0 18px 34px rgba(11, 92, 194, 0.34);
}

.prismark-flow .button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(163, 194, 255, 0.18);
  color: var(--text);
}

.prismark-flow .button-secondary:hover {
  border-color: rgba(124, 210, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.prismark-flow .eyebrow,
.prismark-flow .section-kicker,
.prismark-flow .legend-step,
.prismark-flow .panel-label,
.prismark-flow .signal-label {
  border-color: rgba(124, 205, 255, 0.24);
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.98) 0%, rgba(8, 13, 22, 0.98) 100%);
  color: #d3ebff;
}

.prismark-flow .brand-logo {
  display: block;
  width: clamp(198px, 24vw, 278px);
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 8px 20px rgba(5, 15, 30, 0.24));
  opacity: 0.96;
}

.narrow-shell {
  width: min(840px, calc(100% - 2rem));
}

.form-shell {
  width: min(1220px, calc(100% - 2rem));
}

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 21, 38, 0.94) 0%, rgba(8, 15, 28, 0.94) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(124, 210, 255, 0.06), transparent 44%, rgba(143, 123, 255, 0.06) 100%);
}

.ambient-panel::after {
  content: "";
  position: absolute;
  inset: auto auto -120px -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 163, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.hero,
.form-header,
.center-card {
  padding: 2.2rem;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.95fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-contained {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  isolation: isolate;
}

.hero-copy,
.hero-panel {
  display: grid;
  align-content: start;
}


.page-shell-home .hero-backdrop {
  position: relative;
  min-height: 460px;
  padding: clamp(2.35rem, 4.3vw, 3.5rem);
}

.page-shell-home .hero-copy-wide {
  position: relative;
  z-index: 2;
  max-width: min(760px, 100%);
  gap: 1.2rem;
}

.page-shell-home .hero-copy-wide p {
  max-width: 60ch;
  line-height: 1.78;
}

.page-shell-home .hero-copy-wide .lead {
  max-width: 58ch;
  font-size: 1.16rem;
  line-height: 1.82;
}

.page-shell-home .hero-copy-wide p + p {
  margin-top: 0.15rem;
}

.hero-ambient-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.96;
  background:
    radial-gradient(circle at 78% 22%, rgba(125, 183, 255, 0.14), transparent 20%),
    radial-gradient(circle at 74% 78%, rgba(63, 220, 255, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(5, 11, 20, 0.98) 0%, rgba(5, 11, 20, 0.93) 36%, rgba(5, 11, 20, 0.62) 58%, rgba(5, 11, 20, 0.74) 100%),
    linear-gradient(180deg, rgba(6, 12, 23, 0.12) 0%, rgba(8, 18, 33, 0.4) 100%);
}

.hero-ambient-visual::before,
.hero-ambient-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-ambient-visual::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%, rgba(3, 7, 14, 0.16) 100%),
    linear-gradient(90deg, rgba(4, 9, 18, 0.92) 0%, rgba(4, 9, 18, 0.74) 28%, rgba(4, 9, 18, 0.1) 52%, transparent 70%),
    linear-gradient(126deg, transparent 18%, rgba(63, 220, 255, 0.09) 18.5%, transparent 19.5%, transparent 51%, rgba(79, 163, 255, 0.08) 51.5%, transparent 52.5%);
}

.hero-ambient-visual::after {
  background:
    radial-gradient(circle at center, transparent 46%, rgba(4, 9, 18, 0.18) 100%),
    linear-gradient(90deg, rgba(5, 10, 18, 0.82) 0%, transparent 26%, transparent 72%, rgba(5, 10, 18, 0.68) 100%);
}

.hero-ambient-grid,
.hero-ambient-glow {
  position: absolute;
}

.hero-ambient-grid {
  inset: 10% 5% 12% 38%;
  background:
    linear-gradient(rgba(154, 190, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 190, 255, 0.07) 1px, transparent 1px);
  background-size: 100% 18%, 10% 100%;
  opacity: 0.2;
  transform: translate3d(calc(var(--hero-pointer-x) * -8px), calc(var(--hero-pointer-y) * -6px), 0);
  animation: ambientDrift 26s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.9) 22%, rgba(0, 0, 0, 0.88) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.9) 22%, rgba(0, 0, 0, 0.88) 100%);
}

.hero-ambient-grid-secondary {
  inset: 18% 8% 18% 48%;
  background-size: 100% 24%, 15% 100%;
  opacity: 0.11;
  transform: translate3d(calc(var(--hero-pointer-x) * 5px), calc(var(--hero-pointer-y) * -4px), 0);
}

.hero-ambient-glow {
  border-radius: 999px;
  opacity: 0.38;
}

.hero-ambient-glow-primary {
  inset: 16% auto auto 62%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(91, 211, 172, 0.11), transparent 72%);
  transform: translate3d(calc(var(--hero-pointer-x) * 8px), calc(var(--hero-pointer-y) * -10px), 0);
  animation: ambientPulse 18s ease-in-out infinite;
}

.hero-ambient-glow-secondary {
  inset: auto 5% 14% auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(129, 170, 255, 0.15), transparent 76%);
  transform: translate3d(calc(var(--hero-pointer-x) * -10px), calc(var(--hero-pointer-y) * 8px), 0);
  animation: ambientPulse 22s ease-in-out infinite reverse;
}

.page-shell-home .hero-copy-wide h1,
.page-shell-home .hero-copy-wide p {
  margin: 0;
}

.hero h1,
.form-header h1,
.center-card h1 {
  margin: 0.55rem 0 1rem;
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #9fd6ff 40%, #8f7bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead,
.form-header p:first-of-type {
  font-size: 1.12rem;
  color: var(--muted-strong);
}

.eyebrow,
.section-kicker,
.panel-label,
.legend-step,
.signal-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.panel-label,
.legend-step {
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 210, 255, 0.2);
  background: linear-gradient(180deg, rgba(17, 36, 64, 0.92) 0%, rgba(11, 24, 45, 0.92) 100%);
  color: #b8d6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.section-kicker {
  margin-bottom: 0.95rem;
}

.panel-label {
  margin-bottom: 0.85rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0.92rem 1.4rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease, color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(79, 163, 255, 0.2);
  outline-offset: 2px;
}

.button-primary {
  background: linear-gradient(135deg, #4b9fff 0%, #2f7cff 45%, #816cff 100%);
  color: #f8fbff;
  box-shadow: 0 16px 30px rgba(47, 124, 255, 0.3);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(47, 124, 255, 0.4);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(163, 194, 255, 0.18);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(124, 210, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.button-submit {
  min-width: 220px;
}

.header-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.signal-pill {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(129, 173, 255, 0.18);
  background: linear-gradient(180deg, rgba(13, 26, 47, 0.92) 0%, rgba(9, 18, 33, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.signal-pill strong {
  font-size: 0.98rem;
  color: var(--text-strong);
}

.signal-label {
  padding: 0;
  color: #8db8ea;
}

.signal-pill-compact {
  flex: 1 1 240px;
}

.hero-panel,
.form-sidebar,
.success-panel,
.list-panel {
  border: 1px solid rgba(124, 210, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 28, 50, 0.92) 0%, rgba(9, 18, 33, 0.92) 100%);
  padding: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.spotlight-panel {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(124, 210, 255, 0.04),
    0 18px 46px rgba(11, 19, 34, 0.34);
}

.hero-panel h2,
.form-sidebar h2,
.success-panel h2,
.info-card h2,
.section-block h2 {
  margin: 0 0 0.85rem;
  font-size: 1.42rem;
  line-height: 1.22;
  color: var(--text-strong);
}

.hero-note {
  margin-top: 1.1rem;
  max-width: 60ch;
  padding-top: 1rem;
  border-top: 1px solid rgba(163, 194, 255, 0.12);
  color: var(--muted);
  line-height: 1.6;
}

.info-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.05rem;
}

.homepage-section {
  position: relative;
}

.homepage-section + .homepage-section {
  margin-top: clamp(1.55rem, 3vw, 2.35rem);
}

.info-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.section-block,
.disclaimer-block,
.form-header,
.form-card,
.center-card {
  padding: 1.75rem;
}

.info-card-shell {
  outline: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    outline-color 180ms ease;
}

.info-card-shell:focus-visible {
  outline: 3px solid rgba(79, 163, 255, 0.22);
  outline-offset: 3px;
}

.info-card-summary {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
}

.info-card-summary .section-kicker,
.info-card-summary h2,
.info-card-summary h3,
.info-card-summary .info-card-affordance {
  position: relative;
  z-index: 1;
}

.info-card-reveal {
  display: grid;
  grid-template-rows: 1fr;
  margin-top: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition:
    grid-template-rows 220ms ease,
    opacity 180ms ease,
    transform 220ms ease,
    margin-top 220ms ease;
}

.info-card-reveal > * {
  min-height: 0;
}

.info-card-affordance {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.2rem;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.info-card-affordance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 210, 255, 0.28);
  background: rgba(79, 163, 255, 0.08);
  color: var(--primary-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.info-card-affordance-label {
  letter-spacing: 0.01em;
  opacity: 0.9;
  transition: color 180ms ease, opacity 180ms ease;
}

.info-card-shell:is(:hover, :focus-within, :focus-visible) {
  border-color: rgba(124, 210, 255, 0.34);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(124, 210, 255, 0.08),
    0 0 30px rgba(79, 163, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 29, 51, 0.97) 0%, rgba(9, 18, 33, 0.97) 100%);
}

.info-card-shell:is(:hover, :focus-within, :focus-visible) .info-card-affordance-icon {
  transform: rotate(135deg) scale(1.04);
  border-color: rgba(124, 210, 255, 0.48);
  background: rgba(79, 163, 255, 0.16);
  color: #ffffff;
}

.info-card-shell:is(:hover, :focus-within, :focus-visible) .info-card-affordance-label {
  color: var(--text-strong);
}

.info-card-shell .info-card-reveal p,
.info-card-shell .info-card-reveal ul,
.info-card-shell .info-card-reveal .list-panel,
.info-card-shell .info-card-reveal article {
  margin-top: 0;
  margin-bottom: 0;
}

.info-card-shell > .info-card-reveal {
  display: grid;
}

@media (hover: hover) and (pointer: fine) {
  .info-card-shell {
    cursor: default;
    transform: translateY(0);
  }

  .info-card-shell > .info-card-reveal {
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(0.45rem);
    margin-top: 0;
  }

  .info-card-shell > .info-card-reveal > * {
    overflow: hidden;
  }

  .info-card-shell:is(:hover, :focus-within, :focus-visible) {
    transform: translateY(-4px);
    border-color: rgba(124, 210, 255, 0.34);
    box-shadow:
      0 24px 54px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(124, 210, 255, 0.08),
      0 0 30px rgba(79, 163, 255, 0.08);
    background: linear-gradient(180deg, rgba(16, 29, 51, 0.97) 0%, rgba(9, 18, 33, 0.97) 100%);
  }

  .info-card-shell:is(:hover, :focus-within, :focus-visible) .info-card-affordance-icon {
    transform: rotate(135deg) scale(1.04);
    border-color: rgba(124, 210, 255, 0.48);
    background: rgba(79, 163, 255, 0.16);
    color: #ffffff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(124, 210, 255, 0.14),
      0 10px 22px rgba(8, 25, 47, 0.22);
  }

  .info-card-shell:is(:hover, :focus-within, :focus-visible) .info-card-affordance-label {
    color: var(--text-strong);
    opacity: 1;
  }

  .info-card-shell:is(:hover, :focus-within, :focus-visible) .info-card-reveal {
    display: grid;
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
    margin-top: 1rem;
  }

  .disclaimer-card-compact .info-card-reveal {
    opacity: 0.94;
  }
}

.tone-card,
.disclaimer-block-premium,
.section-block-highlight,
.form-card-premium,
.success-card-premium {
  background: linear-gradient(180deg, rgba(12, 21, 38, 0.96) 0%, rgba(8, 15, 28, 0.96) 100%);
}

.info-card p,
.section-block p,
.disclaimer-block p,
.center-card p,
.form-sidebar p,
.hero-panel p,
.hero p,
.privacy-note,
.trust-note {
  color: var(--muted);
  line-height: 1.7;
}

.info-grid-elevated .info-card,
.section-block-highlight,
.disclaimer-block-premium {
  border-color: rgba(141, 186, 255, 0.15);
}

.expectation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.25rem;
  align-items: start;
}

.expectation-grid-premium {
  align-items: stretch;
}

.feature-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted-strong);
  line-height: 1.7;
}

.feature-list li + li {
  margin-top: 0.7rem;
}

.luminous-list li::marker {
  color: var(--primary-strong);
}

.compact-list {
  padding-left: 1rem;
}

.footer-card {
  margin-top: 1rem;
}

.homepage-cta-band {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
  padding: 1.75rem;
  border-color: rgba(124, 210, 255, 0.22);
  background: linear-gradient(180deg, rgba(16, 29, 53, 0.95) 0%, rgba(9, 17, 31, 0.96) 100%);
}

.homepage-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 1.2rem;
  align-items: start;
}

.homepage-cta-copy {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.homepage-cta-band h2,
.homepage-cta-band p {
  margin: 0;
}

.homepage-cta-band .section-kicker {
  margin-bottom: 0;
}

.homepage-cta-band p {
  max-width: 58ch;
}

.homepage-cta-actions {
  margin-top: 0.4rem;
  justify-content: flex-start;
}

.homepage-cta-summary {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 1.3rem 1.35rem;
  border-color: rgba(124, 205, 255, 0.2);
  background: linear-gradient(180deg, rgba(10, 19, 32, 0.98) 0%, rgba(7, 12, 21, 0.99) 100%);
}

.homepage-cta-summary-list {
  display: grid;
  gap: 0.8rem;
}

.homepage-cta-summary-item {
  display: grid;
  gap: 0.32rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(124, 205, 255, 0.12);
}

.homepage-cta-summary-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.homepage-cta-summary-item strong {
  color: var(--text-strong);
  font-size: 0.95rem;
}

.homepage-cta-summary-item span {
  color: var(--muted-strong);
  line-height: 1.58;
}

.prismark-home .hero-backdrop {
  border-color: var(--prismark-border-strong);
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(124, 205, 255, 0.08);
}

.prismark-home .hero-ambient-visual {
  background:
    linear-gradient(90deg, rgba(2, 5, 10, 0.98) 0%, rgba(2, 5, 10, 0.92) 35%, rgba(3, 7, 13, 0.55) 62%, rgba(2, 5, 10, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 28%),
    radial-gradient(circle at 78% 26%, rgba(36, 137, 255, 0.1), transparent 18%),
    radial-gradient(circle at 72% 74%, rgba(63, 220, 255, 0.08), transparent 22%);
}

.prismark-home .hero-ambient-visual::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 24%, rgba(1, 4, 8, 0.2) 100%),
    linear-gradient(120deg, rgba(4, 8, 15, 0.96) 0%, rgba(4, 8, 15, 0.72) 22%, rgba(4, 8, 15, 0.08) 52%, transparent 72%);
}

.prismark-home .hero-ambient-visual::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(1, 3, 7, 0.16) 100%),
    radial-gradient(circle at 70% 46%, rgba(148, 202, 255, 0.06), transparent 22%);
}

.prismark-home .hero-ambient-grid {
  inset: 11% 4% 12% 44%;
  background:
    linear-gradient(rgba(163, 214, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 214, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0%, transparent 58%, rgba(91, 211, 172, 0.08) 58%, rgba(91, 211, 172, 0.02) 60%, transparent 60%);
  background-size: 100% 18%, 10% 100%, 100% 100%;
  opacity: 0.16;
}

.prismark-home .hero-ambient-grid-secondary {
  inset: 18% 8% 18% 56%;
  opacity: 0.08;
}

.prismark-home .hero-ambient-glow {
  opacity: 0.2;
}

.prismark-home .info-card-shell,
.prismark-home .section-block,
.prismark-home .disclaimer-block,
.prismark-home .homepage-cta-band {
  background: var(--prismark-panel-soft);
}

.prismark-home .info-grid-elevated .info-card {
  padding: 1.6rem;
}

.prismark-home .info-grid {
  gap: 1.35rem;
  margin-top: 1.4rem;
}

.prismark-home .info-grid-elevated .info-card .info-card-summary {
  gap: 0.75rem;
}

.prismark-home .hero-note {
  margin-top: 1.45rem;
  padding-top: 1.25rem;
  max-width: 62ch;
}

.homepage-section-insights .info-card {
  min-height: 100%;
}

.problem-card,
.difference-card,
.apply-fit-card {
  border-color: rgba(124, 205, 255, 0.2);
}

.problem-card {
  background: linear-gradient(180deg, rgba(11, 18, 30, 0.98) 0%, rgba(7, 12, 21, 0.98) 100%);
}

.difference-card {
  background: linear-gradient(180deg, rgba(10, 22, 37, 0.98) 0%, rgba(6, 13, 24, 0.98) 100%);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(63, 220, 255, 0.06);
}

.apply-fit-card {
  background: linear-gradient(180deg, rgba(12, 19, 32, 0.98) 0%, rgba(7, 12, 22, 0.98) 100%);
}

.problem-card .info-card-reveal,
.difference-card .info-card-reveal,
.apply-fit-card .info-card-reveal {
  gap: 0.95rem;
}

.problem-card .feature-list,
.apply-fit-card .feature-list,
.comparison-section .feature-list {
  padding-left: 1.05rem;
}

.problem-card .feature-list li + li,
.apply-fit-card .feature-list li + li,
.comparison-section .feature-list li + li {
  margin-top: 0.55rem;
}

.composer-section,
.comparison-section {
  padding: clamp(1.9rem, 3vw, 2.45rem);
  border-color: rgba(124, 205, 255, 0.26);
}

.composer-section .info-card-summary,
.comparison-section .info-card-summary {
  gap: 0.9rem;
}

.composer-section .info-card-reveal,
.comparison-section .info-card-reveal {
  gap: 1.35rem;
  margin-top: 1.3rem;
}

.comparison-grid,
.composer-grid {
  gap: 1.2rem;
}

.composer-explainer {
  gap: 1rem;
}

.composer-explainer p,
.composer-chain-panel .feature-list {
  margin: 0;
}

.composer-question {
  color: var(--muted-strong);
  font-weight: 600;
}

.composer-chain-panel {
  gap: 1rem;
}

.comparison-column {
  padding: 1.3rem 1.35rem 1.4rem;
  border: 1px solid rgba(124, 205, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 23, 36, 0.92) 0%, rgba(8, 15, 25, 0.98) 100%);
  display: grid;
  gap: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.comparison-column h3 {
  margin: 0;
  padding-bottom: 0.85rem;
  font-size: 1.04rem;
  border-bottom: 1px solid rgba(124, 205, 255, 0.14);
}

.comparison-column .feature-list {
  line-height: 1.68;
  padding-left: 1.08rem;
}

.comparison-column .feature-list li + li {
  margin-top: 0.72rem;
}

.comparison-column-accent {
  border-color: rgba(124, 205, 255, 0.28);
  background: linear-gradient(180deg, rgba(10, 25, 42, 0.98) 0%, rgba(6, 15, 27, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(124, 205, 255, 0.05),
    0 18px 34px rgba(6, 19, 35, 0.26);
}

.logic-example {
  max-width: 62ch;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(124, 205, 255, 0.16);
  border-left: 3px solid rgba(63, 220, 255, 0.54);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 23, 37, 0.9) 0%, rgba(8, 15, 26, 0.94) 100%);
  color: var(--muted-strong);
}

.prismark-home .info-card-shell:is(:hover, :focus-within, :focus-visible) {
  border-color: rgba(124, 205, 255, 0.32);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(124, 205, 255, 0.08);
  background: linear-gradient(180deg, rgba(13, 21, 32, 0.98) 0%, rgba(8, 14, 23, 0.98) 100%);
}

.prismark-home .info-card-affordance-icon {
  border-radius: 10px;
  border-color: rgba(124, 205, 255, 0.24);
  background: linear-gradient(180deg, rgba(11, 19, 30, 0.96) 0%, rgba(7, 12, 21, 0.96) 100%);
}

.prismark-home .homepage-cta-band {
  gap: 1.05rem;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  border-color: rgba(124, 205, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(11, 22, 38, 0.98) 0%, rgba(6, 13, 24, 0.99) 100%),
    radial-gradient(circle at 50% 0%, rgba(63, 220, 255, 0.12), transparent 34%);
}

.prismark-home .homepage-cta-band p {
  max-width: 54ch;
}

.homepage-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.88fr);
  gap: clamp(1.35rem, 3vw, 2.2rem);
  align-items: start;
}

.homepage-hero-copy {
  max-width: none;
}

.homepage-thesis {
  display: inline-flex;
  width: fit-content;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(124, 205, 255, 0.16);
  border-radius: 16px;
  background: rgba(9, 17, 29, 0.64);
  color: var(--muted-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.homepage-hero-mechanism {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.45rem;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  border: 1px solid rgba(124, 205, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(8, 18, 31, 0.96) 0%, rgba(5, 10, 18, 0.98) 100%),
    radial-gradient(circle at top right, rgba(63, 220, 255, 0.12), transparent 32%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 52px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.homepage-hero-mechanism::before,
.homepage-composer-mechanism::before {
  content: "";
  position: absolute;
  inset: auto -15% 10% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(63, 220, 255, 0.16) 0%, rgba(63, 220, 255, 0.04) 38%, transparent 72%);
  filter: blur(2px);
  opacity: 0.8;
  animation: logicGlowDrift 14s ease-in-out infinite;
}

.homepage-hero-mechanism::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 0%, rgba(90, 222, 255, 0.045) 48%, transparent 100%);
}

.homepage-hero-mechanism h2,
.homepage-support-band h2,
.homepage-section-heading h2,
.homepage-mid-cta h2,
.homepage-cta-band h2 {
  margin: 0;
}

.homepage-hero-mechanism p,
.homepage-support-band p,
.homepage-section-heading p,
.homepage-problem-story p,
.homepage-composer-copy p,
.homepage-fit-card p,
.homepage-disclaimer-copy p,
.homepage-mid-cta p {
  margin: 0;
}

.homepage-chain-card {
  display: grid;
  gap: 0.68rem;
  margin-top: 0.15rem;
}

.homepage-composer-stack {
  position: relative;
  display: grid;
  gap: 0.72rem;
}

.homepage-chain-step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.8rem 0.95rem 0.8rem 1rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(124, 205, 255, 0.16);
  background: rgba(9, 16, 28, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.homepage-chain-step::after,
.homepage-composer-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(123, 224, 255, 0.02) 0%, rgba(123, 224, 255, 0.05) 32%, rgba(123, 224, 255, 0.09) 52%, rgba(123, 224, 255, 0.04) 72%, rgba(123, 224, 255, 0.01) 100%);
  pointer-events: none;
}

.homepage-chain-step > *,
.homepage-composer-step > * {
  position: relative;
  z-index: 1;
}

.homepage-chain-step:hover,
.homepage-chain-step:focus-within,
.homepage-composer-step:hover,
.homepage-composer-step:focus-within,
.homepage-comparison-column:hover,
.homepage-comparison-column:focus-within,
.homepage-hero-mechanism:hover,
.homepage-composer-mechanism:hover {
  transform: translateY(-2px);
}

.homepage-chain-step:hover,
.homepage-chain-step:focus-within,
.homepage-composer-step:hover,
.homepage-composer-step:focus-within {
  border-color: rgba(123, 224, 255, 0.28);
  box-shadow: 0 10px 22px rgba(4, 18, 31, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.homepage-chain-step-accent {
  border-color: rgba(124, 205, 255, 0.3);
  background: linear-gradient(180deg, rgba(11, 25, 41, 0.92) 0%, rgba(7, 16, 29, 0.98) 100%);
}

.homepage-chain-index,
.homepage-composer-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  min-height: 2.2rem;
  padding: 0.2rem;
  border-radius: 12px;
  border: 1px solid rgba(124, 205, 255, 0.22);
  background: rgba(79, 163, 255, 0.1);
  color: var(--text-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(124, 205, 255, 0.05), 0 0 18px rgba(63, 220, 255, 0.08);
}

.homepage-hero-question {
  padding-top: 0.4rem;
  border-top: 1px solid rgba(124, 205, 255, 0.12);
  color: var(--muted-strong);
  font-weight: 600;
}

.homepage-support-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.45rem, 3vw, 1.85rem);
  border-color: rgba(124, 205, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(10, 18, 30, 0.96) 0%, rgba(7, 13, 23, 0.98) 100%),
    radial-gradient(circle at right center, rgba(63, 220, 255, 0.08), transparent 30%);
}

.homepage-support-copy {
  display: grid;
  gap: 0.8rem;
}

.homepage-support-points {
  display: grid;
  gap: 0.75rem;
}

.homepage-mini-point {
  padding: 1rem 1.05rem;
  border-left: 3px solid rgba(63, 220, 255, 0.54);
  border-radius: 16px;
  background: rgba(11, 19, 31, 0.9);
  color: var(--muted-strong);
  line-height: 1.65;
}

.homepage-section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.homepage-section-heading-wide {
  max-width: 68ch;
}

.homepage-comparison-heading {
  max-width: none;
  margin-bottom: 0.9rem;
}

.homepage-comparison-heading h2 {
  max-width: none;
  letter-spacing: -0.015em;
}

.homepage-problem-grid,
.homepage-composer-grid,
.homepage-comparison-grid {
  display: grid;
  gap: 1.2rem;
}

.homepage-problem-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.homepage-problem-story,
.homepage-problem-points,
.homepage-comparison-column,
.homepage-fit-card,
.homepage-composer-mechanism {
  padding: 1.45rem;
}

.homepage-problem-story {
  display: grid;
  gap: 1rem;
}

.homepage-problem-points {
  display: grid;
  gap: 1rem;
}

.homepage-problem-points h3,
.homepage-composer-copy h3,
.homepage-composer-mechanism h3,
.homepage-comparison-column h3,
.homepage-fit-card h3 {
  margin: 0;
}

.homepage-composer-section,
.homepage-comparison-section,
.homepage-disclaimer-section {
  padding: clamp(1.7rem, 3vw, 2.35rem);
}

.homepage-composer-section {
  border-color: rgba(124, 205, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(9, 18, 31, 0.98) 0%, rgba(5, 11, 19, 0.99) 100%),
    radial-gradient(circle at top right, rgba(35, 136, 255, 0.11), transparent 34%);
}

.homepage-composer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: start;
}

.homepage-composer-explainer {
  display: grid;
  align-content: start;
  gap: 1.35rem;
}

.homepage-composer-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding-right: 0.2rem;
}

.homepage-composer-mechanism {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(124, 205, 255, 0.22);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 23, 38, 0.94) 0%, rgba(7, 14, 25, 0.98) 100%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.homepage-composer-step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0.95rem 0.85rem 1rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(124, 205, 255, 0.14);
  background: rgba(8, 15, 26, 0.76);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.homepage-composer-step-outcome {
  border-color: rgba(124, 205, 255, 0.28);
  background: linear-gradient(180deg, rgba(12, 27, 44, 0.88) 0%, rgba(7, 16, 29, 0.96) 100%);
}

.logic-example-tight {
  margin: 0;
}

.homepage-comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.homepage-comparison-column {
  position: relative;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(124, 205, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(12, 21, 34, 0.92) 0%, rgba(8, 15, 25, 0.98) 100%);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.homepage-comparison-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 205, 255, 0.04), rgba(124, 205, 255, 0.42), rgba(124, 205, 255, 0.04));
}

.homepage-comparison-column::after {
  content: "";
  position: absolute;
  top: 1.05rem;
  right: 1.15rem;
  width: 5.2rem;
  height: 1.25rem;
  pointer-events: none;
  opacity: 0.75;
}

.homepage-comparison-column-muted {
  opacity: 0.96;
}

.homepage-comparison-column-muted::after {
  background:
    radial-gradient(circle at 0.45rem 50%, rgba(162, 177, 202, 0.64) 0 0.22rem, transparent 0.26rem),
    radial-gradient(circle at 2.55rem 50%, rgba(162, 177, 202, 0.58) 0 0.22rem, transparent 0.26rem),
    radial-gradient(circle at 4.65rem 50%, rgba(162, 177, 202, 0.52) 0 0.22rem, transparent 0.26rem);
}

.homepage-comparison-column-accent,
.homepage-fit-card-accent {
  border-color: rgba(124, 205, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(124, 205, 255, 0.05),
    0 18px 34px rgba(6, 19, 35, 0.22);
  background: linear-gradient(180deg, rgba(10, 25, 42, 0.96) 0%, rgba(6, 15, 27, 0.99) 100%);
}

.homepage-comparison-column-accent::after {
  background:
    linear-gradient(90deg, rgba(63, 220, 255, 0.08) 0%, rgba(63, 220, 255, 0.5) 18%, rgba(63, 220, 255, 0.5) 82%, rgba(63, 220, 255, 0.08) 100%),
    radial-gradient(circle at 0.45rem 50%, rgba(176, 246, 255, 0.96) 0 0.22rem, transparent 0.26rem),
    radial-gradient(circle at 2.6rem 50%, rgba(111, 231, 255, 0.9) 0 0.22rem, transparent 0.26rem),
    radial-gradient(circle at 4.75rem 50%, rgba(83, 223, 255, 0.86) 0 0.22rem, transparent 0.26rem);
}

.homepage-comparison-column:hover,
.homepage-comparison-column:focus-within,
.homepage-hero-mechanism:hover,
.homepage-composer-mechanism:hover {
  border-color: rgba(124, 205, 255, 0.28);
  box-shadow: 0 20px 40px rgba(4, 17, 31, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.homepage-fit-grid {
  gap: 1.2rem;
}

.homepage-beta-clarity-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 1.2rem;
  align-items: start;
  margin-bottom: 1.2rem;
}

.homepage-beta-clarity-copy {
  margin-bottom: 0;
}

.homepage-beta-summary {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 1.3rem 1.35rem;
  border-color: rgba(124, 205, 255, 0.22);
  background: linear-gradient(180deg, rgba(11, 20, 34, 0.98) 0%, rgba(7, 13, 23, 0.99) 100%);
}

.homepage-beta-summary-list {
  display: grid;
  gap: 0.8rem;
}

.homepage-beta-summary-item {
  display: grid;
  gap: 0.32rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(124, 205, 255, 0.12);
}

.homepage-beta-summary-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.homepage-beta-summary-item strong {
  color: var(--text-strong);
  font-size: 0.95rem;
}

.homepage-beta-summary-item span {
  color: var(--muted-strong);
  line-height: 1.58;
}

/* Private beta route panel — numbered progress cue (01 / 02 / 03) */
.homepage-route-panel .homepage-beta-summary-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 0.85rem;
  row-gap: 0.2rem;
}

.homepage-route-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  height: 1.55rem;
  padding: 0 0.4rem;
  border: 1px solid rgba(124, 205, 255, 0.28);
  border-radius: 6px;
  background: rgba(8, 14, 24, 0.7);
  color: var(--text-strong);
  font-family: "JetBrains Mono", "Fira Mono", "SFMono-Regular", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  align-self: start;
  margin-top: 0.05rem;
}

.homepage-route-body {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.homepage-route-body strong {
  color: var(--text-strong);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.homepage-route-body span {
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .homepage-route-panel .homepage-beta-summary-item {
    column-gap: 0.7rem;
  }
}

@media (max-width: 420px) {
  .homepage-route-panel .homepage-beta-summary-item {
    grid-template-columns: minmax(0, 1fr);
  }
  .homepage-route-step {
    justify-self: start;
  }
}

.homepage-fit-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  border-color: rgba(124, 205, 255, 0.2);
  background: linear-gradient(180deg, rgba(11, 19, 32, 0.98) 0%, rgba(7, 12, 22, 0.98) 100%);
}

.homepage-disclaimer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.86fr);
  gap: 1.2rem;
  align-items: start;
}

.homepage-disclaimer-heading {
  margin-bottom: 0;
}

.homepage-disclaimer-copy {
  display: grid;
  gap: 0.95rem;
  max-width: 68ch;
}

.homepage-disclaimer-summary {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 1.3rem 1.35rem;
  border-color: rgba(124, 205, 255, 0.2);
  background: linear-gradient(180deg, rgba(10, 19, 32, 0.98) 0%, rgba(7, 12, 21, 0.99) 100%);
}

.homepage-disclaimer-summary-list {
  display: grid;
  gap: 0.8rem;
}

.homepage-disclaimer-summary-item {
  display: grid;
  gap: 0.32rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(124, 205, 255, 0.12);
}

.homepage-disclaimer-summary-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.homepage-disclaimer-summary-item strong {
  color: var(--text-strong);
  font-size: 0.95rem;
}

.homepage-disclaimer-summary-item span {
  color: var(--muted-strong);
  line-height: 1.58;
}

@media (max-width: 980px) {
  .homepage-hero-layout,
  .homepage-support-band,
  .homepage-problem-grid,
  .homepage-composer-grid,
  .homepage-comparison-grid,
  .homepage-beta-clarity-intro,
  .homepage-disclaimer-layout,
  .homepage-cta-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .homepage-hero-mechanism,
  .homepage-problem-story,
  .homepage-problem-points,
  .homepage-composer-mechanism,
  .homepage-comparison-column,
  .homepage-fit-card,
  .homepage-support-band,
  .homepage-composer-section,
  .homepage-comparison-section,
  .homepage-disclaimer-section {
    padding: 1.25rem;
  }

  .homepage-chain-step,
  .homepage-composer-step {
    grid-template-columns: 1fr;
  }

  .homepage-comparison-column::after {
    display: none;
  }
}

@keyframes logicGlowDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.56;
  }

  50% {
    transform: translate3d(-8px, 10px, 0) scale(1.04);
    opacity: 0.9;
  }
}

@keyframes ambientDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-10px, 8px, 0);
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.02);
  }
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.82fr);
  gap: 1rem;
  align-items: start;
}

.form-main-column {
  display: grid;
  gap: 1rem;
}

.form-sidebar {
  position: sticky;
  top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.form-sidebar-premium {
  padding-top: 1.65rem;
}

.sidebar-panel {
  padding-top: 1rem;
  border-top: 1px solid rgba(163, 194, 255, 0.12);
}

.sidebar-panel h3,
.section-block h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--text-strong);
}

.sidebar-panel-muted,
.success-panel-muted {
  background: linear-gradient(180deg, rgba(19, 35, 61, 0.84) 0%, rgba(12, 22, 39, 0.92) 100%);
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(141, 186, 255, 0.14);
}

.application-form {
  display: grid;
  gap: 1.5rem;
}

.form-section {
  border: 1px solid rgba(141, 186, 255, 0.12);
  border-radius: 24px;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(13, 24, 43, 0.92) 0%, rgba(9, 17, 31, 0.94) 100%);
}

.form-section legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.4rem;
  font-weight: 800;
  color: var(--text-strong);
}

.legend-step {
  font-size: 0.68rem;
  color: #9fcbff;
}

.field-group {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

label {
  font-weight: 700;
  color: var(--text-strong);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(147, 186, 255, 0.16);
  border-radius: 16px;
  background: rgba(7, 15, 28, 0.84);
  padding: 0.98rem 1rem;
  font: inherit;
  color: var(--text);
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease, transform 140ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(162, 182, 212, 0.72);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(124, 210, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(79, 163, 255, 0.12), 0 0 24px rgba(79, 163, 255, 0.12);
  background: rgba(8, 18, 33, 0.96);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.option-group {
  display: grid;
  gap: 0.8rem;
}

.option-group-radio {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.option-group-checkbox {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.option-stack {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.option-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(147, 186, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 25, 45, 0.9) 0%, rgba(9, 18, 33, 0.95) 100%);
  padding: 1rem 1rem;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease, transform 140ms ease;
}

.option-item:hover {
  border-color: rgba(124, 210, 255, 0.34);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.option-item:has(input:checked) {
  border-color: rgba(124, 210, 255, 0.5);
  background: linear-gradient(180deg, rgba(18, 39, 70, 0.96) 0%, rgba(10, 22, 40, 0.96) 100%);
  box-shadow: 0 0 0 1px rgba(79, 163, 255, 0.16), 0 0 28px rgba(79, 163, 255, 0.1);
}

.option-item input {
  width: auto;
  min-width: 18px;
  margin: 0.18rem 0 0;
  padding: 0;
  border: none;
  box-shadow: none;
  accent-color: var(--primary);
  flex: 0 0 auto;
  background: transparent;
}

.option-item span {
  flex: 1;
}

.multi-input-group {
  display: grid;
  gap: 0.75rem;
}

.multi-input-list {
  display: grid;
  gap: 0.75rem;
}

.multi-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
}

.button-inline {
  justify-self: start;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.button-inline-danger {
  min-width: 5.8rem;
}

.other-detail-input {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  padding-top: 0.1rem;
}

.other-detail-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-strong);
}

.is-hidden {
  display: none;
}

@media (max-width: 680px) {
  .multi-input-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.field-help {
  margin: -0.08rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.required-mark {
  color: var(--danger);
}

.field-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.92rem;
}

.privacy-note-premium,
.trust-note-premium {
  border-left: 3px solid rgba(124, 210, 255, 0.34);
  padding-left: 1rem;
}

.trust-note {
  border-top: 1px solid rgba(163, 194, 255, 0.12);
  padding-top: 0.9rem;
}

.trust-note h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--text-strong);
}

.center-card {
  text-align: left;
}

.success-card {
  display: grid;
  gap: 0.55rem;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.flow-hero {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  margin-bottom: 0.6rem;
}

.flow-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(270px, 0.84fr);
  gap: 0.8rem;
  align-items: start;
}

.flow-hero-copy,
.flow-hero-side,
.flow-sidebar-stack {
  display: grid;
  gap: 1rem;
}

.flow-hero-copy {
  gap: 0.65rem;
  align-content: start;
}

.prismark-flow .flow-hero-copy .hero-brand-row,
.prismark-flow .flow-hero-copy h1 {
  margin: 0;
}

.flow-intro-list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-intro-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  margin: 0;
  padding: 0.15rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.flow-intro-list li + li {
  padding-top: 0.45rem;
  border-top: 1px solid rgba(124, 205, 255, 0.1);
}

.flow-intro-list li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: rgba(124, 210, 255, 0.74);
  box-shadow: 0 0 10px rgba(79, 163, 255, 0.16);
}

.flow-intro-list li span {
  display: block;
}

.flow-hero-copy h1,
.flow-form-intro h2,
.flow-sidebar h2,
.flow-thankyou-card h1 {
  letter-spacing: -0.04em;
}

.flow-hero-side,
.flow-sidebar-panel,
.flow-thankyou-panel,
.flow-thankyou-panel-muted,
.flow-hero-note,
.flow-disclaimer-block {
  border: 1px solid rgba(124, 205, 255, 0.12);
  border-radius: 20px;
  background: var(--prismark-panel-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.flow-hero-side {
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-color: rgba(124, 205, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 15, 24, 0.72) 0%, rgba(7, 12, 20, 0.62) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.flow-hero-note,
.flow-thankyou-note {
  padding: 1.15rem;
}

.ambient-brief {
  position: relative;
  padding: 0.95rem 1.05rem 1rem;
}

.flow-brief-header,
.flow-brief-list,
.flow-brief-note {
  position: relative;
}

.flow-brief-header {
  display: grid;
  gap: 0.34rem;
  padding-bottom: 0.62rem;
  border-bottom: 1px solid rgba(124, 205, 255, 0.08);
}

.flow-brief-header h2 {
  margin: 0;
}

.flow-brief-list {
  gap: 0.38rem;
  padding-left: 1.3rem;
  margin-top: 0.08rem;
}

.flow-brief-list li {
  padding: 0.22rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.flow-brief-list li + li {
  border-top: 1px solid rgba(124, 205, 255, 0.08);
  padding-top: 0.55rem;
}

.flow-brief-list li::marker {
  color: rgba(143, 210, 255, 0.66);
}

.flow-brief-note {
  background:
    linear-gradient(180deg, rgba(10, 17, 27, 0.72) 0%, rgba(7, 12, 20, 0.66) 100%),
    linear-gradient(135deg, rgba(63, 220, 255, 0.025), transparent 58%);
}

.flow-hero-note-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: stretch;
  padding: 0.62rem 0.78rem;
  border-color: rgba(124, 205, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(9, 14, 22, 0.52) 0%, rgba(7, 12, 20, 0.42) 100%),
    linear-gradient(135deg, rgba(63, 220, 255, 0.015), transparent 62%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.flow-strip-block {
  display: grid;
  gap: 0.22rem;
  align-content: start;
  min-width: 0;
}

.flow-strip-block + .flow-strip-block {
  padding-inline-start: 0.55rem;
  border-inline-start: 1px solid rgba(124, 205, 255, 0.08);
}

.flow-hero-note-strip h3,
.flow-hero-note-strip p {
  margin: 0;
}

.flow-form-divider {
  display: flex;
  justify-content: center;
  margin: 0 0 0.8rem;
}

.flow-form-divider-line {
  width: min(100%, 1120px);
  height: 1px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(124, 205, 255, 0.12) 18%, rgba(124, 205, 255, 0.45) 50%, rgba(124, 205, 255, 0.12) 82%, transparent 100%);
  box-shadow: 0 0 18px rgba(63, 220, 255, 0.12);
}

.flow-hero-note h3,
.flow-sidebar-panel h3,
.flow-thankyou-note h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  color: var(--text-strong);
}

.flow-hero-note p,
.flow-sidebar-panel p,
.flow-thankyou-note p {
  margin: 0;
}

.flow-brief-note p + p {
  margin-top: 0.7rem;
}

.flow-form-card {
  padding: clamp(1.2rem, 2.3vw, 1.65rem);
}

.flow-form-intro {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}

.flow-form-intro h2,
.flow-sidebar h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-strong);
}

.flow-form-intro p,
.flow-sidebar > p {
  margin: 0;
}

.prismark-flow .application-form {
  gap: 1.35rem;
}

.prismark-flow .form-section {
  padding: 1.15rem;
  border-color: rgba(124, 205, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(12, 18, 28, 0.98) 0%, rgba(7, 12, 20, 0.98) 100%),
    linear-gradient(135deg, rgba(63, 220, 255, 0.04), transparent 40%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.prismark-flow .form-section legend {
  gap: 0.8rem;
}

.prismark-flow .field-group {
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.prismark-flow input,
.prismark-flow select,
.prismark-flow textarea {
  border-color: rgba(124, 205, 255, 0.16);
  background: rgba(6, 12, 20, 0.88);
}

.prismark-flow input:focus,
.prismark-flow select:focus,
.prismark-flow textarea:focus {
  border-color: rgba(124, 210, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(79, 163, 255, 0.12), 0 0 24px rgba(79, 163, 255, 0.12);
  background: rgba(8, 15, 24, 0.96);
}

.prismark-flow .option-item {
  border-color: rgba(124, 205, 255, 0.14);
  background: linear-gradient(180deg, rgba(11, 17, 27, 0.96) 0%, rgba(7, 12, 20, 0.98) 100%);
}

.prismark-flow .option-item:hover {
  border-color: rgba(124, 205, 255, 0.32);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.prismark-flow .option-item:has(input:checked) {
  border-color: rgba(124, 205, 255, 0.5);
  background: linear-gradient(180deg, rgba(13, 28, 45, 0.98) 0%, rgba(7, 15, 24, 0.98) 100%);
  box-shadow: 0 0 0 1px rgba(79, 163, 255, 0.16), 0 0 28px rgba(79, 163, 255, 0.1);
}

.flow-disclaimer-block {
  padding: 1.15rem;
  border-top: none;
}

.flow-disclaimer-block h2,
.flow-thankyou-panel h2,
.flow-thankyou-panel-muted h2 {
  margin: 0 0 0.55rem;
}

.flow-sidebar {
  padding: 1.3rem;
  gap: 0.9rem;
}

.flow-sidebar-panel {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(124, 205, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.9) 0%, rgba(8, 14, 24, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.flow-sidebar-panel h3 {
  margin: 0 0 0.45rem;
}

.flow-sidebar-stack {
  gap: 0.75rem;
}

.flow-sidebar-panel-muted {
  padding: 1rem;
}

.flow-thankyou-card {
  gap: 1rem;
}

.flow-thankyou-signals {
  margin-top: 0;
}

.flow-thankyou-grid {
  margin-top: 0;
}

.flow-thankyou-panel,
.flow-thankyou-panel-muted {
  padding: 1.15rem;
}

.flow-thankyou-note {
  margin-top: 0.25rem;
}

@media (max-width: 980px) {
  .hero-split,
  .form-layout,
  .expectation-grid,
  .success-grid,
  .info-grid-three,
  .hero-contained,
  .flow-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-shell-home .hero-backdrop {
    min-height: 420px;
  }

  .hero-ambient-grid {
    inset-inline-start: 32%;
  }

  .flow-hero-side {
    order: 2;
  }

  .flow-hero-note-strip {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .flow-strip-block + .flow-strip-block {
    padding-inline-start: 0;
    padding-top: 0.55rem;
    border-inline-start: 0;
    border-top: 1px solid rgba(124, 205, 255, 0.12);
  }

  .form-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  .page-shell,
  .form-shell,
  .narrow-shell {
    width: min(100% - 1rem, 1180px);
    padding: 1rem 0 2.5rem;
  }

  .hero,
  .form-header,
  .center-card,
  .info-card,
  .section-block,
  .disclaimer-block,
  .form-card,
  .homepage-cta-band {
    padding: 1.45rem;
  }

  .hero h1,
  .form-header h1,
  .center-card h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .form-actions,
  .homepage-cta-actions {
    flex-direction: column;
  }

  .comparison-section .info-card-reveal {
    gap: 1rem;
  }

  .comparison-column,
  .logic-example {
    padding: 1.05rem;
  }

  .flow-hero,
  .flow-sidebar,
  .flow-form-card,
  .flow-thankyou-card {
    padding: 1.2rem;
  }

  .hero-actions .button,
  .form-actions .button,
  .homepage-cta-actions .button {
    width: 100%;
  }

  .form-section {
    padding: 1rem;
  }

  .option-group-radio,
  .option-group-checkbox {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .form-shell,
  .narrow-shell {
    width: min(100% - 0.75rem, 1180px);
  }

  .hero,
  .form-header,
  .center-card,
  .info-card,
  .section-block,
  .disclaimer-block,
  .form-card,
  .hero-panel,
  .form-sidebar,
  .success-panel,
  .list-panel,
  .form-section,
  .signal-pill {
    border-radius: 22px;
  }

  .hero-contained {
    gap: 1rem;
  }

  .page-shell-home .hero-backdrop {
    min-height: 380px;
    padding: 1.7rem 1.45rem;
  }

  .page-shell-home .hero-copy-wide {
    max-width: 100%;
  }

  .page-shell-home .hero-copy-wide p,
  .prismark-home .homepage-cta-band p,
  .logic-example {
    max-width: 100%;
  }

  .comparison-section {
    padding: 1.45rem;
  }

  .comparison-column,
  .logic-example {
    border-radius: 16px;
  }

  .flow-hero-grid {
    gap: 0.85rem;
  }

  .hero-ambient-grid {
    inset: 18% 4% 12% 24%;
  }

  .option-item {
    align-items: flex-start;
  }

  .eyebrow,
  .section-kicker,
  .panel-label,
  .legend-step {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-ambient-grid,
  .hero-ambient-glow,
  .hero-ambient-grid-secondary,
  .hero-ambient-visual::after,
  .homepage-hero-mechanism::before,
  .homepage-composer-mechanism::before,
  .homepage-chain-step::after,
  .homepage-composer-step::after {
    animation: none !important;
    transform: none !important;
  }
}
