:root {
  color-scheme: light;
  --bg: oklch(98% 0.012 246);
  --bg-strong: oklch(96% 0.03 246);
  --surface: oklch(100% 0 0);
  --surface-blue: oklch(95% 0.045 248);
  --line: oklch(87% 0.035 248);
  --line-strong: oklch(76% 0.07 248);
  --ink: oklch(20% 0.05 251);
  --text: oklch(30% 0.04 251);
  --muted: oklch(45% 0.035 251);
  --soft: oklch(93% 0.035 248);
  --blue: oklch(55% 0.23 260);
  --blue-deep: oklch(24% 0.12 257);
  --blue-dark: oklch(16% 0.07 253);
  --cyan: oklch(70% 0.17 215);
  --green: oklch(66% 0.17 155);
  --amber: oklch(76% 0.15 75);
  --danger: oklch(58% 0.2 25);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --max: 1180px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --shadow-soft: 0 4px 8px oklch(20% 0.05 251 / 0.07);
  --voice-orb-size: 80px;
  --voice-panel-orb-size: 74px;
  --voice-orb-bottom: 2px;
  --voice-orb-move-speed: 12.4s;
}

html {
  scroll-padding-top: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg,
canvas {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid oklch(75% 0.16 220);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-6);
  min-height: 74px;
  padding: 14px clamp(16px, 4vw, 42px);
  background: oklch(100% 0 0 / 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--blue-deep);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-switch a {
  min-width: 38px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.lang-switch a.is-active {
  color: #fff;
  background: var(--blue-deep);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.header-cta:hover {
  background: var(--blue-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  padding: clamp(30px, 4vw, 62px) clamp(16px, 4vw, 42px) clamp(86px, 7vw, 112px);
  background:
    linear-gradient(110deg, oklch(100% 0 0) 0%, oklch(100% 0 0) 48%, oklch(94% 0.045 218 / 0.72) 74%, oklch(91% 0.075 205 / 0.7) 100%);
}

.hero-flow-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-flow-field::before {
  display: none;
}

.hero-flow-field::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10vw;
  bottom: 0;
  width: min(700px, 44vw);
  background: linear-gradient(90deg, transparent 0%, oklch(88% 0.095 190 / 0.34) 58%, oklch(87% 0.12 181 / 0.46) 100%);
  opacity: 0.48;
}

.letter-routes {
  position: absolute;
  inset: -1% -8% -3% -12%;
  width: 121%;
  height: 106%;
  overflow: visible;
  opacity: 0.68;
}

.core-flow-lines {
  position: absolute;
  display: none;
  inset: -1% -8% -3% -12%;
  width: 121%;
  height: 106%;
  overflow: visible;
  opacity: 0.56;
}

.core-flow-line {
  fill: none;
  stroke: oklch(46% 0.12 228 / 0.17);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 24 94;
  filter: drop-shadow(0 0 10px oklch(100% 0 0 / 0.55));
  vector-effect: non-scaling-stroke;
  animation: coreLineMove 12s linear infinite;
}

.core-flow-line:nth-child(2n) {
  stroke: oklch(42% 0.11 238 / 0.13);
  stroke-dasharray: 18 88;
  animation-duration: 14s;
}

.core-flow-line:nth-child(3n) {
  stroke-width: 1.05;
  stroke-dasharray: 14 76;
  animation-duration: 11s;
}

.core-flow-line:nth-child(4n) {
  opacity: 0.72;
  animation-delay: -1.8s;
}

.core-flow-line:nth-child(5n) {
  opacity: 0.5;
  animation-delay: -3.1s;
}

.core-flow-line-out {
  stroke: oklch(60% 0.17 155 / 0.3);
  stroke-width: 1.6;
  stroke-dasharray: 34 78;
  opacity: 0.86;
}

.route-text {
  fill: oklch(40% 0.09 234 / 0.21);
  stroke: oklch(100% 0 0 / 0.24);
  stroke-width: 4px;
  paint-order: stroke fill;
  font-size: clamp(9px, 0.72vw, 12px);
  font-weight: 780;
  letter-spacing: 0.08em;
  opacity: 0.48;
}

.route-out .route-text {
  fill: oklch(52% 0.18 150 / 0.42);
  stroke: oklch(100% 0 0 / 0.22);
  stroke-width: 4px;
  font-size: clamp(10px, 0.82vw, 14px);
  opacity: 0.7;
}

.route-text-one {
  opacity: 0.34;
}

.route-text-two {
  opacity: 0.3;
}

.route-text-three {
  opacity: 0.28;
}

.route-text-four {
  opacity: 0.26;
}

.route-text-five {
  opacity: 0.28;
}

.route-text-six {
  opacity: 0.3;
}

.route-text-seven {
  opacity: 0.32;
}

.route-text-eight {
  opacity: 0.34;
}

.route-text-out {
  opacity: 0.72;
}

.route-in .route-text {
  opacity: 0.31;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(34px, 5.6vw, 74px);
  align-items: center;
  max-width: 1240px;
  min-height: 0;
  margin: 0 auto;
}

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

.hero-line,
.plain-label {
  margin: 0 0 var(--space-4);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.55rem, 5.65vw, 4.85rem);
  font-weight: 700;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.version-sticker {
  position: relative;
  width: clamp(180px, 22vw, 260px);
  margin: 8px 0 0 clamp(18px, 10vw, 112px);
  transform: rotate(-3deg);
  pointer-events: none;
}

.version-sticker img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 22px oklch(20% 0.04 251 / 0.14));
}

.version-sticker span {
  position: absolute;
  top: 57%;
  left: 15%;
  right: 14%;
  color: oklch(18% 0.04 251);
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  transform: translateY(-50%) rotate(1.5deg);
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.hero-lead {
  max-width: 64ch;
  margin: var(--space-6) 0 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.6;
  text-wrap: pretty;
}

section[id] {
  scroll-margin-top: 96px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 160ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-secondary {
  color: var(--blue-deep);
  background: var(--surface);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  border-color: var(--blue);
}

.core-board {
  position: relative;
  min-height: 0;
  padding: clamp(20px, 2.2vw, 28px);
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.96), oklch(95% 0.035 248 / 0.94)),
    radial-gradient(circle at 30% 20%, oklch(74% 0.16 215 / 0.3), transparent 32%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.core-board::before {
  content: "";
  position: absolute;
  inset: 76px 48px 132px;
  background:
    linear-gradient(90deg, transparent 49%, oklch(72% 0.12 230 / 0.28) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, oklch(72% 0.12 230 / 0.22) 50%, transparent 51%);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle, #000 15%, transparent 74%);
  opacity: 0.9;
}

.board-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.board-top strong {
  color: var(--green);
  font-weight: 700;
}

.core-map {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 318px;
  margin-top: var(--space-5);
  overflow: visible;
}

.core-intake-lines {
  position: absolute;
  display: none;
  inset: -16px -64px -20px -176px;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
  opacity: 0.74;
}

.core-intake-lines path {
  fill: none;
  stroke: oklch(50% 0.14 230 / 0.2);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 14 42;
  vector-effect: non-scaling-stroke;
  animation: intakeLineMove 6.2s linear infinite;
}

.core-intake-lines path:nth-child(2n) {
  stroke: oklch(48% 0.12 236 / 0.15);
  stroke-dasharray: 10 38;
  animation-duration: 7.4s;
}

.core-intake-lines path:nth-child(3n) {
  stroke-width: 0.9;
  animation-delay: -1.4s;
}

.core-intake-lines path:nth-child(5n) {
  opacity: 0.58;
  animation-delay: -2.6s;
}

.task-stream {
  position: absolute;
  display: none;
  top: 9%;
  left: -15vw;
  width: min(1180px, 82vw);
  height: 78%;
  overflow: visible;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 80%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  opacity: 0.72;
}

.task-stream::after {
  content: "ANALYSE  DOKUMENTE  SIGNALE  ENTSCHEIDUNG  KOMMUNIKATION  KONTROLLE";
  position: absolute;
  top: 32%;
  left: -10%;
  color: oklch(62% 0.13 235 / 0.13);
  font-size: clamp(13px, 1.1vw, 19px);
  font-weight: 800;
  letter-spacing: 0.24em;
  white-space: nowrap;
  pointer-events: none;
  transform: rotate(-18deg);
}

.task-stream span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: max-content;
  max-width: 34ch;
  padding: 0;
  color: oklch(47% 0.13 237 / 0.32);
  font-size: clamp(10px, 0.82vw, 13px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-shadow: 0 0 14px oklch(100% 0 0 / 0.62);
  offset-distance: 0%;
  offset-path: var(--flow-path);
  offset-rotate: 0deg;
  animation: taskIntoCore var(--flow-time, 11s) cubic-bezier(0.42, 0, 0.2, 1) infinite;
  animation-delay: calc(var(--flow-index, 0) * -0.78s);
}

.task-stream span:nth-child(1) {
  --flow-index: 1;
  --flow-time: 12s;
  --flow-path: path("M -180 315 C 40 165 220 132 392 188 C 545 238 658 268 840 208 C 1018 149 1146 112 1328 182");
}

.task-stream span:nth-child(2) {
  --flow-index: 2;
  --flow-time: 11.4s;
  --flow-path: path("M -160 88 C 78 118 214 232 402 262 C 590 294 694 158 862 118 C 1036 76 1160 118 1340 70");
}

.task-stream span:nth-child(3) {
  --flow-index: 3;
  --flow-time: 12.8s;
  --flow-path: path("M -210 248 C 10 245 150 62 340 76 C 558 92 606 282 820 318 C 1008 350 1112 242 1340 274");
}

.task-stream span:nth-child(4) {
  --flow-index: 4;
  --flow-time: 10.8s;
  --flow-path: path("M -170 402 C 86 342 188 242 386 302 C 530 346 622 424 800 386 C 990 346 1122 288 1340 318");
}

.task-stream span:nth-child(5) {
  --flow-index: 5;
  --flow-time: 13.2s;
  --flow-path: path("M -240 160 C 18 28 220 40 386 136 C 562 238 676 230 846 162 C 1018 92 1164 44 1370 112");
}

.task-stream span:nth-child(6) {
  --flow-index: 6;
  --flow-time: 11.6s;
  --flow-path: path("M -220 358 C 62 416 188 346 338 228 C 498 102 658 116 808 242 C 976 382 1130 416 1360 356");
}

.task-stream span:nth-child(7) {
  --flow-index: 7;
  --flow-time: 12.2s;
  --flow-path: path("M -190 42 C 42 72 178 146 336 116 C 548 76 646 4 842 62 C 1010 112 1142 178 1350 128");
}

.task-stream span:nth-child(8) {
  --flow-index: 8;
  --flow-time: 12.6s;
  --flow-path: path("M -210 300 C 0 396 178 438 348 346 C 546 236 648 214 824 310 C 998 405 1144 456 1366 390");
}

.task-stream span:nth-child(9) {
  --flow-index: 9;
  --flow-time: 11.1s;
  --flow-path: path("M -180 206 C 30 148 146 300 326 318 C 520 338 620 176 824 148 C 1026 120 1136 194 1338 164");
}

.task-stream span:nth-child(10) {
  --flow-index: 10;
  --flow-time: 13.6s;
  --flow-path: path("M -230 458 C 12 504 190 470 348 410 C 536 338 650 452 832 488 C 1010 524 1156 478 1360 438");
}

.core-system {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(100%, 500px);
  min-height: 318px;
}

.core-system::before,
.core-system::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 58px 92px 38px;
  border: 1px solid oklch(68% 0.16 230 / 0.38);
  border-radius: 50%;
}

.core-system::after {
  inset: 110px 158px 88px;
  border-color: oklch(68% 0.16 230 / 0.24);
}

.gear-field {
  display: none;
  position: absolute;
  inset: 24px 34px 18px;
  z-index: 1;
  pointer-events: none;
}

.gear {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 24%, oklch(67% 0.17 220 / 0.26) 25% 34%, transparent 35% 46%, oklch(62% 0.16 225 / 0.22) 47% 61%, transparent 62%),
    repeating-conic-gradient(from 4deg, oklch(58% 0.17 225 / 0.34) 0deg 8deg, transparent 8deg 16deg);
  box-shadow:
    inset 0 0 0 1px oklch(62% 0.16 225 / 0.24),
    0 14px 34px oklch(24% 0.08 250 / 0.12);
  opacity: 0.92;
}

.gear::before,
.gear::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.gear::before {
  inset: 21%;
  border: 8px solid oklch(70% 0.13 218 / 0.16);
}

.gear::after {
  inset: 43%;
  background: oklch(100% 0 0 / 0.8);
  border: 1px solid oklch(61% 0.16 225 / 0.24);
}

.gear-large {
  left: 50%;
  top: 50%;
  width: 248px;
  height: 248px;
  transform: translate(-50%, -50%);
  animation: gearTurn 18s linear infinite;
}

.gear-mid {
  left: 32%;
  top: 58%;
  width: 168px;
  height: 168px;
  transform: translate(-50%, -50%);
  animation: gearTurnReverse 12s linear infinite;
}

.gear-small {
  left: 67%;
  top: 39%;
  width: 138px;
  height: 138px;
  transform: translate(-50%, -50%);
  animation: gearTurn 8s linear infinite;
}

.profit-stream {
  position: absolute;
  display: none;
  top: 52%;
  left: calc(50% + min(24vw, 430px));
  right: -18vw;
  height: 250px;
  overflow: visible;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
  transform: translateY(-50%);
}

.profit-stream::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, oklch(74% 0.17 155 / 0.58), transparent);
  transform: translateY(-50%);
}

