@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/inter-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("fonts/space-grotesk-latin-variable.woff2") format("woff2");
}

:root {
  --violet: #3f0b7a;
  --violet-2: #7a10f2;
  --cyan: #0bc4d8;
  --cyan-dark: #067d8e;
  --ink: #0a0a12;
  --ink-2: #181824;
  --text: #242433;
  --muted: #6a6a78;
  --line: #dedee8;
  --soft: #f5f6fa;
  --paper: #ffffff;
  --mint: #4abf86;
  --amber: #d7a834;
  --max: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(10, 196, 216, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(63, 11, 122, .04) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.7) 42%, rgba(255,255,255,.95));
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", Inter, sans-serif;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
  scroll-margin-top: 84px;
}

.soft {
  background: rgba(245, 246, 250, .82);
  border-top: 1px solid rgba(10, 10, 18, .05);
  border-bottom: 1px solid rgba(10, 10, 18, .05);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--violet-2));
  z-index: 200;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(10, 10, 18, .06);
  backdrop-filter: blur(18px) saturate(1.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand img {
  width: 210px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  transition: color .2s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-button {
  color: #fff !important;
  background: var(--ink);
  padding: 11px 18px;
  border-radius: 999px;
}

.hero {
  padding-top: 96px;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(390px, 520px);
  gap: 72px;
  align-items: center;
}

.lead-stack,
.pillar-content,
.companion-copy,
.origin-copy {
  min-width: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  min-width: 0;
}

.mobile-hero-anchor {
  display: none;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  max-width: 100%;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(11, 196, 216, .14);
  animation: statusPulse 2.4s var(--ease) infinite;
}

.hero h1 {
  font-size: clamp(46px, 5.2vw, 70px);
  max-width: 760px;
  overflow-wrap: normal;
  word-break: normal;
}

.hero h1 span {
  display: block;
}

.hero h1 span,
.final-cta h2 {
  background: linear-gradient(90deg, var(--violet), var(--cyan-dark), var(--violet-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin-top: 30px;
  max-width: 720px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  color: var(--ink-2);
  overflow-wrap: anywhere;
}

.hero-note {
  margin-top: 18px;
  max-width: 650px;
  font-size: 18px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(63,11,122,.16);
  background: rgba(255,255,255,.74);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

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

.button.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(10, 10, 18, .14);
}

.button.primary:hover {
  background: var(--violet);
  box-shadow: 0 20px 42px rgba(63, 11, 122, .22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
}

.button.light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.hero-system {
  position: relative;
  border: 1px solid rgba(10, 10, 18, .1);
  background: rgba(255,255,255,.86);
  min-height: 590px;
  padding: 26px;
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(10, 10, 18, .11);
  overflow: hidden;
}

.hero-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(63, 11, 122, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 196, 216, .1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}

.system-topline,
.protocol-title {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.system-topline strong {
  color: var(--mint);
}

.system-orbit {
  position: relative;
  z-index: 1;
  height: 385px;
  margin-top: 36px;
}

.system-orbit::before,
.system-orbit::after {
  content: "";
  position: absolute;
  inset: 8% 13%;
  border: 1px solid rgba(63, 11, 122, .16);
  border-radius: 50%;
  animation: rotateSlow 24s linear infinite;
}

.system-orbit::after {
  inset: 20% 25%;
  border-color: rgba(11, 196, 216, .22);
  animation-direction: reverse;
  animation-duration: 18s;
}

.system-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 126px;
  height: 126px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--cyan-dark));
  box-shadow: 0 24px 58px rgba(63, 11, 122, .24);
}

.system-core span {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  line-height: .9;
  font-weight: 800;
}

.system-core small {
  display: block;
  margin-top: -28px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.node {
  position: absolute;
  min-width: 116px;
  padding: 11px 14px;
  border: 1px solid rgba(10, 10, 18, .1);
  background: rgba(255,255,255,.9);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 28px rgba(10,10,18,.08);
  animation: nodeFloat 5s var(--ease) infinite;
}

.node-a { left: 5%; top: 15%; }
.node-b { right: 2%; top: 20%; animation-delay: -.8s; }
.node-c { left: 8%; bottom: 18%; animation-delay: -1.6s; }
.node-d { right: 8%; bottom: 14%; animation-delay: -2.4s; }
.node-e { left: 50%; top: 4%; transform: translateX(-50%); animation-delay: -3.2s; }

.system-feed {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.system-feed div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(10,10,18,.08);
  background: rgba(245,246,250,.82);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.system-feed span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.split {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 70px;
}

.section h2,
.section-head h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  max-width: 820px;
}

.lead-stack {
  display: grid;
  gap: 20px;
  font-size: 19px;
  color: var(--muted);
}

.lead-stack p:first-child {
  color: var(--ink-2);
  font-weight: 600;
}

.shadow-map {
  position: relative;
  min-height: 260px;
  margin-top: 42px;
  border: 1px solid rgba(10,10,18,.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(11,196,216,.12), transparent 45%),
    rgba(255,255,255,.72);
  overflow: hidden;
}

.shadow-map::before,
.shadow-map::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(63,11,122,.17);
  border-radius: 50%;
}

.shadow-map::after {
  inset: 56px;
  border-color: rgba(11,196,216,.25);
}

.shadow-chip {
  position: absolute;
  z-index: 2;
  max-width: 160px;
  padding: 10px 12px;
  border: 1px solid rgba(10,10,18,.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(10,10,18,.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.chip-a { top: 26px; left: 22px; }
.chip-b { top: 34px; right: 20px; }
.chip-c { bottom: 28px; left: 34px; }
.chip-d { right: 24px; bottom: 34px; }

.shadow-center {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--cyan-dark));
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  box-shadow: 0 20px 44px rgba(63,11,122,.22);
}

.section-head {
  max-width: 820px;
  margin-bottom: 72px;
}

.section-head p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
}

.pillar-list {
  display: grid;
  gap: 18px;
}

.pillar {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(10,10,18,.09);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(11,196,216,.32);
  box-shadow: 0 28px 70px rgba(10,10,18,.08);
}

.pillar-index {
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  line-height: 1;
  color: rgba(63, 11, 122, .2);
  font-weight: 800;
}

.pillar h3 {
  color: var(--violet);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.pillar h4 {
  margin-top: 8px;
  font-size: 30px;
}

.pillar p {
  margin-top: 16px;
  color: var(--muted);
}

.pillar-result {
  padding-left: 24px;
  border-left: 2px solid rgba(11,196,216,.4);
}

.pillar-result strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.pillar-result span {
  color: var(--muted);
  font-size: 15px;
}

.companion {
  color: rgba(255,255,255,.78);
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
}

.companion h2,
.companion h3,
.companion .section-kicker {
  color: #fff;
}

.companion .section-kicker {
  color: var(--cyan);
}

.companion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 72px;
  align-items: center;
}

.companion-copy p {
  margin-top: 22px;
  max-width: 720px;
  font-size: 18px;
}

.protocol {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
}

.protocol-title {
  color: rgba(255,255,255,.62);
  margin-bottom: 22px;
}

.protocol-title strong {
  color: var(--cyan);
}

.companion-scene {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  margin: 24px 0 10px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.scene-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan-dark), var(--violet-2));
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.scene-lines {
  display: grid;
  gap: 7px;
}

.scene-lines span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.35;
}

.protocol-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.protocol-row span {
  grid-row: span 2;
  color: rgba(255,255,255,.34);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 26px;
}

.protocol-row strong {
  color: #fff;
  font-size: 18px;
}

.protocol-row em {
  color: rgba(255,255,255,.58);
  font-style: normal;
  font-size: 15px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.outcome,
.step {
  border: 1px solid rgba(10,10,18,.08);
  background: #fff;
  border-radius: 8px;
  padding: 26px;
}

.outcome strong,
.step strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.15;
}

.outcome p,
.step p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  gap: 74px;
  align-items: start;
}

.origin-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
}

.origin-copy p:first-of-type {
  color: var(--ink-2);
  font-weight: 700;
}

.people {
  display: grid;
  gap: 18px;
}

.origin-card {
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(63,11,122,.95), rgba(6,125,142,.92)),
    var(--ink);
  box-shadow: 0 28px 72px rgba(63,11,122,.18);
}

.origin-card span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.origin-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  line-height: 1.1;
}

.origin-card p {
  margin-top: 16px;
  color: rgba(255,255,255,.72);
}

.person {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: var(--soft);
  border: 1px solid rgba(10,10,18,.07);
  border-radius: 8px;
}

.person img {
  width: 132px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
}

.person h3 {
  font-size: 26px;
}

.person p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.proof-line {
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(63,11,122,.18);
  background: linear-gradient(135deg, rgba(63,11,122,.08), rgba(11,196,216,.09));
}

.proof-line strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  line-height: 1.16;
}

.proof-line span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step span {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 800;
}

.final-cta {
  text-align: center;
  background: #fff;
}

.final-cta h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(40px, 6vw, 76px);
}

.final-cta p {
  max-width: 650px;
  margin: 28px auto 42px;
  color: var(--muted);
  font-size: 20px;
}

.footer {
  padding: 48px 0;
  background: var(--ink);
  color: rgba(255,255,255,.64);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer img {
  width: 168px;
  filter: brightness(0) invert(1);
  opacity: .88;
}

.footer div div {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
}

.footer-legal-note {
  flex-basis: 100%;
  color: rgba(255,255,255,.46);
  font-size: 13px;
}

.legal-page {
  background:
    radial-gradient(circle at 16% 12%, rgba(11, 196, 216, .12), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(122, 16, 242, .10), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,248,252,.94));
}

.legal-shell {
  max-width: 920px;
}

.legal-shell h1 {
  margin: 18px 0 34px;
  font-size: clamp(42px, 7vw, 82px);
  letter-spacing: 0;
}

.legal-card {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(10, 10, 18, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 28px 90px rgba(41, 28, 83, .10);
  backdrop-filter: blur(18px) saturate(1.08);
}

.legal-card h2 {
  margin: 32px 0 10px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p + h2 {
  margin-top: 32px;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card ul + p {
  margin-top: 14px;
}

.legal-card ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-card li + li {
  margin-top: 4px;
}

.legal-card strong {
  color: var(--ink);
}

.legal-card a {
  color: var(--violet);
  font-weight: 800;
  text-decoration: none;
}

.legal-card a:hover {
  color: var(--cyan-strong);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes statusPulse {
  50% {
    transform: scale(1.25);
    opacity: .72;
  }
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes nodeFloat {
  50% {
    translate: 0 -8px;
  }
}

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

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

@media (max-width: 980px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .section {
    padding: 82px 0;
  }

  .nav {
    min-height: 70px;
  }

  .brand img {
    width: 166px;
  }

  .nav-links a:not(.nav-button) {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 62px;
  }

  .hero-grid,
  .split,
  .companion-grid,
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-system {
    min-height: 500px;
  }

  .hero h1 {
    max-width: 820px;
    font-size: clamp(38px, 7.6vw, 62px);
  }

  .pillar {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pillar-result {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 2px solid rgba(11,196,216,.4);
  }

  .outcome-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  body {
    background-size: 44px 44px;
  }

  .nav-button {
    padding: 10px 13px;
    font-size: 13px;
  }

  .nav-links {
    display: none;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(32px, 8.8vw, 40px);
    line-height: 1.02;
    max-width: 100%;
  }

  .hero-copy,
  .hero-copy > * {
    width: 100%;
    max-width: calc(100vw - 32px) !important;
    min-width: 0;
  }

  .hero-lead,
  .hero-note {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px) !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-system {
    min-height: 430px;
    padding: 18px;
  }

  .system-orbit {
    height: 292px;
  }

  .node {
    min-width: 92px;
    font-size: 12px;
    padding: 9px 10px;
  }

  .system-core {
    width: 105px;
    height: 105px;
  }

  .outcome-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .person {
    grid-template-columns: 92px 1fr;
    gap: 16px;
  }

  .person img {
    width: 92px;
  }

  .person h3 {
    font-size: 22px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 54px;
  }

  .hero-copy,
  .hero-copy > *,
  .hero-lead,
  .hero-note,
  .mobile-hero-anchor {
    width: 100%;
    max-width: 100% !important;
    min-width: 0;
  }

  .mobile-hero-anchor {
    display: grid;
    position: relative;
    gap: 9px;
    margin: 2px 0 20px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.085);
    box-shadow: 0 18px 46px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    overflow: hidden;
  }

  .mobile-hero-anchor img {
    width: 100%;
    aspect-ratio: 16 / 6.8;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.12);
  }

  .mobile-anchor-badges {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 82px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
  }

  .mobile-anchor-badges span {
    width: auto;
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(5, 7, 19, .58);
    color: rgba(255,255,255,.86);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
    backdrop-filter: blur(10px);
  }

  .mobile-anchor-copy {
    display: grid;
    gap: 4px;
    padding: 0 2px 2px;
  }

  .mobile-anchor-copy strong {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    line-height: 1.1;
  }

  .mobile-anchor-copy span {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.42;
  }

  .hero h1 {
    font-size: clamp(29px, 7.9vw, 34px);
    line-height: 1.04;
    max-width: 100% !important;
  }

  .hero-lead {
    width: 100%;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero-note {
    display: none;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-system {
    display: none !important;
  }
}

/* Final light hero override. Keep this at the end so older dark experiment blocks cannot win. */
.hero {
  color: var(--text);
  background:
    radial-gradient(circle at 86% 16%, rgba(122, 16, 242, .11), transparent 34%),
    radial-gradient(circle at 4% 86%, rgba(11, 196, 216, .14), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #ffffff 48%, #f8f4ff 100%);
  overflow: hidden;
}

.hero::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(11,196,216,.07), transparent 22%),
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,.86) 66%, #fff 100%);
  filter: none;
  opacity: .72;
  transform: none;
}

.hero::after {
  display: none;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4 {
  color: var(--ink);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--violet), #1b83d4 44%, var(--cyan) 76%, var(--violet-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-lead {
  color: var(--ink-2);
}

.hero-note {
  color: var(--muted);
}

.eyebrow,
.hero .section-kicker {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--violet);
  background: rgba(122,16,242,.08);
  letter-spacing: 0;
  text-transform: none;
}

.hero-proof span {
  color: var(--muted);
  border-color: rgba(63,11,122,.14);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 26px rgba(10,10,18,.05);
}

.hero .button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 18px 38px rgba(10,10,18,.12);
}

.hero .button.secondary {
  color: var(--ink);
  border-color: rgba(10,10,18,.2);
  background: rgba(255,255,255,.82);
}

.hero-system {
  border-color: rgba(10,10,18,.08);
  background: rgba(255,255,255,.78);
  box-shadow: 0 30px 86px rgba(41, 28, 83, .12), 0 0 0 1px rgba(255,255,255,.76) inset;
}

.hero-system::before {
  background: radial-gradient(circle at 22% 18%, rgba(11,196,216,.12), transparent 32%);
  opacity: 1;
  mask-image: none;
}

.hero-system::after {
  border-color: rgba(10,10,18,.06);
  box-shadow: none;
}

.system-topline {
  color: rgba(24,24,36,.64);
}

.system-topline strong {
  color: var(--cyan-dark);
}

.system-feed div {
  color: rgba(24,24,36,.68);
  border-color: rgba(10,10,18,.08);
  background: rgba(255,255,255,.68);
}

.visual-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #060714;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual {
  border: 1px solid rgba(10,10,18,.08);
  box-shadow: 0 22px 64px rgba(41, 28, 83, .14);
}

.light-stream {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.light-stream::before,
.light-stream::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,196,216,.52), rgba(255,77,231,.46), transparent);
  filter: blur(.2px);
  opacity: .62;
}

.light-stream::before {
  top: 50%;
  transform: rotate(-1.6deg);
}

.light-stream::after {
  top: 57%;
  transform: rotate(2.2deg);
  opacity: .34;
}

.light-stream span {
  position: absolute;
  left: 7%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #65f6ff;
  box-shadow: 0 0 12px #65f6ff, 0 0 28px rgba(122,16,242,.78);
  opacity: 0;
  animation: signalFlowA 5.8s linear infinite;
}

.light-stream span:nth-child(2) {
  width: 5px;
  height: 5px;
  animation-name: signalFlowB;
  animation-delay: .85s;
  animation-duration: 6.4s;
  background: #d864ff;
}

.light-stream span:nth-child(3) {
  animation-name: signalFlowC;
  animation-delay: 1.55s;
  animation-duration: 5.2s;
}

.light-stream span:nth-child(4) {
  width: 4px;
  height: 4px;
  animation-name: signalFlowA;
  animation-delay: 2.35s;
  animation-duration: 6.9s;
  background: #ffffff;
}

.light-stream span:nth-child(5) {
  width: 6px;
  height: 6px;
  animation-name: signalFlowB;
  animation-delay: 3.05s;
  animation-duration: 5.7s;
}

.light-stream span:nth-child(6) {
  width: 4px;
  height: 4px;
  animation-name: signalFlowC;
  animation-delay: 4.05s;
  animation-duration: 7.2s;
  background: #ff6df2;
}

@keyframes signalFlowA {
  0% { left: 8%; top: 56%; opacity: 0; transform: scale(.55); }
  10% { opacity: .95; }
  34% { top: 44%; }
  56% { top: 51%; transform: scale(1); }
  78% { top: 39%; opacity: .95; }
  100% { left: 91%; top: 52%; opacity: 0; transform: scale(.72); }
}

@keyframes signalFlowB {
  0% { left: 12%; top: 50%; opacity: 0; transform: scale(.45); }
  12% { opacity: .8; }
  38% { top: 58%; }
  62% { top: 45%; }
  100% { left: 88%; top: 42%; opacity: 0; transform: scale(.68); }
}

@keyframes signalFlowC {
  0% { left: 15%; top: 61%; opacity: 0; transform: scale(.5); }
  13% { opacity: .85; }
  42% { top: 48%; }
  68% { top: 54%; }
  100% { left: 94%; top: 36%; opacity: 0; transform: scale(.62); }
}

