/* Selbst gehostete Schriften (kein Drittanbieter-Request, kein Consent nötig).
   Beide Familien sind Variable Fonts (OFL-lizenziert), daher je Subset eine Datei. */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #090f17;
  --bg-2: #111a25;
  --panel: linear-gradient(180deg, rgba(20, 27, 38, 0.94), rgba(10, 17, 26, 0.96));
  --panel-strong: #18283c;
  --text: #edf6ff;
  --muted: #9cb2c7;
  --line: rgba(147, 188, 220, 0.16);
  --orange: #e8601c;
  --orange-2: #f0854a;
  --orange-3: #f6b88f;
  --blue: #1e3a8c;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(2, 8, 16, 0.48);
  --shadow-soft: 0 1.35rem 3rem rgba(0, 0, 0, 0.28);
  --section-copy-max: 56rem;
  --section-grid-max: 72rem;
  --section-wide-max: 76rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;

  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(60% 40% at 12% -5%, rgba(232, 96, 28, 0.22), transparent 60%),
    radial-gradient(38% 30% at 88% 0%, rgba(30, 58, 140, 0.22), transparent 70%),
    linear-gradient(180deg, #070d15 0%, #0a121d 42%, #0c1420 100%);
  overflow-x: clip;
}

body.trial-modal-open {
  overflow: hidden;
}

body.has-mouse-glow::after {
  content: "";
  position: fixed;
  left: var(--mx, 50vw);
  top: var(--my, 50vh);
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -2;
  background: radial-gradient(circle, rgba(232, 96, 28, 0.16), rgba(232, 96, 28, 0) 70%);
  opacity: var(--glow-opacity, 0);
  transition: left 120ms linear, top 120ms linear, opacity 220ms ease;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 88%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #e8601c, #f0854a);
  box-shadow: 0 0 10px rgba(232, 96, 28, 0.45);
  z-index: 120;
}