.profit-stream span {
  position: absolute;
  display: grid;
  place-items: center;
  top: var(--profit-y, 50%);
  left: 0;
  width: 34px;
  height: 34px;
  color: oklch(34% 0.12 155);
  font-size: 18px;
  font-weight: 900;
  background: oklch(94% 0.08 155 / 0.9);
  border: 1px solid oklch(74% 0.15 155 / 0.55);
  border-radius: 999px;
  box-shadow: 0 8px 16px oklch(20% 0.05 251 / 0.08);
  animation: profitOut 6s ease-in-out infinite;
  animation-delay: calc(var(--profit-index, 0) * -0.82s);
}

.profit-stream span:nth-child(1) {
  --profit-index: 1;
  --profit-y: 14%;
}

.profit-stream span:nth-child(2) {
  --profit-index: 2;
  --profit-y: 30%;
}

.profit-stream span:nth-child(3) {
  --profit-index: 3;
  --profit-y: 46%;
}

.profit-stream span:nth-child(4) {
  --profit-index: 4;
  --profit-y: 62%;
}

.profit-stream span:nth-child(5) {
  --profit-index: 5;
  --profit-y: 78%;
}

.profit-stream span:nth-child(6) {
  --profit-index: 6;
  --profit-y: 92%;
}

.core-node {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: var(--space-1);
  width: 156px;
  min-height: 82px;
  padding: var(--space-3);
  background: oklch(100% 0 0 / 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 8px oklch(20% 0.05 251 / 0.06);
}

.core-node span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.core-node strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.core-node-main {
  left: 50%;
  top: 50%;
  z-index: 5;
  place-items: center;
  width: 220px;
  min-height: 146px;
  color: #fff;
  background: var(--blue-deep);
  border-color: oklch(56% 0.2 260 / 0.5);
  transform: translate(-50%, -50%);
}

.core-node-main span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 20px;
}

.core-node-main strong {
  color: #fff;
  text-align: center;
}

.core-node-one {
  left: 0;
  top: 7%;
}

.core-node-two {
  right: -1%;
  top: 13%;
}

.core-node-three {
  right: 2%;
  bottom: 18%;
}

.core-node-four {
  left: 2%;
  bottom: 14%;
}

.core-node-five {
  left: 42%;
  top: -1%;
}

.core-node-six {
  left: 42%;
  bottom: -2%;
}

.board-log {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding-top: 14px;
}