@media (max-width: 640px) {
  .hero {
    background:
      radial-gradient(circle at 88% 10%, rgba(122,16,242,.12), transparent 42%),
      radial-gradient(circle at 4% 76%, rgba(11,196,216,.14), transparent 36%),
      #fff;
  }

  .hero::before {
    opacity: .6;
  }

  .eyebrow,
  .hero .section-kicker {
    padding: 8px 12px;
    background: rgba(122,16,242,.075);
  }

  .mobile-hero-anchor {
    border-color: rgba(10,10,18,.08);
    background: rgba(255,255,255,.88);
    box-shadow: 0 20px 54px rgba(41,28,83,.12), 0 0 0 1px rgba(255,255,255,.82) inset;
  }

  .mobile-hero-anchor .visual-frame {
    aspect-ratio: 16 / 6.8;
    border: 1px solid rgba(10,10,18,.08);
  }

  .mobile-hero-anchor img {
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
  }

  .mobile-anchor-badges {
    top: 118px;
    bottom: auto;
    z-index: 3;
  }

  .mobile-anchor-badges span {
    border-color: rgba(255,255,255,.22);
    background: rgba(5,7,19,.66);
    color: rgba(255,255,255,.9);
  }

  .mobile-anchor-copy strong {
    color: var(--ink);
  }

  .mobile-anchor-copy span {
    color: var(--muted);
  }

  .hero .button.primary {
    background: var(--ink);
    box-shadow: 0 18px 38px rgba(10,10,18,.12);
  }

  .hero .button.secondary {
    color: var(--ink);
    border-color: rgba(10,10,18,.18);
    background: rgba(255,255,255,.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .light-stream span {
    animation: none;
    opacity: 0;
  }
}

/* Light hero direction, closer to the original Symneo page, with subtle motion on the generated visual. */
.hero {
  color: var(--text);
  background:
    radial-gradient(circle at 86% 16%, rgba(122, 16, 242, .12), transparent 34%),
    radial-gradient(circle at 4% 86%, rgba(11, 196, 216, .15), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #ffffff 48%, #f8f4ff 100%);
  overflow: hidden;
}

.hero::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(11,196,216,.08), transparent 22%),
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,.88) 66%, #fff 100%);
  filter: none;
  opacity: .72;
  transform: none;
}

.hero::after {
  display: none;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4 {
  color: var(--ink);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--violet), #1b83d4 44%, var(--cyan) 76%, var(--violet-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-lead {
  color: var(--ink-2);
}

.hero-note {
  color: var(--muted);
}

.eyebrow,
.hero .section-kicker {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--violet);
  background: rgba(122,16,242,.08);
  letter-spacing: 0;
  text-transform: none;
}

.hero-proof span {
  color: var(--muted);
  border-color: rgba(63,11,122,.14);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 26px rgba(10,10,18,.05);
}

.hero .button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 18px 38px rgba(10,10,18,.12);
}

.hero .button.secondary {
  color: var(--ink);
  border-color: rgba(10,10,18,.2);
  background: rgba(255,255,255,.82);
}

.hero-system {
  border-color: rgba(10,10,18,.08);
  background: rgba(255,255,255,.78);
  box-shadow: 0 30px 86px rgba(41, 28, 83, .12), 0 0 0 1px rgba(255,255,255,.76) inset;
}

.hero-system::before {
  background: radial-gradient(circle at 22% 18%, rgba(11,196,216,.12), transparent 32%);
  opacity: 1;
  mask-image: none;
}

.hero-system::after {
  border-color: rgba(10,10,18,.06);
  box-shadow: none;
}

.system-topline {
  color: rgba(24,24,36,.64);
}

.system-topline strong {
  color: var(--cyan-dark);
}

.system-feed div {
  color: rgba(24,24,36,.68);
  border-color: rgba(10,10,18,.08);
  background: rgba(255,255,255,.68);
}

.visual-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #060714;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual {
  border: 1px solid rgba(10,10,18,.08);
  box-shadow: 0 22px 64px rgba(41, 28, 83, .14);
}

.light-stream {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.light-stream::before,
.light-stream::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,196,216,.52), rgba(255,77,231,.46), transparent);
  filter: blur(.2px);
  opacity: .62;
}

.light-stream::before {
  top: 50%;
  transform: rotate(-1.6deg);
}

.light-stream::after {
  top: 57%;
  transform: rotate(2.2deg);
  opacity: .34;
}

.light-stream span {
  position: absolute;
  left: 7%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #65f6ff;
  box-shadow: 0 0 12px #65f6ff, 0 0 28px rgba(122,16,242,.78);
  opacity: 0;
  animation: signalFlowA 5.8s linear infinite;
}

.light-stream span:nth-child(2) {
  width: 5px;
  height: 5px;
  animation-name: signalFlowB;
  animation-delay: .85s;
  animation-duration: 6.4s;
  background: #d864ff;
}

.light-stream span:nth-child(3) {
  animation-name: signalFlowC;
  animation-delay: 1.55s;
  animation-duration: 5.2s;
}

.light-stream span:nth-child(4) {
  width: 4px;
  height: 4px;
  animation-name: signalFlowA;
  animation-delay: 2.35s;
  animation-duration: 6.9s;
  background: #ffffff;
}

.light-stream span:nth-child(5) {
  width: 6px;
  height: 6px;
  animation-name: signalFlowB;
  animation-delay: 3.05s;
  animation-duration: 5.7s;
}

.light-stream span:nth-child(6) {
  width: 4px;
  height: 4px;
  animation-name: signalFlowC;
  animation-delay: 4.05s;
  animation-duration: 7.2s;
  background: #ff6df2;
}

@keyframes signalFlowA {
  0% { left: 8%; top: 56%; opacity: 0; transform: scale(.55); }
  10% { opacity: .95; }
  34% { top: 44%; }
  56% { top: 51%; transform: scale(1); }
  78% { top: 39%; opacity: .95; }
  100% { left: 91%; top: 52%; opacity: 0; transform: scale(.72); }
}

@keyframes signalFlowB {
  0% { left: 12%; top: 50%; opacity: 0; transform: scale(.45); }
  12% { opacity: .8; }
  38% { top: 58%; }
  62% { top: 45%; }
  100% { left: 88%; top: 42%; opacity: 0; transform: scale(.68); }
}

@keyframes signalFlowC {
  0% { left: 15%; top: 61%; opacity: 0; transform: scale(.5); }
  13% { opacity: .85; }
  42% { top: 48%; }
  68% { top: 54%; }
  100% { left: 94%; top: 36%; opacity: 0; transform: scale(.62); }
}

@media (max-width: 640px) {
  .hero {
    background:
      radial-gradient(circle at 88% 10%, rgba(122,16,242,.12), transparent 42%),
      radial-gradient(circle at 4% 76%, rgba(11,196,216,.14), transparent 36%),
      #fff;
  }

  .hero::before {
    opacity: .6;
  }

  .eyebrow,
  .hero .section-kicker {
    padding: 8px 12px;
    background: rgba(122,16,242,.075);
  }

  .mobile-hero-anchor {
    border-color: rgba(10,10,18,.08);
    background: rgba(255,255,255,.88);
    box-shadow: 0 20px 54px rgba(41,28,83,.12), 0 0 0 1px rgba(255,255,255,.82) inset;
  }

  .mobile-hero-anchor .visual-frame {
    aspect-ratio: 16 / 6.8;
    border: 1px solid rgba(10,10,18,.08);
  }

  .mobile-hero-anchor img {
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
  }

  .mobile-anchor-badges {
    top: 118px;
    bottom: auto;
  }

  .mobile-anchor-badges span {
    border-color: rgba(255,255,255,.22);
    background: rgba(5,7,19,.66);
    color: rgba(255,255,255,.9);
  }

  .mobile-anchor-copy strong {
    color: var(--ink);
  }

  .mobile-anchor-copy span {
    color: var(--muted);
  }

  .hero .button.primary {
    background: var(--ink);
    box-shadow: 0 18px 38px rgba(10,10,18,.12);
  }

  .hero .button.secondary {
    color: var(--ink);
    border-color: rgba(10,10,18,.18);
    background: rgba(255,255,255,.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .light-stream span {
    animation: none;
    opacity: 0;
  }
}

/* Final mobile hero override: keep the first viewport visual, compact and readable. */
@media (max-width: 640px) {
  .hero {
    padding-top: 26px;
    padding-bottom: 54px;
  }

  .mobile-hero-anchor {
    position: relative;
    gap: 9px;
    margin: 2px 0 20px;
    padding: 8px;
    background: rgba(255,255,255,.085);
  }

  .mobile-hero-anchor img {
    aspect-ratio: 16 / 6.8;
  }

  .mobile-anchor-badges {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 82px;
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 !important;
  }

  .mobile-anchor-badges span {
    width: auto;
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(5, 7, 19, .58);
    color: rgba(255,255,255,.86);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
    backdrop-filter: blur(10px);
  }

  .mobile-anchor-copy {
    display: grid !important;
    gap: 4px;
    padding: 0 2px 2px !important;
  }

  .mobile-anchor-copy strong {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    line-height: 1.1;
  }

  .mobile-anchor-copy span {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.42;
  }

  .hero h1 {
    font-size: clamp(29px, 7.9vw, 34px);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-system {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 26px;
    padding-bottom: 54px;
  }

  .mobile-hero-anchor {
    position: relative;
    gap: 9px;
    margin: 2px 0 20px;
    padding: 8px;
    background: rgba(255,255,255,.085);
  }

  .mobile-hero-anchor img {
    aspect-ratio: 16 / 6.8;
  }

  .mobile-anchor-badges {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 82px;
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 !important;
  }

  .mobile-anchor-badges span {
    width: auto;
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(5, 7, 19, .58);
    color: rgba(255,255,255,.86);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
    backdrop-filter: blur(10px);
  }

  .mobile-anchor-copy {
    display: grid !important;
    gap: 4px;
    padding: 0 2px 2px !important;
  }

  .mobile-anchor-copy strong {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    line-height: 1.1;
  }

  .mobile-anchor-copy span {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.42;
  }

  .hero h1 {
    font-size: clamp(29px, 7.9vw, 34px);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-system {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 60px;
  }

  .mobile-hero-anchor {
    display: grid;
    gap: 12px;
    margin: 6px 0 26px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    box-shadow: 0 18px 46px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
  }

  .mobile-hero-anchor img {
    width: 100%;
    aspect-ratio: 16 / 8.2;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.12);
  }

  .mobile-hero-anchor div {
    display: grid;
    gap: 4px;
    padding: 0 2px 2px;
  }

  .mobile-hero-anchor strong {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    line-height: 1.1;
  }

  .mobile-hero-anchor span {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.42;
  }

  .hero h1 {
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.04;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.42;
  }

  .hero-note {
    display: none;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-system {
    display: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand img {
    width: 138px;
  }

  .nav-button {
    font-size: 12px;
    padding: 9px 10px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 10px;
    letter-spacing: .12em;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.08;
    width: 100%;
    max-width: calc(100vw - 28px) !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .hero-copy > *,
  .hero-lead,
  .hero-note {
    width: 100%;
    max-width: min(340px, 100%) !important;
  }

  .hero-note {
    font-size: 16px;
  }

  .hero-proof span {
    font-size: 12px;
  }

  .system-topline {
    font-size: 11px;
  }

  .system-orbit {
    height: 250px;
  }

  .hero-system {
    min-height: 395px;
  }

  .node-a { left: 0; top: 14%; }
  .node-b { right: 0; top: 20%; }
  .node-c { left: 0; bottom: 15%; }
  .node-d { right: 0; bottom: 12%; }

  .shadow-map {
    min-height: 300px;
  }

  .shadow-chip {
    max-width: 132px;
    font-size: 12px;
  }

  .chip-a { top: 22px; left: 14px; }
  .chip-b { top: 38px; right: 12px; }
  .chip-c { bottom: 32px; left: 16px; }
  .chip-d { right: 14px; bottom: 48px; }

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

  .protocol,
  .pillar,
  .outcome,
  .step,
  .proof-line {
    padding: 22px;
  }
}

/* Visual Upgrade: mehr Tiefe, stärkere Anker, ruhige Neon-Tech-Anmutung */
.ambient-stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(63, 11, 122, .16), transparent 36%),
    linear-gradient(245deg, rgba(11, 196, 216, .14), transparent 42%),
    linear-gradient(180deg, #070812 0%, #101121 38%, #f7f8fb 56%, #ffffff 100%);
}

.ambient-stage span {
  position: absolute;
  width: 140vw;
  height: 1px;
  left: -20vw;
  background: linear-gradient(90deg, transparent, rgba(11,196,216,.55), rgba(122,16,242,.48), transparent);
  transform: rotate(-8deg);
  opacity: .42;
  filter: blur(.2px);
}

.ambient-stage span:nth-child(1) { top: 18vh; }
.ambient-stage span:nth-child(2) { top: 31vh; transform: rotate(6deg); opacity: .28; }
.ambient-stage span:nth-child(3) { top: 47vh; transform: rotate(-3deg); opacity: .22; }

body {
  background:
    linear-gradient(90deg, rgba(11,196,216,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(122,16,242,.045) 1px, transparent 1px),
    #ffffff;
  background-size: 72px 72px;
}

body::before {
  background:
    linear-gradient(180deg, rgba(7,8,18,.06), rgba(255,255,255,.82) 47%, rgba(255,255,255,.98)),
    linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.5), rgba(255,255,255,.92));
}

.site-header {
  background: rgba(255, 255, 255, .84);
  border-bottom-color: rgba(10,10,18,.08);
  box-shadow: 0 16px 44px rgba(10,10,18,.08);
}

.nav-links {
  color: rgba(24,24,36,.72);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-button {
  background: linear-gradient(135deg, var(--violet-2), var(--cyan-dark));
  box-shadow: 0 12px 28px rgba(11,196,216,.18);
}

.hero {
  position: relative;
  color: rgba(255,255,255,.76);
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(128deg, rgba(63,11,122,.82), rgba(7,8,18,.96) 44%, rgba(5,43,56,.86));
  background-size: 68px 68px, 68px 68px, auto;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8vw 8% -8vw;
  height: 44%;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(92deg, transparent 6%, rgba(11,196,216,.34) 18%, transparent 30%),
    linear-gradient(96deg, transparent 34%, rgba(122,16,242,.36) 50%, transparent 64%),
    linear-gradient(88deg, transparent 62%, rgba(11,196,216,.24) 78%, transparent 92%);
  filter: blur(18px);
  opacity: .58;
  transform: skewY(-6deg);
}

.hero::after {
  background:
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(11,196,216,.18) 53px 54px, transparent 55px 104px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(122,16,242,.14) 43px 44px, transparent 45px 84px);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  opacity: .46;
  transform: perspective(900px) rotateX(63deg) translateY(110px);
  transform-origin: center bottom;
}

.hero-grid,
.hero-copy,
.hero-system {
  position: relative;
  z-index: 2;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4 {
  color: #fff;
}

.hero h1 span {
  background: linear-gradient(90deg, #ffffff, #19d9ea 42%, #b84cff 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(11,196,216,.18);
}

.hero-lead {
  color: rgba(255,255,255,.88);
}

.hero-note {
  color: rgba(255,255,255,.62);
}

.eyebrow,
.hero .section-kicker {
  color: #69efff;
}

.hero-proof span {
  color: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.hero .button.primary {
  background: linear-gradient(135deg, #8b19ff, #0bc4d8);
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(11,196,216,.22), 0 0 0 1px rgba(255,255,255,.08) inset;
}

.hero .button.secondary {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

.hero-system {
  border-color: rgba(255,255,255,.13);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    rgba(5, 7, 19, .66);
  box-shadow: 0 38px 110px rgba(0,0,0,.32), 0 0 0 1px rgba(11,196,216,.09) inset;
}

.hero-system::before {
  background:
    linear-gradient(90deg, rgba(11,196,216,.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(122,16,242,.16) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 94%);
}

.hero-system::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(11,196,216,.16);
  border-radius: 8px;
  pointer-events: none;
  box-shadow: 0 0 38px rgba(11,196,216,.08) inset;
}

.system-topline {
  color: rgba(255,255,255,.62);
}

.system-signal {
  position: absolute;
  inset: 96px 28px auto;
  height: 98px;
  z-index: 1;
  opacity: .78;
}

.system-signal i {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,196,216,.8), rgba(122,16,242,.72), transparent);
  transform-origin: 50% 50%;
}

.system-signal i:nth-child(1) { top: 18px; transform: rotate(8deg); }
.system-signal i:nth-child(2) { top: 42px; transform: rotate(-5deg); opacity: .75; }
.system-signal i:nth-child(3) { top: 66px; transform: rotate(4deg); opacity: .58; }
.system-signal i:nth-child(4) { top: 86px; transform: rotate(-8deg); opacity: .44; }

.system-orbit::before,
.system-orbit::after {
  border-color: rgba(11,196,216,.28);
  box-shadow: 0 0 34px rgba(11,196,216,.08);
}

.system-orbit::after {
  border-color: rgba(184,76,255,.28);
}

.system-core {
  background:
    linear-gradient(135deg, rgba(11,196,216,.94), rgba(122,16,242,.96));
  box-shadow: 0 24px 70px rgba(122,16,242,.38), 0 0 45px rgba(11,196,216,.22);
}

.node {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.15);
  background: rgba(9, 11, 29, .78);
  box-shadow: 0 16px 36px rgba(0,0,0,.2), 0 0 22px rgba(11,196,216,.08);
}

.system-feed div {
  color: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
}

.companion-impact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(11, 196, 216, .10), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,255,.92));
}

.impact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.impact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: .88;
}

.companion-impact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 38%, rgba(255,255,255,.52) 67%, rgba(255,255,255,.32) 100%),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.76));
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(360px, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.impact-copy h2 {
  max-width: 740px;
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.impact-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.66;
}

.impact-copy p + p {
  margin-top: 22px;
}

.impact-lead {
  margin-top: 26px;
  color: var(--text) !important;
  font-weight: 600;
}

.impact-cards {
  display: grid;
  gap: 14px;
}

.impact-cards article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px 18px;
  padding: 18px;
  border: 1px solid rgba(10,10,18,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 44px rgba(41, 28, 83, .08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.impact-cards article > span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--violet);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(63,11,122,.12);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.impact-cards strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.impact-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
}

.companion-map {
  position: relative;
  min-height: 620px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(11,196,216,.18), transparent 25%),
    radial-gradient(circle at 22% 18%, rgba(122,16,242,.16), transparent 30%),
    radial-gradient(circle at 78% 78%, rgba(11,196,216,.12), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.74), rgba(248,250,255,.44));
  border: 1px solid rgba(63,11,122,.10);
  box-shadow: 0 30px 90px rgba(41, 28, 83, .12);
  backdrop-filter: blur(18px) saturate(1.08);
}