.page-shell,
.topbar,
.footer {
  width: min(1200px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.topbar {
  margin-top: 0.8rem;
  position: sticky;
  top: 0.75rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.78rem 0.98rem;
  border: 1px solid rgba(147, 188, 220, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(12, 19, 29, 0.8), rgba(8, 14, 23, 0.9));
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(232, 96, 28, 0.03),
    0 1.2rem 2.6rem rgba(0, 0, 0, 0.2);
  transition: padding 0.22s ease, background 0.22s ease, backdrop-filter 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.topbar.is-compact {
  padding: 0.58rem 0.86rem;
  background:
    linear-gradient(180deg, rgba(10, 16, 25, 0.9), rgba(7, 13, 21, 0.96));
  backdrop-filter: blur(24px);
  border-color: rgba(147, 188, 220, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(232, 96, 28, 0.06),
    0 1.35rem 2.8rem rgba(0, 0, 0, 0.25);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.topbar-actions .btn {
  min-width: 10.4rem;
  min-height: 3.3rem;
  padding-inline: 0.95rem;
}

.topbar-login-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
  border-radius: 0.7rem;
  transition: color 0.18s ease, background 0.18s ease;
}

.topbar-login-link:hover,
.topbar-login-link:focus-visible {
  color: var(--text);
  background: rgba(147, 188, 220, 0.08);
}

.topbar-login-link:focus-visible {
  outline: 2px solid rgba(232, 96, 28, 0.55);
  outline-offset: 2px;
}

.topbar-demo-btn {
  color: var(--orange-2);
  border-color: rgba(232, 96, 28, 0.26);
  background:
    linear-gradient(180deg, rgba(232, 96, 28, 0.1), rgba(232, 96, 28, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0.9rem 2rem rgba(232, 96, 28, 0.08);
}

.topbar-demo-btn:hover {
  border-color: rgba(240, 133, 74, 0.72);
  background:
    linear-gradient(180deg, rgba(232, 96, 28, 0.14), rgba(232, 96, 28, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 1rem 2.2rem rgba(232, 96, 28, 0.11);
}

@media (max-width: 1320px) {
  .topbar {
    gap: 0.8rem;
    padding-inline: 0.85rem;
  }

  .nav {
    gap: 0.82rem;
  }

  .nav a {
    font-size: 0.89rem;
  }

  .topbar-actions .btn,
  .topbar > .btn {
    min-width: 9.2rem;
    padding-inline: 0.82rem;
  }
}

@media (max-width: 1240px) {
  .topbar-actions .topbar-demo-btn {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .topbar-actions .topbar-login-link {
    display: none !important;
  }
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #d8ebf9;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #d8ebf9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.site-partner-badges {
  position: fixed;
  left: max(0.85rem, env(safe-area-inset-left));
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  z-index: 40;
  display: none;
  justify-content: flex-start;
  width: auto;
  margin: 0;
  pointer-events: auto;
}

/* Ab hier laeuft der Hero/Content einspaltig (siehe @media max-width: 1080px), wodurch
   Karten/Panels bis an den linken Rand reichen koennen. Das fest positionierte Badge
   erst ab der zweispaltigen Ansicht einblenden, damit es nie Content ueberlappt. */
@media (min-width: 1081px) {
  .site-partner-badges {
    display: flex;
  }
}

/* Preise-Seite hat eine dauerhafte, fest positionierte Plan-CTA-Leiste am unteren
   Rand (.sticky-pricing-cta, auch auf Desktop aktiv). Badge darueber anheben. */
body[data-page="preise"] .site-partner-badges {
  bottom: calc(6.4rem + env(safe-area-inset-bottom));
}

/* Rechtstexte (Impressum/Datenschutz/AGB) sind durchgehender Fliesstext ohne freie
   Bildschirmecke unten links. Ein fixes Badge wuerde dort beim Scrollen dauerhaft
   Textzeilen ueberlappen, daher hier ausblenden statt riskant zu ueberlagern. */
body:has(.legal-panel) .site-partner-badges {
  display: none;
}

.site-partner-badges-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background:
    radial-gradient(circle at top left, rgba(232, 96, 28, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(18, 25, 36, 0.9), rgba(10, 16, 25, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0.8rem 1.7rem rgba(0, 0, 0, 0.18);
}

.site-partner-badges-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 96, 28, 0.14);
  background: rgba(232, 96, 28, 0.07);
  color: #cfdcea;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-partner-badge-shell {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: calc(3.4rem * 358 / 500);
  padding: 0.32rem;
  border-radius: 0.65rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(247, 249, 252, 0.985));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 0.5rem 1rem rgba(4, 10, 18, 0.2);
}

.site-partner-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.site-partner-logo-ads {
  width: 100%;
}

.site-partner-logo-spn {
  width: 100%;
  transform: scale(1.035);
  transform-origin: center;
}

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
}

.trial-modal.visible {
  display: block;
}

.trial-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 13, 0.72);
  backdrop-filter: blur(14px);
}

.trial-modal-dialog {
  position: relative;
  width: min(68rem, calc(100vw - 2rem));
  margin: min(7vh, 3rem) auto 0;
  padding: 2.05rem 2rem 1.65rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(232, 96, 28, 0.2);
  background:
    radial-gradient(circle at 15% 0%, rgba(232, 96, 28, 0.12), transparent 28%),
    radial-gradient(circle at 88% 15%, rgba(30, 58, 140, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(19, 25, 35, 0.995), rgba(8, 13, 21, 0.995));
  box-shadow:
    0 0 3rem rgba(232, 96, 28, 0.08),
    0 2.3rem 4.5rem rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.trial-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(16rem, 0.82fr);
  gap: 1.25rem;
  align-items: start;
}

.trial-modal-main {
  text-align: left;
}

.trial-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #d7e7f4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trial-modal-kicker-line {
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 96, 28, 0.9), rgba(232, 96, 28, 0.08));
}

.trial-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #97acbe;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.trial-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 96, 28, 0.18);
  color: #d7e3ee;
}

.trial-modal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.52rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 96, 28, 0.18);
  background: rgba(232, 96, 28, 0.07);
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trial-modal-title {
  max-width: 8.8ch;
  margin: 0.82rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.82rem, 3vw, 2.95rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.trial-modal-copy {
  max-width: 31rem;
  margin: 0.8rem 0 0;
  color: #c9d7e4;
  font-size: 0.98rem;
  line-height: 1.55;
}

.trial-modal-value {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  margin-top: 1rem;
}

.trial-modal-value-item {
  padding: 0.82rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.trial-modal-value-item strong {
  display: block;
  font-size: 0.92rem;
  color: #f7fbff;
}

.trial-modal-value-item span {
  display: block;
  margin-top: 0.25rem;
  color: #b8cadb;
  font-size: 0.84rem;
  line-height: 1.42;
}

.trial-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.9rem;
  margin-top: 1.05rem;
}

.trial-modal-actions .btn {
  min-width: 13rem;
  min-height: 3.35rem;
  font-size: 0.96rem;
}

.trial-modal-primary {
  min-width: 16.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1.2rem 2.6rem rgba(232, 96, 28, 0.28);
}

.trial-modal-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 1.35rem 2.9rem rgba(232, 96, 28, 0.34);
}

.btn.ghost {
  color: #b8cadb;
  border-color: rgba(147, 188, 220, 0.12);
  background: rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.btn.ghost:hover {
  color: #d7e7f4;
  border-color: rgba(147, 188, 220, 0.24);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.trial-modal-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.trial-modal-proof span {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #c8d5e3;
  font-size: 0.78rem;
  font-weight: 700;
}

.trial-modal-trustline {
  margin-top: 0.8rem;
  color: #f4d4a0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.trial-modal-side {
  display: grid;
  gap: 0.95rem;
}

.trial-modal-side-card {
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 24, 35, 0.92), rgba(10, 15, 23, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.trial-modal-side-card.highlight {
  border-color: rgba(232, 96, 28, 0.22);
  background:
    radial-gradient(circle at top right, rgba(232, 96, 28, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(28, 34, 43, 0.98), rgba(11, 17, 25, 0.98));
}

.trial-modal-side-card strong {
  display: block;
  font-size: 0.97rem;
  line-height: 1.35;
  color: #f7fbff;
}

.trial-modal-side-card p {
  margin: 0.45rem 0 0;
  color: #b5c6d6;
  font-size: 0.85rem;
  line-height: 1.55;
}

.trial-modal-side-label {
  margin-bottom: 0.45rem;
  color: var(--orange-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trial-modal-facts {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: #cfe0ef;
  display: grid;
  gap: 0.45rem;
}

.trial-modal-facts li {
  line-height: 1.45;
}

.trial-modal .price-error {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(248, 81, 73, 0.25);
  background: rgba(248, 81, 73, 0.08);
  color: #ff928a;
  font-weight: 600;
}

.trial-modal .price-error.visible {
  display: block;
}

.brand {
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

.brand .main {
  color: var(--orange);
}

.brand .dot,
.brand .main span {
  color: #3b5bb0;
}

.nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

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

.nav a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(246, 184, 143, 0.14), rgba(232, 96, 28, 0.9));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav a.active::before,
.nav a:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.nav-item.has-menu > a::after {
  content: "▾";
  font-size: 0.75rem;
  color: #b3c9db;
}

.submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 260px;
  padding: 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(147, 188, 220, 0.16);
  background:
    linear-gradient(180deg, rgba(17, 29, 43, 0.98), rgba(7, 15, 24, 0.98));
  box-shadow:
    0 1.2rem 2.8rem rgba(2, 8, 16, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  align-content: start;
}

.nav-item.has-menu:hover .submenu,
.nav-item.has-menu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  font-size: 0.85rem;
}

.submenu a:hover,
.submenu a.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.menu-wide .submenu {
  width: min(44rem, calc(100vw - 2rem));
  min-width: 0;
  padding: 0.95rem;
}

.submenu-shell {
  display: grid;
  grid-template-columns: minmax(12.5rem, 14rem) minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
}

.submenu-overview {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(246, 184, 143, 0.16);
  background:
    linear-gradient(180deg, rgba(232, 96, 28, 0.08), rgba(232, 96, 28, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.submenu-overview-label {
  margin: 0;
  color: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.submenu-overview-title {
  margin: 0;
  color: #eff7ff;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 700;
}

.submenu-overview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(246, 184, 143, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  text-decoration: none;
}

.submenu-overview-cta:hover {
  background: rgba(232, 96, 28, 0.1);
  border-color: rgba(246, 184, 143, 0.4);
  color: #fff;
}

.menu-grouped .submenu {
  left: auto;
  right: 0;
  width: min(52rem, calc(100vw - 2rem));
  min-width: 0;
}

.submenu-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.submenu-group {
  display: grid;
  gap: 0.7rem;
  padding: 0.25rem;
}

.submenu-group-head {
  display: grid;
  gap: 0.28rem;
}

.submenu-group-title {
  margin: 0;
  color: #edf5fc;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.submenu-group-copy {
  margin: 0;
  color: #8fa9bd;
  font-size: 0.73rem;
  line-height: 1.5;
}

.submenu-group-links {
  display: grid;
  gap: 0.45rem;
}

.submenu-link-card {
  display: grid;
  gap: 0.18rem;
  min-height: 4.4rem;
  padding: 0.72rem 0.78rem !important;
  border-radius: 14px !important;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
}

.submenu-link-title {
  color: #eef6fd;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.submenu-link-copy {
  color: #95afc2;
  font-size: 0.74rem;
  line-height: 1.42;
  font-weight: 500;
}

.submenu-link-card:hover,
.submenu-link-card.active {
  background: linear-gradient(180deg, rgba(232, 96, 28, 0.08), rgba(232, 96, 28, 0.03));
  border-color: rgba(246, 184, 143, 0.28);
}

.submenu-link-card:hover .submenu-link-copy,
.submenu-link-card.active .submenu-link-copy {
  color: #cfdeea;
}

.nav-link-spotlight {
  color: #ecf4fb;
  padding: 0.4rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 96, 28, 0.18);
  background: linear-gradient(180deg, rgba(232, 96, 28, 0.08), rgba(232, 96, 28, 0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 0.6rem 1.4rem rgba(232, 96, 28, 0.08);
}

.nav-link-spotlight:hover,
.nav-link-spotlight.active {
  color: #fff;
  border-color: rgba(246, 184, 143, 0.38);
  background: linear-gradient(180deg, rgba(232, 96, 28, 0.14), rgba(232, 96, 28, 0.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0.8rem 1.7rem rgba(232, 96, 28, 0.12);
}

.nav-link-spotlight::before {
  display: none;
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.16rem 0.38rem;
  border-radius: 999px;
  background: rgba(255, 209, 138, 0.14);
  border: 1px solid rgba(246, 184, 143, 0.22);
  color: var(--orange-2);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  padding: 0.82rem 1.22rem;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn.primary {
  color: #09121e;
  background: linear-gradient(120deg, var(--orange), var(--orange-2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0.9rem 2rem rgba(232, 96, 28, 0.18);
}

.btn.primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1.05rem 2.3rem rgba(232, 96, 28, 0.22);
}

.btn.secondary {
  color: var(--text);
  border-color: rgba(232, 96, 28, 0.18);
  background: linear-gradient(180deg, rgba(232, 96, 28, 0.05), rgba(232, 96, 28, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.btn.secondary:hover {
  border-color: rgba(240, 133, 74, 0.7);
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(232, 96, 28, 0.08), rgba(232, 96, 28, 0.03));
}

.section {
  padding: 6.2rem 0;
  position: relative;
}

.section > .kicker,
.section > h2,
.section > .lead,
.section > .interactive-note {
  width: min(100%, var(--section-copy-max));
}

.kicker {
  margin: 0 0 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.kicker + h1,
.kicker + h2 {
  margin-top: 0.55rem;
}

.section h2 + .lead {
  margin-top: 0;
}

.section h2 + .content-grid,
.section h2 + .feature-grid,
.section h2 + .split,
.section h2 + .proof-rail,
.section h2 + .reveal-shell,
.section h2 + .segment-switch,
.section h2 + .faq {
  margin-top: 1.6rem;
}

.section h2 {
  margin-bottom: 1.6rem;
}

.section > h2 + *,
.section > .kicker + *,
.section > .lead + * {
  margin-top: 1.45rem;
}

p,
li,
a,
small {
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.9rem);
  max-width: 15ch;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.85rem, 3.1vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.lead {
  margin: 1.2rem 0 1.7rem;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.68;
  font-size: 1.05rem;
}

.hero {
  padding-top: 4rem;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 1.85rem;
  align-items: center;
  width: min(100%, var(--section-wide-max));
  margin-inline: auto;
}

.hero strong.accent {
  color: transparent;
  background: linear-gradient(120deg, #fff, var(--orange-3) 18%, var(--orange) 68%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-microproof {
  margin: 0.85rem 0 0;
  color: #d8e6f2;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
  max-width: 40rem;
}

.pain-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.pain-grid article {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pain-grid strong {
  display: block;
  font-size: 0.95rem;
}

.pain-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(147, 188, 220, 0.12);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    var(--shadow-soft);
  overflow: hidden;
}

.hero-panel {
  padding: 1rem;
  position: relative;
  overflow: hidden;
  min-height: auto;
  width: 100%;
  max-width: 39rem;
  justify-self: end;
  align-self: center;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 96, 28, 0.24), transparent 68%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -110px;
  bottom: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 91, 176, 0.12), transparent 68%);
}

.metric-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.hero-demo {
  position: relative;
  z-index: 1;
}

.hero-demo-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.hero-demo-kicker {
  margin: 0;
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-mode-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.82rem;
}

.hero-mode-progress {
  position: relative;
  margin-top: 0.7rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-mode-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-2), var(--orange));
  box-shadow: 0 0 1rem rgba(232, 96, 28, 0.22);
}

.hero-mode-pill {
  appearance: none;
  border: 1px solid rgba(147, 188, 220, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #c8dbea;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-mode-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 96, 28, 0.3);
}

.hero-mode-pill.active {
  color: #0e1a28;
  background: linear-gradient(120deg, var(--orange-3), var(--orange));
  border-color: rgba(255, 209, 138, 0.7);
  box-shadow: 0 0 0 1px rgba(232, 96, 28, 0.08), 0 0.65rem 1.4rem rgba(232, 96, 28, 0.18);
}

.hero-scene-shell {
  position: relative;
  margin-top: 0.92rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background:
    radial-gradient(circle at top, rgba(232, 96, 28, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(13, 21, 31, 0.96), rgba(8, 14, 22, 0.98));
  overflow: hidden;
  padding: 0.82rem;
  min-height: 25.2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 1.6rem 3.6rem rgba(0, 0, 0, 0.28);
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.82rem;
}

.hero-proofline span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #dceaf6;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-scene-shell-grid,
.hero-scene-shell-glow,
.hero-scene-statusbar {
  position: absolute;
  pointer-events: none;
}

.hero-scene-shell-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(146, 188, 220, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146, 188, 220, 0.05) 1px, transparent 1px);
  background-size: 2.6rem 2.6rem;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 88%);
}

.hero-scene-shell-glow {
  inset: auto 0 -18% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,96,28,0.18), rgba(232,96,28,0.05) 40%, transparent 68%);
  filter: blur(12px);
}

.hero-scene-statusbar {
  left: 1rem;
  right: 1rem;
  bottom: 0.74rem;
  display: flex;
  gap: 0.42rem;
  flex-wrap: wrap;
  z-index: 0;
}

.hero-scene-statusbar span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.48rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(147,188,220,0.08);
  color: #90a9bc;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-scene-view {
  position: absolute;
  inset: 0.82rem 0.82rem 4.1rem;
  display: grid;
  gap: 0.7rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.988);
  transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1), transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-scene-view.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hero-scene-header {
  display: grid;
  gap: 0.42rem;
}

.hero-scene-header strong {
  color: #e8f0f7;
  font-size: 0.96rem;
  line-height: 1.18;
  max-width: 22rem;
}

.hero-scene-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.56rem;
  border-radius: 999px;
  background: rgba(232, 96, 28, 0.1);
  border: 1px solid rgba(232, 96, 28, 0.16);
  color: var(--orange-2);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scene-dashboard,
.hero-scene-insights,
.hero-scene-reports,
.hero-scene-content {
  display: grid;
  gap: 0.82rem;
  min-height: 0;
}

.hero-scene-dashboard {
  grid-template-columns: minmax(0, 1.18fr) minmax(12rem, 0.86fr);
}

.hero-scene-insights,
.hero-scene-reports,
.hero-scene-content {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.hero-scene-reports {
  grid-template-rows: 1.08fr 0.92fr;
}

.hero-scene-content {
  opacity: 0.92;
}

.hero-scene-card {
  border-radius: 1rem;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: linear-gradient(180deg, rgba(20, 27, 38, 0.94), rgba(10, 17, 26, 0.96));
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.48s ease, background 0.48s ease;
}

.hero-scene-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent 38%);
  pointer-events: none;
}

.hero-scene-card-chart {
  padding: 0.9rem;
  display: grid;
  gap: 0.72rem;
}

.hero-scene-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.hero-scene-microtag,
.hero-scene-microbadge {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.44rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scene-microtag {
  color: #ffcf89;
  background: rgba(232, 96, 28, 0.08);
  border: 1px solid rgba(232, 96, 28, 0.12);
}

.hero-scene-microbadge {
  color: #0c1b28;
  background: linear-gradient(120deg, var(--orange-3), var(--orange));
}

.hero-scene-bars {
  height: 9rem;
  display: flex;
  align-items: end;
  gap: 0.48rem;
}

.hero-scene-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 0.4rem 0.4rem;
  background: linear-gradient(180deg, rgba(240, 133, 74, 0.98), rgba(232, 96, 28, 0.28));
  box-shadow: 0 0 1rem rgba(232, 96, 28, 0.18);
  animation: chart-rise 1.4s ease-out both;
}

.hero-scene-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero-scene-metrics span,
.hero-report-summary em,
.hero-scene-mini em,
.hero-scene-alert em,
.hero-content-queue em {
  display: block;
  color: #9ab3c7;
  font-size: 0.72rem;
  font-style: normal;
}

.hero-scene-metrics span {
  border-top: 1px solid rgba(147, 188, 220, 0.08);
  padding-top: 0.45rem;
}

.hero-scene-card-stack {
  display: grid;
  gap: 0.56rem;
}

.hero-scene-mini {
  padding: 0.82rem 0.88rem;
  border-radius: 0.82rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero-scene-mini strong,
.hero-scene-alert strong,
.hero-report-summary strong,
.hero-content-queue strong {
  display: block;
  margin-top: 0.16rem;
  color: #e7f0f8;
  font-size: 0.94rem;
  line-height: 1.2;
}

.hero-scene-alert {
  padding: 0.82rem 0.92rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.72rem;
}

.hero-scene-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232, 96, 28, 0.24);
  animation: hero-status-pulse 1.8s ease-in-out infinite;
}

.hero-scene-alert.critical .hero-scene-dot {
  background: #ff7a59;
}

.hero-scene-alert.warning .hero-scene-dot {
  background: var(--orange);
}

.hero-scene-alert.success .hero-scene-dot {
  background: #10b981;
}

.hero-scene-severity {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(147,188,220,0.1);
  color: #d2e0eb;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-scene-taskline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.44rem;
}

.hero-scene-taskline span,
.hero-report-step {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8e6f3;
  font-size: 0.66rem;
  font-weight: 700;
  min-height: 2.25rem;
  text-align: center;
}

.hero-report-step i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  margin-right: 0.35rem;
  flex: none;
}

.live {
  font-size: 0.66rem;
  font-weight: 800;
  border-radius: 999px;
  color: #102335;
  background: linear-gradient(120deg, var(--orange-3), var(--orange));
  padding: 0.34rem 0.56rem;
  white-space: nowrap;
}

.hero-report-builder,
.hero-report-summary,
.hero-content-grid-mini,
.hero-content-queue {
  padding: 0.94rem;
}

.hero-report-builder {
  display: grid;
  gap: 0.5rem;
}

.hero-report-builder,
.hero-report-summary {
  border-color: rgba(240, 133, 74, 0.16);
}

.hero-report-step.active {
  background: linear-gradient(120deg, rgba(232, 96, 28, 0.18), rgba(232, 96, 28, 0.08));
  border: 1px solid rgba(232, 96, 28, 0.18);
}

.hero-report-step.active i {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,96,28,0.12);
}

.hero-report-summary,
.hero-content-queue {
  display: grid;
  gap: 0.56rem;
}

.hero-content-grid-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

.hero-content-grid-mini span {
  display: grid;
  place-items: center;
  min-height: 4.5rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #e4edf5;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 0.35rem;
}

.hero-content-grid-mini span i {
  width: 1rem;
  height: 1rem;
  border-radius: 0.32rem;
  background: linear-gradient(135deg, rgba(240, 133, 74, 0.92), rgba(232, 96, 28, 0.35));
  box-shadow: 0 0 1rem rgba(232,96,28,0.12);
}

.hero-demo.mode-dashboard [data-hero-view="dashboard"],
.hero-demo.mode-insights [data-hero-view="insights"],
.hero-demo.mode-reports [data-hero-view="reports"],
.hero-demo.mode-content [data-hero-view="content"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hero-content-progress {
  height: 0.36rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.hero-content-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-3), var(--orange));
  box-shadow: 0 0 1rem rgba(232,96,28,0.18);
  animation: hero-progress 3.8s ease-in-out infinite;
}

.hero-demo.mode-dashboard .hero-scene-card-chart,
.hero-demo.mode-dashboard .hero-scene-card-stack > .hero-scene-mini:first-child,
.hero-demo.mode-dashboard .hero-scene-card-stack > .hero-scene-mini:nth-child(2) {
  transform: translateY(-2px);
  box-shadow: 0 1.35rem 2.8rem rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(232, 96, 28, 0.08);
}

.hero-demo.mode-reports .hero-report-builder,
.hero-demo.mode-reports .hero-report-summary {
  transform: translateY(-2px);
  box-shadow: 0 1.35rem 2.8rem rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(232, 96, 28, 0.1);
  background: linear-gradient(180deg, rgba(24, 31, 42, 0.96), rgba(11, 18, 27, 0.98));
}

.hero-demo.mode-content .hero-content-grid-mini,
.hero-demo.mode-content .hero-content-queue {
  transform: scale(0.985);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.68rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.metric-grid article {
  border: 1px solid rgba(151, 197, 231, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.metric-grid strong {
  font-size: 1.26rem;
}

.spark-bars {
  margin-top: 0.95rem;
  height: 120px;
  display: flex;
  gap: 0.35rem;
  align-items: flex-end;
}

.spark-bars span {
  flex: 1;
  height: calc(var(--v) * 1%);
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--orange-3), var(--orange));
}

.proof-section {
  padding-top: 3rem;
}

.proof-intro {
  max-width: 46rem;
  margin-bottom: 0;
}

.proof-rail {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
  align-content: start;
  justify-items: stretch;
  justify-content: stretch;
  grid-auto-rows: 1fr;
}

.proof-card {
  padding: 1.15rem;
  border-radius: 1.4rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background:
    radial-gradient(circle at top right, rgba(232, 96, 28, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(22, 30, 42, 0.96), rgba(11, 18, 27, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 1.2rem 2.8rem rgba(0, 0, 0, 0.16);
}

.proof-card > * {
  width: 100%;
}

.proof-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
  color: #f4f8fd;
  margin-bottom: 0.55rem;
  text-wrap: balance;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-note {
  width: min(100%, var(--section-grid-max));
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #a8c0d1;
  font-size: 0.88rem;
  line-height: 1.65;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.proof-metric {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-bottom: 0.8rem;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 184, 143, 0.2);
  background: rgba(232, 96, 28, 0.08);
  color: #ffcc84;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cases-intro {
  max-width: 46rem;
  margin-bottom: 0;
}

.case-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.case-outcomes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #d8e7f3;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.story-section {
  padding-top: 3rem;
}

.process-section {
  align-items: stretch;
}

.process-overview {
  padding: 1.5rem;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.process-overview h2,
.process-overview .list {
  margin: 0;
}

.process-overview .list {
  display: grid;
  gap: 0.8rem;
}

.process-overview .list li {
  margin: 0;
}

.story-shell {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  align-items: start;
}

.story-steps {
  display: grid;
  gap: 0.8rem;
}

.story-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.85rem;
  padding: 1rem 1rem 1rem 0.95rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: linear-gradient(180deg, rgba(18, 26, 38, 0.92), rgba(10, 18, 27, 0.94));
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.story-step:hover,
.story-step.active {
  transform: translateY(-2px);
  border-color: rgba(246, 184, 143, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 1.3rem 2.8rem rgba(0, 0, 0, 0.18);
  background: linear-gradient(180deg, rgba(28, 33, 45, 0.96), rgba(12, 18, 27, 0.98));
}

.story-index {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(232, 96, 28, 0.2), rgba(232, 96, 28, 0.08));
  border: 1px solid rgba(232, 96, 28, 0.18);
  color: #ffcc84;
  font-weight: 800;
}

.story-step strong {
  display: block;
  color: #f4f8fd;
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.story-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.story-visual {
  position: sticky;
  top: 6.4rem;
  min-height: 30rem;
  padding: 1.3rem;
  overflow: hidden;
}

.story-screen {
  position: absolute;
  inset: 1.15rem;
  display: grid;
  align-content: start;
  gap: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.985);
  transition: opacity 260ms ease, transform 320ms ease;
}

.story-screen.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.story-chip {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 2rem;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 184, 143, 0.24);
  background: rgba(232, 96, 28, 0.08);
  color: #ffcc84;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-chip.danger {
  border-color: rgba(255, 118, 87, 0.25);
  background: rgba(255, 118, 87, 0.1);
  color: #ffb39f;
}

.story-chip.success {
  border-color: rgba(46, 204, 140, 0.24);
  background: rgba(46, 204, 140, 0.08);
  color: #91f0c3;
}

.story-screen h3 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.06;
}

.story-chaos-grid,
.story-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.story-chaos-grid div,
.story-matrix div,
.story-note {
  padding: 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background: linear-gradient(180deg, rgba(18, 26, 38, 0.96), rgba(12, 18, 27, 0.98));
}

.story-chaos-grid strong,
.story-matrix strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.08rem;
}

.story-bars {
  height: 10rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-end;
}

.story-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--orange-3), var(--orange));
  box-shadow: 0 0 1.4rem rgba(232, 96, 28, 0.18);
}

.story-pills,
.story-flowline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.story-pills span,
.story-flowline span,
.story-note {
  color: #d8e8f6;
  font-weight: 600;
}

.story-pills span,
.story-flowline span {
  padding: 0.62rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.story-flowline span.active {
  color: #081221;
  border-color: rgba(246, 184, 143, 0.85);
  background: linear-gradient(120deg, var(--orange), var(--orange-2));
}

.story-note {
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  grid-auto-rows: auto;
}

.split > * {
  min-width: 0;
  height: 100%;
}

.split > :not(.panel):not(.card) {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background:
    radial-gradient(circle at top right, rgba(232, 96, 28, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(17, 25, 36, 0.92), rgba(10, 16, 25, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 1.1rem 2.4rem rgba(0, 0, 0, 0.14);
}

.split > :not(.panel):not(.card) > :first-child {
  margin-top: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  align-content: start;
  justify-items: stretch;
  justify-content: center;
  grid-auto-rows: 1fr;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
  align-content: start;
  justify-items: stretch;
  justify-content: center;
  grid-auto-rows: 1fr;
}

.card {
  padding: 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: linear-gradient(180deg, rgba(24, 30, 39, 0.96), rgba(12, 18, 27, 0.96));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  min-height: 100%;
  height: 100%;
  position: relative;
  cursor: default;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.card > h3,
.card > h4,
.card > p,
.card > .hero-cta,
.card > .case-outcomes,
.card > .list {
  width: 100%;
}

.card > h3,
.card > h4 {
  margin: 0;
}

.card > .hero-cta:last-child,
.card > .case-outcomes:last-child,
.card > .list:last-child {
  margin-top: auto;
}

.card .tag {
  margin: 0;
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  color: #ffcc84;
  background: rgba(232, 96, 28, 0.08);
  border: 1px solid rgba(232, 96, 28, 0.18);
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
  text-wrap: balance;
}

.card h3 + p,
.card p + p,
.card p + .list,
.card .tag + h3 {
  margin-top: 0.9rem;
}

.card .hero-cta {
  margin-top: auto;
  padding-top: 0.75rem;
}

.feature-grid + .hero-cta,
.content-grid + .hero-cta,
.testimonial-grid + .hero-cta {
  width: min(100%, var(--section-grid-max));
  margin-inline: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(147, 188, 220, 0.1);
}

.card .btn {
  margin-top: 0;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 96, 28, 0.2);
  background: linear-gradient(180deg, rgba(27, 34, 45, 0.98), rgba(12, 18, 27, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 2.8rem rgba(232, 96, 28, 0.08),
    var(--shadow-soft);
}

.quote-meta {
  margin-top: 0.65rem;
  color: #d6e9f8;
  font-size: 0.84rem;
  font-weight: 600;
}

.timeline {
  padding: 1.25rem;
}

.timeline ol {
  margin: 1rem 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  align-items: start;
  border-radius: 14px;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem 0.9rem;
}

.timeline li span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #112335;
  background: linear-gradient(180deg, var(--orange-3), var(--orange));
}

.timeline p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.timeline-summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #d7e7f5;
  font-size: 0.79rem;
  font-weight: 700;
}

.timeline-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.timeline-metric {
  padding: 0.9rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background: linear-gradient(180deg, rgba(19, 28, 40, 0.95), rgba(11, 18, 27, 0.98));
}

.timeline-metric strong {
  display: block;
  color: #f4f8fd;
  font-size: 1.05rem;
}

.timeline-metric span {
  display: block;
  margin-top: 0.28rem;
  color: #9db4c5;
  font-size: 0.82rem;
  line-height: 1.45;
}

.kpi-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.95rem;
  align-items: stretch;
  align-content: start;
  justify-items: stretch;
  grid-auto-rows: 1fr;
}

.kpi-band article {
  padding: 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: linear-gradient(180deg, rgba(16, 27, 41, 0.94), rgba(10, 18, 27, 0.96));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.kpi-band strong {
  display: block;
  font-size: 1.08rem;
}

.kpi-band span {
  color: var(--muted);
  font-size: 0.85rem;
}

.cta-box {
  text-align: center;
  padding: 2.2rem 1.3rem;
}

.cta-box p {
  color: var(--muted);
  max-width: 64ch;
  margin-inline: auto;
}

.final-cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.final-cta-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #dce9f4;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.final-cta-actions {
  justify-content: center;
  margin-top: 1rem;
}

.faq details {
  margin-bottom: 0.55rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: linear-gradient(180deg, rgba(24, 30, 39, 0.96), rgba(12, 18, 27, 0.96));
}

.faq {
  align-items: start;
  grid-auto-rows: auto;
}

.faq summary {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.reveal-shell {
  padding: 1.2rem;
}

.reveal-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.reveal-tab {
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #d9ebf9;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.62rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.reveal-tab:hover {
  border-color: rgba(246, 184, 143, 0.6);
}

.reveal-tab.active {
  color: #081221;
  border-color: rgba(246, 184, 143, 0.85);
  background: linear-gradient(120deg, var(--orange), var(--orange-2));
}

.reveal-panels {
  margin-top: 0.95rem;
}

.reveal-panel {
  display: none;
  border-radius: 20px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: linear-gradient(180deg, rgba(24, 30, 39, 0.96), rgba(12, 18, 27, 0.96));
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.reveal-panel.active {
  display: block;
  animation: reveal-fade 240ms ease;
}

.reveal-panel h3 {
  margin-bottom: 0.6rem;
}

.reveal-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.reveal-panel .hero-cta {
  margin-top: 0.9rem;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(147, 188, 220, 0.1);
  padding: 1.45rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  position: relative;
}

.footer-brandblock {
  display: grid;
  gap: 0.45rem;
  max-width: 26rem;
}

.footer-brandblock p {
  margin: 0;
  color: #9ab3c6;
  line-height: 1.6;
}

.footer-links-block {
  display: grid;
  gap: 0.45rem;
}

.footer-links-block strong {
  color: #edf6ff;
  font-size: 0.88rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: #edf6ff;
}

.footer .links {
  display: flex;
  gap: 1rem;
}

.footer small {
  width: 100%;
  color: #86a5bc;
}

.page-hero {
  position: relative;
  isolation: isolate;
  padding-top: 3.5rem;
  padding-inline: clamp(1.35rem, 3vw, 2.2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(147, 188, 220, 0.12);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(232, 96, 28, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(18, 26, 38, 0.96), rgba(11, 18, 27, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    var(--shadow-soft);
  overflow: hidden;
  width: min(100%, var(--section-wide-max));
  margin-inline: auto;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.page-hero::before {
  width: 14rem;
  height: 14rem;
  right: -5rem;
  top: -5rem;
  background: radial-gradient(circle, rgba(232, 96, 28, 0.18), transparent 68%);
}

.page-hero::after {
  width: 12rem;
  height: 12rem;
  left: -4rem;
  bottom: -5rem;
  background: radial-gradient(circle, rgba(59, 91, 176, 0.12), transparent 70%);
}

.page-hero .kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-bottom: 1rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 96, 28, 0.18);
  background: rgba(232, 96, 28, 0.08);
  box-shadow: inset 0 0 0 1px rgba(232, 96, 28, 0.04);
}

.page-hero h1 {
  max-width: 20ch;
  text-wrap: balance;
}

.page-hero .lead {
  max-width: 62ch;
}

.hero-dual {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.2rem;
  align-items: stretch;
}

.hero-dual-copy,
.hero-dual-aside {
  min-width: 0;
}

.hero-dual-aside {
  padding: 1.25rem;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.metric-stack {
  display: grid;
  gap: 0.8rem;
}

.metric-stack article {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: linear-gradient(180deg, rgba(18, 28, 40, 0.92), rgba(11, 18, 27, 0.98));
}

.metric-stack strong {
  display: block;
  color: #f4f8fd;
  font-size: 1.02rem;
}

.metric-stack span {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  line-height: 1.55;
}

.service-cluster-grid {
  width: min(100%, var(--section-grid-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.service-cluster {
  padding: 1.35rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.service-cluster h3 {
  margin: 0;
}

.service-cluster > p:not(.tag) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-cluster-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.service-cluster-list li {
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.service-cluster-list a {
  display: inline-block;
  color: #eef5fb;
  text-decoration: none;
  font-weight: 700;
}

.service-cluster-list a:hover {
  color: #f6b88f;
}

.service-cluster-list span {
  display: block;
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.decision-grid {
  width: min(100%, var(--section-grid-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.decision-card {
  padding: 1.35rem;
}

.report-frame {
  width: min(100%, var(--section-grid-max));
  margin-inline: auto;
  padding: 1.15rem;
  display: grid;
  gap: 0.8rem;
}

.report-frame-row {
  display: grid;
  grid-template-columns: minmax(8rem, 10rem) 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background: linear-gradient(180deg, rgba(18, 28, 40, 0.94), rgba(10, 17, 26, 0.98));
}

.report-frame-row strong {
  color: #f4f8fd;
}

.report-frame-row span {
  color: var(--muted);
  line-height: 1.55;
}

.priority-ladder {
  padding: 1.25rem;
}

.priority-ladder h3 {
  margin: 0.2rem 0 0;
}

.priority-ladder ol {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.priority-ladder li {
  display: grid;
  gap: 0.24rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.priority-ladder li strong {
  color: #eef5fb;
}

.priority-ladder li span {
  color: var(--muted);
  line-height: 1.55;
}

.signal-board {
  padding: 1.2rem;
}

.signal-board-list {
  display: grid;
  gap: 0.7rem;
}

.signal-board-list div {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(147, 188, 220, 0.1);
  background: linear-gradient(180deg, rgba(18, 28, 40, 0.92), rgba(10, 17, 26, 0.98));
}

.signal-board-list strong {
  display: block;
  color: #eef5fb;
}

.signal-board-list span {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  line-height: 1.55;
}

.comparison-slab {
  width: min(100%, var(--section-grid-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.comparison-column {
  padding: 1.2rem;
}

.comparison-column h3,
.comparison-column p {
  margin: 0;
}

.comparison-column p:not(.tag) {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.resource-map {
  width: min(100%, var(--section-grid-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.resource-map-card {
  padding: 1.25rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.resource-map-card h3,
.resource-map-card p {
  margin: 0;
}

.resource-map-card p:not(.tag) {
  color: var(--muted);
  line-height: 1.6;
}

.ops-rhythm {
  width: min(100%, var(--section-grid-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.ops-rhythm-step {
  padding: 1.2rem;
}

.ops-rhythm-step strong {
  display: block;
  color: #eef5fb;
  font-size: 1.02rem;
}

.ops-rhythm-step span {
  display: block;
  margin-top: 0.42rem;
  color: var(--muted);
  line-height: 1.6;
}

.page-hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.page-hero-signals span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #d8e8f6;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.demo-booking-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.02fr);
  gap: 2rem;
  align-items: start;
}

.demo-booking-copy {
  max-width: 34rem;
  padding: 0.8rem 0 0.2rem;
}

.demo-booking-intro {
  max-width: 26rem;
  margin: 0 0 1rem;
  color: #d9e5ee;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.6;
}

.demo-booking-copy h1 {
  max-width: 11.5ch;
  margin: 0;
  font-size: clamp(3rem, 4.7vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.demo-booking-copy .lead {
  max-width: 31rem;
  margin-top: 1.1rem;
  font-size: 1.04rem;
  line-height: 1.72;
  color: #b8cad8;
}

.demo-booking-copy .hero-cta {
  margin-top: 1.5rem;
}

.demo-booking-microproof {
  margin: 0.85rem 0 0;
  color: #d7e5f1;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.demo-booking-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 1.55rem;
  max-width: 30rem;
}

.demo-booking-points span {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.8rem;
  padding: 0.65rem 0.2rem 0.65rem 0;
  border-bottom: 1px solid rgba(147, 188, 220, 0.1);
  color: #e0ebf4;
  font-size: 0.94rem;
  font-weight: 600;
}

.demo-booking-points span::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-3), var(--orange));
  box-shadow: 0 0 0 0.35rem rgba(232, 96, 28, 0.08);
}

.demo-host-trust {
  margin-top: 1.35rem;
  padding: 1.15rem 1.2rem;
  max-width: 31rem;
  background:
    radial-gradient(circle at top right, rgba(232, 96, 28, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(19, 28, 39, 0.96), rgba(11, 18, 27, 0.98));
}

.demo-host-trust h3 {
  margin-top: 0.35rem;
  font-size: 1.18rem;
}

.demo-host-trust p:not(.tag) {
  margin-top: 0.65rem;
  color: #b6c8d6;
  line-height: 1.66;
}

.demo-host-trust .case-outcomes {
  margin-top: 0.9rem;
}

.demo-embed-shell {
  min-height: auto;
  padding: 1.35rem;
  border-radius: 1.4rem;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 46rem);
  background:
    radial-gradient(circle at top right, rgba(232, 96, 28, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(19, 27, 38, 0.98), rgba(10, 17, 26, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 1.8rem 4rem rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.demo-embed-kicker {
  margin: 0;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-embed-shell h2 {
  margin: 0;
  font-size: 1.45rem;
}

.demo-embed-shell p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.demo-embed-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.demo-embed-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 184, 143, 0.24);
  background: rgba(232, 96, 28, 0.1);
  color: #f6b88f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-embed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.demo-embed-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.95rem;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #d4e4f0;
  font-size: 0.8rem;
  font-weight: 700;
}

.demo-booking-bridge {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.demo-booking-bridge-card {
  padding: 0.9rem 0.95rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: linear-gradient(180deg, rgba(17, 27, 39, 0.78), rgba(12, 20, 30, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.demo-booking-bridge-card strong {
  display: block;
  color: #eef5fb;
  font-size: 0.9rem;
  line-height: 1.3;
}

.demo-booking-bridge-card p {
  margin-top: 0.45rem;
  color: #aebfcd;
  font-size: 0.82rem;
  line-height: 1.55;
}

.demo-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.demo-iframe-shell {
  position: relative;
  min-height: 712px;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(147, 188, 220, 0.14);
  background: linear-gradient(180deg, rgba(248, 250, 253, 0.98), rgba(236, 242, 248, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.demo-iframe-shell-hero {
  min-height: 620px;
  margin-top: 0.15rem;
  background: linear-gradient(180deg, rgba(14, 22, 32, 0.98), rgba(10, 17, 26, 0.98));
  box-shadow:
    0 1.2rem 2.8rem rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.demo-iframe {
  width: 100%;
  height: 712px;
  border: 0;
  display: block;
  background: #fff;
}

.demo-iframe-hero {
  height: 620px;
  background: transparent;
}

.demo-embed-note {
  font-size: 0.92rem;
}

.demo-embed-note a {
  color: #f6b88f;
  text-decoration: none;
  font-weight: 700;
}

.demo-embed-note a:hover {
  text-decoration: underline;
}

.demo-next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.demo-next-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.34rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #dce9f4;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.legal-panel {
  width: min(100%, var(--section-grid-max));
  margin-inline: auto;
  padding: 1.4rem;
}

.legal-panel-compact {
  width: min(100%, var(--section-grid-max));
  margin-inline: auto;
  padding: 1.2rem;
}

.legal-title {
  max-width: none;
  font-size: 2rem;
}

.legal-heading {
  max-width: none;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.legal-card-heading {
  max-width: none;
  font-size: 1.45rem;
}

.legal-note-heading {
  max-width: none;
  font-size: 1.5rem;
}

.legal-lead-tight {
  margin-top: 0.5rem;
}

.legal-lead-compact {
  margin-top: 0.2rem;
}

.page-shell > .section > h2,
.segment-panel h2 {
  max-width: 19ch;
}

.headline-split .headline-accent,
.hero .headline-accent {
  color: transparent;
  background: linear-gradient(120deg, var(--orange-3), var(--orange) 72%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 1.3rem rgba(232, 96, 28, 0.14);
}

.headline-no-break {
  white-space: nowrap;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  align-items: stretch;
  align-content: start;
  justify-items: stretch;
  justify-content: center;
  grid-auto-rows: 1fr;
}

.content-grid > *,
.content-grid-thirds > *,
.feature-grid > *,
.testimonial-grid > *,
.kpi-band > *,
.metric-grid > *,
.pain-grid > *,
.proof-rail > *,
.case-compare > *,
.deep-grid > *,
.story-shell > *,
.timeline > li,
.timeline-metrics > * {
  min-width: 0;
  width: 100%;
  height: 100%;
  align-self: stretch;
}

.split-reverse > :first-child {
  order: 2;
}

.split-reverse > :last-child {
  order: 1;
}

.section:is(.content-grid, .content-grid-thirds, .split, .feature-grid, .testimonial-grid, .kpi-band, .case-compare, .deep-grid, .proof-rail, .story-shell, .faq, .segment-switch, .segment-panel, .longform-stack, .cta-box, .reveal-shell, .timeline, .panel),
.section > :is(.content-grid, .content-grid-thirds, .split, .feature-grid, .testimonial-grid, .kpi-band, .case-compare, .deep-grid, .proof-rail, .story-shell, .faq, .segment-switch, .segment-panel, .longform-stack, .cta-box, .reveal-shell, .timeline) {
  width: min(100%, var(--section-grid-max));
  margin-inline: auto;
}

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

.case-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  align-content: start;
  justify-items: stretch;
  justify-content: center;
  grid-auto-rows: 1fr;
}

.case-compare-card {
  padding: 1.25rem;
}

.case-compare-card h3 {
  margin: 0.7rem 0 0;
}

.case-compare-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-compare-card.before .case-compare-chip {
  border: 1px solid rgba(255, 118, 87, 0.26);
  background: rgba(255, 118, 87, 0.1);
  color: #ffb39f;
}

.case-compare-card.after .case-compare-chip {
  border: 1px solid rgba(16, 185, 129, 0.24);
  background: rgba(16, 185, 129, 0.08);
  color: #9cf3cb;
}

.deep-dive .lead {
  margin-bottom: 1rem;
}

.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
  align-content: start;
  justify-items: stretch;
  grid-auto-rows: 1fr;
}

.deep-card {
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.deep-card h3 {
  font-size: 1.03rem;
}

.deep-card p {
  margin-top: 0.45rem;
}

.deep-card .mini-list {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  color: #c2d8ea;
  display: grid;
  gap: 0.28rem;
  font-size: 0.84rem;
}

.deep-card.variant-0 {
  background: linear-gradient(180deg, rgba(16, 30, 47, 0.95), rgba(11, 22, 35, 0.95));
}

.deep-card.variant-1 {
  background: linear-gradient(160deg, rgba(33, 24, 10, 0.75), rgba(16, 26, 40, 0.95));
}

.deep-card.variant-2 {
  background: linear-gradient(180deg, rgba(11, 26, 39, 0.95), rgba(15, 31, 28, 0.9));
}

.deep-card.variant-3 {
  background: linear-gradient(180deg, rgba(14, 19, 35, 0.95), rgba(23, 34, 50, 0.95));
}

.segment-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.85rem;
  margin-top: 1.3rem;
  border-radius: 18px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: linear-gradient(180deg, rgba(18, 27, 38, 0.94), rgba(11, 18, 27, 0.96));
  box-shadow: var(--shadow-soft);
}

.segment-switch .seg-btn {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(147, 188, 220, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #d6e9f8;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 0.96rem;
  cursor: pointer;
}

.segment-switch .seg-btn.active {
  color: #09121e;
  background: linear-gradient(120deg, var(--orange), var(--orange-2));
  border-color: rgba(246, 184, 143, 0.8);
}

.segment-panel {
  display: none;
}

.segment-panel.active {
  display: block;
}

.segment-panel .content-grid {
  align-items: stretch;
  margin-top: 1rem;
}

.segment-panel .lead {
  max-width: 46rem;
  margin-bottom: 0;
}

.segment-panel h2 {
  max-width: 20ch;
  margin-bottom: 1.6rem;
}

.segment-panel .kicker {
  margin-bottom: 0.8rem;
}

.segment-actions {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(147, 188, 220, 0.1);
}

.longform-stack {
  display: grid;
  gap: 0.9rem;
}

.longform-section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.longform-panel {
  padding: 1.25rem;
}

.longform-panel .lead {
  margin: 0.55rem 0 0.8rem;
}

.longform-panel .list {
  margin-top: 0.4rem;
}

.interactive-note {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(246, 184, 143, 0.35);
  background: rgba(232, 96, 28, 0.07);
  color: #f5d7a5;
  font-size: 0.84rem;
}

.longform-section .timeline h2 {
  margin-bottom: 0.95rem;
}

.list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.list li {
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--orange), var(--orange-3));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.42s ease, transform 0.48s ease;
  will-change: opacity, transform;
}

[data-reveal].in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-reveal][data-fx="left"] {
  transform: translateX(-28px);
}

[data-reveal][data-fx="right"] {
  transform: translateX(28px);
}

[data-reveal][data-fx="up"] {
  transform: translateY(24px);
}

[data-reveal][data-fx="down"] {
  transform: translateY(-24px);
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .content-grid,
  .story-shell,
  .case-compare,
  .hero-dual {
    grid-template-columns: 1fr;
  }

  .split-reverse > :first-child,
  .split-reverse > :last-child {
    order: initial;
  }

  .content-grid-thirds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .kpi-band,
  .testimonial-grid,
  .deep-grid,
  .proof-rail,
  .trust-bridge-grid,
  .demo-booking-bridge,
  .service-cluster-grid,
  .decision-grid,
  .comparison-slab,
  .resource-map,
  .ops-rhythm {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-scene-dashboard {
    grid-template-columns: 1fr;
  }

  .story-visual {
    position: relative;
    top: auto;
    min-height: 26rem;
  }
}

@media (max-width: 1024px) {
  .topbar {
    border-radius: 16px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.62rem 0.72rem;
    gap: 0.65rem;
  }

  .topbar.is-compact {
    padding: 0.58rem 0.72rem;
  }

  .brand {
    font-size: 1rem;
    max-width: 46vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav {
    display: none;
  }

  .nav-item.has-menu > a::after {
    content: none;
  }

  .topbar-actions {
    margin-left: auto;
    gap: 0.35rem;
  }

  .topbar-actions .btn {
    min-width: auto;
    min-height: 2.65rem;
    padding: 0.52rem 0.72rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 0.48rem);
    right: 0;
    width: min(92vw, 390px);
    max-height: min(72vh, 620px);
    overflow: auto;
    border-radius: 18px;
    border: 1px solid rgba(147, 188, 220, 0.18);
    background:
      linear-gradient(180deg, rgba(12, 22, 33, 0.985), rgba(6, 14, 22, 0.985));
    box-shadow:
      0 1.1rem 2.5rem rgba(2, 8, 16, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    padding: 0.55rem;
    z-index: 95;
  }

  .topbar.menu-open .mobile-menu {
    display: grid;
    gap: 0.32rem;
  }

  .trial-modal-dialog {
    width: min(42rem, calc(100vw - 1.2rem));
    padding: 1.35rem 0.95rem 1rem;
  }

  .trial-modal-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trial-modal-title {
    max-width: 9.5ch;
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .trial-modal-copy {
    font-size: 0.94rem;
  }

  .trial-modal-actions {
    flex-direction: column;
  }

  .trial-modal-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .trial-modal-primary {
    min-width: 0;
  }

  .trial-modal-value {
    grid-template-columns: 1fr;
  }

  .trial-modal-value-item,
  .trial-modal-side-card {
    padding: 0.9rem 0.9rem 0.95rem;
  }

  .mobile-menu .mobile-link {
    display: block;
    border-radius: 12px;
    padding: 0.68rem 0.72rem;
    text-decoration: none;
    color: #e0eef9;
    border: 1px solid rgba(147, 188, 220, 0.12);
    background: rgba(255, 255, 255, 0.018);
    font-size: 0.9rem;
    font-weight: 700;
  }

  .mobile-menu .mobile-link.nav-link-spotlight {
    padding: 0.68rem 0.72rem;
    border-radius: 12px;
    box-shadow: none;
  }

  .mobile-menu .mobile-link.active {
    border-color: rgba(246, 184, 143, 0.55);
    background: rgba(232, 96, 28, 0.1);
    color: #fff;
  }

  .mobile-menu .mobile-login-link {
    margin-top: 0.32rem;
    text-align: center;
    color: var(--muted);
    border-color: rgba(147, 188, 220, 0.22);
    background: rgba(255, 255, 255, 0.03);
  }

  .story-shell {
    max-width: 100%;
  }

  .story-shell [data-reveal][data-fx="left"],
  .story-shell [data-reveal][data-fx="right"] {
    transform: translateY(18px);
  }

  .story-step {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.85rem;
    width: 100%;
  }

  .story-index {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 14px;
  }

  .story-visual {
    max-width: 100%;
  }

  .mobile-group {
    border: 1px solid rgba(147, 188, 220, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.018);
    padding: 0.18rem 0.28rem;
  }

  .mobile-group > summary {
    list-style: none;
    cursor: pointer;
    padding: 0.56rem 0.5rem;
    font-weight: 700;
    color: #edf6ff;
    font-size: 0.9rem;
    display: grid;
    gap: 0.12rem;
  }

  .mobile-group > summary span {
    display: block;
  }

  .mobile-group > summary small {
    display: block;
    color: #88a3b7;
    font-size: 0.68rem;
    line-height: 1.35;
    font-weight: 600;
  }

  .mobile-group > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-submenu {
    display: grid;
    gap: 0.42rem;
    padding: 0.12rem 0.12rem 0.38rem;
  }

  .mobile-subgroup {
    display: grid;
    gap: 0.26rem;
    padding: 0.22rem 0.14rem 0.08rem;
  }

  .mobile-subgroup-title {
    margin: 0;
    color: var(--orange-2);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-subgroup-copy {
    margin: 0;
    color: #90aabd;
    font-size: 0.67rem;
    line-height: 1.32;
  }

  .mobile-subgroup-links {
    display: grid;
    gap: 0.24rem;
  }

  .mobile-sublink {
    text-decoration: none;
    color: #c6dced;
    padding: 0.48rem 0.5rem;
    border-radius: 11px;
    font-size: 0.83rem;
    display: grid;
    gap: 0.12rem;
    border: 1px solid rgba(147, 188, 220, 0.12);
    background: rgba(255, 255, 255, 0.015);
  }

  .mobile-sublink-title {
    color: #eef6fd;
    font-weight: 700;
    line-height: 1.3;
  }

  .mobile-sublink-copy {
    color: #8ea8bb;
    font-size: 0.68rem;
    line-height: 1.34;
  }

  .mobile-sublink.active {
    color: #fff;
    background: rgba(232, 96, 28, 0.14);
    border-color: rgba(246, 184, 143, 0.32);
  }

  .reveal-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .reveal-tab {
    text-align: left;
  }

  .segment-switch {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1380px) {
  .page-shell,
  .topbar,
  .footer {
    width: min(1280px, calc(100% - 3.4rem));
  }

  .nav {
    gap: 1.4rem;
  }
}

@media (max-width: 760px) {
  .page-shell,
  .topbar,
  .footer {
    width: min(1200px, calc(100% - 1.2rem));
  }

  .section {
    padding: 4.9rem 0;
  }

  .longform-section {
    padding-top: 5.4rem;
    padding-bottom: 5.4rem;
  }

  .feature-grid,
  .kpi-band,
  .metric-grid,
  .pain-grid,
  .testimonial-grid,
  .deep-grid,
  .proof-rail,
  .content-grid-thirds,
  .trust-bridge-grid,
  .service-cluster-grid,
  .decision-grid,
  .comparison-slab,
  .resource-map,
  .ops-rhythm {
    grid-template-columns: 1fr;
  }

  .timeline-metrics {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .page-hero h1,
  .demo-booking-copy h1 {
    max-width: 14ch;
  }

  .page-hero {
    padding-top: 2.35rem;
    padding-inline: 1.05rem;
    padding-bottom: 1.2rem;
    border-radius: 1.3rem;
  }

  .page-hero .kicker {
    margin-bottom: 0.75rem;
  }

  .hero-microproof {
    margin-top: 0.75rem;
    font-size: 0.88rem;
  }

  .page-hero-signals,
  .case-outcomes,
  .final-cta-points {
    gap: 0.48rem;
  }

  .page-hero-signals span,
  .case-outcomes span,
  .final-cta-points span {
    min-height: 1.85rem;
    padding: 0.28rem 0.62rem;
    font-size: 0.74rem;
  }

  .cta-box {
    padding: 1.65rem 1rem;
    text-align: left;
  }

  .cta-box p {
    max-width: none;
    margin-inline: 0;
  }

  .final-cta-points,
  .final-cta-actions {
    justify-content: flex-start;
  }

  .hero-demo-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-proofline {
    gap: 0.45rem;
  }

  .hero-proofline span {
    white-space: normal;
  }

  .hero-scene-shell {
    min-height: 19.5rem;
  }

  .hero-scene-header,
  .hero-scene-taskline,
  .hero-content-grid-mini,
  .hero-scene-metrics {
    grid-template-columns: 1fr;
  }

  .hero-scene-header {
    justify-items: start;
  }

  .hero-scene-header strong {
    text-align: left;
  }

  .hero-scene-card-chart,
  .hero-report-builder,
  .hero-report-summary,
  .hero-content-grid-mini,
  .hero-content-queue {
    padding: 0.72rem;
  }

  .hero-scene-bars {
    height: 6.2rem;
  }

  .page-hero {
    border-radius: 1.45rem;
  }

  .demo-booking-hero {
    grid-template-columns: 1fr;
  }

  .demo-booking-copy {
    max-width: none;
    padding-top: 0;
  }

  .demo-booking-bridge {
    grid-template-columns: 1fr;
  }

  .demo-booking-intro {
    max-width: none;
  }

  .demo-booking-copy h1 {
    max-width: 10ch;
  }

  .demo-embed-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-iframe-shell,
  .demo-iframe {
    min-height: 680px;
    height: 680px;
  }

  .demo-iframe-shell-hero,
  .demo-iframe-hero {
    min-height: 680px;
    height: 680px;
  }

  .story-chaos-grid,
  .story-matrix {
    grid-template-columns: 1fr;
  }

  .report-frame-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .story-screen {
    inset: 0.95rem;
  }
}

@media (max-width: 420px) {
  .page-shell,
  .topbar,
  .footer {
    width: min(100%, calc(100% - 0.9rem));
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.5rem 0.45rem;
    padding: 0.5rem 0.55rem;
    border-radius: 18px;
  }

  .brand {
    max-width: none;
    font-size: 0.96rem;
  }

  .topbar-actions {
    grid-column: 1 / 2;
    width: 100%;
    margin-left: 0;
    gap: 0.38rem;
  }

  .topbar-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 2.6rem;
    padding: 0.48rem 0.52rem;
    font-size: 0.71rem;
    letter-spacing: -0.01em;
  }

  .mobile-menu-toggle {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: stretch;
    width: 42px;
    height: auto;
    min-height: 42px;
  }

  .mobile-menu {
    top: calc(100% + 0.4rem);
    right: 0;
    left: 0;
    width: auto;
    max-height: 68vh;
  }

  .hero-cta,
  .page-hero .cta-row,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn,
  .page-hero .cta-row .btn,
  .cta-row .btn {
    width: 100%;
  }

  .hero-microproof,
  .page-hero-signals,
  .case-outcomes,
  .final-cta-points {
    gap: 0.42rem;
  }
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes card-pulse {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-2px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes reveal-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chart-rise {
  0% {
    opacity: 0;
    transform: scaleY(0.4);
    transform-origin: bottom center;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom center;
  }
}

@keyframes shimmer-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(120%); }
}

@keyframes hero-progress {
  0% { transform: translateX(0); }
  50% { transform: translateX(240%); }
  100% { transform: translateX(0); }
}

@keyframes orbit-spin {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

@keyframes float-panel-main {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes float-panel-side {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes float-panel-flow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes hero-status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 0 0.42rem rgba(16, 185, 129, 0); }
}

@keyframes page-signal-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ---------- Consent-Banner & Platzhalter ---------- */
.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translate(-50%, 1.4rem);
  width: min(920px, calc(100% - 2rem));
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.consent-banner.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.consent-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  justify-content: space-between;
  padding: 1.05rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.consent-copy {
  flex: 1 1 340px;
  min-width: 0;
}

.consent-title {
  margin: 0 0 0.28rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
}

.consent-desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted);
}

.consent-desc a {
  color: var(--orange-2);
}

.consent-actions {
  display: flex;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.consent-btn {
  min-width: 128px;
  cursor: pointer;
}

/* "Ablehnen" gleichwertig zu "Akzeptieren": gleiche Größe/Gewicht, klar sichtbar, nicht ausgegraut */
.btn.consent-btn:not(.primary) {
  color: var(--text);
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(147, 188, 220, 0.08), rgba(147, 188, 220, 0.03));
}

.btn.consent-btn:not(.primary):hover {
  border-color: rgba(147, 188, 220, 0.5);
  transform: translateY(-1px);
}

/* Calendly-Platzhalter (vor Einwilligung) */
.demo-consent-holder {
  width: 100%;
  height: 100%;
}

.consent-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  min-height: 260px;
  padding: 1.5rem;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 27, 38, 0.6), rgba(10, 17, 26, 0.5));
}

.consent-placeholder-text {
  margin: 0;
  max-width: 42ch;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.consent-placeholder-text a {
  color: var(--orange-2);
}

.footer-consent-btn {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

.footer-consent-btn:hover {
  text-decoration: underline;
}

.consent-banner :focus-visible,
.footer-consent-btn:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .consent-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .consent-actions {
    justify-content: stretch;
  }
  .consent-btn {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consent-banner {
    transition: opacity 120ms ease;
    transform: translate(-50%, 0);
  }
  .consent-banner.is-visible {
    transform: translate(-50%, 0);
  }
}