.board-log p {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: var(--space-3);
  align-items: center;
  margin: 0;
  padding: 9px 12px;
  background: oklch(100% 0 0 / 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.board-log span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.board-log b {
  color: var(--ink);
  font-size: 13px;
}

.board-log em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.trust-rail {
  position: relative;
  z-index: 4;
  margin-top: -58px;
  overflow: hidden;
  background: var(--blue-dark);
  border-block: 1px solid oklch(45% 0.12 250);
  box-shadow: 0 -14px 28px oklch(20% 0.05 251 / 0.06);
}

.ticker {
  display: flex;
  width: max-content;
  animation: railMove 34s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 var(--space-8);
  color: oklch(93% 0.04 245);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.ticker span::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: var(--space-8);
  background: var(--cyan);
  border-radius: 50%;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) clamp(16px, 4vw, 42px);
}

.section-intro {
  max-width: 780px;
  margin-bottom: var(--space-12);
}

.section-intro.wide {
  max-width: 960px;
}

.section-intro p:not(.plain-label),
.system-copy p,
.quiz-copy p,
.final-cta p:not(.plain-label) {
  max-width: 70ch;
  color: var(--muted);
  font-size: 18px;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.method-flow article {
  display: grid;
  gap: var(--space-4);
  align-content: start;
  min-height: 250px;
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.method-flow article:nth-child(2) {
  background: var(--surface-blue);
}

.method-flow span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: var(--space-4);
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.method-flow p,
.challenge-grid p,
.challenge-grid span,
.safety-grid p,
.faq-list p {
  color: var(--muted);
}

.audience-section {
  display: grid;
  gap: var(--space-6);
}

.audience-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: var(--space-8);
  align-items: end;
  padding: clamp(28px, 5vw, 58px);
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
}

.audience-card h2,
.audience-card .plain-label {
  color: #fff;
}

.audience-card p:not(.plain-label) {
  color: oklch(86% 0.05 245);
  font-size: 18px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.audience-grid article {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.audience-grid strong {
  color: var(--ink);
  font-size: 20px;
}

.audience-grid span {
  color: var(--muted);
}

.challenge-section {
  padding-top: clamp(48px, 7vw, 84px);
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.challenge-grid article {
  display: grid;
  gap: var(--space-8);
  min-height: 320px;
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.challenge-grid article:nth-child(2) {
  background: var(--surface-blue);
}

.challenge-grid p {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}

.challenge-grid div {
  display: grid;
  gap: var(--space-3);
  align-self: end;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}

.challenge-grid strong {
  color: var(--blue-deep);
  font-size: 18px;
  line-height: 1.35;
}

.system-section {
  background: var(--blue-dark);
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.system-copy h2,
.system-copy .plain-label {
  color: #fff;
}

.system-copy p {
  color: oklch(83% 0.04 245);
}

.loop-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  padding: var(--space-6);
  background:
    radial-gradient(circle at 50% 50%, oklch(58% 0.22 260 / 0.28), transparent 38%),
    oklch(21% 0.08 253);
  border: 1px solid oklch(50% 0.12 250);
  border-radius: var(--radius-lg);
}

.loop-step {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 0 var(--space-4);
  color: oklch(88% 0.04 245);
  background: oklch(100% 0 0 / 0.06);
  border: 1px solid oklch(100% 0 0 / 0.12);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.loop-step.active {
  color: var(--blue-dark);
  background: var(--cyan);
}

.case-list {
  display: grid;
  gap: clamp(24px, 3.4vw, 42px);
}

.case-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(360px, 1.02fr);
  gap: clamp(22px, 3.6vw, 48px);
  align-items: center;
  min-height: 560px;
  padding: clamp(18px, 2.6vw, 32px);
  background:
    linear-gradient(135deg, oklch(96% 0.04 228), oklch(91% 0.055 238) 58%, oklch(94% 0.035 210));
  border: 1px solid oklch(79% 0.075 235);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 54px oklch(22% 0.05 251 / 0.08);
}

.case-card:nth-child(even) {
  grid-template-columns: minmax(360px, 1.02fr) minmax(320px, 0.98fr);
}

.case-card:nth-child(even) .case-visual {
  order: 2;
}

.case-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: stretch;
  gap: var(--space-3);
  padding: clamp(22px, 3vw, 36px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, oklch(72% 0.13 205 / 0.46), transparent 32%),
    linear-gradient(145deg, oklch(16% 0.065 250), oklch(24% 0.11 236) 70%, oklch(18% 0.08 250));
  border: 1px solid oklch(49% 0.12 232 / 0.54);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.1),
    0 20px 38px oklch(20% 0.05 251 / 0.14);
}

.case-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.08) 1px, transparent 1px),
    linear-gradient(0deg, oklch(100% 0 0 / 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
  pointer-events: none;
}

.case-visual::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -18%;
  width: min(70%, 360px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, oklch(74% 0.14 215 / 0.38), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.case-tag {
  position: relative;
  z-index: 1;
  display: block;
  color: oklch(100% 0 0 / 0.92);
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.case-number {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 34ch;
  color: oklch(83% 0.07 220);
  font-size: clamp(0.94rem, 1.18vw, 1.08rem);
  font-weight: 700;
  line-height: 1.42;
}

.case-visual h3 {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 4.35rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.case-device {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 460px);
  margin-top: var(--space-5);
  align-self: end;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.98), oklch(92% 0.045 230 / 0.96));
  border: 1px solid oklch(100% 0 0 / 0.82);
  border-radius: var(--radius-sm);
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.92),
    0 22px 38px oklch(9% 0.04 250 / 0.32);
}

.device-top {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid oklch(76% 0.07 225 / 0.48);
}

.device-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.device-top span:nth-child(1) {
  background: oklch(62% 0.2 25);
}

.device-top span:nth-child(2) {
  background: oklch(78% 0.17 95);
}

.device-top span:nth-child(3) {
  background: oklch(68% 0.17 150);
}

.device-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  align-items: stretch;
  min-height: 148px;
}

.device-table {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 12px;
  background: oklch(100% 0 0 / 0.76);
  border: 1px solid oklch(78% 0.07 225 / 0.55);
  border-radius: 10px;
}

.device-table span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, oklch(54% 0.15 225), oklch(35% 0.08 245));
  opacity: 0.92;
}

.device-table span:nth-child(1),
.device-table span:nth-child(5) {
  width: 72%;
}

.device-table span:nth-child(2),
.device-table span:nth-child(7) {
  width: 88%;
}

.device-table span:nth-child(3),
.device-table span:nth-child(8) {
  width: 62%;
}

.device-table span:nth-child(4),
.device-table span:nth-child(6) {
  width: 78%;
}

.device-chart {
  position: relative;
  display: grid;
  align-items: end;
  padding: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, oklch(94% 0.045 225 / 0.82), oklch(88% 0.065 225 / 0.72));
  border: 1px solid oklch(76% 0.08 225 / 0.55);
  border-radius: 10px;
}

.device-chart::before {
  content: "";
  position: absolute;
  inset: 12px;
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, oklch(72% 0.07 225 / 0.35) 24px 25px),
    repeating-linear-gradient(90deg, transparent 0 28px, oklch(72% 0.07 225 / 0.24) 29px 30px);
  opacity: 0.7;
}

.device-bars {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  align-items: end;
  height: 58px;
}

.device-bars i {
  display: block;
  min-height: 14px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, oklch(66% 0.17 205), oklch(42% 0.14 230));
  opacity: 0.82;
}

.device-bars i:nth-child(1) {
  height: 34%;
}

.device-bars i:nth-child(2) {
  height: 62%;
}

.device-bars i:nth-child(3) {
  height: 48%;
}

.device-bars i:nth-child(4) {
  height: 78%;
}

.device-bars i:nth-child(5) {
  height: 56%;
}

.device-bars i:nth-child(6) {
  height: 88%;
}

.device-chart svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: oklch(50% 0.18 225);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.device-chart circle {
  fill: oklch(98% 0.02 225);
  stroke: oklch(49% 0.18 225);
  stroke-width: 4;
}

.case-copy {
  display: grid;
  gap: var(--space-4);
  align-content: center;
  padding: clamp(18px, 2.6vw, 34px);
  background: oklch(100% 0 0 / 0.76);
  border: 1px solid oklch(100% 0 0 / 0.84);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.9);
}

.case-point {
  position: relative;
  min-height: 138px;
  padding: var(--space-5) calc(var(--space-12) + 8px) var(--space-5) var(--space-5);
  background: oklch(97% 0.024 246 / 0.94);
  border: 1px solid oklch(86% 0.035 246);
  border-radius: var(--radius-sm);
}

.case-point::after {
  content: "";
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

.case-problem::after {
  content: "!";
  color: oklch(52% 0.2 25);
  font-size: 24px;
  font-weight: 900;
  background:
    linear-gradient(180deg, oklch(92% 0.04 25 / 0.84), oklch(86% 0.06 25 / 0.7));
  border: 1px solid oklch(72% 0.12 25 / 0.42);
}

.case-result::after {
  content: "+";
  color: oklch(45% 0.16 150);
  font-size: 28px;
  font-weight: 900;
  background:
    linear-gradient(180deg, oklch(91% 0.08 150 / 0.9), oklch(82% 0.11 150 / 0.72));
  border: 1px solid oklch(70% 0.14 150 / 0.45);
}

.case-point span {
  display: block;
  margin-bottom: var(--space-2);
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  font-weight: 800;
}

.case-problem span {
  color: oklch(54% 0.18 25);
}

.case-result span {
  color: oklch(55% 0.18 150);
}

.case-point p {
  max-width: 62ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.14vw, 1.12rem);
  line-height: 1.5;
}