.companion-map::before,
.companion-map::after {
  content: "";
  position: absolute;
  inset: 74px;
  border: 1px solid rgba(11,196,216,.22);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.companion-map::after {
  inset: 126px 54px;
  border-color: rgba(122,16,242,.20);
  transform: rotate(12deg);
}

.map-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(245px, 58%);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 26px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.28), transparent 26%),
    linear-gradient(135deg, rgba(63,11,122,.96), rgba(11,196,216,.94));
  box-shadow: 0 26px 80px rgba(63,11,122,.24), 0 0 42px rgba(11,196,216,.24);
  transform: translate(-50%, -50%);
}

.map-core span {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.map-core strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
}

.map-node {
  position: absolute;
  z-index: 3;
  width: min(230px, 42%);
  padding: 16px;
  border: 1px solid rgba(10,10,18,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 44px rgba(41, 28, 83, .10);
  backdrop-filter: blur(14px) saturate(1.1);
}

.map-node::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 1px;
  top: 50%;
  background: linear-gradient(90deg, rgba(122,16,242,.34), rgba(11,196,216,.52));
}

.map-node:nth-of-type(2)::before,
.map-node:nth-of-type(4)::before,
.map-node:nth-of-type(6)::before {
  right: -48px;
}

.map-node:nth-of-type(3)::before,
.map-node:nth-of-type(5)::before,
.map-node:nth-of-type(7)::before {
  left: -48px;
}

.map-node span {
  color: var(--violet);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.map-node strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.map-node em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.38;
}

.map-node.memory { left: 30px; top: 42px; }
.map-node.context { right: 30px; top: 72px; }
.map-node.role { left: 28px; top: 250px; }
.map-node.tasks { right: 28px; top: 272px; }
.map-node.identity { left: 48px; bottom: 60px; width: min(258px, 48%); }
.map-node.growth { right: 48px; bottom: 54px; }

.map-output {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(420px, calc(100% - 36px));
  transform: translateX(-50%);
}

.map-output span {
  padding: 8px 12px;
  border: 1px solid rgba(63,11,122,.12);
  border-radius: 999px;
  color: var(--violet);
  background: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(41, 28, 83, .07);
}

.companion-map-image {
  min-height: 0;
  margin: 0;
  display: grid;
  align-content: end;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
}

.companion-map-image::before,
.companion-map-image::after {
  display: none;
}

.companion-map-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  grid-area: 1 / 1;
}

.companion-map-image figcaption {
  grid-area: 1 / 1;
  align-self: end;
  position: relative;
  z-index: 3;
  width: min(620px, calc(100% - 34px));
  margin: 0 17px 76px;
  padding: 20px 22px;
  border: 1px solid rgba(63,11,122,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 62px rgba(41, 28, 83, .12);
  backdrop-filter: blur(14px) saturate(1.12);
}

.companion-map-image figcaption strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(19px, 1.8vw, 27px);
  line-height: 1.18;
}

.companion-map-image figcaption span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.companion-map-image .map-output {
  bottom: 22px;
}

.companion-human-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(63,11,122,.10);
  background: rgba(255,255,255,.72);
  box-shadow: 0 30px 90px rgba(41, 28, 83, .12);
}

.companion-human-visual::before {
  content: "";
  position: absolute;
  inset: -18px;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 48%, rgba(122,16,242,.18), transparent 32%),
    radial-gradient(circle at 34% 72%, rgba(11,196,216,.16), transparent 36%);
  filter: blur(18px);
  z-index: 1;
}

.companion-human-visual img {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 78% center;
}

.soft {
  background:
    linear-gradient(135deg, rgba(245,246,250,.92), rgba(255,255,255,.72)),
    linear-gradient(90deg, rgba(63,11,122,.08), transparent 45%, rgba(11,196,216,.08));
}

.problem {
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(11,196,216,.11), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(122,16,242,.08), transparent 32%);
  opacity: 1;
}

.problem .container {
  position: relative;
  z-index: 1;
}

.problem h2 {
  max-width: 660px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.12;
}

.problem h2 span {
  display: block;
}

.problem h2 span + span {
  margin-top: 6px;
  color: var(--violet);
}

.shadow-dashboard {
  position: relative;
  min-height: 430px;
  margin-top: 42px;
  border-radius: 8px;
  overflow: hidden;
  background: #070812;
  border: 1px solid rgba(11,196,216,.18);
  box-shadow: 0 28px 76px rgba(10,10,18,.14);
}

.shadow-dashboard > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
}

.shadow-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,8,18,.82), rgba(7,8,18,.28) 54%, rgba(7,8,18,.62)),
    linear-gradient(180deg, rgba(7,8,18,.18), rgba(7,8,18,.72));
}

.dashboard-glass {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.dashboard-top,
.signal-row {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(7, 8, 18, .48);
  backdrop-filter: blur(14px) saturate(1.2);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
}

.dashboard-top span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dashboard-top strong {
  color: #69efff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.signal-row {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
}

.signal-row span {
  color: #69efff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signal-row strong {
  color: #fff;
  font-size: 15px;
}

.signal-row em {
  color: rgba(255,255,255,.62);
  font-style: normal;
  font-size: 13px;
}

.shadow-workplace {
  position: relative;
  margin: 42px 0 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 28px 76px rgba(41, 28, 83, .14),
    0 0 0 1px rgba(255, 255, 255, .72) inset;
}

.shadow-workplace img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.shadow-workplace::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 54%, rgba(10, 10, 18, .36)),
    radial-gradient(circle at 68% 58%, rgba(11, 196, 216, .14), transparent 28%);
}

.shadow-workplace figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 14px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(18px) saturate(1.18);
  box-shadow: 0 18px 48px rgba(10, 10, 18, .14);
}

.shadow-workplace figcaption span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.shadow-workplace figcaption strong {
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.15;
  text-align: right;
}

.problem-insights {
  align-self: center;
  gap: 0;
  max-width: 690px;
  color: var(--text);
}

.problem-insights article {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  padding: 10px 0 34px;
}

.problem-insights article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 54px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, rgba(11,196,216,.45), rgba(63,11,122,.16));
}

.problem-insights article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--violet);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(63,11,122,.12);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.problem-insights strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(20px, 1.65vw, 23px);
  line-height: 1.28;
}

.problem-insights p,
.lead-stack.problem-insights p:first-child {
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.62;
}

.problem-insights article:first-child strong {
  color: var(--ink);
}

.shadow-map {
  min-height: 340px;
  border-color: rgba(11,196,216,.22);
  background:
    linear-gradient(135deg, rgba(8,10,24,.98), rgba(17,10,45,.94) 55%, rgba(5,44,58,.9));
  box-shadow: 0 30px 82px rgba(10,10,18,.14);
}

.shadow-map::before,
.shadow-map::after {
  border-style: solid;
  border-color: rgba(11,196,216,.22);
  box-shadow: 0 0 36px rgba(11,196,216,.08);
}

.shadow-map::after {
  border-color: rgba(184,76,255,.24);
}

.radar-sweep {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, rgba(11,196,216,.32), transparent 28%, transparent 100%);
  border-radius: 50%;
  animation: rotateSlow 7s linear infinite;
  opacity: .72;
}

.shadow-chip {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: 0 16px 34px rgba(0,0,0,.18), 0 0 24px rgba(122,16,242,.1);
}

.shadow-center {
  background: linear-gradient(135deg, #8b19ff, #0bc4d8);
  box-shadow: 0 24px 58px rgba(11,196,216,.28), 0 0 42px rgba(122,16,242,.25);
}

.visual-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: -18px 0 42px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(135deg, #070812, #141027 54%, #052c3a);
  background-size: 48px 48px, 48px 48px, auto;
  box-shadow: 0 34px 90px rgba(10,10,18,.16);
  overflow: hidden;
}

.visual-flow::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 104px;
  height: 2px;
  background: linear-gradient(90deg, rgba(11,196,216,.08), rgba(11,196,216,.8), rgba(184,76,255,.82), rgba(11,196,216,.2));
  box-shadow: 0 0 28px rgba(11,196,216,.38);
}

.flow-card {
  position: relative;
  z-index: 1;
  min-height: 292px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.flow-card > span {
  display: block;
  margin-top: 24px;
  color: #ff4df2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 22px rgba(255,77,242,.38);
}

.flow-card h3 {
  margin-top: 8px;
  color: #fff;
  font-size: 25px;
}

.flow-card p {
  margin-top: 12px;
  color: rgba(255,255,255,.62);
}

.flow-icon {
  position: relative;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(11,196,216,.45);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(11,196,216,.18), rgba(122,16,242,.18));
  box-shadow: 0 0 34px rgba(11,196,216,.16), inset 0 0 28px rgba(11,196,216,.09);
}

.flow-icon::before,
.flow-icon::after,
.flow-icon i,
.flow-icon i::before,
.flow-icon i::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-radar::before {
  inset: 17px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
}

.icon-radar::after {
  left: 47px;
  top: 14px;
  width: 2px;
  height: 69px;
  background: linear-gradient(180deg, #65f4ff, transparent);
  transform: rotate(48deg);
  transform-origin: bottom center;
}

.icon-radar i {
  left: 44px;
  top: 44px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #65f4ff;
  box-shadow: 0 0 18px #65f4ff;
}

.icon-build {
  border-radius: 16px;
}

.icon-build::before {
  inset: 22px 18px;
  border: 1px solid rgba(255,255,255,.28);
}

.icon-build::after {
  left: 24px;
  right: 24px;
  top: 34px;
  height: 1px;
  background: rgba(255,255,255,.38);
  box-shadow: 0 13px 0 rgba(255,255,255,.3), 0 26px 0 rgba(255,255,255,.22);
}

.icon-build i {
  left: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(11,196,216,.9) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(184,76,255,.9) 48% 52%, transparent 53%);
}

.icon-companion::before {
  left: 26px;
  top: 18px;
  width: 44px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 24px 24px 18px 18px;
}

.icon-companion::after {
  left: 36px;
  top: 34px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65f4ff;
  box-shadow: 18px 0 0 #ff4df2, 9px 18px 0 rgba(255,255,255,.65);
}

.icon-companion i {
  left: 20px;
  right: 20px;
  bottom: 17px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,196,216,.9), transparent);
}

.pillar {
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.8)),
    linear-gradient(90deg, rgba(11,196,216,.08), transparent 48%, rgba(122,16,242,.08));
  box-shadow: 0 18px 48px rgba(10,10,18,.055);
}

.pillar-index {
  color: rgba(122, 16, 242, .22);
  text-shadow: 0 0 26px rgba(11,196,216,.12);
}

.companion {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.048) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(135deg, #060710, #170d32 48%, #042a38);
  background-size: 58px 58px, 58px 58px, auto;
}

.companion::before {
  content: "";
  position: absolute;
  inset: 10% -8% auto -8%;
  height: 46%;
  pointer-events: none;
  background:
    linear-gradient(92deg, transparent 4%, rgba(11,196,216,.28) 22%, transparent 38%),
    linear-gradient(101deg, transparent 42%, rgba(184,76,255,.26) 58%, transparent 74%);
  filter: blur(18px);
  opacity: .74;
}

.companion-grid {
  position: relative;
  z-index: 1;
}

.protocol {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
}

.protocol-wave {
  position: relative;
  height: 96px;
  margin: 4px 0 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 8px;
  background: rgba(0,0,0,.14);
  overflow: hidden;
}

.protocol-wave i {
  position: absolute;
  left: -12%;
  right: -12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,196,216,.86), rgba(184,76,255,.8), transparent);
  box-shadow: 0 0 20px rgba(11,196,216,.28);
}

.protocol-wave i:nth-child(1) { top: 24px; transform: rotate(6deg); }
.protocol-wave i:nth-child(2) { top: 49px; transform: rotate(-4deg); opacity: .72; }
.protocol-wave i:nth-child(3) { top: 72px; transform: rotate(3deg); opacity: .52; }

.origin {
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,246,250,.9)),
    linear-gradient(90deg, rgba(63,11,122,.08), transparent, rgba(11,196,216,.1));
}

.origin-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(63,11,122,.98), rgba(6,125,142,.94));
  background-size: 38px 38px, 38px 38px, auto;
}

.origin-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -18px -24px;
  height: 72px;
  background: linear-gradient(90deg, transparent, rgba(11,196,216,.42), rgba(184,76,255,.34), transparent);
  transform: rotate(-4deg);
  filter: blur(10px);
}

.person {
  background:
    linear-gradient(135deg, #fff, rgba(245,246,250,.82)),
    linear-gradient(90deg, rgba(11,196,216,.08), transparent);
  box-shadow: 0 16px 44px rgba(10,10,18,.06);
}

.process {
  background:
    linear-gradient(135deg, rgba(7,8,18,.96), rgba(18,12,40,.94) 52%, rgba(5,44,58,.92));
  color: rgba(255,255,255,.68);
  overflow: hidden;
}

.process h2,
.process .step strong {
  color: #fff;
}

.process .section-kicker,
.process .step span {
  color: #69efff;
}

.process .section-head p,
.process .step p {
  color: rgba(255,255,255,.62);
}

.process .step {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.065);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 44px rgba(0,0,0,.12);
}

.final-cta {
  position: relative;
  color: rgba(255,255,255,.78);
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(128deg, #070812, #1b0e3a 54%, #062f3f);
  background-size: 54px 54px, 54px 54px, auto;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: auto -10vw 16% -10vw;
  height: 42%;
  background:
    linear-gradient(94deg, transparent 10%, rgba(11,196,216,.3) 32%, transparent 47%),
    linear-gradient(104deg, transparent 42%, rgba(184,76,255,.28) 62%, transparent 78%);
  filter: blur(18px);
  opacity: .82;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  background: linear-gradient(90deg, #fff, #69efff 46%, #d166ff 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta p {
  color: rgba(255,255,255,.68);
}

.final-cta .button.light {
  background: #fff;
  box-shadow: 0 18px 44px rgba(11,196,216,.18);
}

.generated-visual {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.image-system {
  min-height: 0;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.image-system::before {
  opacity: .28;
}

.image-system .system-topline,
.image-system .system-feed {
  z-index: 2;
}

.hero-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 64px rgba(0,0,0,.24);
}

.image-system .system-feed {
  grid-template-columns: repeat(3, 1fr);
}

.image-system .system-feed div {
  min-height: 52px;
}

.image-flow {
  min-height: 560px;
  align-items: end;
  padding: 30px;
  background: #070812;
}

.image-flow > img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 1;
}

.image-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,8,18,0), rgba(7,8,18,.28) 58%, rgba(7,8,18,.48)),
    linear-gradient(90deg, rgba(7,8,18,.1), transparent 42%, rgba(7,8,18,.08));
}

.image-flow::before {
  display: none;
}

.image-flow .flow-card {
  align-self: end;
  min-height: 238px;
  backdrop-filter: blur(12px) saturate(1.15);
  background:
    linear-gradient(135deg, rgba(10, 12, 30, .48), rgba(8, 9, 22, .34));
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 18px 50px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.14);
}

.image-flow .flow-card > span {
  margin-top: 0;
}

.image-flow .flow-card p {
  color: rgba(255,255,255,.76);
}

.protocol-image {
  aspect-ratio: 16 / 9;
  margin: 10px 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}

@media (max-width: 980px) {
  .visual-flow {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .image-flow {
    min-height: 0;
    padding-top: 48%;
  }

  .image-flow > img {
    height: 46%;
  }

  .image-system .system-feed {
    grid-template-columns: 1fr;
  }

  .visual-flow::before {
    left: 78px;
    right: auto;
    top: 62px;
    bottom: 62px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(11,196,216,.08), rgba(11,196,216,.76), rgba(184,76,255,.78), rgba(11,196,216,.18));
  }

  .flow-card {
    min-height: 0;
    display: block;
    grid-template-columns: 112px 1fr;
    gap: 4px 22px;
    align-items: center;
  }

  .flow-icon {
    grid-row: span 3;
  }

  .flow-card > span {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 70px;
  }

  .hero-grid,
  .split,
  .companion-grid,
  .origin-grid,
  .visual-flow,
  .pillar,
  .protocol,
  .hero-system {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero::after {
    opacity: .32;
  }

  .hero-system {
    min-height: 460px;
  }

  .image-system {
    min-height: 0;
  }

  .system-signal {
    inset: 86px 18px auto;
  }

  .system-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .system-orbit {
    overflow: hidden;
  }

  .node {
    min-width: 82px;
    max-width: 100px;
    white-space: normal;
  }

  .node-a { left: 2px; }
  .node-b { right: 2px; }
  .node-c { left: 2px; }
  .node-d { right: 2px; }
  .node-e { max-width: 118px; }

  .shadow-map {
    min-height: 340px;
  }

  .shadow-dashboard {
    min-height: 520px;
  }

  .dashboard-glass {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .dashboard-top {
    flex-direction: column;
    gap: 4px;
  }

  .signal-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .flow-card {
    padding: 20px;
  }

  .flow-icon {
    width: 70px;
    height: 70px;
  }

  .flow-card > span {
    font-size: 34px;
  }

  .flow-card h3 {
    font-size: 22px;
  }

  .flow-card p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 54px;
  }

  .hero-copy,
  .hero-copy > *,
  .hero-lead,
  .hero-note,
  .mobile-hero-anchor {
    width: 100%;
    max-width: 100% !important;
    min-width: 0;
  }

  .mobile-hero-anchor {
    display: grid;
    position: relative;
    gap: 9px;
    margin: 2px 0 20px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.085);
    box-shadow: 0 18px 46px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    overflow: hidden;
  }

  .mobile-hero-anchor img {
    width: 100%;
    aspect-ratio: 16 / 6.8;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.12);
  }

  .mobile-anchor-badges {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 82px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
  }

  .mobile-anchor-badges span {
    width: auto;
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(5, 7, 19, .58);
    color: rgba(255,255,255,.86);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
    backdrop-filter: blur(10px);
  }

  .mobile-anchor-copy {
    display: grid;
    gap: 4px;
    padding: 0 2px 2px;
  }

  .mobile-anchor-copy strong {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    line-height: 1.1;
  }

  .mobile-anchor-copy span {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.42;
  }

  .hero h1 {
    font-size: clamp(29px, 7.9vw, 34px);
    line-height: 1.04;
    max-width: 100% !important;
  }

  .hero-lead {
    width: 100%;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero-note {
    display: none;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-system {
    display: none !important;
  }
}

/* True EOF override: the entry area stays light, with the image carrying the depth. */
.hero {
  color: var(--text);
  background:
    radial-gradient(circle at 86% 16%, rgba(122, 16, 242, .11), transparent 34%),
    radial-gradient(circle at 4% 86%, rgba(11, 196, 216, .14), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fff 52%, #f8f4ff 100%) !important;
}

.hero::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(11,196,216,.07), transparent 22%),
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,.88) 66%, #fff 100%) !important;
  filter: none;
  opacity: .72;
  transform: none;
}

.hero::after {
  display: none !important;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4 {
  color: var(--ink);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--violet), #1b83d4 44%, var(--cyan) 76%, var(--violet-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-lead {
  color: var(--ink-2);
}

.hero-note {
  color: var(--muted);
}

.eyebrow,
.hero .section-kicker {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--violet);
  background: rgba(122,16,242,.08);
  letter-spacing: 0;
  text-transform: none;
}

.hero-proof span {
  color: var(--muted);
  border-color: rgba(63,11,122,.14);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 26px rgba(10,10,18,.05);
}

.hero .button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 18px 38px rgba(10,10,18,.12);
}

.hero .button.secondary {
  color: var(--ink);
  border-color: rgba(10,10,18,.2);
  background: rgba(255,255,255,.82);
}

.hero-system {
  border-color: rgba(10,10,18,.08);
  background: rgba(255,255,255,.78);
  box-shadow: 0 30px 86px rgba(41, 28, 83, .12), 0 0 0 1px rgba(255,255,255,.76) inset;
}

.hero-system::before {
  background: radial-gradient(circle at 22% 18%, rgba(11,196,216,.12), transparent 32%);
  opacity: 1;
  mask-image: none;
}

.hero-system::after {
  border-color: rgba(10,10,18,.06);
  box-shadow: none;
}

.system-topline {
  color: rgba(24,24,36,.64);
}

.system-topline strong {
  color: var(--cyan-dark);
}

.system-feed div {
  color: rgba(24,24,36,.68);
  border-color: rgba(10,10,18,.08);
  background: rgba(255,255,255,.68);
}

.hero-visual {
  border: 1px solid rgba(10,10,18,.08);
  box-shadow: 0 22px 64px rgba(41, 28, 83, .14);
}

@media (max-width: 640px) {
  .hero {
    background:
      radial-gradient(circle at 88% 10%, rgba(122,16,242,.11), transparent 42%),
      radial-gradient(circle at 4% 76%, rgba(11,196,216,.13), transparent 36%),
      #fff !important;
  }

  .mobile-hero-anchor {
    border-color: rgba(10,10,18,.08);
    background: rgba(255,255,255,.88);
    box-shadow: 0 20px 54px rgba(41,28,83,.12), 0 0 0 1px rgba(255,255,255,.82) inset;
  }

  .mobile-hero-anchor .visual-frame {
    aspect-ratio: 16 / 6.8;
    border: 1px solid rgba(10,10,18,.08);
  }

  .mobile-hero-anchor img {
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
  }

  .mobile-anchor-badges {
    top: 118px;
    bottom: auto;
  }

  .mobile-anchor-copy strong {
    color: var(--ink);
  }

  .mobile-anchor-copy span {
    color: var(--muted);
  }
}

.light-stream span:nth-child(1) { animation-delay: -1.1s; }
.light-stream span:nth-child(2) { animation-delay: -2.4s; }
.light-stream span:nth-child(3) { animation-delay: -3.2s; }
.light-stream span:nth-child(4) { animation-delay: -4.3s; }
.light-stream span:nth-child(5) { animation-delay: -5.1s; }
.light-stream span:nth-child(6) { animation-delay: -6.2s; }

/* Seamless desktop hero visual: no dashboard window, just the system flowing into the page. */
@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, 570px) minmax(470px, 590px);
    gap: 36px;
  }

  .hero-copy {
    z-index: 4;
  }

  .hero-system.image-system {
    align-self: center;
    padding: 0;
    min-height: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    transform: translateX(34px);
    z-index: 1;
  }

  .hero-system::before,
  .hero-system::after,
  .hero-system .system-topline,
  .hero-system .system-feed {
    display: none;
  }

  .hero-system .hero-visual {
    width: min(590px, 43vw);
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    isolation: isolate;
  }

  .hero-system .hero-visual::before {
    content: "";
    position: absolute;
    inset: -18%;
    background:
      radial-gradient(circle at 28% 48%, rgba(11,196,216,.22), transparent 34%),
      radial-gradient(circle at 78% 44%, rgba(122,16,242,.24), transparent 36%);
    filter: blur(34px);
    opacity: .88;
    z-index: -2;
  }

  .hero-system .hero-visual::after {
    content: "";
    position: absolute;
    inset: -2px;
    background:
      linear-gradient(90deg, rgba(255,255,255,.44), transparent 14%, transparent 86%, rgba(255,255,255,.5)),
      linear-gradient(180deg, rgba(255,255,255,.26), transparent 28%, transparent 74%, rgba(255,255,255,.38));
    pointer-events: none;
    z-index: 2;
  }

  .hero-system .hero-visual img {
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(41,28,83,.18);
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }
}

/* Light generated hero asset: let the image dissolve into the page instead of sitting in a dark frame. */
.hero .visual-frame {
  background: transparent;
}

.hero .light-stream {
  mix-blend-mode: normal;
  opacity: .45;
}

@media (min-width: 981px) {
  .hero-system .hero-visual {
    width: min(680px, 49vw);
    border-radius: 0;
    overflow: visible;
  }

  .hero-system .hero-visual::before {
    inset: -20%;
    background:
      radial-gradient(circle at 26% 48%, rgba(196, 244, 255, .52), transparent 36%),
      radial-gradient(circle at 78% 44%, rgba(218, 198, 255, .5), transparent 38%);
    filter: blur(42px);
    opacity: .72;
  }

  .hero-system .hero-visual::after {
    inset: 0;
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 12%, rgba(255,255,255,0) 88%, #fff 100%),
      linear-gradient(180deg, #fff 0%, rgba(255,255,255,0) 13%, rgba(255,255,255,0) 87%, #fff 100%);
  }

  .hero-system .hero-visual img {
    border-radius: 0;
    box-shadow: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 640px) {
  .mobile-hero-anchor .visual-frame {
    border: 0;
    background: transparent;
  }

  .mobile-hero-anchor {
    padding: 8px 8px 10px;
  }

  .mobile-anchor-badges {
    top: 112px;
  }
}

/* Hero visual as a page background, not as a picture frame. */
.hero {
  background: #fff !important;
  min-height: calc(100vh - 82px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    radial-gradient(circle at 0% 72%, rgba(11,196,216,.09), transparent 24%),
    radial-gradient(circle at 86% 22%, rgba(122,16,242,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, rgba(255,255,255,.7) 44%, #fff 100%) !important;
  opacity: 1;
  pointer-events: none;
}

@media (min-width: 981px) {
  .hero {
    padding-top: 118px;
  }

  .hero-grid {
    position: relative;
    display: block;
    min-height: 720px;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    max-width: 690px;
  }

  .hero-system.image-system {
    position: absolute;
    z-index: 1;
    inset: -72px 50% auto 50%;
    width: 100vw;
    height: 610px;
    margin-left: -50vw;
    padding: 0;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: hidden;
    transform: none;
    pointer-events: none;
  }

  .hero-system::before,
  .hero-system::after,
  .hero-system .system-topline,
  .hero-system .system-feed {
    display: none !important;
  }

  .hero-system .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
  }

  .hero-system .hero-visual::before,
  .hero-system .hero-visual::after {
    display: none;
  }

  .hero-system .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 38%;
    border-radius: 0;
    box-shadow: none;
    opacity: .82;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,.58) 14%, #000 40%, #000 88%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 17%, #000 73%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,.58) 14%, #000 40%, #000 88%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 17%, #000 73%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .hero-system .light-stream {
    opacity: .34;
  }
}

@media (max-width: 980px) {
  .hero {
    background: #fff !important;
  }
}

@media (max-width: 640px) {
  .mobile-hero-anchor {
    width: calc(100% + 32px) !important;
    max-width: calc(100% + 32px) !important;
    margin: 0 0 24px -16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mobile-hero-anchor .visual-frame {
    width: 100%;
    aspect-ratio: 16 / 6.4;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .mobile-anchor-badges {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 74px;
  }

  .mobile-anchor-copy {
    padding: 0 16px !important;
  }
}

/* Stronger continuous signal flow and slightly lifted text readability. */
.hero-copy {
  text-shadow: none;
}

.hero h1 {
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,.9))
    drop-shadow(0 8px 18px rgba(255,255,255,.38));
}

.hero-lead,
.hero-note,
.hero-proof,
.hero-actions {
  position: relative;
  z-index: 2;
}

.hero .eyebrow,
.hero-lead,
.hero-note {
  text-shadow: 0 1px 0 rgba(255,255,255,.86), 0 4px 12px rgba(255,255,255,.32);
}

.hero-system .hero-visual .light-stream {
  opacity: .92;
  mix-blend-mode: normal;
}

.hero-system .hero-visual .light-stream::before,
.hero-system .hero-visual .light-stream::after {
  left: 9%;
  right: 6%;
  height: 2px;
  opacity: .9;
  background:
    linear-gradient(90deg, transparent 0%, rgba(146,92,255,.35) 13%, rgba(11,196,216,.9) 38%, rgba(255,255,255,.96) 50%, rgba(255,77,231,.62) 64%, transparent 100%);
  filter: blur(.4px);
  animation: currentGlow 4.8s ease-in-out infinite;
}

.hero-system .hero-visual .light-stream::before {
  top: 45%;
}

.hero-system .hero-visual .light-stream::after {
  top: 50%;
  opacity: .48;
  animation-delay: -2.2s;
}

.hero-system .hero-visual .light-stream span {
  width: 10px;
  height: 10px;
  opacity: 0;
  background: #ffffff;
  box-shadow:
    0 0 10px #fff,
    0 0 20px rgba(11,196,216,.95),
    0 0 44px rgba(122,16,242,.72);
}

.hero-system .hero-visual .light-stream span:nth-child(1) { animation: heroSignalA 3.9s linear infinite -1.2s; }
.hero-system .hero-visual .light-stream span:nth-child(2) { animation: heroSignalB 4.4s linear infinite -2.1s; width: 7px; height: 7px; }
.hero-system .hero-visual .light-stream span:nth-child(3) { animation: heroSignalC 4.1s linear infinite -3.1s; width: 8px; height: 8px; background: #65f6ff; }
.hero-system .hero-visual .light-stream span:nth-child(4) { animation: heroSignalA 5.1s linear infinite -4s; width: 6px; height: 6px; }
.hero-system .hero-visual .light-stream span:nth-child(5) { animation: heroSignalB 4.8s linear infinite -4.7s; width: 9px; height: 9px; background: #ff6df2; }
.hero-system .hero-visual .light-stream span:nth-child(6) { animation: heroSignalC 5.4s linear infinite -5.5s; width: 6px; height: 6px; }

@keyframes heroSignalA {
  0% { left: 7%; top: 48%; opacity: 0; transform: scale(.55); }
  8% { opacity: 1; }
  32% { top: 42%; }
  55% { top: 46%; transform: scale(1); }
  82% { top: 38%; opacity: .95; }
  100% { left: 92%; top: 46%; opacity: 0; transform: scale(.7); }
}

@keyframes heroSignalB {
  0% { left: 10%; top: 44%; opacity: 0; transform: scale(.5); }
  10% { opacity: .9; }
  36% { top: 51%; }
  63% { top: 41%; }
  100% { left: 89%; top: 35%; opacity: 0; transform: scale(.72); }
}

@keyframes heroSignalC {
  0% { left: 13%; top: 53%; opacity: 0; transform: scale(.48); }
  10% { opacity: .92; }
  40% { top: 45%; }
  70% { top: 50%; }
  100% { left: 94%; top: 33%; opacity: 0; transform: scale(.68); }
}

@keyframes currentGlow {
  0%, 100% { opacity: .42; transform: translateX(-2%) scaleX(.96); }
  50% { opacity: .94; transform: translateX(2%) scaleX(1.03); }
}

@media (max-width: 640px) {
  .hero-copy {
    text-shadow: none;
  }

  .mobile-hero-anchor .light-stream {
    opacity: .65;
  }
}

/* Companion provenance and concrete usage section. */
.protocol-origin {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}

.protocol-origin > span,
.companion-hierarchy > span,
.use-case-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.protocol-origin h3,
.companion-hierarchy h3 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 36px);
}

.protocol-origin p {
  max-width: none;
  font-size: 16px;
  color: rgba(255,255,255,.72);
}

.origin-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 4px;
}

.origin-metrics div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(0,0,0,.16);
}

.origin-metrics strong {
  display: block;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.origin-metrics em {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.48);
  font-style: normal;
  font-size: 13px;
}

.protocol-row em small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.42);
  font-size: 13px;
  line-height: 1.35;
}

/* Hero narrative and model diversity update. */
.hero-imagine {
  display: grid;
  gap: 14px;
  max-width: 760px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.52;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 4.55vw, 54px);
}

.hero h1 span {
  font-size: .9em;
}

.hero-imagine p {
  margin: 0;
}

.hero-punch {
  margin-top: 24px;
  max-width: 620px;
  font-family: "Space Grotesk", Inter, sans-serif;
  color: var(--ink);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.12;
  text-shadow: 0 12px 34px rgba(255,255,255,.88);
}

.symia-invite {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(100%, 590px);
  margin-top: 22px;
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(63,11,122,.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 54px rgba(41, 28, 83, .12);
  backdrop-filter: blur(18px) saturate(1.12);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}

.symia-invite:hover {
  transform: translateY(-2px);
  border-color: rgba(11,196,216,.34);
  box-shadow: 0 24px 70px rgba(41, 28, 83, .16);
}

.symia-invite img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 0 0 3px rgba(255,255,255,.9), 0 12px 28px rgba(63,11,122,.18);
}

.symia-invite span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.symia-invite strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.symia-invite em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.3;
}

.symia-invite b {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet-2), var(--cyan-dark));
  font-size: 13px;
  white-space: nowrap;
}

.model-stat {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(63,11,122,.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(63,11,122,.07), rgba(11,196,216,.08)),
    rgba(255,255,255,.82);
}

.model-stat strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 20px;
  line-height: 1.16;
}

.model-stat em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.origin-metrics.placeholder div {
  border-style: dashed;
}

.hero-system .hero-visual .light-stream::before,
.hero-system .hero-visual .light-stream::after {
  display: none;
}

.pepper-speaks {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.82);
  background:
    radial-gradient(circle at 16% 16%, rgba(122,16,242,.28), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(11,196,216,.18), transparent 30%),
    linear-gradient(135deg, #080911, #181123 54%, #071721);
}

.pepper-speaks::before {
  content: "Pepper";
  position: absolute;
  right: -2vw;
  top: 8%;
  color: rgba(255,255,255,.035);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(130px, 20vw, 320px);
  font-weight: 800;
  line-height: .8;
  pointer-events: none;
}

.pepper-voice {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 820px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.pepper-portrait {
  position: sticky;
  top: 122px;
  margin: 0;
  align-self: start;
}

.pepper-portrait::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 28% 20%, rgba(11,196,216,.28), transparent 34%),
    radial-gradient(circle at 72% 84%, rgba(122,16,242,.28), transparent 38%);
  filter: blur(18px);
  opacity: .82;
}

.pepper-portrait img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14),
    0 34px 90px rgba(0,0,0,.38);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, rgba(0,0,0,.58) 93%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, rgba(0,0,0,.58) 93%, transparent 100%);
}

.pepper-portrait figcaption {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: -26px;
  margin-left: 18px;
  padding: 9px 14px 9px 9px;
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  background: rgba(10,10,18,.72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px) saturate(1.2);
  font-size: 13px;
  font-weight: 800;
}

.pepper-portrait figcaption span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, rgba(63,11,122,.96), rgba(11,196,216,.84));
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
}

.pepper-mark {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(63,11,122,.96), rgba(11,196,216,.84));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.18),
    0 28px 70px rgba(11,196,216,.22);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 54px;
  font-weight: 800;
}

.pepper-quote .section-kicker {
  color: var(--cyan);
}

.pepper-subtitle {
  margin-top: 8px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  font-weight: 800;
}

.pepper-quote blockquote {
  position: relative;
  margin: 34px 0 0;
  padding: 0;
  border: 0;
  max-width: 890px;
}