.case-copy a {
  width: fit-content;
  min-width: min(100%, 260px);
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-8);
  color: #fff;
  background: var(--blue-dark);
  border: 1px solid oklch(34% 0.11 250);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 24px oklch(20% 0.05 251 / 0.1);
}

.case-copy a:hover {
  background: var(--blue-deep);
}

.case-card {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 30px);
  align-items: stretch;
  min-height: auto;
  padding: clamp(22px, 2.3vw, 30px);
  background: linear-gradient(135deg, oklch(100% 0 0), oklch(97% 0.015 230) 58%, oklch(95% 0.025 215));
  border: 1px solid oklch(85% 0.055 230);
  box-shadow: 0 22px 54px oklch(22% 0.05 251 / 0.08);
}

.case-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.case-card:nth-child(even) .case-visual {
  order: 0;
}

.case-visual {
  min-width: 0;
  min-height: 540px;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  gap: clamp(14px, 1.8vw, 22px);
  padding: clamp(24px, 2.5vw, 34px);
  background:
    linear-gradient(90deg, oklch(100% 0 0 / 0.075) 1px, transparent 1px),
    linear-gradient(0deg, oklch(100% 0 0 / 0.055) 1px, transparent 1px),
    linear-gradient(145deg, oklch(15% 0.065 250), oklch(25% 0.11 236) 72%, oklch(18% 0.08 250));
  background-size: 42px 42px, 42px 42px, auto;
}

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

.case-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: oklch(98% 0.015 230);
  background: oklch(100% 0 0 / 0.12);
  border: 1px solid oklch(100% 0 0 / 0.22);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.case-visual h3 {
  max-width: 11.5ch;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(3.25rem, 4.2vw, 4.05rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.case-problem-note {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: clamp(4px, 1vw, 12px);
  padding: clamp(18px, 2vw, 22px);
  color: oklch(94% 0.025 230);
  background: linear-gradient(135deg, oklch(100% 0 0 / 0.14), oklch(100% 0 0 / 0.065));
  border: 1px solid oklch(100% 0 0 / 0.18);
  border-left: 4px solid oklch(62% 0.2 28);
  border-radius: var(--radius-sm);
}

.case-problem-note span {
  color: oklch(79% 0.13 32);
  font-size: 0.86rem;
  font-weight: 900;
}

.case-problem-note strong {
  max-width: 24ch;
  color: #fff;
  font-size: 1.42rem;
  line-height: 1.18;
}

.case-problem-note p {
  max-width: 42ch;
  margin: 0;
  color: oklch(88% 0.045 232);
  font-size: 1rem;
  line-height: 1.55;
}

.case-zone-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  align-self: end;
  margin-top: clamp(12px, 2vw, 20px);
}

.case-zone {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 13px;
  background: oklch(100% 0 0 / 0.105);
  border: 1px solid oklch(100% 0 0 / 0.18);
  border-radius: var(--radius-sm);
}

.case-zone strong {
  color: #fff;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.case-zone span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--blue-dark);
  background: var(--cyan);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.case-copy {
  min-width: 0;
  display: grid;
  align-self: stretch;
  align-content: stretch;
  grid-template-rows: auto minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.case-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.case-metric {
  min-height: 92px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  background: oklch(94% 0.035 225);
  border: 1px solid oklch(84% 0.055 225);
  border-radius: var(--radius-sm);
}

.case-metric strong {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.25vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.case-metric span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.case-step {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(18px, 1.9vw, 24px);
  background: oklch(100% 0 0 / 0.94);
  border: 1px solid oklch(84% 0.045 230);
  border-left: 4px solid oklch(57% 0.18 245);
  border-radius: var(--radius-sm);
}

.case-step-result {
  background: linear-gradient(135deg, oklch(100% 0 0 / 0.96), oklch(95% 0.045 155));
  border-color: oklch(78% 0.1 155);
  border-left-color: oklch(59% 0.16 150);
}

.case-step span {
  color: oklch(47% 0.18 245);
  font-size: 0.86rem;
  font-weight: 900;
}

.case-step-result span {
  color: oklch(48% 0.17 150);
}

.case-step h4 {
  max-width: 31ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.36rem, 1.9vw, 1.55rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.case-step p {
  max-width: 58ch;
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.58;
}

.case-actions {
  display: flex;
  align-self: end;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.case-copy .case-button {
  width: fit-content;
  min-width: 154px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;
  background: var(--blue-dark);
  border: 1px solid oklch(34% 0.11 250);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 24px oklch(20% 0.05 251 / 0.1);
}

.case-copy .case-button:hover {
  background: var(--blue-deep);
}

.case-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.capability-section {
  padding-top: clamp(48px, 7vw, 80px);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.capability-grid article {
  display: grid;
  gap: var(--space-6);
  align-content: space-between;
  min-height: 190px;
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-grid article > span,
.capability-large > div:first-child > span {
  position: relative;
  width: 42px;
  height: 42px;
  background:
    radial-gradient(circle at 32% 28%, oklch(100% 0 0 / 0.86), transparent 24%),
    linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px oklch(45% 0.14 240 / 0.2);
}

.capability-grid article > span::after,
.capability-large > div:first-child > span::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid oklch(100% 0 0 / 0.78);
  border-radius: inherit;
}

.capability-grid strong {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.14;
}

.capability-grid article.capability-large {
  position: relative;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.76fr) minmax(280px, 1fr);
  align-items: center;
  overflow: hidden;
  min-height: 270px;
  background:
    radial-gradient(circle at 88% 12%, oklch(72% 0.17 215 / 0.34), transparent 30%),
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
}

.capability-large > div:first-child {
  display: grid;
  gap: var(--space-6);
}

.capability-large strong {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
}

.capability-large ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-large li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: oklch(91% 0.04 245);
  background: oklch(100% 0 0 / 0.1);
  border: 1px solid oklch(100% 0 0 / 0.16);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
}

.capability-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: var(--space-3);
  min-height: 180px;
}

.capability-map::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 34px;
  left: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent, oklch(78% 0.13 220 / 0.85), transparent);
}

.capability-map span {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 76px;
  border: 1px solid oklch(100% 0 0 / 0.18);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, oklch(76% 0.15 220 / 0.46), oklch(100% 0 0 / 0.08)),
    oklch(100% 0 0 / 0.08);
}

.capability-map span:nth-child(2) {
  min-height: 112px;
}

.capability-map span:nth-child(3) {
  min-height: 148px;
}

.capability-map span:nth-child(4) {
  min-height: 122px;
}

.capability-map span:nth-child(5) {
  min-height: 92px;
}

.quiz-section {
  background: var(--bg-strong);
}

.quiz-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: start;
}

.quiz-embed {
  width: min(1240px, calc(100% - 32px));
}

.quiz-embed-frame {
  display: block;
  width: 100%;
  height: clamp(760px, 88dvh, 1160px);
  border: 0;
  border-radius: var(--radius);
  background: #f4f8fc;
  box-shadow: var(--shadow-soft);
}