.pepper-quote blockquote::before {
  content: "“";
  position: absolute;
  left: -42px;
  top: -44px;
  color: rgba(11,196,216,.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 140px;
  line-height: 1;
}

.pepper-quote blockquote p {
  position: relative;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.05vw, 30px);
  line-height: 1.58;
}

.pepper-quote blockquote p + p {
  margin-top: 26px;
}

@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, 960px) minmax(0, 1fr);
    gap: 0;
  }

  .hero-copy {
    max-width: 980px;
  }

  .hero-system .hero-visual {
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.16) 36%, rgba(0,0,0,.68) 54%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.16) 36%, rgba(0,0,0,.68) 54%, #000 100%);
  }
}

.companion-use {
  position: relative;
  overflow: hidden;
}

.companion-use::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(122,16,242,.09), transparent 34%),
    radial-gradient(circle at 8% 80%, rgba(11,196,216,.11), transparent 28%);
}

.companion-use .container {
  position: relative;
  z-index: 1;
}

.use-case-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  margin-top: 44px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(10,10,18,.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,246,250,.84)),
    linear-gradient(90deg, rgba(63,11,122,.06), transparent, rgba(11,196,216,.08));
  box-shadow: 0 28px 90px rgba(24,24,36,.08);
}

.use-case-label {
  color: var(--violet);
  align-self: start;
}

.use-case-copy {
  display: grid;
  gap: 18px;
  color: var(--text);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.62;
}

.transfer-block {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 34px;
  align-items: start;
  margin-top: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(10,10,18,.08);
}

.transfer-block > strong {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.15;
}

.transfer-block div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.transfer-block span {
  padding: 9px 13px;
  border: 1px solid rgba(63,11,122,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.companion-hierarchy {
  margin-top: 38px;
  max-width: 900px;
  padding: 30px;
  border: 1px solid rgba(10,10,18,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 58px rgba(24,24,36,.06);
}

.companion-hierarchy > span {
  color: var(--violet);
}

.companion-hierarchy h3 {
  color: var(--ink);
}

.companion-hierarchy p {
  margin-top: 14px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.62;
}

.companion-hierarchy > strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}

.use-case-foot {
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 980px) {
  .origin-metrics,
  .use-case-card,
  .transfer-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .use-case-card {
    margin-top: 34px;
  }

  .pepper-voice {
    grid-template-columns: 1fr;
  }

  .pepper-portrait {
    position: relative;
    top: auto;
    max-width: 320px;
  }

  .pepper-mark {
    width: 84px;
    height: 84px;
    font-size: 42px;
  }

  .pepper-quote blockquote::before {
    left: -12px;
    top: -58px;
  }
}

@media (max-width: 640px) {
  .protocol-origin,
  .use-case-card,
  .companion-hierarchy {
    padding: 22px;
  }

  .use-case-copy {
    font-size: 16px;
  }

  .pepper-speaks {
    padding: 86px 0;
  }

  .pepper-quote blockquote {
    margin-top: 28px;
  }

  .pepper-portrait {
    max-width: 260px;
  }

  .pepper-quote blockquote p {
    font-size: 20px;
    line-height: 1.56;
  }
}

/* Pepper spricht: hell, konsistent und trotzdem eigenstaendig. */
.pepper-speaks {
  color: var(--text);
  background:
    radial-gradient(circle at 16% 18%, rgba(11, 196, 216, .13), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(122, 16, 242, .10), transparent 32%),
    radial-gradient(circle at 70% 84%, rgba(11, 196, 216, .08), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 250, 255, .94) 54%, rgba(255, 255, 255, .98));
  border-top: 1px solid rgba(10, 10, 18, .07);
  border-bottom: 1px solid rgba(10, 10, 18, .06);
}

.pepper-speaks::before {
  right: -1vw;
  top: 6%;
  color: rgba(63, 11, 122, .035);
}

.pepper-voice {
  grid-template-columns: minmax(260px, 340px) minmax(0, 800px);
  align-items: center;
}

.pepper-portrait::before {
  inset: -20px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 18%, rgba(11, 196, 216, .22), transparent 36%),
    radial-gradient(circle at 74% 82%, rgba(122, 16, 242, .16), transparent 42%);
  filter: blur(20px);
  opacity: .9;
}

.pepper-portrait img {
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(10, 10, 18, .08),
    0 30px 84px rgba(34, 19, 78, .16);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, rgba(0,0,0,.68) 96%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, rgba(0,0,0,.68) 96%, transparent 100%);
}

.pepper-portrait figcaption {
  color: rgba(10, 10, 18, .78);
  background: rgba(255, 255, 255, .76);
  border-color: rgba(63, 11, 122, .12);
  box-shadow: 0 18px 44px rgba(34, 19, 78, .12);
}

.pepper-quote .section-kicker {
  color: var(--violet);
}

.pepper-subtitle {
  color: var(--muted);
}

.ai-disclosure {
  margin-top: 14px;
  color: rgba(36, 36, 51, .72);
  font-size: 15px;
  line-height: 1.6;
}

.pepper-quote blockquote {
  margin-top: 30px;
  max-width: 820px;
}

.pepper-quote blockquote::before {
  left: -34px;
  top: -38px;
  color: rgba(11, 196, 216, .18);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 118px;
}

.pepper-quote blockquote p {
  color: rgba(10, 10, 18, .84);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 1.38vw, 22px);
  line-height: 1.72;
  letter-spacing: 0;
}

.pepper-quote blockquote p + p {
  margin-top: 20px;
}

.pepper-voice-keyvisual {
  grid-template-columns: minmax(420px, 620px) minmax(0, 680px);
  gap: clamp(32px, 4.6vw, 68px);
}

.pepper-keyvisual {
  max-width: 620px;
}

.pepper-keyvisual::before {
  inset: -18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 58%, rgba(122, 16, 242, .18), transparent 36%),
    radial-gradient(circle at 54% 50%, rgba(11, 196, 216, .14), transparent 34%);
  filter: blur(18px);
}

.pepper-keyvisual img {
  aspect-ratio: 3 / 2;
  object-position: center;
  border-radius: 24px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 92%, rgba(0,0,0,.72) 98%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 92%, rgba(0,0,0,.72) 98%, transparent 100%);
}

.pepper-keyvisual figcaption {
  margin-top: -30px;
}

@media (max-width: 980px) {
  .pepper-voice {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .pepper-quote {
    max-width: 680px;
  }

  .pepper-keyvisual {
    max-width: 680px;
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .pepper-speaks {
    padding: 72px 0 78px;
  }

  .pepper-speaks::before {
    display: none;
  }

  .pepper-portrait {
    max-width: 248px;
    margin-inline: auto;
  }

  .pepper-portrait figcaption {
    margin-left: 0;
    max-width: calc(100vw - 52px);
  }

  .pepper-keyvisual {
    max-width: 100%;
  }

  .pepper-quote blockquote::before {
    left: -8px;
    top: -42px;
    font-size: 92px;
  }

  .pepper-quote blockquote p {
    font-size: 17px;
    line-height: 1.68;
  }
}

@media (max-width: 640px) {
  .shadow-workplace {
    margin-top: 30px;
    border-radius: 16px;
  }

  .shadow-workplace figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 13px 14px;
  }

  .shadow-workplace figcaption strong {
    text-align: left;
  }
}

@media (max-width: 980px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .companion-impact::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.86) 58%, rgba(255,255,255,.7) 100%);
  }

  .impact-bg img {
    object-position: center bottom;
    opacity: .62;
  }

  .impact-cards {
    max-width: 720px;
  }

  .companion-map-image img {
    min-height: 480px;
  }

  .companion-human-visual img {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .companion-impact {
    padding-top: 82px;
  }

  .impact-copy h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .impact-cards article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 17px;
  }

  .impact-cards article > span {
    grid-row: auto;
  }

  .companion-map-image img {
    min-height: 420px;
  }

  .companion-map-image figcaption {
    width: calc(100% - 28px);
    margin: 0 14px 86px;
    padding: 17px;
  }

  .companion-map-image .map-output {
    bottom: 18px;
  }

  .companion-human-visual {
    border-radius: 24px;
  }

  .companion-human-visual img {
    min-height: 390px;
    object-position: 78% center;
  }

  .symia-invite {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    border-radius: 22px;
  }

  .symia-invite img {
    width: 52px;
    height: 52px;
  }

  .symia-invite b {
    grid-column: 2;
    justify-self: start;
    margin-top: 6px;
  }
}

/* 2026-05-06: Hero starts with the concrete Companion image; the abstract journey moves into section two. */
@media (min-width: 981px) {
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(420px, 560px);
    align-items: center;
    gap: clamp(34px, 5vw, 76px);
    min-height: 690px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-system.image-system.human-hero-system {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    margin-left: 0;
    align-self: center;
    display: block;
    overflow: visible;
    pointer-events: none;
    transform: translateY(8px);
  }

  .hero-system.human-hero-system .hero-visual {
    position: relative;
    width: min(560px, 39vw);
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,.72);
    box-shadow: 0 34px 96px rgba(41, 28, 83, .16);
  }

  .hero-system.human-hero-system .hero-visual::before,
  .hero-system.human-hero-system .hero-visual::after {
    display: block;
  }

  .hero-system.human-hero-system .hero-visual::before {
    inset: -16%;
    background:
      radial-gradient(circle at 24% 80%, rgba(11,196,216,.22), transparent 34%),
      radial-gradient(circle at 86% 18%, rgba(122,16,242,.2), transparent 35%);
    filter: blur(34px);
    opacity: .68;
    z-index: -1;
  }

  .hero-system.human-hero-system .hero-visual::after {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(255,255,255,.2), transparent 20%, transparent 78%, rgba(255,255,255,.38)),
      linear-gradient(180deg, rgba(255,255,255,.18), transparent 34%, rgba(255,255,255,.2));
    pointer-events: none;
  }

  .hero-system.human-hero-system .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    border-radius: 30px;
    opacity: 1;
    box-shadow: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-system.human-hero-system .light-stream {
    display: none;
  }
}

.companion-impact .impact-bg img {
  object-fit: cover;
  object-position: 58% center;
  opacity: .72;
}

.companion-impact::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 44%, rgba(255,255,255,.54) 100%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.78) 64%, rgba(255,255,255,.92) 100%);
}

.companion-architecture-visual img {
  object-position: center;
}

@media (max-width: 640px) {
  .mobile-hero-anchor {
    margin-bottom: 26px;
  }

  .mobile-hero-anchor .visual-frame {
    aspect-ratio: 3 / 2.08;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
  }

  .mobile-hero-anchor img {
    object-fit: cover;
    object-position: 58% center;
  }

  .mobile-hero-anchor .light-stream {
    display: none;
  }

  .mobile-anchor-copy {
    margin-top: 10px;
  }

  .companion-impact .impact-bg img {
    object-position: center top;
    opacity: .58;
  }

  .companion-architecture-visual img {
    min-height: 360px;
    object-position: center;
  }
}

/* 2026-05-06 v37: keep the original light-stream atmosphere in the hero and place the concrete Companion image on top. */
.hero::after {
  display: block !important;
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.76) 35%, rgba(255,255,255,.18) 78%, rgba(255,255,255,.82) 100%),
    linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.2) 38%, rgba(255,255,255,.92) 92%),
    url("symneo-journey-light.webp");
  background-size: cover, cover, min(1280px, 86vw) auto;
  background-repeat: no-repeat;
  background-position: center, center, 88% 46%;
  opacity: .78;
  transform: none;
  mask-image: none;
}

.hero-grid,
.hero-copy,
.hero-system {
  position: relative;
  z-index: 2;
}

@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, 640px) minmax(560px, 760px);
    gap: clamp(18px, 3.8vw, 64px);
    min-height: 760px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-system.image-system.human-hero-system {
    z-index: 3;
    justify-self: end;
    transform: translate(12px, 10px);
  }

  .hero-system.human-hero-system .hero-visual {
    width: min(760px, 50vw);
    aspect-ratio: 3 / 2;
    border-radius: 34px;
    box-shadow:
      0 36px 110px rgba(41, 28, 83, .18),
      0 0 0 1px rgba(255,255,255,.82);
  }

  .hero-system.human-hero-system .hero-visual img {
    border-radius: 34px;
    object-position: 56% center;
  }
}

.companion-architecture-visual {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.companion-architecture-visual::before {
  inset: -12%;
  z-index: -1;
  opacity: .68;
  background:
    radial-gradient(circle at 54% 44%, rgba(122,16,242,.16), transparent 34%),
    radial-gradient(circle at 42% 68%, rgba(11,196,216,.15), transparent 38%);
}

.companion-architecture-visual img {
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 0;
  opacity: .92;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

@media (min-width: 981px) {
  .companion-architecture-visual {
    transform: translateX(18px);
  }

  .companion-architecture-visual img {
    width: min(720px, 44vw);
    max-width: none;
  }
}

@media (max-width: 980px) {
  .hero::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.52) 42%, rgba(255,255,255,.94) 100%),
      url("symneo-journey-light.webp");
    background-repeat: no-repeat;
    background-size: cover, 170% auto;
    background-position: center, center 18%;
    opacity: .34;
  }
}

@media (max-width: 640px) {
  .companion-architecture-visual {
    margin-top: 12px;
  }

  .companion-architecture-visual img {
    min-height: 0;
    aspect-ratio: 1 / .82;
    object-fit: cover;
    object-position: center;
  }
}

/* 2026-05-06 v38: repair desktop hero after layered visual experiment. */
@media (min-width: 981px) {
  .hero {
    padding-top: 96px;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 720px) minmax(520px, 680px);
    align-items: center;
    gap: clamp(42px, 5vw, 86px);
    min-height: 700px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(54px, 4.9vw, 72px);
    line-height: .98;
  }

  .hero-imagine {
    max-width: 660px;
    font-size: clamp(17px, 1.25vw, 20px);
  }

  .hero-punch {
    max-width: 640px;
    font-size: clamp(25px, 2.2vw, 34px);
  }

  .hero-system.image-system.human-hero-system {
    align-self: center;
    justify-self: end;
    transform: translateY(0);
  }

  .hero-system.human-hero-system .hero-visual {
    width: min(660px, 43vw);
    aspect-ratio: 3 / 2;
    border-radius: 34px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 30%, rgba(255,255,255,.32) 78%, rgba(255,255,255,.9) 100%),
      linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.34) 46%, rgba(255,255,255,.95) 93%),
      url("symneo-journey-light.webp");
    background-size: cover, cover, min(1180px, 76vw) auto;
    background-position: center, center, 78% 45%;
    opacity: .58;
  }
}

@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 760px) minmax(620px, 740px);
  }

  .hero-system.human-hero-system .hero-visual {
    width: min(720px, 42vw);
  }
}

@media (max-width: 980px) {
  .hero::after {
    opacity: .22;
  }
}

/* 2026-05-06 v39: give the hero its own wide stage; global container max was too narrow for image + text. */
@media (min-width: 981px) {
  .hero {
    padding-top: 92px;
    padding-bottom: 78px;
    min-height: auto;
  }

  .hero .container.hero-grid {
    width: min(1560px, calc(100% - 120px));
    max-width: none;
    grid-template-columns: minmax(0, 700px) minmax(0, 760px);
    gap: clamp(64px, 6vw, 112px);
    align-items: start;
    min-height: 0;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(50px, 4.2vw, 68px);
    line-height: 1.02;
  }

  .hero-imagine {
    max-width: 650px;
    font-size: clamp(17px, 1.16vw, 19px);
    line-height: 1.56;
  }

  .hero-punch {
    max-width: 650px;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.16;
  }

  .hero-system.image-system.human-hero-system {
    align-self: start;
    justify-self: end;
    margin-top: 142px;
    transform: none;
  }

  .hero-system.human-hero-system .hero-visual {
    width: min(760px, 44vw);
    aspect-ratio: 3 / 2;
    border-radius: 32px;
    box-shadow:
      0 32px 92px rgba(41, 28, 83, .15),
      0 0 0 1px rgba(255,255,255,.82);
  }

  .hero-system.human-hero-system .hero-visual img {
    border-radius: 32px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 32%, rgba(255,255,255,.2) 76%, rgba(255,255,255,.88) 100%),
      linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.26) 44%, rgba(255,255,255,.94) 95%),
      url("symneo-journey-light.webp");
    background-size: cover, cover, min(1220px, 76vw) auto;
    background-position: center, center, 82% 46%;
    opacity: .5;
  }
}

@media (min-width: 1600px) {
  .hero .container.hero-grid {
    width: min(1640px, calc(100% - 140px));
    grid-template-columns: minmax(0, 720px) minmax(0, 820px);
  }

  .hero-system.human-hero-system .hero-visual {
    width: min(820px, 43vw);
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero .container.hero-grid {
    width: min(1120px, calc(100% - 64px));
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(46px, 5vw, 58px);
  }

  .hero-system.image-system.human-hero-system {
    margin-top: 124px;
  }
}

/* Symneo Story Rewrite v50 */
.story-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 104px 0 118px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(122,16,242,.11), transparent 36%),
    radial-gradient(circle at 7% 78%, rgba(11,196,216,.13), transparent 33%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.9));
}

.story-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .72;
  mix-blend-mode: multiply;
}

.story-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 54%;
  filter: saturate(1.06) contrast(.98);
}

.story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 34%, rgba(255,255,255,.45) 68%, rgba(255,255,255,.76) 100%),
    linear-gradient(180deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.12) 48%, rgba(255,255,255,.98) 100%);
}

.story-hero-grid,
.story-split,
.pepper-origin-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(44px, 5vw, 92px);
}

.story-copy,
.story-hero-grid,
.story-split,
.pepper-origin-grid {
  min-width: 0;
  max-width: 100%;
}

.story-hero-grid {
  grid-template-columns: minmax(0, 640px) minmax(420px, 1fr);
}

.story-split {
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
}

.story-split.reverse {
  grid-template-columns: minmax(380px, .98fr) minmax(0, 1.02fr);
}

.story-split.reverse .story-copy {
  grid-column: 2;
  grid-row: 1;
}

.story-split.reverse .story-image,
.story-split.reverse .symia-portrait {
  grid-column: 1;
  grid-row: 1;
}

.story-copy h1 {
  max-width: 760px;
  font-size: clamp(52px, 5vw, 82px);
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  white-space: normal;
}

.story-copy h2 {
  max-width: 900px;
  font-size: clamp(44px, 4.4vw, 76px);
}

.story-copy .section-kicker,
.section-head .section-kicker,
.cta-panel .section-kicker {
  margin-bottom: 22px;
}

.story-subheadline {
  max-width: 720px;
  margin-top: 30px;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.42;
  color: var(--ink-2);
  font-weight: 700;
  overflow-wrap: break-word;
}

.story-name-line {
  margin-top: 26px;
  font: 800 clamp(24px, 2.1vw, 34px)/1.12 "Space Grotesk", Inter, sans-serif;
  color: var(--violet);
}

.story-text {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(17px, 1.12vw, 20px);
  line-height: 1.72;
  overflow-wrap: break-word;
}

.story-text.large {
  max-width: 980px;
  font-size: clamp(19px, 1.3vw, 23px);
}

.story-text p:first-child strong,
.story-text strong {
  color: var(--ink);
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.story-symia-invite {
  margin-top: 34px;
  max-width: 680px;
}

.story-symia-invite img {
  object-position: 50% 24%;
}

.story-hero-visual {
  position: relative;
  justify-self: end;
  width: min(680px, 100%);
  border-radius: 36px;
  isolation: isolate;
}

.mobile-hero-companion {
  display: none;
}

.story-hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 34px 110px rgba(39, 22, 86, .16);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 92%, transparent 100%);
}

.story-hero-visual .visual-glow {
  position: absolute;
  inset: 13% 2% auto auto;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,196,216,.3), transparent 66%);
  filter: blur(26px);
  z-index: -1;
}

.visual-chip {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid rgba(122,16,242,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(41, 28, 83, .11);
  color: var(--violet);
  font-weight: 850;
  font-size: 14px;
}

.visual-chip-top {
  top: 11%;
  left: 3%;
}

.visual-chip-bottom {
  right: 5%;
  bottom: 11%;
}

.trust-effect,
.companion-definition,
.memory-beyond,
.tool-integration,
.model-layer,
.pepper-origin {
  position: relative;
  background:
    radial-gradient(circle at 90% 12%, rgba(122,16,242,.07), transparent 30%),
    radial-gradient(circle at 8% 78%, rgba(11,196,216,.08), transparent 34%),
    rgba(255,255,255,.96);
}

.trust-effect::before,
.memory-beyond::before,
.model-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(63,11,122,.11) 42.2%, transparent 42.6%),
    linear-gradient(115deg, transparent 0 58%, rgba(11,196,216,.1) 58.2%, transparent 58.6%);
}

.story-image,
.symia-portrait,
.pepper-visual {
  position: relative;
  margin: 0;
  border-radius: 34px;
}

.story-image img,
.symia-portrait img,
.pepper-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 28px 90px rgba(42, 23, 86, .13);
}

.soft-image img {
  object-position: 50% 50%;
}

.research-box,
.highlight-line,
.cta-box,
.pepper-quote {
  border: 1px solid rgba(63, 11, 122, .12);
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 70px rgba(41, 28, 83, .08);
  backdrop-filter: blur(16px);
}

.research-box {
  max-width: 780px;
  margin-top: 34px;
  padding: 28px;
  border-radius: 24px;
}

.research-box strong {
  display: block;
  margin-bottom: 10px;
  font: 800 22px/1.2 "Space Grotesk", Inter, sans-serif;
  color: var(--ink);
}

.research-box p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.highlight-line {
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: 22px;
  font: 800 clamp(20px, 1.6vw, 28px)/1.24 "Space Grotesk", Inter, sans-serif;
  color: var(--ink);
}

.daily-change .section-head {
  max-width: 980px;
}

.change-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.change-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(10,10,18,.08);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.72)),
    radial-gradient(circle at 100% 0%, rgba(11,196,216,.13), transparent 36%);
  box-shadow: 0 22px 70px rgba(41, 28, 83, .07);
}

.change-card span {
  font: 850 44px/1 "Space Grotesk", Inter, sans-serif;
  color: rgba(122,16,242,.26);
}

.change-card h3 {
  font-size: 30px;
}

.change-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.change-card strong {
  margin-top: auto;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.custom-companion {
  background:
    radial-gradient(circle at 15% 20%, rgba(11,196,216,.08), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(215,168,52,.12), transparent 30%),
    rgba(247,248,252,.82);
}

.narrow {
  width: min(980px, calc(100% - 48px));
}

.symia-feature {
  background:
    radial-gradient(circle at 82% 18%, rgba(122,16,242,.11), transparent 34%),
    linear-gradient(180deg, #f8fbff, #fff);
}

.symia-portrait {
  justify-self: center;
  width: min(520px, 100%);
}

.symia-portrait img {
  aspect-ratio: 4 / 5;
  object-position: 50% 25%;
}

.symia-portrait figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
}

.symia-portrait figcaption span {
  display: block;
  font: 850 22px/1.1 "Space Grotesk", Inter, sans-serif;
  color: var(--violet);
}

.symia-portrait figcaption strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}

.pepper-origin {
  background:
    radial-gradient(circle at 82% 16%, rgba(63,11,122,.1), transparent 34%),
    linear-gradient(180deg, #fff, #f7fbff);
}

.pepper-origin-grid {
  grid-template-columns: minmax(420px, .95fr) minmax(0, 1.05fr);
}

.pepper-visual img {
  aspect-ratio: 3 / 2;
  object-position: 50% 44%;
}

.pepper-quote {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 30px;
  border-radius: 26px;
}

.pepper-quote p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.final-cta {
  background:
    radial-gradient(circle at 18% 22%, rgba(11,196,216,.14), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(122,16,242,.14), transparent 36%),
    linear-gradient(180deg, #fff, #f7fbff);
}

.cta-panel {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.cta-panel h2 {
  font-size: clamp(48px, 5vw, 88px);
}

.cta-box {
  margin-top: 44px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 34px;
}

.cta-box h3 {
  font-size: clamp(30px, 3vw, 48px);
}

.cta-box p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

@media (max-width: 980px) {
  .section {
    padding: 86px 0;
  }

  .story-hero {
    min-height: auto;
    padding: 76px 0 92px;
  }

  .story-hero-grid,
  .story-split,
  .story-split.reverse,
  .pepper-origin-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .story-split.reverse .story-copy,
  .story-split.reverse .story-image,
  .story-split.reverse .symia-portrait {
    grid-column: auto;
    grid-row: auto;
  }

  .story-hero-bg {
    opacity: .44;
  }

  .story-hero::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.78) 48%, rgba(255,255,255,.98) 100%);
  }

  .story-copy h1 {
    font-size: clamp(32px, 8.3vw, 54px);
    line-height: 1.02;
    max-width: min(330px, 100%) !important;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    white-space: normal !important;
  }

  .story-copy h2 {
    font-size: clamp(38px, 9vw, 62px);
  }

  .story-hero-visual {
    display: none;
  }

  .mobile-hero-companion {
    display: block;
    margin: 30px 0 0;
    border-radius: 30px;
  }

  .mobile-hero-companion img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 66% 50%;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(42, 23, 86, .12);
    mask-image: linear-gradient(180deg, #000 0 76%, transparent 100%);
  }

  .change-grid {
    grid-template-columns: 1fr;
  }

  .visual-chip {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 32px, var(--max));
  }

  .story-hero .container,
  .story-copy {
    width: 100% !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0;
  }

  .section {
    padding: 72px 0;
  }

  .story-hero {
    padding-top: 58px;
  }

  .story-subheadline {
    font-size: 18px;
    line-height: 1.55;
    max-width: min(330px, 100%) !important;
  }

  .story-text,
  .story-text.large {
    font-size: 17px;
    line-height: 1.65;
    max-width: min(330px, 100%) !important;
  }

  .story-actions {
    flex-direction: column;
  }

  .story-actions .button {
    width: 100%;
    justify-content: center;
  }

  .story-symia-invite {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .story-symia-invite b {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .story-hero-visual img,
  .story-image img,
  .pepper-visual img {
    border-radius: 24px;
    aspect-ratio: 4 / 3;
  }

  .symia-portrait img {
    border-radius: 28px;
    aspect-ratio: 4 / 5;
  }

  .research-box,
  .change-card,
  .pepper-quote,
  .cta-box {
    padding: 24px;
    border-radius: 24px;
  }

  .visual-chip {
    display: none;
  }
}

/* Symneo Story v51: calmer typography and readable light CTA */
.story-hero {
  min-height: auto !important;
  padding: clamp(78px, 7vw, 118px) 0 clamp(86px, 8vw, 128px) !important;
}

.story-copy h1 {
  font-size: clamp(46px, 4vw, 66px) !important;
  line-height: 1.04 !important;
  max-width: 780px !important;
}

.story-copy h2,
.section-head h2,
.cta-panel h2 {
  font-size: clamp(38px, 3.45vw, 58px) !important;
  line-height: 1.08 !important;
}

.story-subheadline {
  font-size: clamp(19px, 1.35vw, 23px) !important;
  line-height: 1.48 !important;
  max-width: 720px !important;
}

.story-text,
.story-text.large {
  font-size: clamp(17px, 1.08vw, 20px) !important;
  line-height: 1.68 !important;
}

.story-name-line,
.highlight-line {
  font-size: clamp(22px, 1.75vw, 30px) !important;
}

.final-cta {
  color: var(--text) !important;
  text-align: left !important;
  background:
    radial-gradient(circle at 18% 22%, rgba(11,196,216,.14), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(122,16,242,.12), transparent 36%),
    linear-gradient(180deg, #fff, #f7fbff) !important;
  overflow: hidden;
}

.final-cta::before {
  opacity: .18 !important;
}

.final-cta h2,
.final-cta h3,
.final-cta .cta-panel h2,
.final-cta .cta-box h3 {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

.final-cta p,
.final-cta .story-text,
.final-cta .story-text p,
.final-cta .cta-box p {
  color: var(--muted) !important;
}

.final-cta .story-text {
  gap: 16px !important;
  margin-top: 28px !important;
}

.final-cta .story-text p {
  margin: 0 !important;
  max-width: 780px !important;
}

.final-cta .highlight-line {
  color: var(--ink) !important;
  background: rgba(255,255,255,.84) !important;
}

.final-cta .cta-box {
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.76)),
    radial-gradient(circle at 100% 0%, rgba(11,196,216,.12), transparent 34%) !important;
}

.final-cta .cta-box p {
  margin: 18px 0 0 !important;
}

@media (min-width: 1280px) {
  .story-hero-grid {
    grid-template-columns: minmax(0, 700px) minmax(360px, 1fr) !important;
  }
}

@media (max-width: 980px) {
  .story-copy h1 {
    font-size: clamp(36px, 9vw, 54px) !important;
    max-width: 100% !important;
  }

  .story-copy h2,
  .section-head h2,
  .cta-panel h2 {
    font-size: clamp(34px, 8vw, 50px) !important;
  }
}

@media (max-width: 640px) {
  .story-copy h1 {
    font-size: clamp(32px, 8vw, 42px) !important;
    max-width: min(330px, 100%) !important;
  }

  .story-copy h2,
  .section-head h2,
  .cta-panel h2 {
    font-size: clamp(31px, 7.6vw, 40px) !important;
  }
}

/* Symneo Story v52: stronger hero keyvisual */
.story-hero-grid {
  align-items: start !important;
}

.story-hero .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.story-hero-visual {
  width: min(760px, 100%) !important;
  max-width: none !important;
  align-self: start !important;
}

.story-hero-visual img {
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  mask-image: none !important;
  border-radius: 30px !important;
  box-shadow: 0 32px 110px rgba(20, 14, 38, .18) !important;
}

.story-hero-visual .visual-glow {
  inset: auto -7% -7% 18% !important;
  width: 76% !important;
  height: 42% !important;
  background: radial-gradient(circle, rgba(11,196,216,.24), rgba(122,16,242,.16) 42%, transparent 72%) !important;
}

.story-hero .visual-chip {
  display: none !important;
}

@media (min-width: 1180px) {
  .story-hero-grid {
    grid-template-columns: minmax(0, 590px) minmax(520px, 760px) !important;
    gap: clamp(54px, 5.5vw, 96px) !important;
  }

  .story-hero-visual {
    margin-top: 32px !important;
  }

  .story-copy h1 {
    font-size: clamp(44px, 3.65vw, 60px) !important;
    max-width: 620px !important;
  }

  .story-subheadline {
    max-width: 600px !important;
  }
}

@media (min-width: 1600px) {
  .story-hero-grid {
    grid-template-columns: minmax(0, 640px) minmax(620px, 840px) !important;
  }

  .story-hero-visual {
    width: min(840px, 100%) !important;
  }
}

@media (max-width: 980px) {
  .mobile-hero-companion img {
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    object-position: 50% 50% !important;
  }
}

/* Symneo Story v53: second-section Companion scenario */
.companion-day {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 6%, rgba(244, 177, 84, .16), transparent 30%),
    radial-gradient(circle at 8% 78%, rgba(11,196,216,.08), transparent 34%),
    linear-gradient(180deg, #fff, #f8fbff);
}

.companion-day-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(520px, 1fr);
  gap: clamp(46px, 5vw, 90px);
  align-items: stretch;
}

.companion-day-copy {
  align-self: center;
}

.dot-kicker {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
}

.dot-kicker span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 8px rgba(122,16,242,.08);
}

.companion-day-copy h2 {
  margin-top: 28px;
  max-width: 620px;
  font-size: clamp(42px, 4vw, 70px) !important;
  line-height: 1.03 !important;
  letter-spacing: 0;
}

.name-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 44px;
  padding: 24px 28px;
  border: 1px solid rgba(63, 11, 122, .12);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 70px rgba(41, 28, 83, .08);
}

.name-card-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: var(--violet);
  border: 1px solid rgba(122,16,242,.2);
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(239,245,255,.86));
  font-weight: 900;
}

.name-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.name-card strong {
  color: var(--ink);
}

.companion-day-line {
  margin: 52px 0 0;
  color: var(--violet);
  font: 850 clamp(25px, 2.2vw, 36px)/1.12 "Space Grotesk", Inter, sans-serif;
}

.companion-day-visual {
  position: relative;
  min-height: 720px;
  border-radius: 0;
  isolation: isolate;
}

.companion-day-visual img {
  position: absolute;
  inset: 0 0 86px 0;
  width: 100%;
  height: calc(100% - 86px);
  object-fit: cover;
  object-position: 56% 50%;
  border-radius: 0 0 0 0;
  box-shadow: 0 30px 120px rgba(26, 14, 54, .16);
}

.companion-day-visual::after {
  content: "";
  position: absolute;
  inset: 0 0 86px 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20,14,36,.12), transparent 28%),
    radial-gradient(circle at 92% 6%, rgba(244,177,84,.22), transparent 28%);
}

.chat-bubble,
.process-strip {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.62);
  background: rgba(255,255,255,.83);
  box-shadow: 0 24px 80px rgba(24, 16, 48, .18);
  backdrop-filter: blur(18px);
}

.chat-bubble {
  right: 5%;
  width: min(390px, 42%);
  padding: 24px 26px;
  border-radius: 24px;
  color: var(--ink-2);
}

.chat-bubble strong {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--violet);
  font: 850 18px/1.2 "Space Grotesk", Inter, sans-serif;
}

.chat-bubble strong::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--violet);
}

.chat-bubble p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.user-bubble {
  top: 16%;
}

.symia-bubble {
  top: 41%;
  border-radius: 24px 24px 24px 8px;
  background: rgba(255,255,255,.9);
}

.process-strip {
  left: -8%;
  right: -5%;
  bottom: 0;
  padding: 24px 30px 28px;
  border-radius: 26px;
}

.process-strip > strong {
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font: 850 18px/1.2 "Space Grotesk", Inter, sans-serif;
}

.process-strip ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-strip li {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  color: var(--ink-2);
  font-weight: 760;
  line-height: 1.25;
}

.process-strip li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 22px;
  color: rgba(63, 11, 122, .34);
  font-weight: 900;
}

.process-strip li span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--violet);
  border: 1px solid rgba(63, 11, 122, .12);
  background: linear-gradient(145deg, #fff, #f5f8ff);
  box-shadow: 0 14px 36px rgba(41, 28, 83, .08);
}

@media (max-width: 1180px) {
  .companion-day-grid {
    grid-template-columns: 1fr;
  }

  .companion-day-visual {
    min-height: 660px;
  }

  .process-strip {
    left: 0;
    right: 0;
  }
}

@media (max-width: 720px) {
  .companion-day-copy h2 {
    font-size: clamp(34px, 9vw, 48px) !important;
  }

  .name-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .companion-day-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .companion-day-visual img,
  .companion-day-visual::after,
  .chat-bubble,
  .process-strip {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .companion-day-visual img {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 26px;
    object-position: 48% 50%;
  }

  .chat-bubble {
    right: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .chat-bubble p {
    font-size: 16px;
  }

  .process-strip {
    padding: 22px;
  }

  .process-strip ol {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-strip li {
    grid-template-columns: 44px 1fr;
    justify-items: start;
    text-align: left;
    align-items: center;
  }

  .process-strip li:not(:last-child)::after {
    display: none;
  }

  .process-strip li span {
    width: 44px;
    height: 44px;
  }
}

/* Symneo Story v54: integrated hero stage */
.hero-showcase {
  min-height: calc(100vh - 82px) !important;
  padding: clamp(54px, 5vw, 82px) 0 clamp(64px, 6vw, 96px) !important;
  display: flex !important;
  align-items: center !important;
  background:
    radial-gradient(circle at 84% 8%, rgba(235, 177, 105, .16), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(11,196,216,.08), transparent 34%),
    linear-gradient(90deg, #fff 0%, #fbfdff 46%, #f3f7ff 100%) !important;
}

.hero-showcase .story-hero-bg {
  opacity: .16 !important;
  mix-blend-mode: normal !important;
}

.hero-showcase::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 39%, rgba(255,255,255,.32) 74%, rgba(255,255,255,.08) 100%) !important;
}

.hero-showcase .container {
  width: min(1740px, calc(100% - 64px)) !important;
}

.hero-showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 640px) minmax(650px, 1fr);
  gap: clamp(48px, 4.8vw, 96px);
  align-items: center;
}