.quiz-card,
.contact-form {
  display: grid;
  gap: var(--space-4);
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section-link-row,
.quiz-more {
  display: flex;
  justify-content: center;
  margin-top: var(--space-6);
}

.quiz-more {
  justify-content: flex-start;
}

.quiz-task-note {
  margin-top: var(--space-4);
  padding: 14px 16px;
  color: var(--ink);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.section-link-button {
  display: inline-flex;
  width: min(100%, 720px);
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-6);
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.section-link-button:hover {
  background: var(--blue-deep);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.section-link-button:active {
  transform: translateY(0);
}

.quiz-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quiz-progress div {
  height: 8px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 999px;
}

.quiz-progress i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--blue);
  border-radius: inherit;
  transition: width 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quiz-step {
  display: none;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-step.is-active {
  display: grid;
}

legend {
  margin-bottom: var(--space-4);
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.22;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.field-group {
  display: grid;
  gap: 10px;
}

.contact-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.quiz-help {
  max-width: 58ch;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.55;
  white-space: pre-line;
}

.quiz-safety-help {
  margin-top: 12px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.quiz-choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quiz-choice {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 74px;
  padding: 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.quiz-choice input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.quiz-choice span {
  min-width: 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.dictation-field {
  display: grid;
  gap: 12px;
}

.dictation-field textarea {
  min-height: 170px;
}

.quiz-dictate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 42px;
  padding: 0 16px;
  color: var(--blue-deep);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  background: var(--surface-blue);
  border: 1px solid oklch(69% 0.16 252 / 0.74);
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.quiz-dictate::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: url("/assets/images/speech-icon.png") center / contain no-repeat;
  filter: drop-shadow(0 2px 2px oklch(20% 0.05 251 / 0.14));
}

.quiz-dictate:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px oklch(51% 0.16 250 / 0.18);
}

.quiz-dictate.is-recording {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.quiz-dictate.is-recording::before {
  background: #fff;
  box-shadow: 0 0 0 6px oklch(100% 0 0 / 0.24);
}

.quiz-dictate:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.quiz-step-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.quiz-step-controls .quiz-dictate,
.quiz-step-controls .file-field,
.quiz-step-controls .quiz-inline-next {
  flex: 0 0 auto;
}

.quiz-step-controls .quiz-inline-next {
  min-height: 42px;
  padding-inline: 22px;
}

.quiz-field {
  display: grid;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.quiz-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  padding: 14px;
  cursor: pointer;
  color: var(--ink);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.quiz-consent input {
  cursor: pointer;
}

.quiz-consent span {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px oklch(58% 0.22 260 / 0.16);
}

input[type="radio"] {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.file-field {
  position: relative;
  width: fit-content;
  justify-self: start;
}

.file-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.file-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(100%, 360px);
  min-height: 42px;
  padding: 0 16px;
  overflow: hidden;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: var(--surface-blue);
  border: 1px dashed oklch(68% 0.18 252 / 0.72);
  border-radius: 999px;
  cursor: pointer;
}

.file-button::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  background: url("/assets/images/file-icon-paperclip.png") center / contain no-repeat;
}

.file-field input[type="file"]:focus-visible + .file-button {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px oklch(58% 0.22 260 / 0.16);
}

.field-help {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}

.quiz-actions [hidden] {
  display: none !important;
}

.quiz-result {
  display: none;
  padding: var(--space-4);
  background: var(--blue-deep);
  border-radius: var(--radius-sm);
  color: #fff;
}

.quiz-result.is-ready {
  display: grid;
  gap: var(--space-2);
}

.quiz-result strong {
  color: #fff;
}

.quiz-result p {
  margin: 0;
  color: oklch(88% 0.04 245);
}

.quiz-result-list {
  display: grid;
  gap: 10px;
}

.quiz-result article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  padding: 12px;
  background: oklch(100% 0 0 / 0.08);
  border: 1px solid oklch(100% 0 0 / 0.12);
  border-radius: 14px;
}

.quiz-result article span {
  grid-row: span 2;
  color: oklch(76% 0.15 250);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.quiz-result h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.quiz-result article p {
  color: oklch(88% 0.04 245);
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-line;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.safety-grid article {
  display: grid;
  gap: var(--space-4);
  align-content: start;
  min-height: 230px;
  padding: var(--space-6);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.safety-grid article:nth-child(4) {
  position: relative;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr);
  align-items: center;
  overflow: hidden;
  min-height: 270px;
  background:
    radial-gradient(circle at 88% 18%, oklch(72% 0.17 215 / 0.28), transparent 32%),
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  border-color: oklch(42% 0.12 250);
}

.safety-grid article:nth-child(4) h3 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.safety-grid article:nth-child(4) p {
  max-width: 46ch;
  color: oklch(91% 0.025 250);
}

.safety-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: var(--space-4);
  min-height: 170px;
}

.safety-map::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, oklch(78% 0.13 220 / 0.82), transparent);
}

.safety-map span {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1;
  border: 1px solid oklch(100% 0 0 / 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, oklch(100% 0 0 / 0.86), transparent 15%),
    linear-gradient(135deg, oklch(78% 0.15 220 / 0.92), oklch(51% 0.18 260 / 0.76));
  box-shadow: 0 18px 50px oklch(10% 0.05 250 / 0.28);
}

.safety-map span::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 2px solid oklch(100% 0 0 / 0.76);
  border-radius: inherit;
}

.safety-map span:nth-child(2),
.safety-map span:nth-child(4) {
  transform: translateY(28px);
}

.faq-list {
  display: grid;
  max-width: 980px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px oklch(28% 0.08 250 / 0.06);
}

.faq-item {
  position: relative;
  display: grid;
  gap: 0;
  padding: 22px clamp(18px, 3vw, 28px);
  border-top: 1px solid var(--line);
  outline: none;
}

.faq-item:first-child {
  border-top: 0;
}

.faq-question-title {
  margin: 0;
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  width: 100%;
  align-items: center;
  gap: var(--space-4);
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  background: var(--surface-blue);
  border: 1px solid oklch(82% 0.055 248);
  border-radius: var(--radius-sm);
  font-size: 22px;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 240ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    margin-top 180ms ease;
}

.faq-answer p {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.faq-item:hover .faq-answer,
.faq-item:focus-within .faq-answer {
  max-height: 220px;
  margin-top: var(--space-3);
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover .faq-question::after,
.faq-item:focus-within .faq-question::after {
  content: "-";
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 74px);
  max-width: var(--max);
  margin: 0 auto clamp(60px, 8vw, 96px);
  padding: clamp(32px, 5vw, 62px);
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
}

.final-cta h2,
.final-cta .plain-label {
  color: #fff;
}

.final-cta p:not(.plain-label) {
  color: oklch(92% 0.01 250);
}

.contact-form {
  box-shadow: none;
}

.final-cta .contact-form .field-help,
.final-cta .contact-form .form-note {
  max-width: none;
  color: var(--muted);
  line-height: 1.45;
}

.final-cta .contact-form .field-help {
  font-size: 12px;
}

.final-cta .contact-form .form-note {
  font-size: 13px;
}

.contact-form .button {
  width: 100%;
}

.voice-helper-shell {
  position: fixed;
  right: 0;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 4px);
  left: 0;
  z-index: 34;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.voice-helper-shell::before {
  display: none;
}

.voice-panel {
  position: absolute;
  left: 50%;
  bottom: 102px;
  width: min(760px, calc(100vw - 34px));
  min-height: 350px;
  padding: 28px;
  color: var(--blue-deep);
  background:
    radial-gradient(circle at 50% 16%, oklch(100% 0 0), oklch(94% 0.04 230) 30%, transparent 52%),
    radial-gradient(circle at 50% 44%, oklch(82% 0.12 221), transparent 45%),
    linear-gradient(135deg, oklch(96% 0.035 228), oklch(88% 0.075 235));
  border: 1px solid oklch(86% 0.07 235);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0),
    0 26px 80px oklch(21% 0.1 252 / 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px) scale(0.98);
  transform-origin: 50% 100%;
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.voice-helper-shell.is-open .voice-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.voice-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: oklch(38% 0.08 250 / 0.72);
  background: oklch(100% 0 0 / 0.46);
  border: 1px solid oklch(88% 0.055 235 / 0.72);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.voice-panel-empty {
  display: grid;
  justify-items: center;
  gap: 11px;
  min-height: 190px;
  padding: 20px 28px 18px;
  text-align: center;
}

.voice-panel-empty h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.05;
  text-wrap: balance;
}

.voice-panel-empty p {
  max-width: 32ch;
  margin: 0;
  color: oklch(42% 0.08 250 / 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.voice-panel-prompts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.voice-panel-prompts button {
  min-height: 32px;
  padding: 0 13px;
  color: oklch(34% 0.08 250 / 0.82);
  background: oklch(100% 0 0 / 0.4);
  border: 1px solid oklch(88% 0.055 235 / 0.72);
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.voice-panel-prompts button:hover {
  color: var(--blue-deep);
  background: oklch(100% 0 0 / 0.68);
  border-color: oklch(76% 0.13 235 / 0.76);
  transform: translateY(-1px);
}

.voice-panel-input {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 12px;
  background: oklch(100% 0 0 / 0.5);
  border: 1px solid oklch(88% 0.055 235 / 0.7);
  border-radius: 16px;
}

.voice-panel-input input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  color: var(--blue-deep);
  background: oklch(100% 0 0 / 0.58);
  border: 1px solid oklch(89% 0.05 235 / 0.72);
  border-radius: 12px;
  font: inherit;
}

.voice-panel-input input::placeholder {
  color: oklch(40% 0.07 250 / 0.72);
}

.voice-panel-input button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 26px oklch(48% 0.18 245 / 0.22);
}

.voice-helper-shell.is-open .voice-helper-bubble {
  opacity: 0;
  transform: translateX(-50%) translateY(8px) scale(0.96);
}

.voice-helper {
  position: relative;
  width: min(390px, calc(100vw - 30px));
  height: 128px;
  padding: 0;
  color: var(--blue-deep);
  background: transparent;
  border: 0;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.voice-helper:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.voice-helper:active {
  transform: translateY(1px) scale(0.98);
}

.voice-helper-bubble {
  position: absolute;
  left: 50%;
  bottom: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: min(390px, calc(100vw - 30px));
  padding: 8px 14px 8px 10px;
  background:
    linear-gradient(135deg, oklch(100% 0 0 / 0.86), oklch(92% 0.045 240 / 0.64)),
    oklch(100% 0 0 / 0.62);
  border: 1px solid oklch(86% 0.065 236 / 0.62);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 oklch(100% 0 0 / 0.72),
    0 12px 30px oklch(24% 0.12 257 / 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.voice-helper-bubble::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: oklch(94% 0.04 240 / 0.72);
  border-right: 1px solid oklch(84% 0.07 236 / 0.46);
  border-bottom: 1px solid oklch(84% 0.07 236 / 0.46);
  transform: translateX(-50%) rotate(45deg);
}

.voice-helper-text {
  min-width: 0;
  overflow: hidden;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.consent-back {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(14px, 3vw, 34px));
  z-index: 80;
  width: min(720px, calc(100vw - 28px));
  color: var(--blue-deep);
}

.consent-back[hidden],
.consent-settings[hidden],
.consent-actions [hidden] {
  display: none;
}

.consent-box {
  display: grid;
  gap: var(--space-4);
  padding: clamp(20px, 3.2vw, 30px);
  background: oklch(100% 0 0 / 0.96);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px oklch(20% 0.09 250 / 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.consent-head {
  display: grid;
  gap: 10px;
}

.consent-head h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.08;
}

.consent-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.consent-head .consent-note {
  color: var(--blue-deep);
  font-weight: 750;
}

.consent-settings {
  display: grid;
  gap: 10px;
}

.consent-choice {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.consent-choice input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.consent-choice strong,
.consent-choice small {
  display: block;
}

.consent-choice strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.consent-choice small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.consent-choice-locked > span:first-child {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.consent-actions .button {
  min-width: min(100%, 148px);
  min-height: 44px;
  padding: 0 16px;
  font-size: 13px;
}

.voice-orb,
.voice-panel-orb {
  position: absolute;
  display: grid;
  place-items: center;
  width: var(--voice-orb-size);
  height: var(--voice-orb-size);
  overflow: hidden;
  isolation: isolate;
  border-radius: 50%;
  background:
    radial-gradient(circle at 25% 15%, oklch(100% 0 0 / 0.9) 0 5%, oklch(100% 0 0 / 0.34) 14%, transparent 31%),
    radial-gradient(ellipse at 36% 16%, oklch(97% 0.035 205 / 0.52) 0 17%, transparent 42%),
    radial-gradient(circle at 78% 72%, oklch(34% 0.2 246 / 0.34) 0 20%, transparent 52%),
    radial-gradient(circle at 96% 46%, oklch(36% 0.16 246 / 0.24) 0 18%, transparent 48%),
    radial-gradient(circle at 49% 106%, oklch(34% 0.22 248 / 0.44) 0 22%, transparent 54%),
    linear-gradient(180deg, oklch(93% 0.045 210) 0%, oklch(88% 0.075 212) 38%, transparent 58%),
    linear-gradient(0deg, oklch(58% 0.245 252) 0%, oklch(64% 0.215 242) 28%, oklch(75% 0.15 222) 48%, transparent 68%),
    linear-gradient(180deg, oklch(89% 0.055 210), oklch(57% 0.24 252));
  outline: 0;
  box-shadow:
    inset 8px 7px 16px oklch(100% 0 0 / 0.42),
    inset -14px -16px 24px oklch(24% 0.2 248 / 0.3),
    inset -5px 0 13px oklch(30% 0.16 246 / 0.18),
    inset 0 -8px 18px oklch(26% 0.2 248 / 0.2);
  filter: saturate(1.06);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 96%, transparent 100%);
  mask-image: radial-gradient(circle at 50% 50%, #000 0 96%, transparent 100%);
  transform: translateZ(0);
}

.voice-orb {
  left: 50%;
  bottom: var(--voice-orb-bottom);
  transform: translateX(-50%);
}

.voice-panel-orb {
  position: relative;
  display: none;
  width: var(--voice-panel-orb-size);
  height: var(--voice-panel-orb-size);
}

.voice-orb::before,
.voice-panel-orb::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 14% 43% at 25% 39%, oklch(100% 0 0 / 0.78) 0 22%, transparent 82%),
    radial-gradient(ellipse 18% 54% at 51% 37%, oklch(100% 0 0 / 0.92) 0 23%, transparent 84%),
    radial-gradient(ellipse 13% 40% at 76% 41%, oklch(100% 0 0 / 0.66) 0 22%, transparent 80%),
    linear-gradient(180deg, transparent 0 33%, oklch(100% 0 0 / 0.16) 39%, oklch(100% 0 0 / 0.84) 47%, oklch(88% 0.08 210 / 0.48) 55%, transparent 64%);
  filter: blur(1.4px);
  opacity: 0.9;
  background-repeat: repeat-x;
  background-size: 132px 100%;
  will-change: background-position;
  animation: voiceFlowMain 13.8s linear infinite;
}

.voice-orb::after,
.voice-panel-orb::after {
  content: "";
  position: absolute;
  inset: -16%;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 13% 36% at 32% 43%, oklch(100% 0 0 / 0.36) 0 22%, transparent 80%),
    radial-gradient(ellipse 16% 42% at 67% 44%, oklch(100% 0 0 / 0.4) 0 22%, transparent 82%),
    linear-gradient(180deg, transparent 0 39%, oklch(100% 0 0 / 0.4) 49%, transparent 61%),
    linear-gradient(180deg, transparent 0 52%, oklch(78% 0.15 224 / 0.18) 61%, transparent 72%);
  filter: blur(2.6px);
  mix-blend-mode: screen;
  opacity: 0.42;
  background-repeat: repeat-x;
  background-size: 156px 100%;
  will-change: background-position;
  animation: voiceFlowSoft 18s linear infinite;
}

.voice-orb > span,
.voice-panel-orb > span {
  position: absolute;
  inset: -22%;
  z-index: 3;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 10% 32% at 27% 40%, oklch(100% 0 0 / 0.56) 0 22%, transparent 80%),
    radial-gradient(ellipse 12% 42% at 52% 38%, oklch(100% 0 0 / 0.7) 0 22%, transparent 82%),
    radial-gradient(ellipse 9% 31% at 77% 42%, oklch(100% 0 0 / 0.46) 0 21%, transparent 79%),
    linear-gradient(180deg, transparent 0 38%, oklch(100% 0 0 / 0.62) 47%, oklch(100% 0 0 / 0.28) 54%, transparent 64%);
  filter: blur(1.2px);
  mix-blend-mode: screen;
  opacity: 0.76;
  background-repeat: repeat-x;
  background-size: 120px 100%;
  will-change: background-position;
  animation: voiceFlowFoam 12.3s linear infinite;
}

.voice-orb .orb-volume,
.voice-panel-orb .orb-volume {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 52%, transparent 0 58%, oklch(26% 0.18 248 / 0.1) 74%, oklch(22% 0.18 248 / 0.34) 100%),
    radial-gradient(circle at 24% 16%, oklch(100% 0 0 / 0.62) 0 6%, oklch(100% 0 0 / 0.24) 17%, transparent 34%),
    radial-gradient(ellipse at 38% 19%, oklch(100% 0 0 / 0.28) 0 21%, transparent 48%),
    radial-gradient(circle at 78% 78%, oklch(28% 0.2 248 / 0.26) 0 18%, transparent 48%),
    radial-gradient(circle at 101% 50%, oklch(30% 0.16 248 / 0.22) 0 18%, transparent 47%),
    linear-gradient(180deg, oklch(100% 0 0 / 0.08) 0 33%, transparent 52%, oklch(24% 0.2 248 / 0.22) 100%);
  box-shadow:
    inset 7px 6px 14px oklch(100% 0 0 / 0.2),
    inset -15px -17px 24px oklch(22% 0.2 248 / 0.26),
    inset 0 -7px 16px oklch(22% 0.2 248 / 0.18);
}

.voice-orb .orb-volume::before,
.voice-panel-orb .orb-volume::before,
.voice-orb .orb-volume::after,
.voice-panel-orb .orb-volume::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.voice-orb .orb-volume::before,
.voice-panel-orb .orb-volume::before {
  inset: 6% 9% 49%;
  background:
    radial-gradient(ellipse at 32% 25%, oklch(100% 0 0 / 0.48) 0 18%, transparent 54%),
    radial-gradient(ellipse at 64% 12%, oklch(100% 0 0 / 0.18) 0 14%, transparent 42%);
  filter: blur(2px);
  opacity: 0.86;
}

.voice-orb .orb-volume::after,
.voice-panel-orb .orb-volume::after {
  inset: 0;
  background: radial-gradient(circle at 52% 50%, transparent 0 60%, oklch(24% 0.16 248 / 0.12) 78%, oklch(19% 0.2 248 / 0.28) 100%);
  mix-blend-mode: multiply;
}

.service-page {
  background:
    radial-gradient(circle at 82% 10%, oklch(78% 0.14 210 / 0.22), transparent 28%),
    linear-gradient(180deg, var(--bg), oklch(100% 0 0) 42%, var(--bg-strong));
}

.service-header .site-nav {
  gap: clamp(12px, 2.4vw, 28px);
}

.service-hero {
  max-width: var(--max);
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 42px) clamp(58px, 7vw, 96px);
}

.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-5);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.service-breadcrumb a {
  color: var(--blue-deep);
}

.service-breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: var(--line-strong);
}

.service-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-lead {
  max-width: 760px;
  margin: var(--space-6) 0 0;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.service-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.service-proof span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  color: var(--blue-deep);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.service-actions {
  margin-top: var(--space-8);
}

.service-map {
  position: relative;
  min-height: 520px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.96), oklch(95% 0.035 248 / 0.94)),
    radial-gradient(circle at 50% 22%, oklch(72% 0.16 215 / 0.26), transparent 34%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-map::before {
  content: "";
  position: absolute;
  inset: 24px;
  background:
    linear-gradient(90deg, transparent 48%, oklch(72% 0.12 230 / 0.18) 49%, transparent 51%),
    linear-gradient(0deg, transparent 48%, oklch(72% 0.12 230 / 0.16) 49%, transparent 51%);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 52% 45%, #000 8%, transparent 70%);
}

.service-map-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: 22px auto 34px;
  color: #fff;
  background:
    radial-gradient(circle, var(--blue) 0 32%, var(--blue-deep) 34% 56%, oklch(16% 0.07 253) 58% 100%);
  border-radius: 50%;
  box-shadow: 0 22px 48px oklch(24% 0.12 257 / 0.28);
  aspect-ratio: 1;
  width: min(230px, 64%);
}

.service-map-core span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: var(--radius-sm);
  font-weight: 900;
}