.hero-showcase-copy {
  min-width: 0;
  align-self: center;
}

.hero-showcase-copy h1 {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(54px, 4.4vw, 84px);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--ink);
}

.hero-showcase-copy .story-text {
  max-width: 610px;
  margin-top: 28px;
  gap: 22px;
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.58;
}

.hero-showcase .name-card {
  max-width: 610px;
  margin-top: 34px;
  padding: 24px 28px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
}

.hero-showcase .companion-day-line {
  margin-top: 42px;
  font-size: clamp(27px, 2.35vw, 42px);
}

.hero-symia-invite {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.62;
}

.hero-showcase .story-actions {
  margin-top: 24px;
}

.hero-showcase .story-actions .button {
  min-height: 58px;
  padding-inline: 28px;
}

.hero-showcase .story-actions .button::after {
  content: "→";
  margin-left: 14px;
  font-weight: 900;
}

.hero-showcase-visual {
  position: relative;
  min-height: min(720px, calc(100vh - 150px));
  border-radius: 0 0 32px 0;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 34px 130px rgba(24, 16, 48, .15);
}

.hero-showcase-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  border-radius: 0 0 0 0;
}

.hero-showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04), transparent 38%),
    radial-gradient(circle at 95% 7%, rgba(247,197,130,.24), transparent 28%);
  z-index: 1;
}

.hero-showcase-visual .chat-bubble,
.hero-showcase-visual .process-strip {
  z-index: 3;
}

.hero-showcase-visual .chat-bubble {
  right: 5.8%;
  width: min(410px, 43%);
  background: rgba(255,255,255,.86);
}

.hero-showcase-visual .user-bubble {
  top: 16%;
}

.hero-showcase-visual .symia-bubble {
  top: 39%;
}

.hero-showcase-visual .process-strip {
  left: -7.5%;
  right: -4%;
  bottom: 0;
  padding: 26px 30px 30px;
  background: rgba(255,255,255,.88);
}

.hero-showcase .mobile-hero-companion {
  display: none;
}

@media (max-width: 1280px) {
  .hero-showcase-grid {
    grid-template-columns: minmax(340px, 520px) minmax(520px, 1fr);
    gap: 48px;
  }

  .hero-showcase-copy h1 {
    font-size: clamp(46px, 4.6vw, 68px);
  }

  .hero-showcase-visual {
    min-height: 660px;
  }

  .hero-showcase-visual .chat-bubble {
    width: min(360px, 45%);
    padding: 20px 22px;
  }

  .hero-showcase-visual .chat-bubble p {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .hero-showcase {
    min-height: auto !important;
    padding: 56px 0 72px !important;
  }

  .hero-showcase .container {
    width: min(100% - 36px, 680px) !important;
  }

  .hero-showcase-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-showcase-copy h1 {
    font-size: clamp(37px, 9.3vw, 58px);
    max-width: 640px;
  }

  .hero-showcase .mobile-hero-companion {
    display: block !important;
    margin: 28px 0 0;
    border-radius: 28px;
  }

  .hero-showcase .mobile-hero-companion img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 48% 50%;
    border-radius: 28px;
    box-shadow: 0 22px 70px rgba(24,16,48,.15);
    mask-image: none !important;
  }

  .hero-showcase-visual {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-showcase .container {
    width: min(100% - 28px, 680px) !important;
  }

  .hero-showcase-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-showcase-copy .story-text {
    font-size: 17px;
    line-height: 1.62;
  }

  .hero-showcase .name-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .hero-showcase .story-actions {
    display: grid;
  }
}

/* Symneo Story v57: concrete Companion hero scenario */
.hero-showcase-grid {
  grid-template-columns: minmax(420px, 650px) minmax(720px, 1fr) !important;
}

.hero-showcase-copy h1 span {
  display: block;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

.hero-showcase-visual {
  min-height: min(700px, calc(100vh - 150px)) !important;
  overflow: visible !important;
  box-shadow: none !important;
}

.hero-showcase-visual > img {
  border-radius: 0 28px 28px 0 !important;
  box-shadow: 0 34px 130px rgba(24, 16, 48, .18);
  object-position: 50% 50% !important;
}

.hero-showcase-visual::after {
  border-radius: 0 28px 28px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at 93% 7%, rgba(247,197,130,.32), transparent 26%) !important;
}

.hero-showcase-visual .chat-bubble {
  right: clamp(34px, 5vw, 86px) !important;
  width: min(430px, 42%) !important;
  padding: 24px 28px !important;
  border-color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.9) !important;
}

.hero-showcase-visual .chat-bubble strong {
  color: var(--violet);
}

.hero-showcase-visual .user-bubble {
  top: 26% !important;
}

.hero-showcase-visual .symia-bubble {
  top: 52% !important;
  border-radius: 24px 24px 24px 8px;
}

.hero-showcase-visual .hero-process-strip {
  left: -10%;
  right: 0;
  bottom: -96px;
  padding: 26px 34px 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 26px 100px rgba(24, 16, 48, .16);
}

.hero-showcase-visual .hero-process-strip li {
  color: var(--ink-2);
  font-size: 15px;
}

.hero-showcase-visual .hero-process-strip li span {
  color: var(--violet);
  font-size: 15px;
  font-weight: 900;
}

.mobile-hero-thread {
  display: none;
}

@media (max-width: 1280px) {
  .hero-showcase-grid {
    grid-template-columns: minmax(340px, 520px) minmax(560px, 1fr) !important;
  }

  .hero-showcase-visual .hero-process-strip {
    left: -5%;
  }

  .hero-showcase-visual .hero-process-strip li {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .hero-showcase-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-showcase .mobile-hero-companion {
    position: relative;
    overflow: visible;
  }

  .hero-showcase .mobile-hero-companion img {
    object-position: 47% 50% !important;
  }

  .mobile-hero-thread {
    display: grid;
    gap: 6px;
    width: min(300px, calc(100% - 64px));
    margin: -34px 0 0 16px;
    position: relative;
    z-index: 2;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.76);
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 54px rgba(24, 16, 48, .14);
    color: var(--ink);
    overflow-wrap: anywhere;
  }

  .mobile-hero-thread span {
    color: var(--violet);
    font: 850 13px/1.25 "Space Grotesk", Inter, sans-serif;
  }

  .mobile-hero-thread strong {
    display: block;
    font-size: 14px;
    line-height: 1.4;
  }
}

@media (max-width: 560px) {
  .hero-showcase-copy h1 {
    max-width: 100% !important;
    font-size: clamp(32px, 8.7vw, 40px) !important;
  }
}

/* Symneo Story v58: baked hero image instead of responsive overlay UI */
.hero-showcase-grid {
  align-items: start;
}

.hero-showcase-visual {
  min-height: 0 !important;
  overflow: visible !important;
  border-radius: 0 30px 30px 0;
  box-shadow: none !important;
  margin-top: clamp(78px, 8vw, 128px);
}

.hero-showcase-visual::after {
  display: none !important;
}

.hero-baked-picture {
  display: block;
  width: 100%;
}

.hero-baked-picture img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 0 30px 30px 0 !important;
  box-shadow: 0 34px 130px rgba(24, 16, 48, .16);
}

.mobile-hero-companion .hero-baked-picture img {
  border-radius: 28px !important;
  box-shadow: 0 22px 70px rgba(24,16,48,.15);
}

@media (max-width: 980px) {
  .hero-showcase .mobile-hero-companion {
    overflow: visible;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-showcase .mobile-hero-companion img {
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
  }

  .hero-showcase .mobile-hero-companion .hero-baked-picture,
  .hero-showcase .mobile-hero-companion .hero-baked-picture img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-showcase .mobile-hero-companion .hero-baked-picture img {
    width: min(326px, calc(100vw - 64px)) !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    mask-image: none !important;
  }
}

/* ============================================================== */
/*  Symneo 2026 Modernisierung – v63                                */
/*  Reale Anwendungs-Szenarien als Karten statt abstrakter Bilder.  */
/*  Komponenten-Prefix: s26-                                        */
/* ============================================================== */

:root {
  --s26-radius-lg: 26px;
  --s26-radius-md: 18px;
  --s26-radius-sm: 12px;
  --s26-shadow-soft: 0 18px 52px rgba(24, 16, 48, .08);
  --s26-shadow-lift: 0 28px 80px rgba(24, 16, 48, .14);
  --s26-shadow-deep: 0 38px 110px rgba(24, 16, 48, .18);
  --s26-border: rgba(10, 10, 18, .08);
  --s26-line: rgba(63, 11, 122, .14);
  --s26-glass: rgba(255, 255, 255, .82);
  --s26-glass-strong: rgba(255, 255, 255, .92);
  --s26-grad-cool: linear-gradient(135deg, rgba(11,196,216,.16), rgba(122,16,242,.12));
  --s26-grad-warm: linear-gradient(135deg, rgba(247,197,130,.18), rgba(255,128,176,.12));
}

/* ---- Mobile Hero: HTML-Sprechblasen statt eingebackener Pixel ---- */
.s26-mobile-hero {
  display: none;
}
@media (max-width: 980px) {
  .hero-showcase .s26-mobile-hero {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 26px 0 8px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
  .hero-showcase .s26-mobile-hero .hero-baked-picture {
    display: none !important;
  }
}

.s26-mobile-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--s26-radius-lg);
  overflow: hidden;
  isolation: isolate;
  background: rgba(245, 246, 250, .6);
  box-shadow: 0 22px 60px rgba(24, 16, 48, .12);
}
.hero-showcase .s26-mobile-hero .s26-mobile-photo > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: 52% 46% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}
.s26-mobile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,18,0) 60%, rgba(10,10,18,.08));
  pointer-events: none;
}

.s26-mobile-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 10px 28px rgba(24, 16, 48, .16);
  border: 1px solid rgba(255, 255, 255, .7);
  z-index: 2;
}
.hero-showcase .s26-mobile-hero .s26-mobile-pill img {
  width: 30px !important;
  height: 30px !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center top !important;
  box-shadow: 0 4px 10px rgba(24, 16, 48, .14) !important;
  position: static !important;
}
.s26-mobile-pill > span {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}
.s26-mobile-pill strong {
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
}
.s26-mobile-pill em {
  color: var(--violet);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.s26-mobile-thread {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.s26-mobile-bubble {
  padding: 12px 14px;
  border-radius: var(--s26-radius-md);
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--s26-border);
  box-shadow: 0 8px 24px rgba(24, 16, 48, .06);
}
.s26-mobile-bubble span {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 4px;
}
.s26-mobile-bubble.s26-mobile-symia span {
  color: var(--cyan-dark);
}
.s26-mobile-bubble p {
  margin: 0;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
}
.s26-mobile-bubble.s26-mobile-symia {
  background: linear-gradient(135deg, rgba(11,196,216,.07), rgba(122,16,242,.05)), #fff;
  border-color: rgba(11, 196, 216, .26);
}

/* ---- Allgemeine Polish auf s26-section: gleichmäßige Abstände ---- */
.s26-section .section-head.narrow {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: left;
}
.s26-section .section-head.narrow h2 {
  max-width: 900px;
}
.s26-section .section-head.narrow .story-text {
  max-width: 900px;
}

/* ---- 1. Companion-Definition: Szenario-Karten-Stack ---- */
.s26-scenarios {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border-radius: var(--s26-radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.92), rgba(248,250,255,.78));
  border: 1px solid var(--s26-border);
  box-shadow: var(--s26-shadow-lift);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}
.s26-scenarios::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--s26-radius-lg);
  background:
    radial-gradient(circle at 18% 8%, rgba(122,16,242,.18), transparent 28%),
    radial-gradient(circle at 92% 92%, rgba(11,196,216,.16), transparent 32%);
  pointer-events: none;
  opacity: .9;
  z-index: 0;
}
.s26-scenario {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: var(--s26-radius-md);
  background: #fff;
  border: 1px solid var(--s26-border);
  box-shadow: 0 8px 22px rgba(24, 16, 48, .05);
  z-index: 1;
  opacity: .58;
  transform: scale(.98);
  filter: saturate(.85);
  transition:
    opacity .55s var(--ease),
    transform .55s var(--ease),
    filter .55s var(--ease),
    box-shadow .55s var(--ease),
    border-color .55s var(--ease);
}
.s26-scenario.s26-scenario-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
  border-color: rgba(11, 196, 216, .34);
  box-shadow: 0 22px 54px rgba(24, 16, 48, .14);
}
.s26-scenario:hover {
  opacity: 1;
  transform: scale(1) translateY(-2px);
  filter: saturate(1);
  border-color: rgba(11,196,216,.3);
  box-shadow: 0 22px 54px rgba(24, 16, 48, .14);
}
.s26-scenario header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.s26-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(122,16,242,.1), rgba(11,196,216,.1));
  color: var(--violet);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.s26-time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.s26-bubble {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
}
.s26-bubble em {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  font-style: normal;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.s26-bubble em img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.s26-bubble-symia em {
  padding: 0;
  box-shadow: 0 4px 12px rgba(63, 11, 122, .22), inset 0 0 0 2px rgba(255, 255, 255, .65);
}
.s26-bubble p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.s26-bubble p strong {
  color: var(--violet);
}
.s26-bubble-user {
  background: rgba(245, 246, 250, .78);
}
.s26-bubble-user em {
  background: rgba(10, 10, 18, .06);
  color: var(--ink-2);
}
.s26-bubble-symia {
  background: linear-gradient(135deg, rgba(11,196,216,.08), rgba(122,16,242,.06));
  border: 1px solid rgba(11, 196, 216, .22);
}
.s26-bubble-symia em {
  background: linear-gradient(135deg, var(--violet-2), var(--cyan-dark));
  color: #fff;
}

.s26-scenario-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 6px 0;
}
.s26-scenario-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 10, 18, .14);
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.s26-scenario-dot.s26-dot-active {
  background: linear-gradient(135deg, var(--violet-2), var(--cyan-dark));
  transform: scale(1.25);
}

/* ---- 2. Daily-Change-Karten: 2026-Polish ---- */
.s26-change-grid {
  gap: 22px;
}
.s26-change {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px !important;
  border-radius: var(--s26-radius-lg) !important;
  background: linear-gradient(180deg, #fff, rgba(248, 250, 255, .82)) !important;
  border: 1px solid var(--s26-border) !important;
  box-shadow: var(--s26-shadow-soft) !important;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.s26-change:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 196, 216, .28) !important;
  box-shadow: var(--s26-shadow-lift) !important;
}
.s26-change-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
}
.s26-change-no {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet-2), var(--cyan-dark));
  box-shadow: 0 12px 28px rgba(63, 11, 122, .22);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
}
.s26-change h3 {
  font-size: clamp(22px, 1.8vw, 26px);
  margin: 0 !important;
}
.s26-change p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}
.s26-change strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}
.s26-change-quote {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: var(--s26-radius-md);
  background: linear-gradient(135deg, rgba(11,196,216,.06), rgba(122,16,242,.05));
  border-left: 3px solid var(--cyan);
}
.s26-change-quote span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.s26-change-quote p {
  margin: 0;
  color: var(--ink);
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.5;
}

/* ---- 3. Memory-Karten ---- */
.s26-memory {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-self: center;
  padding: 22px;
  border-radius: var(--s26-radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.84), rgba(248,250,255,.6));
  border: 1px solid var(--s26-border);
  box-shadow: var(--s26-shadow-lift);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.s26-mem {
  position: relative;
  padding: 18px;
  border-radius: var(--s26-radius-md);
  background: #fff;
  border: 1px solid var(--s26-border);
  box-shadow: 0 10px 28px rgba(24, 16, 48, .06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  z-index: 1;
}
.s26-mem:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(24, 16, 48, .12);
}
.s26-mem-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.s26-mem h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}
.s26-mem p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.s26-mem-customer .s26-mem-label {
  background: rgba(11, 196, 216, .14);
  color: var(--cyan-dark);
}
.s26-mem-decision .s26-mem-label {
  background: rgba(122, 16, 242, .12);
  color: var(--violet);
}
.s26-mem-thread .s26-mem-label {
  background: rgba(247, 169, 80, .18);
  color: #b46b1f;
}
.s26-mem-org .s26-mem-label {
  background: rgba(74, 191, 134, .16);
  color: #1f7a4b;
}

.s26-mem-pulse {
  position: absolute;
  inset: 50% 50% auto auto;
  width: 220px;
  height: 220px;
  margin: -110px -60px 0 0;
  background: radial-gradient(circle, rgba(11,196,216,.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: s26-pulse 8s ease-in-out infinite;
}
@keyframes s26-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); }
}