.service-map-core strong {
  max-width: 170px;
  text-align: center;
  font-size: 17px;
  line-height: 1.18;
}

.service-map ol {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-map li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: oklch(100% 0 0 / 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.service-map li span {
  color: var(--blue);
  font-size: 13px;
}

.service-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 42px);
}

.service-section h2,
.service-final h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-section p,
.service-final p {
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-two,
.service-control {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.service-card,
.service-step {
  padding: clamp(20px, 2.2vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card h3,
.service-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.service-card p,
.service-step p {
  margin-top: var(--space-3);
  font-size: 16px;
}

.service-section-head {
  max-width: 760px;
}

.service-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.service-step span {
  display: inline-flex;
  margin-bottom: var(--space-5);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.service-control-panel {
  display: grid;
  gap: var(--space-3);
  padding: clamp(22px, 3vw, 34px);
  color: #fff;
  background:
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark)),
    radial-gradient(circle at 100% 0%, var(--cyan), transparent 40%);
  border-radius: var(--radius-lg);
}

.service-control-panel span,
.service-control-panel strong {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  background: oklch(100% 0 0 / 0.1);
  border: 1px solid oklch(100% 0 0 / 0.18);
  border-radius: var(--radius-sm);
}

.service-control-panel strong {
  color: var(--ink);
  background: var(--cyan);
}

.service-faq {
  max-width: 920px;
}

.service-faq-list {
  display: grid;
  margin-top: var(--space-8);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-faq-list .faq-item {
  padding: 20px 22px;
}

.service-faq-list .faq-question {
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.service-faq-list .faq-answer p {
  font-size: 17px;
}

.service-final {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-8);
  margin: 0 auto clamp(64px, 8vw, 104px);
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, oklch(70% 0.17 215 / 0.38), transparent 32%),
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  border-radius: var(--radius-lg);
}

.service-final h2,
.service-final p {
  color: #fff;
}

.service-final .button {
  color: var(--ink);
  background: var(--cyan);
}

.article-page {
  background:
    radial-gradient(circle at 82% 8%, oklch(78% 0.14 210 / 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg), oklch(100% 0 0) 46%, var(--bg-strong));
}

.article-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px) clamp(16px, 4vw, 42px);
}

.article-hero {
  padding-top: clamp(54px, 8vw, 112px);
}

.article-meta {
  margin: 0 0 var(--space-3);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 5.2vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.article-lede {
  max-width: 760px;
  margin: var(--space-6) 0 0;
  color: var(--text);
  font-size: clamp(1.13rem, 2vw, 1.42rem);
  line-height: 1.5;
}

.article-answer {
  display: grid;
  gap: var(--space-4);
  margin: 0 clamp(16px, 4vw, 42px);
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, oklch(70% 0.17 215 / 0.34), transparent 36%),
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  border-radius: var(--radius-lg);
}

.article-answer span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-answer p {
  max-width: 860px;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.42;
}

.article-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.article-list article,
.article-tile {
  padding: clamp(20px, 2.5vw, 30px);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-list h3,
.article-tile h2 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.article-list p,
.article-tile p,
.article-final p {
  margin: var(--space-3) 0 0;
  color: var(--muted);
}

.article-risk-list {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-8) 0 0;
  padding: 0;
  list-style: none;
}

.article-risk-list li {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: var(--space-4);
  padding: 20px 22px;
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.article-risk-list strong {
  color: var(--blue-deep);
}

.article-risk-list span {
  color: var(--text);
}

.article-final {
  margin-top: var(--space-6);
  padding-bottom: clamp(30px, 5vw, 58px);
}

.article-final .button-secondary {
  color: var(--blue-deep);
  background: var(--surface);
}

.article-index .article-hero {
  padding-bottom: clamp(24px, 4vw, 44px);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  padding-top: 0;
}

.article-tile {
  display: grid;
  align-content: start;
  min-height: 260px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-tile:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.article-tile span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: var(--space-5);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.site-links-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.site-link-group {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-link-group h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.site-link-group a {
  color: oklch(42% 0.08 248);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.site-link-group a:hover {
  color: var(--blue);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-8);
  padding: 42px clamp(16px, 4vw, 42px);
  color: oklch(82% 0.04 245);
  background: var(--blue-dark);
}

.footer-brand {
  display: inline-block;
  margin-bottom: var(--space-2);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-4);
}

.site-footer a:hover,
.site-footer .footer-consent:hover {
  color: #fff;
}

.legal-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 68px 32px 92px;
}

.legal-page .plain-label {
  margin-top: var(--space-6);
}

.legal-page h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: 25px;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
}

.legal-page ul {
  margin: var(--space-3) 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 18px;
}

.legal-page li + li {
  margin-top: var(--space-2);
}

.legal-note {
  padding: 18px 20px;
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-alert {
  margin-top: var(--space-6);
  padding: 20px 22px;
  color: var(--ink);
  background: oklch(97% 0.06 85);
  border: 1px solid oklch(82% 0.12 85);
  border-radius: var(--radius);
}

.legal-alert strong,
.legal-note strong {
  color: var(--ink);
}

.legal-card {
  margin-top: var(--space-6);
  padding: clamp(22px, 3vw, 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.legal-field {
  padding: 16px 18px;
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.legal-field span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-field strong {
  color: var(--ink);
  font-size: 17px;
}

.legal-placeholder {
  color: var(--blue);
  font-weight: 700;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.legal-switch {
  display: inline-flex;
  padding: 4px;
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.legal-switch button {
  min-width: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.legal-switch button.is-active {
  color: #fff;
  background: var(--blue-deep);
}

.legal-source-list a {
  color: var(--blue);
  font-weight: 700;
}

.back-link {
  color: var(--blue);
  font-weight: 700;
}

.site-header.simple {
  position: static;
}

.static-nav {
  position: static;
  display: flex;
}

.thanks-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px;
  background: var(--bg-strong);
}

.thanks-brand {
  position: absolute;
  top: 28px;
  left: 28px;
}

.thanks-box {
  width: min(680px, 100%);
  padding: 46px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.thanks-box h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.thanks-box p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
}

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

@keyframes taskIntoCore {
  0% {
    opacity: 0;
    transform: translate3d(-22vw, 0, 0) scale(0.96);
  }
  14%,
  72% {
    opacity: 0.76;
    transform: translate3d(calc(34vw + var(--flow-shift, 0vw)), 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(66vw + var(--flow-shift, 0vw)), 0, 0) scale(0.98);
  }
}

@keyframes coreLineMove {
  from {
    stroke-dashoffset: 86;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes intakeLineMove {
  from {
    stroke-dashoffset: 52;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes gearTurn {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@keyframes gearTurnReverse {
  from {
    rotate: 0deg;
  }
  to {
    rotate: -360deg;
  }
}

@keyframes profitOut {
  0% {
    opacity: 0;
    transform: translate3d(-34px, -50%, 0) scale(0.82);
  }
  18%,
  72% {
    opacity: 0.95;
    transform: translate3d(14vw, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(42vw, -50%, 0) scale(0.9);
  }
}

@keyframes voiceFlowMain {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 132px 0;
  }
}

@keyframes voiceFlowSoft {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 156px 0;
  }
}

@keyframes voiceFlowFoam {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 120px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-height: 780px) and (min-width: 761px) {
  :root {
    --voice-orb-size: 64px;
    --voice-orb-bottom: 8px;
  }

  .hero {
    align-items: start;
    padding-top: 24px;
    padding-bottom: 78px;
  }

  .hero-line {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 4.9vw, 4.05rem);
    line-height: 1.02;
  }

  .version-sticker {
    width: clamp(145px, 16vw, 198px);
    margin: -4px 0 -12px clamp(14px, 8vw, 82px);
  }

  .version-sticker span {
    font-size: clamp(0.95rem, 1.7vw, 1.16rem);
  }

  .hero-lead {
    max-width: 50ch;
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.45;
  }

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

  .hero .button {
    min-height: 46px;
  }

  .core-board {
    padding: 18px;
  }

  .board-top {
    font-size: 12px;
  }

  .core-map {
    min-height: 286px;
    margin-top: 12px;
  }

  .core-system {
    width: min(100%, 470px);
    min-height: 286px;
  }

  .core-system::before {
    inset: 48px 80px 32px;
  }

  .core-system::after {
    inset: 96px 144px 76px;
  }

  .core-node {
    width: 148px;
    min-height: 74px;
    padding: 10px;
  }

  .core-node strong {
    font-size: 13px;
  }

  .core-node-main {
    width: 206px;
    min-height: 132px;
  }

  .core-node-main span {
    width: 52px;
    height: 52px;
  }

  .board-log {
    gap: 6px;
    padding-top: 10px;
  }

  .board-log p {
    padding: 8px 11px;
  }

  .board-log p:nth-child(3) {
    display: none;
  }

  .trust-rail {
    margin-top: -52px;
  }

  .ticker span {
    min-height: 52px;
  }

  .voice-helper {
    width: 88px;
    height: 88px;
  }

  .voice-helper-bubble {
    display: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .site-nav {
    justify-content: flex-start;
    order: 4;
    grid-column: 1 / -1;
    padding-top: var(--space-2);
  }

  .hero-grid,
  .system-grid,
  .quiz-grid,
  .legal-grid,
  .final-cta,
  .service-hero,
  .service-two,
  .service-control,
  .service-final {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 0;
  }

  .service-map {
    min-height: auto;
  }

  .core-board {
    min-height: 580px;
  }

  .audience-card {
    grid-template-columns: 1fr;
  }

  .challenge-grid,
  .method-flow,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .safety-grid,
  .article-grid,
  .service-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-large,
  .safety-grid article:nth-child(4) {
    grid-template-columns: 1fr;
  }

  .case-card,
  .case-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .case-visual {
    min-height: auto;
  }

  .case-visual h3 {
    max-width: 13ch;
  }

  .case-copy {
    gap: 14px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 66px;
  }

  .brand-name {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 16px;
    left: 16px;
    z-index: 31;
    display: none;
    padding: var(--space-3);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 0 var(--space-3);
  }

  .hero {
    min-height: 0;
    padding-top: var(--space-12);
  }

  .trust-rail {
    margin-top: 0;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-flow-field {
    display: none;
  }

  .version-sticker {
    width: min(210px, 62vw);
    margin-left: 10px;
  }

  .hero-actions,
  .quiz-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quiz-step-controls {
    align-items: stretch;
  }

  .quiz-step-controls .quiz-dictate,
  .quiz-step-controls .file-field,
  .quiz-step-controls .quiz-inline-next,
  .quiz-step-controls .file-button {
    width: 100%;
  }

  .quiz-choice-list {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding-top: var(--space-12);
  }

  .service-hero h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .service-card-grid,
  .article-list,
  .article-risk-list li,
  .article-grid,
  .service-step-grid {
    grid-template-columns: 1fr;
  }

  .article-answer {
    margin-right: var(--space-4);
    margin-left: var(--space-4);
  }

  .service-final {
    margin-right: var(--space-4);
    margin-left: var(--space-4);
  }

  .core-board {
    min-height: auto;
  }

  .core-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    min-height: auto;
  }

  .task-stream,
  .profit-stream,
  .core-intake-lines,
  .gear-field,
  .core-system::before,
  .core-system::after {
    display: none;
  }

  .core-system {
    display: grid;
    gap: var(--space-3);
    min-height: auto;
  }

  .core-node,
  .core-node-main,
  .core-node-one,
  .core-node-two,
  .core-node-three,
  .core-node-four,
  .core-node-five,
  .core-node-six {
    position: static;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .board-top {
    display: grid;
  }

  .loop-panel,
  .capability-grid,
  .legal-grid,
  .site-links-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .capability-large,
  .safety-grid article:nth-child(4) {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .capability-large ul {
    grid-template-columns: 1fr;
  }

  .capability-map {
    min-height: 130px;
  }

  .safety-map {
    min-height: 120px;
    gap: var(--space-2);
  }

  .case-list article {
    grid-template-columns: 1fr;
  }

  .case-card:nth-child(even) .case-visual {
    order: 0;
  }

  .case-visual {
    min-height: auto;
  }

  .case-visual h3 {
    max-width: 11.5ch;
    font-size: clamp(2.7rem, 10vw, 3rem);
  }

  .case-problem-note strong,
  .case-step h4 {
    font-size: 1.35rem;
  }

  .case-metric strong {
    font-size: 1.75rem;
  }

  .case-metric-grid {
    grid-template-columns: 1fr;
  }

  .case-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-copy .case-button {
    width: 100%;
  }

  .final-cta {
    margin-right: 16px;
    margin-left: 16px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .voice-helper-shell {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .voice-panel {
    bottom: 86px;
    width: min(440px, calc(100vw - 24px));
    min-height: 330px;
    padding: 22px 14px 14px;
    border-radius: 18px;
  }

  .voice-panel-empty {
    min-height: 220px;
    padding: 0 8px 14px;
  }

  .voice-panel-prompts {
    gap: 6px;
  }

  .voice-panel-prompts button {
    max-width: 100%;
  }

  .voice-panel-input {
    grid-template-columns: 1fr 42px;
    gap: 8px;
    padding: 10px;
  }

  .voice-panel-input input,
  .voice-panel-input button {
    height: 42px;
  }

  .voice-helper-bubble {
    min-width: min(300px, calc(100vw - 28px));
    padding: 8px 14px 9px;
  }

  .voice-helper-text {
    font-size: 12px;
  }

  .voice-orb {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 420px) {
  .lang-switch a {
    min-width: 34px;
  }

  .header-cta {
    padding: 0 14px;
  }

  .core-board,
  .quiz-card,
  .contact-form {
    padding: var(--space-4);
  }

  .case-card,
  .case-visual,
  .case-step {
    padding: var(--space-4);
  }

  .case-visual h3 {
    max-width: 11ch;
    font-size: 2.55rem;
  }

  .case-zone-grid {
    grid-template-columns: 1fr;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .consent-actions .button {
    width: 100%;
  }
}