/* ---- 4. Personalities (custom-companion) ---- */
.s26-personalities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.s26-pers {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: var(--s26-radius-lg);
  background: linear-gradient(180deg, #fff, rgba(248, 250, 255, .8));
  border: 1px solid var(--s26-border);
  box-shadow: var(--s26-shadow-soft);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.s26-pers:hover {
  transform: translateY(-5px);
  box-shadow: var(--s26-shadow-lift);
}
.s26-pers::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 6px;
}
.s26-pers-toni::before  { background: linear-gradient(90deg, #f7a93a, #4abf86); }
.s26-pers-lara::before  { background: linear-gradient(90deg, #d75a8f, #f7b25c); }
.s26-pers-marvin::before { background: linear-gradient(90deg, #1f3a5f, #4abf86); }
.s26-pers-symia::before { background: linear-gradient(90deg, #7a10f2, #0bc4d8); }

.s26-pers-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(24, 16, 48, .14);
  overflow: hidden;
}
.s26-pers-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.s26-pers-toni   .s26-pers-avatar { background: linear-gradient(135deg, #f7a93a, #4abf86); }
.s26-pers-lara   .s26-pers-avatar { background: linear-gradient(135deg, #d75a8f, #f7b25c); }
.s26-pers-marvin .s26-pers-avatar { background: linear-gradient(135deg, #1f3a5f, #4abf86); }
.s26-pers-symia  .s26-pers-avatar { background: linear-gradient(135deg, #7a10f2, #0bc4d8); }
.s26-pers-tag {
  display: inline-flex;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet);
}
.s26-pers h4 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 26px;
  color: var(--ink);
}
.s26-pers-tone {
  margin: 0;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 700;
}
.s26-pers-line {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--s26-radius-md);
  background: rgba(245, 246, 250, .78);
  color: var(--ink);
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

/* ---- 5. Command Palette (tool-integration) ---- */
.s26-command {
  display: grid;
  gap: 0;
  border-radius: var(--s26-radius-lg);
  background: #0b0c1a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--s26-shadow-deep);
  overflow: hidden;
  align-self: center;
}
.s26-command-bar {
  display: grid;
  grid-template-columns: 28px auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent);
}
.s26-command-key {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, .82);
}
.s26-command-prompt {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: .04em;
}
.s26-command-input {
  color: rgba(255, 255, 255, .92);
  font-size: 15px;
  line-height: 1.4;
  font-style: italic;
}
.s26-command-result {
  display: grid;
  padding: 6px 10px;
}
.s26-command-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-radius: 12px;
  transition: background .25s var(--ease);
}
.s26-command-row + .s26-command-row {
  border-top: 1px solid rgba(255, 255, 255, .04);
}
.s26-command-row:hover {
  background: rgba(255, 255, 255, .04);
}
.s26-command-tool {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.s26-command-action {
  color: rgba(255, 255, 255, .88);
  font-size: 14.5px;
  line-height: 1.4;
}
.s26-command-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.s26-command-state::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(74, 191, 134, .18);
}
.s26-command-ready {
  color: #4abf86;
  background: rgba(74, 191, 134, .14);
}
.s26-command-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.04));
}
.s26-command-foot > span {
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
}
.s26-command-foot strong {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet-2), var(--cyan-dark));
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 12px 24px rgba(11, 196, 216, .26);
}
.s26-command-foot strong:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(11, 196, 216, .34);
}

/* ---- 6. Symia-Karte ---- */
.s26-symia-card {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: var(--s26-radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.94), rgba(248,250,255,.78));
  border: 1px solid var(--s26-border);
  box-shadow: var(--s26-shadow-lift);
  align-self: center;
}
.s26-symia-portrait {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  margin: 0;
}
.s26-symia-portrait img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #fff;
  box-shadow: 0 18px 44px rgba(63, 11, 122, .22);
}
.s26-symia-portrait figcaption {
  display: grid;
  gap: 4px;
}
.s26-symia-portrait figcaption span {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet);
}
.s26-symia-portrait figcaption strong {
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
  line-height: 1.15;
}
.s26-symia-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--cyan-dark);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}
.s26-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(74, 191, 134, .2);
  animation: s26-status 2.6s var(--ease) infinite;
}
@keyframes s26-status {
  50% { transform: scale(1.3); opacity: .65; }
}
.s26-symia-prompts {
  display: grid;
  gap: 8px;
}
.s26-symia-prompts-label {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.s26-symia-prompt {
  display: block;
  padding: 14px 16px;
  border-radius: var(--s26-radius-md);
  background: rgba(245, 246, 250, .82);
  border: 1px solid var(--s26-border);
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.5;
  text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.s26-symia-prompt:hover {
  transform: translateX(4px);
  border-color: rgba(11, 196, 216, .34);
  background: linear-gradient(135deg, rgba(11,196,216,.06), rgba(122,16,242,.04)), #fff;
}

/* ---- 7. Models-Dock ---- */
.s26-models {
  display: grid;
  gap: 18px;
  align-self: center;
  padding: 28px;
  border-radius: var(--s26-radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.92), rgba(248,250,255,.74));
  border: 1px solid var(--s26-border);
  box-shadow: var(--s26-shadow-lift);
}
.s26-models-stage {
  display: grid;
  grid-template-columns: 130px auto 1fr;
  gap: 22px;
  align-items: center;
}
.s26-models-symia {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 14px 10px;
  border-radius: var(--s26-radius-md);
  background: linear-gradient(135deg, rgba(122,16,242,.08), rgba(11,196,216,.08));
  border: 1px solid rgba(122, 16, 242, .14);
}
.s26-models-symia img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px rgba(63, 11, 122, .18);
}
.s26-models-symia strong {
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 15px;
}
.s26-models-symia em {
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.s26-models-arrow {
  display: grid;
  gap: 4px;
  justify-items: center;
}
.s26-models-arrow span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .4;
  animation: s26-flow 1.6s ease-in-out infinite;
}
.s26-models-arrow span:nth-child(2) { animation-delay: .2s; }
.s26-models-arrow span:nth-child(3) { animation-delay: .4s; }
@keyframes s26-flow {
  50% { opacity: 1; transform: scale(1.4); }
}
.s26-models-cycle {
  display: grid;
  gap: 6px;
}
.s26-model {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--s26-radius-sm);
  background: #fff;
  border: 1px solid var(--s26-border);
  transition: opacity .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  opacity: .55;
}
.s26-model strong {
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 15px;
  font-weight: 800;
}
.s26-model em {
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
}
.s26-model.s26-model-active {
  opacity: 1;
  border-color: rgba(11, 196, 216, .42);
  background: linear-gradient(135deg, rgba(11,196,216,.08), rgba(122,16,242,.05)), #fff;
  box-shadow: 0 10px 24px rgba(11, 196, 216, .12);
}
.s26-model.s26-model-active strong {
  color: var(--violet);
}
.s26-models-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ---- 8. Tiers (Cloud/Hybrid/Lokal) ---- */
.s26-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.s26-tier {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: var(--s26-radius-lg);
  background: linear-gradient(180deg, #fff, rgba(248, 250, 255, .8));
  border: 1px solid var(--s26-border);
  box-shadow: var(--s26-shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.s26-tier:hover {
  transform: translateY(-5px);
  box-shadow: var(--s26-shadow-lift);
}
.s26-tier-featured {
  background: linear-gradient(180deg, #fff, rgba(11,196,216,.05));
  border-color: rgba(11, 196, 216, .34);
  box-shadow: 0 22px 60px rgba(11, 196, 216, .14);
}
.s26-tier-featured::before {
  content: "Empfohlen";
  position: absolute;
  top: -12px;
  right: 22px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet-2), var(--cyan-dark));
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(11, 196, 216, .26);
}
.s26-tier-label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.s26-tier-cloud  .s26-tier-label { background: rgba(11, 196, 216, .14); color: var(--cyan-dark); }
.s26-tier-hybrid .s26-tier-label { background: rgba(122, 16, 242, .12); color: var(--violet); }
.s26-tier-local  .s26-tier-label { background: rgba(74, 191, 134, .16); color: #1f7a4b; }
.s26-tier h4 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 24px;
  color: var(--ink);
}
.s26-tier > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}
.s26-tier ul {
  margin: 4px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.s26-tier li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.5;
}
.s26-tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 12%, transparent 14%),
    linear-gradient(135deg, var(--violet-2), var(--cyan-dark));
  box-shadow: 0 4px 10px rgba(63, 11, 122, .18);
}

/* ---- 9. Org-Karten (multi-companion) ---- */
.s26-org {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px 22px;
  padding: 26px;
  border-radius: var(--s26-radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.92), rgba(248,250,255,.74));
  border: 1px solid var(--s26-border);
  box-shadow: var(--s26-shadow-lift);
  align-self: center;
}
.s26-org::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--s26-radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(11,196,216,.14), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(122,16,242,.10), transparent 42%);
  pointer-events: none;
  z-index: 0;
}
.s26-org-center {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 124px;
  height: 124px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--cyan-dark));
  box-shadow: 0 22px 50px rgba(63, 11, 122, .26);
  z-index: 2;
  padding: 10px;
}
.s26-org-center::before,
.s26-org-center::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(11,196,216,.32);
  animation: s26-orbit 7s linear infinite;
  pointer-events: none;
}
.s26-org-center::after {
  inset: -22px;
  border-color: rgba(122,16,242,.18);
  animation-duration: 11s;
  animation-direction: reverse;
}
@keyframes s26-orbit {
  to { transform: rotate(360deg); }
}
.s26-org-center span {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .72;
}
.s26-org-center strong {
  display: block;
  margin-top: 4px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 17px;
  line-height: 1.15;
}
.s26-org-node {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--s26-radius-md);
  background: #fff;
  border: 1px solid var(--s26-border);
  box-shadow: 0 12px 30px rgba(24, 16, 48, .06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  z-index: 1;
}
.s26-org-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(24, 16, 48, .12);
  border-color: rgba(11, 196, 216, .26);
}
.s26-org-vertrieb   { grid-column: 1; grid-row: 1; }
.s26-org-service    { grid-column: 3; grid-row: 1; }
.s26-org-verwaltung { grid-column: 1; grid-row: 2; }
.s26-org-inhaber    { grid-column: 3; grid-row: 2; }
.s26-org-tag {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.s26-org-vertrieb   .s26-org-tag { color: var(--violet); }
.s26-org-service    .s26-org-tag { color: #1f7a4b; }
.s26-org-verwaltung .s26-org-tag { color: var(--cyan-dark); }
.s26-org-inhaber    .s26-org-tag { color: #b46b1f; }
.s26-org-node p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

/* ---- Mobile Breakpoints für s26-Komponenten ---- */
@media (max-width: 1180px) {
  .s26-personalities {
    grid-template-columns: repeat(2, 1fr);
  }
  .s26-tiers {
    grid-template-columns: 1fr;
  }
  .s26-tier-featured::before {
    right: 18px;
  }
}

@media (max-width: 980px) {
  .s26-models-stage {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .s26-models-symia {
    grid-auto-flow: column;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: left;
  }
  .s26-models-symia img {
    width: 52px;
    height: 52px;
  }
  .s26-models-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
  .s26-org {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .s26-org-center {
    grid-column: 1;
    grid-row: auto;
    align-self: stretch;
    width: 100%;
    height: auto;
    border-radius: var(--s26-radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 18px;
  }
  .s26-org-center::before,
  .s26-org-center::after {
    display: none;
  }
  .s26-org-vertrieb,
  .s26-org-service,
  .s26-org-verwaltung,
  .s26-org-inhaber {
    grid-column: 1;
    grid-row: auto;
    padding: 18px;
  }
  .s26-symia-portrait {
    grid-template-columns: 96px 1fr;
  }
  .s26-symia-portrait img {
    width: 96px;
    height: 96px;
  }
  .s26-section .container.story-split,
  .s26-section .container.story-split.reverse {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .s26-scenarios {
    padding: 18px;
  }
  .s26-scenario {
    padding: 14px 16px;
  }
  .s26-bubble {
    grid-template-columns: 32px 1fr;
    gap: 8px;
    padding: 8px 10px;
  }
  .s26-bubble em {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  .s26-bubble p {
    font-size: 14px;
  }
  .s26-memory {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }
  .s26-personalities {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }
  .s26-pers {
    padding: 22px;
  }
  .s26-command-row {
    grid-template-columns: 90px 1fr;
    gap: 10px;
  }
  .s26-command-state {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 2px;
  }
  .s26-command-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .s26-command-foot strong {
    text-align: center;
  }
  .s26-symia-card {
    padding: 22px;
  }
  .s26-symia-portrait {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }
  .s26-symia-portrait img {
    width: 80px;
    height: 80px;
  }
  .s26-tiers {
    margin-top: 32px;
  }
  .s26-tier {
    padding: 22px;
  }
  .s26-models {
    padding: 20px;
  }
  .s26-model {
    grid-template-columns: 78px 1fr;
    padding: 10px 12px;
  }
  .s26-org {
    padding: 18px;
  }
  .s26-change {
    padding: 22px !important;
  }
  .s26-change-no {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }
}

/* Reveal stays consistent with existing reveal class */
.s26-section .reveal { transition: opacity .8s var(--ease), transform .8s var(--ease); }

/* ---- 10. Hero: Namens-Pills statt ⌘-Karte (v64) ---- */
.hero-showcase .name-card {
  display: none !important;
}
.s26-names {
  margin: 26px 0 4px;
  max-width: 640px;
}
.s26-names-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(122, 16, 242, .08);
  color: var(--violet);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.s26-names-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.s26-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--s26-border);
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(24, 16, 48, .06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.s26-name:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 196, 216, .34);
  box-shadow: 0 10px 22px rgba(24, 16, 48, .1);
}
.s26-name-symia {
  background: linear-gradient(135deg, rgba(122,16,242,.08), rgba(11,196,216,.08)), #fff;
  border-color: rgba(122, 16, 242, .26);
  padding-left: 5px;
  color: var(--ink);
}
.s26-name-symia img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 3px 8px rgba(63, 11, 122, .2);
}
.s26-name-yours {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  background: transparent;
  border-color: rgba(10, 10, 18, .14);
  border-style: dashed;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.s26-name-yours:hover {
  border-color: rgba(11, 196, 216, .42);
  box-shadow: none;
}

@media (max-width: 640px) {
  .s26-names {
    margin: 22px 0 2px;
  }
  .s26-name {
    font-size: 14px;
    padding: 6px 14px;
  }
  .s26-name-symia img {
    width: 22px;
    height: 22px;
  }
  .s26-name-yours {
    font-size: 13px;
  }
}

/* ---- 11. Nav: inhaltliche Labels statt Eigennamen (v67) ---- */
@media (min-width: 981px) and (max-width: 1340px) {
  .site-header .nav-links {
    gap: 18px;
    font-size: 14px;
  }
  .site-header .nav-links a:not(.nav-button) {
    white-space: nowrap;
  }
  .site-header .nav-button {
    padding: 10px 14px;
    font-size: 13px;
  }
}
@media (min-width: 1341px) {
  .site-header .nav-links {
    gap: 26px;
  }
}

/* ---- 12. Daily-Change: Bilder pro Karte (v69) ---- */
.s26-change-photo {
  margin: -28px -28px 6px;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-top-left-radius: var(--s26-radius-lg);
  border-top-right-radius: var(--s26-radius-lg);
  background: rgba(10, 10, 18, .04);
}
.s26-change-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s var(--ease);
}
.s26-change:hover .s26-change-photo img {
  transform: scale(1.03);
}
@media (max-width: 880px) {
  .s26-change-photo {
    aspect-ratio: 16 / 10;
  }
}

/* ---- 13. Symia: kontextbezogener Lesekommentar (v72) ---- */
.symia-hover-card {
  position: fixed;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  z-index: 120;
  width: min(320px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 138px;
  padding: 13px 16px 13px 13px;
  color: rgba(246, 247, 255, .94);
  background: rgba(16, 14, 34, .78);
  border: 1px solid rgba(123, 112, 190, .34);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(12, 8, 31, .22);
  backdrop-filter: blur(22px) saturate(1.28);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.symia-hover-card.symia-hover-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.symia-hover-face {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .16);
}

.symia-hover-body {
  min-width: 0;
  padding-right: 16px;
}

.symia-hover-body strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.symia-hover-body p {
  min-height: 56px;
  color: rgba(242, 241, 252, .88);
  font-size: 13px;
  line-height: 1.42;
}

.symia-hover-body a {
  display: inline-flex;
  margin-top: 8px;
  color: #79e8f2;
  font-size: 12px;
  font-weight: 800;
}

.symia-hover-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, .66);
  background: transparent;
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.symia-hover-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

@media (max-width: 720px) {
  .symia-hover-card {
    right: 12px;
    bottom: 12px;
    width: min(310px, calc(100vw - 24px));
    grid-template-columns: 34px 1fr;
    gap: 10px;
    min-height: 116px;
    padding: 11px 13px 11px 11px;
    border-radius: 16px;
  }

  .symia-hover-face {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .symia-hover-body {
    padding-right: 14px;
  }

  .symia-hover-body strong {
    font-size: 12px;
  }

  .symia-hover-body p {
    min-height: 48px;
    max-height: 68px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.34;
  }

  .symia-hover-body a {
    margin-top: 6px;
    font-size: 11px;
  }

  .symia-hover-close {
    top: 6px;
    right: 7px;
    width: 22px;
    height: 22px;
    font-size: 18px;
  }
}

/* ---- 14. Hero: Pepper-Lead, Sub, Mini-Sub-Headlines (v73) ---- */
.s26-hero-pre {
  margin: 22px 0 0;
  max-width: 640px;
  color: var(--violet);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: .005em;
}
.s26-hero-pre + h1 {
  margin-top: 6px !important;
}
.s26-hero-sub {
  margin: 16px 0 0;
  max-width: 640px;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 600;
  line-height: 1.34;
  opacity: .82;
}
.s26-hero-mini-h {
  margin: 14px 0 -6px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -.005em;
}
@media (max-width: 640px) {
  .s26-hero-pre { font-size: 15px; }
  .s26-hero-sub { font-size: 17px; }
  .s26-hero-mini-h { font-size: 19px; margin-top: 10px; }
}

/* ---- 15. Impressum: Marken-Box unter dem Hauptkarte (v73) ---- */
.legal-note {
  margin: 26px 0 0;
  padding: 20px 26px;
  border: 1px solid rgba(10, 10, 18, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.legal-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.legal-note p + p {
  margin-top: 8px;
}
.legal-note strong {
  color: var(--ink);
  font-weight: 700;
}
.legal-note a {
  color: var(--violet);
  font-weight: 600;
  text-decoration: none;
}
.legal-note a:hover {
  color: var(--cyan-strong);
}
