@font-face {
  font-family: "NIKARI Lato";
  src: url("/site/fonts/lato-light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "NIKARI Lato";
  src: url("/site/fonts/lato-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "NIKARI Lato";
  src: url("/site/fonts/lato-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font: "NIKARI Lato", "Helvetica Neue", Arial, sans-serif;
  --ink: #182335;
  --ink-soft: #506072;
  --navy: #263344;
  --navy-deep: #101923;
  --blue: #385c78;
  --blue-soft: #e9eff3;
  --gold: #c5a969;
  --gold-strong: #9d7b35;
  --paper: #f7f2e9;
  --paper-warm: #eee5d7;
  --surface: #fffdf9;
  --line: rgba(38, 51, 68, 0.16);
  --line-strong: rgba(38, 51, 68, 0.28);
  --shadow: 0 22px 64px rgba(17, 30, 45, 0.12);
  --shadow-soft: 0 12px 34px rgba(17, 30, 45, 0.08);
  --radius: 22px;
  --radius-small: 13px;
  --content: 1200px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[data-menu-open] body {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.55rem, 5.6vw, 5.35rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.7vw, 3.7rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 400;
}

p {
  margin-bottom: 18px;
}

::selection {
  color: #fff;
  background: var(--blue);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 7px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(17, 30, 45, 0.08);
}

.nav {
  position: relative;
  width: min(calc(100% - 36px), 1420px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-deep);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.brand img {
  width: 35px;
  height: 35px;
}

.origin-badge {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.origin-cross {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: transparent;
  background: #d52b1e;
  border: 1px solid rgba(24, 35, 53, 0.14);
  border-radius: 5px;
  box-shadow: 0 2px 7px rgba(17, 30, 45, 0.12);
  font-size: 0;
}

.origin-cross::before,
.origin-cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.origin-cross::before {
  width: 9px;
  height: 3px;
}

.origin-cross::after {
  width: 3px;
  height: 9px;
}

.nav-links {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  margin-left: 0;
}

.nav-links a {
  position: relative;
  color: #202731;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-strong);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-width: 70px;
  padding: 10px 17px;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.nav-toggle {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background-color: var(--navy-deep);
}

.home-hero {
  min-height: clamp(620px, 80svh, 700px);
  display: grid;
  align-items: center;
  background-image: url("/site/images/nikari-hero-lobby-1600.webp");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 17, 0.94) 0%, rgba(9, 16, 23, 0.84) 42%, rgba(8, 14, 20, 0.34) 76%, rgba(8, 14, 20, 0.6) 100%),
    linear-gradient(0deg, rgba(6, 11, 17, 0.62), transparent 55%);
}

.hero-content {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
  padding: clamp(52px, 6vw, 72px) 0 46px;
}

.hero h1 {
  max-width: 1060px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.75rem, 4.35vw, 4.45rem);
  line-height: 1.05;
}

.hero .lead {
  max-width: 940px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.89);
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.5;
}

.eyebrow,
.kicker {
  margin-bottom: 18px;
  color: var(--gold-strong);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-availability {
  min-height: 24px;
  padding: 3px 9px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(5, 13, 21, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.hero-availability-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.hero-availability[data-state="online"] {
  color: rgba(239, 255, 244, 0.92);
  border-color: rgba(125, 203, 151, 0.4);
}

.hero-availability[data-state="online"] .hero-availability-dot {
  background: #7dcb97;
  box-shadow: 0 0 0 4px rgba(125, 203, 151, 0.12);
}

.hero-availability[data-state="unavailable"] {
  color: rgba(255, 255, 255, 0.64);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 48px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.home-hero .actions {
  gap: 10px;
}

.home-hero .button {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 0.86rem;
}

.button.primary {
  color: var(--navy-deep);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.section .button.primary,
.page-hero .button.primary,
.contact-panel .button.primary {
  color: #fff;
  background: var(--navy);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.43);
}

.button.secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--line-strong);
}

.agent-flow {
  max-width: 940px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  color: #fff;
  background: rgba(10, 17, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.agent-flow > div {
  min-width: 0;
  padding: 14px 17px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
}

.agent-flow > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.agent-flow span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.agent-flow strong {
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  line-height: 1.25;
}

.agent-flow small {
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  line-height: 1.3;
}

@keyframes nikari-hero-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes nikari-hero-overlay-enter {
  from {
    opacity: 0.78;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero .hero-overlay {
    animation: nikari-hero-overlay-enter 1000ms ease-out both;
  }

  .home-hero .hero-content > * {
    animation: nikari-hero-enter 720ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }

  .home-hero .hero-eyebrow {
    animation-delay: 80ms;
  }

  .home-hero .hero-content > h1 {
    animation-delay: 170ms;
  }

  .home-hero .lead {
    animation-delay: 270ms;
  }

  .home-hero .actions {
    animation-delay: 370ms;
  }

  .home-hero .agent-flow {
    animation-delay: 470ms;
  }
}

.section {
  width: min(calc(100% - 64px), var(--content));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 132px) 0;
}

.tinted-section {
  position: relative;
}

.tinted-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  content: "";
  background: var(--paper-warm);
  transform: translateX(-50%);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.split-section h2 {
  max-width: 550px;
}

.text-stack {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.text-stack p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 830px;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.section-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 385px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(38, 51, 68, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  content: "";
  background: radial-gradient(circle, rgba(197, 169, 105, 0.2), transparent 67%);
}

.card-number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.feature-card > p {
  max-width: 590px;
  color: var(--ink-soft);
}

.feature-card dl {
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.feature-card dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
}

.feature-card dl div + div {
  margin-top: 10px;
}

.feature-card dt {
  color: var(--gold-strong);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-card dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.process-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-step {
  min-height: 260px;
  padding: 34px;
  background: var(--surface);
}

.process-step > span,
.entry-grid article > span,
.scope-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-step p,
.entry-grid p,
.scope-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.media-band {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: var(--navy-deep);
}

.media-band-image {
  min-height: 100%;
  overflow: hidden;
}

.media-band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-band-copy {
  max-width: 680px;
  padding: clamp(70px, 9vw, 130px) clamp(38px, 7vw, 105px);
  align-self: center;
}

.media-band-copy h2 {
  color: #fff;
}

.media-band-copy > p:not(.kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.room-tags {
  margin: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.room-tags span {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.76rem;
}

.check-list {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li + li {
  margin-top: 12px;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

.media-band .check-list {
  color: rgba(255, 255, 255, 0.83);
}

.assistant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.assistant-card {
  position: relative;
  min-height: 465px;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nik-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.ari-card {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(56, 92, 120, 0.9), rgba(16, 25, 35, 0.98)),
    var(--navy-deep);
}

.ari-card h3 {
  color: #fff;
}

.assistant-mark {
  margin-bottom: 70px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.ari-card .assistant-mark {
  color: var(--gold);
}

.assistant-card > p {
  max-width: 560px;
  color: var(--ink-soft);
}

.ari-card > p,
.ari-card li {
  color: rgba(255, 255, 255, 0.76);
}

.assistant-card ul {
  margin: 26px 0 0;
  padding-left: 19px;
  font-size: 0.94rem;
}

.assistant-card li + li {
  margin-top: 8px;
}

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

.audience-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.audience-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.audience-card > div {
  padding: 28px;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.audience-quick-grid article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.audience-quick-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.audience-quick-grid h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.audience-quick-grid p,
.audience-setup-note {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.example-card {
  min-height: 280px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-small);
}

.example-card > span,
.price-label {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-strong);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.example-card p {
  color: var(--ink-soft);
}

.example-card small {
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.dark-band {
  color: #fff;
  background: var(--navy-deep);
}

.dark-band h2,
.dark-band h3 {
  color: #fff;
}

.dark-band .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.boundary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.boundary-grid article {
  min-height: 250px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
}

.boundary-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.price-teaser-grid,
.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.price-teaser-card {
  min-height: 385px;
  padding: clamp(34px, 5vw, 55px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.price-teaser-card.featured {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.price-teaser-card.featured .price-label,
.price-teaser-card.featured a {
  color: var(--gold);
}

.price-teaser-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.price-teaser-card > strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}

.price-teaser-card > span {
  display: block;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.price-teaser-card.featured > span {
  color: rgba(255, 255, 255, 0.6);
}

.price-teaser-card p {
  color: var(--ink-soft);
}

.price-teaser-card a,
.text-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration-thickness: 1px;
}

.pilot-section,
.pilot-detail-section,
.care-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(83, 159, 207, .22), transparent 34%),
    linear-gradient(145deg, #101e2a, #071018 74%);
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(340px, 1.12fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.pilot-section .section-heading h2,
.pilot-detail-section .section-heading h2,
.care-section .section-heading h2 {
  color: #fff;
}

.pilot-section .section-heading p:not(.kicker),
.pilot-detail-section .section-heading p:not(.kicker),
.care-section .section-heading p:not(.kicker) {
  color: rgba(255, 255, 255, .72);
}

.pilot-card,
.care-card {
  padding: clamp(30px, 4.5vw, 54px);
  background: rgba(8, 18, 27, .72);
  border: 1px solid rgba(154, 210, 244, .2);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .045);
  backdrop-filter: blur(16px);
}

.pilot-card > strong,
.care-card > strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -.035em;
}

.pilot-card > span,
.care-card > span {
  display: block;
  margin-bottom: 25px;
  color: var(--gold);
  font-size: .86rem;
  font-weight: 700;
}

.pilot-card > p:not(.price-label),
.care-card > p:not(.price-label),
.care-note {
  color: rgba(255, 255, 255, .72);
}

.pilot-card .button { margin-top: 15px; }

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.care-note {
  max-width: 880px;
  margin: 30px 0 0;
}

.entry-grid,
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.entry-grid article,
.scope-grid article {
  min-height: 240px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.closing-cta {
  margin-top: clamp(50px, 7vw, 90px);
  padding: clamp(35px, 6vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: var(--radius);
}

.closing-cta h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.closing-cta p:not(.kicker) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.closing-cta .button.primary {
  flex: 0 0 auto;
  color: var(--navy-deep);
  background: #fff;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0c131b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  width: min(calc(100% - 64px), var(--content));
  min-height: 190px;
  margin: 0 auto;
  padding: 45px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  color: #fff;
  font-size: 0.91rem;
  letter-spacing: 0.18em;
}

.footer-brand span {
  font-size: 0.82rem;
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-powered img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.footer-provenance {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-swiss-mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.footer-swiss-mark > img {
  display: block;
  width: 28px;
  height: 28px;
}

.footer-swiss-mark > span {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 8;
  width: max-content;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .9);
  background: #18232e;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .3);
  font-size: .72rem;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-swiss-mark:is(:hover, :focus-visible, :focus-within, :active) > span {
  opacity: 1;
  transform: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(197, 169, 105, 0.19), transparent 33%),
    linear-gradient(135deg, #f6f0e6, #e8e0d3);
}

.page-hero > div {
  width: min(calc(100% - 64px), var(--content));
  min-height: 520px;
  margin: 0 auto;
  padding: clamp(90px, 10vw, 140px) 0;
  display: grid;
  align-content: center;
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 25px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.page-hero .lead {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.page-hero-grid {
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
}

.page-hero-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-detail-card {
  padding: clamp(35px, 5vw, 58px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 100px;
}

.pricing-detail-card.featured {
  border-top: 5px solid var(--gold);
}

.pricing-detail-card h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
}

.price-value {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.price-hours {
  margin-bottom: 30px;
  color: var(--gold-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.pricing-detail-card > p:not(.price-label, .price-value, .price-hours) {
  color: var(--ink-soft);
}

.pricing-detail-card h3 {
  margin-top: 35px;
  font-size: 1rem;
  font-weight: 700;
}

.pricing-detail-card .text-link {
  display: inline-block;
  margin-top: 30px;
}

.separate-scope {
  margin-top: 28px;
  padding: clamp(32px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: var(--radius);
}

.separate-scope h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
}

.separate-scope ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.separate-scope li + li {
  margin-top: 11px;
}

.scope-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(35px, 7vw, 100px);
  align-items: start;
}

.contact-brief > h2,
.contact-panel > h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.brief-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.brief-list li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.brief-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.brief-list li > span {
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 700;
}

.brief-list strong {
  display: block;
  margin-bottom: 4px;
}

.brief-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.contact-panel {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: clamp(32px, 5vw, 52px);
  color: #fff;
  background: var(--navy-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: #fff;
}

.contact-panel > p:not(.kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-selection {
  margin: 24px 0;
  padding: 14px 16px;
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  font-size: 0.86rem;
}

.contact-selection[hidden] {
  display: none;
}

.contact-selection strong {
  color: #fff;
  font-size: 1rem;
}

.contact-actions {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.contact-panel .button.primary {
  color: var(--navy-deep);
  background: #fff;
}

.contact-link {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.contact-link strong {
  color: #fff;
}

.contact-boundary {
  margin-top: 34px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
}

.contact-boundary strong {
  display: block;
  margin-bottom: 7px;
}

.contact-boundary p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.legal-hero .text-link {
  width: fit-content;
}

.legal-intro {
  max-width: 850px;
  margin-bottom: 55px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-small);
}

.legal-intro p {
  margin-bottom: 7px;
  color: var(--ink-soft);
}

.legal-intro p:last-child {
  margin-bottom: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.legal-card h2 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.legal-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.error-section {
  min-height: calc(100svh - var(--header-height));
  padding: 70px 32px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(9, 16, 23, 0.84), rgba(9, 16, 23, 0.91)),
    url("/site/images/nikari-hero-lobby-1600.webp") center / cover;
}

.error-card {
  max-width: 780px;
  padding: clamp(35px, 7vw, 75px);
  color: #fff;
  background: rgba(16, 25, 35, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.error-card h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.error-card > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1150px) {
  .origin-badge {
    display: none;
  }
}

@media (max-width: 1040px) {
  .origin-badge {
    display: none;
  }

  .nav-links {
    margin-left: auto;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 850px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 16px;
  }

  .nav {
    width: min(calc(100% - 28px), 1420px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100svh - var(--header-height));
    padding: 25px 24px 35px;
    display: grid;
    gap: 0;
    overflow-y: auto;
    visibility: hidden;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .nav-links a {
    padding: 15px 2px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
    border: 1px solid var(--line-strong);
  }

  .home-hero {
    min-height: clamp(620px, 78svh, 680px);
    background-image: url("/site/images/nikari-hero-lobby-960.webp");
    background-position: 57% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(5, 11, 17, 0.93), rgba(8, 14, 20, 0.66));
  }

  .hero-content,
  .section,
  .footer-inner,
  .page-hero > div {
    width: min(calc(100% - 36px), var(--content));
  }

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

  .split-section,
  .media-band,
  .page-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .assistant-grid,
  .price-teaser-grid,
  .pricing-detail-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .media-band-image {
    min-height: 420px;
  }

  .media-band-copy {
    max-width: none;
  }

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

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

  .audience-card img {
    height: 100%;
    min-height: 260px;
  }

  .separate-scope {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 70px 0;
  }

  .home-hero {
    min-height: min(680px, calc(100svh - var(--header-height)));
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--content));
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .hero-eyebrow {
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .hero-availability {
    min-height: 22px;
    padding: 3px 8px;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 10vw, 2.8rem);
  }

  .hero .lead {
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.46;
  }

  .home-hero .actions {
    flex-wrap: nowrap;
  }

  .agent-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
    border-radius: 11px;
  }

  .agent-flow > div {
    padding: 9px 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .agent-flow span {
    grid-row: auto;
    font-size: 0.62rem;
  }

  .agent-flow strong {
    font-size: 0.69rem;
    line-height: 1.18;
  }

  .agent-flow small {
    margin-top: 0;
    font-size: 0.61rem;
    line-height: 1.2;
  }

  .actions .button {
    width: 100%;
  }

  .home-hero .actions .button {
    min-width: 0;
    width: auto;
    padding-inline: 12px;
    flex: 1 1 0;
    white-space: nowrap;
  }

  .process-grid,
  .example-grid,
  .boundary-grid,
  .scope-grid,
  .entry-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .assistant-card,
  .price-teaser-card,
  .pricing-detail-card {
    padding: 28px;
  }

  .feature-card {
    min-height: 0;
  }

  .card-number,
  .assistant-mark {
    margin-bottom: 35px;
  }

  .process-step,
  .boundary-grid article {
    min-height: 0;
  }

  .media-band-image {
    min-height: 320px;
  }

  .media-band-copy {
    padding: 65px 22px;
  }

  .audience-card {
    display: block;
  }

  .audience-card img {
    height: 245px;
    min-height: 0;
  }

  .closing-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .closing-cta .button {
    width: 100%;
  }

  .footer-inner {
    width: min(calc(100% - 36px), var(--content));
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
    justify-content: center;
  }

  .page-hero > div {
    width: min(calc(100% - 36px), var(--content));
    min-height: 440px;
    padding: 80px 0;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .page-hero-grid {
    gap: 32px;
  }

  .separate-scope {
    padding: 28px;
  }

  .brief-list li {
    grid-template-columns: 42px 1fr;
  }

  .contact-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .legal-card {
    padding: 25px;
  }
}

@media (min-width: 901px) {
  .product-proof-layout.product-proof-layout--release {
    grid-template-areas: "copy product";
    align-items: center;
  }

  .product-proof-layout--release > .section-heading {
    align-self: center;
  }
}

/* Header signature: separate NK symbol, wordmark and Swiss origin mark. */
.site-header .brand {
  gap: .72rem;
}

.site-header .brand .brand-symbol {
  width: 2.55rem;
  height: 2.55rem;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.site-header .brand-wordmark {
  color: #f4f6f8;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1;
}

.site-header .header-origin {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
}

.site-header .header-origin img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

@media (max-width: 850px) {
  .site-header .nav {
    grid-template-columns: auto minmax(2.5rem, 1fr) auto;
  }

  .site-header .brand {
    gap: .55rem;
  }

  .site-header .brand .brand-symbol {
    width: 2.25rem;
    height: 2.25rem;
  }

  .site-header .brand-wordmark {
    font-size: .78rem;
    letter-spacing: .19em;
  }

  .site-header .header-origin {
    width: 1.45rem;
    height: 1.45rem;
  }

  .site-header .header-origin img {
    width: 1.35rem;
    height: 1.35rem;
  }
}

@media (max-width: 390px) {
  .site-header .brand {
    gap: .42rem;
  }

  .site-header .brand .brand-symbol {
    width: 2rem;
    height: 2rem;
  }

  .site-header .brand-wordmark {
    font-size: .7rem;
    letter-spacing: .15em;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #edf1f4;
    --ink-soft: #b5c0ca;
    --navy: #36566f;
    --navy-deep: #0c131b;
    --blue: #8ab1cf;
    --blue-soft: #1a2935;
    --gold-strong: #d3b979;
    --paper: #111923;
    --paper-warm: #18232e;
    --surface: #18232e;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.23);
    --shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.22);
  }

  .site-header {
    background: rgba(17, 25, 35, 0.95);
  }

  .brand,
  .nav-links a {
    color: #f4f6f8;
  }

  .origin-badge {
    color: #b9c2cb;
  }

  .origin-cross {
    border-color: rgba(255, 255, 255, 0.16);
  }

  .nav-toggle span {
    background: #fff;
  }

  .page-hero {
    background:
      radial-gradient(circle at 88% 18%, rgba(197, 169, 105, 0.17), transparent 33%),
      linear-gradient(135deg, #18232e, #101923);
  }

  .button.secondary {
    color: #eef2f5;
  }

  .nik-card,
  .feature-card {
    background: rgba(24, 35, 46, 0.9);
  }

  .price-value {
    color: #a9c7dd;
  }

  .nav-links {
    background: var(--surface);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .home-hero .hero-overlay,
  .home-hero .hero-content > * {
    opacity: 1;
    animation: none;
    transform: none;
  }
}


/* Local candidate framing and Auftrag-aligned content geometry. */
:root { --candidate-height: 0px; }
body { padding-top: var(--candidate-height); }
.candidate-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 130;
  height: var(--candidate-height);
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: #f8f5ef;
  background: #263344;
  border-bottom: 1px solid rgba(197, 169, 105, .55);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-align: center;
}
.site-header { top: var(--candidate-height); }
.hero-positioning {
  max-width: 760px;
  margin: -8px 0 24px;
  color: rgba(255,255,255,.72);
  font-size: .93rem;
}
.capability-grid--six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.capability-grid--six .feature-card { min-height: 430px; }
.capability-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: var(--gold-strong);
  border: 1px solid color-mix(in srgb, var(--gold) 58%, var(--line));
  border-radius: 50%;
  background: color-mix(in srgb, var(--gold) 8%, transparent);
}
.capability-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.capability-grid--six .card-number { margin-bottom: 18px; }
.workflow-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.workflow-grid .example-card { min-height: 310px; }
.product-workflow {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}
.product-workflow-copy { display: grid; gap: 17px; }
.product-workflow-copy > p:not(.kicker) { max-width: 62ch; }
.product-workflow-steps { display: grid; gap: 0; margin: 10px 0 0; padding: 0; list-style: none; }
.product-workflow-steps li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 15px; border-top: 1px solid var(--line); padding: 15px 0; }
.product-workflow-steps li > span { color: var(--gold-strong); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.product-workflow-steps li div { display: grid; gap: 3px; }
.product-workflow-steps strong { color: var(--ink); font-size: .96rem; }
.product-workflow-steps small { color: var(--ink-soft); line-height: 1.5; }
.product-workflow-visual { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 28px 7px 28px 7px; background: var(--surface); box-shadow: var(--shadow); }
.product-workflow-visual img { width: 100%; height: auto; display: block; }
.product-workflow-visual figcaption { border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .7rem; line-height: 1.4; padding: 11px 14px; }
.operations-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-teaser-grid--three,
.pricing-detail-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-teaser-grid--three .price-teaser-card { padding: clamp(30px, 3vw, 44px); }
.price-teaser-grid--three .price-teaser-card > strong { font-size: clamp(1.8rem, 3vw, 2.65rem); }
.pricing-detail-grid--three .pricing-detail-card { padding: clamp(28px, 3.4vw, 46px); }
@media (max-width: 1100px) {
  .capability-grid--six,
  .workflow-grid,
  .operations-grid,
  .price-teaser-grid--three,
  .pricing-detail-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 850px) {
  :root { --candidate-height: 0px; }
  .product-workflow,
  .capability-grid--six,
  .workflow-grid,
  .operations-grid,
  .price-teaser-grid--three,
  .pricing-detail-grid--three { grid-template-columns: 1fr; }
  .capability-grid--six .feature-card,
  .workflow-grid .example-card { min-height: 0; }
}
@media (max-width: 620px) {
  .candidate-banner { font-size: .64rem; letter-spacing: .015em; }
  .product-workflow { gap: 28px; }
  .product-workflow-visual { border-radius: 20px 5px 20px 5px; }
  .product-workflow-visual img { width: 180%; max-width: none; }
  .hero-positioning { font-size: .82rem; line-height: 1.45; }
  .capability-icon { width: 40px; height: 40px; margin-bottom: 18px; }
}

.pricing-mode-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  width: min(100%, 470px);
  margin-top: 34px;
  padding: 5px;
  background: rgba(8, 18, 27, .08);
  border: 1px solid rgba(197, 169, 105, .5);
  border-radius: 999px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .5);
}

.price-control-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 470px));
  gap: 14px;
  align-items: start;
  margin-top: 34px;
}

.price-control-stack .pricing-mode-switch {
  width: 100%;
  margin-top: 0;
}

.pricing-audience-switch button[aria-selected="true"] {
  color: var(--ink);
  background: linear-gradient(135deg, #e7d59f, #c5a969);
  box-shadow: 0 12px 28px rgba(8, 18, 27, .18), inset 0 1px rgba(255, 255, 255, .38);
}

.pricing-mode-switch button {
  display: grid;
  gap: 1px;
  min-height: 58px;
  padding: 9px 20px;
  color: var(--ink);
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pricing-mode-switch button span {
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .68;
}

.pricing-mode-switch button strong {
  font-size: .98rem;
  font-weight: 700;
}

.pricing-mode-switch button[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(135deg, #20364a, #0f202f);
  box-shadow: 0 12px 28px rgba(8, 18, 27, .2), inset 0 1px rgba(255, 255, 255, .11);
}

.pricing-mode-switch button:hover { transform: translateY(-1px); }
.pricing-mode-switch button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.pricing-mode-note {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

[data-price-panel][hidden],
[data-price-audience-content][hidden] { display: none !important; }

.care-grid--single {
  grid-template-columns: minmax(0, 720px);
}

.cloud-section {
  --cloud-shift-x: 0px;
  --cloud-shift-y: 0px;
  --cloud-scroll-x: 0px;
  --cloud-scroll-y: 0px;
  --cloud-scroll-opacity: 1;
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.cloud-section > :not(.section-clouds) {
  position: relative;
  z-index: 1;
}

.section-clouds {
  position: absolute;
  z-index: 0;
  top: -14%;
  bottom: -14%;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(calc(-50% + var(--cloud-shift-x) + var(--cloud-scroll-x)), calc(var(--cloud-shift-y) + var(--cloud-scroll-y)), 0);
  transition: opacity 700ms ease, transform 240ms ease-out;
  mask-image: linear-gradient(180deg, transparent, #000 11%, #000 89%, transparent);
}

.section-clouds::before,
.section-clouds::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(92vw, 1380px);
  height: 58%;
  border-radius: 50%;
  filter: blur(42px);
  opacity: .42;
}

.section-clouds::before {
  top: 3%;
  left: -14%;
  background: radial-gradient(ellipse, rgba(88, 155, 198, .27), rgba(88, 155, 198, .09) 42%, transparent 72%);
}

.section-clouds::after {
  right: -20%;
  bottom: 1%;
  background: radial-gradient(ellipse, rgba(197, 169, 105, .19), rgba(88, 155, 198, .11) 46%, transparent 73%);
}

.cloud-section.is-cloud-visible .section-clouds {
  opacity: var(--cloud-scroll-opacity);
}

.section-clouds i {
  position: absolute;
  display: block;
  width: min(78vw, 1180px);
  aspect-ratio: 1.75;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  will-change: auto;
}

.cloud-section.is-cloud-visible .section-clouds i {
  will-change: transform, opacity;
}

.home-hero.is-performance-paused *,
html[data-page-hidden] .home-hero *,
html[data-page-hidden] .section-clouds i {
  animation-play-state: paused !important;
}

.section-clouds i:nth-child(1) {
  top: -4%;
  left: -15%;
}

.section-clouds i:nth-child(2) {
  top: 29%;
  right: -19%;
  width: min(70vw, 1060px);
  transform: scaleX(-1) rotate(-5deg);
}

.section-clouds i:nth-child(3) {
  bottom: -14%;
  left: 22%;
  width: min(62vw, 920px);
  transform: rotate(8deg);
}

.cloud-section--dark .section-clouds i {
  background-image:
    radial-gradient(ellipse at 32% 48%, rgba(119, 190, 232, .2), transparent 54%),
    url("/site/images/hero-smoke.webp");
  filter: blur(8px) saturate(.74) brightness(.9);
  mix-blend-mode: screen;
  opacity: .34;
}

.cloud-section--light .section-clouds i {
  background-image:
    radial-gradient(ellipse at 30% 52%, rgba(55, 106, 142, .2), transparent 56%),
    conic-gradient(from 32deg at 50% 50%, transparent 0 12%, rgba(105, 154, 185, .11) 18%, transparent 29% 48%, rgba(197, 169, 105, .08) 58%, transparent 72%);
  filter: blur(18px) saturate(.78);
  mix-blend-mode: multiply;
  opacity: .32;
}

.cloud-section--quiet .section-clouds i {
  opacity: .2;
}

.cloud-section--reverse .section-clouds i:nth-child(1) {
  right: -15%;
  left: auto;
}

.cloud-section--reverse .section-clouds i:nth-child(2) {
  right: auto;
  left: -19%;
  transform: scaleX(-1) rotate(-5deg);
}

@media (prefers-reduced-motion: no-preference) {
  .cloud-section.is-cloud-visible .section-clouds i:nth-child(1) {
    animation: section-cloud-drift-one 25s ease-in-out infinite alternate;
  }

  .cloud-section.is-cloud-visible .section-clouds i:nth-child(2) {
    animation: section-cloud-drift-two 31s ease-in-out -9s infinite alternate;
  }

  .cloud-section.is-cloud-visible .section-clouds i:nth-child(3) {
    animation: section-cloud-drift-three 28s ease-in-out -16s infinite alternate;
  }
}

@keyframes section-cloud-drift-one {
  50% { transform: translate3d(11%, 7%, 0) scale(1.08) rotate(3deg); }
  100% { transform: translate3d(19%, -2%, 0) scale(.98) rotate(-2deg); }
}

@keyframes section-cloud-drift-two {
  50% { transform: translate3d(-13%, -6%, 0) scaleX(-1) scale(1.11) rotate(4deg); }
  100% { transform: translate3d(-5%, 9%, 0) scaleX(-1) scale(1.02) rotate(-5deg); }
}

@keyframes section-cloud-drift-three {
  50% { transform: translate3d(-9%, -10%, 0) scale(1.12) rotate(-4deg); }
  100% { transform: translate3d(8%, -3%, 0) scale(1.03) rotate(6deg); }
}

@media (prefers-color-scheme: dark) {
  .cloud-section--light .section-clouds i {
    background-image:
      radial-gradient(ellipse at 32% 48%, rgba(119, 190, 232, .18), transparent 54%),
      url("/site/images/hero-smoke.webp");
    filter: blur(9px) saturate(.7) brightness(.84);
    mix-blend-mode: screen;
    opacity: .28;
  }

  .cloud-section--light.cloud-section--quiet .section-clouds i {
    opacity: .17;
  }
}

@media (max-width: 620px) {
  .section-clouds {
    top: -9%;
    bottom: -9%;
  }

  .section-clouds i {
    width: 150vw;
  }

  .section-clouds i:nth-child(2) {
    width: 138vw;
  }

  .section-clouds i:nth-child(3) {
    display: none;
  }

  .cloud-section--dark .section-clouds i { opacity: .27; filter: blur(6px) saturate(.7); }
  .cloud-section--light .section-clouds i { opacity: .24; filter: blur(14px) saturate(.7); }
  .section-clouds::before,
  .section-clouds::after { width: 150vw; opacity: .34; }
  .price-control-stack { grid-template-columns: 1fr; gap: 10px; margin-top: 26px; }
  .pricing-mode-switch { width: 100%; margin-top: 26px; }
  .price-control-stack .pricing-mode-switch { margin-top: 0; }
  .pricing-mode-switch button { min-height: 54px; padding: 8px 14px; }
}

@media (max-width: 850px) {
  .site-header {
    background: rgba(7, 13, 19, .97);
    backdrop-filter: none;
  }
}

@media (max-width: 620px) {
  .hero-smoke--veil-two,
  .hero-smoke--veil-three,
  .hero-orbit--two {
    display: none;
  }
}

/* Keep the offer readable while the atmospheric layer reacts to the pointer. */
.home-hero .hero-content {
  z-index: 4;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(100deg, rgba(5, 12, 18, .94) 0%, rgba(7, 16, 24, .88) 58%, rgba(7, 16, 24, .28) 82%, transparent 100%);
  border-left: 1px solid rgba(232, 214, 157, .4);
  border-radius: 1.4rem;
}

.home-hero.is-awake .hero-content,
.home-hero.is-tool-paused .hero-content {
  opacity: 1;
  filter: none;
  transform: none;
}

@media (max-width: 720px) {
  .home-hero .hero-content {
    width: calc(100% - 1.5rem);
    padding: 1.4rem 1.2rem 1.65rem;
    background: rgba(5, 12, 18, .84);
    border: 1px solid rgba(232, 214, 157, .26);
    border-radius: 1rem;
  }
}

/* Focused NIKARI product and cost presentation. */
.home-hero .hero-brain-shell,
.home-hero .hero-brain-links,
.home-hero .hero-brain-activity,
.home-hero .hero-node--core .core-glow,
.home-hero .hero-node--core .core-wave {
  display: none;
}

.home-hero.is-motion-paused .hero-interactive *,
.home-hero.is-motion-paused .hero-tool-cloud * {
  animation-play-state: paused !important;
}

.hero-motion-toggle {
  position: absolute;
  right: clamp(1rem, 2.4vw, 2rem);
  bottom: clamp(1rem, 2.4vw, 2rem);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  min-height: 3rem;
  padding: 0;
  color: rgba(255, 255, 255, .9);
  background: rgba(7, 16, 24, .76);
  border: 1px solid rgba(232, 214, 157, .36);
  border-radius: 50%;
  box-shadow: 0 .75rem 1.8rem rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 0;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-motion-toggle:is(:hover, :focus-visible) {
  color: #fff;
  background: rgba(12, 31, 43, .94);
  border-color: rgba(232, 214, 157, .7);
  box-shadow: 0 .9rem 2rem rgba(0, 0, 0, .3), 0 0 1.3rem rgba(137, 208, 251, .12), inset 0 1px rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

.hero-motion-toggle[aria-pressed="true"] {
  color: #e8d69d;
  background: rgba(15, 37, 50, .96);
  border-color: rgba(232, 214, 157, .76);
}

.hero-motion-toggle span {
  width: .68rem;
  height: .78rem;
  border-inline: 2px solid currentColor;
}

.hero-motion-toggle[aria-pressed="true"] span {
  width: 0;
  height: 0;
  border: 0;
  border-top: .4rem solid transparent;
  border-bottom: .4rem solid transparent;
  border-left: .62rem solid currentColor;
}

.product-proof-section {
  background: linear-gradient(145deg, #f7f2e9 0%, #fffdf9 58%, #e8eef2 100%);
}

.product-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(17rem, .7fr);
  gap: 1.5rem;
  align-items: start;
}

.product-proof-layout > .section-heading {
  grid-column: 1 / -1;
  max-width: 48rem;
}

.product-proof-window {
  margin: 0;
  overflow: hidden;
  background: #0c1822;
  border: 1px solid rgba(38, 51, 68, .2);
  border-radius: 1.35rem;
  box-shadow: 0 1.75rem 4.5rem rgba(15, 29, 42, .18);
}

.product-proof-windowbar {
  display: flex;
  align-items: center;
  gap: .42rem;
  min-height: 2.75rem;
  padding: .65rem 1rem;
  color: rgba(255, 255, 255, .68);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.product-proof-windowbar span {
  width: .56rem;
  height: .56rem;
  background: rgba(232, 214, 157, .72);
  border-radius: 50%;
}

.product-proof-windowbar strong {
  margin-left: .4rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-proof-window img {
  width: 100%;
  height: auto;
}

.product-proof-window figcaption {
  padding: .85rem 1rem 1rem;
  color: rgba(255, 255, 255, .72);
  font-size: .85rem;
}

.product-capture-needed {
  padding: 1.35rem;
  background: rgba(255, 253, 249, .72);
  border: 1px dashed rgba(38, 51, 68, .34);
  border-radius: 1.35rem;
}

.product-capture-needed > span,
.operating-map-number,
.running-cost-card > span {
  display: block;
  margin-bottom: .7rem;
  color: var(--gold-strong);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-capture-needed h3,
.product-capture-needed p:last-child {
  margin-bottom: 0;
}

.workflow-journey {
  display: grid;
  grid-template-columns: minmax(16rem, .75fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: rgba(7, 16, 24, .72);
  border: 1px solid rgba(156, 216, 255, .18);
  border-radius: 1.5rem;
}

.workflow-journey h2,
.workflow-journey p {
  color: #f7f2e9;
}

.workflow-journey-copy > p:last-child {
  margin-bottom: 0;
  color: rgba(247, 242, 233, .7);
}

.workflow-journey-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.workflow-journey-steps li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.workflow-journey-steps li:first-child {
  border-top: 0;
}

.workflow-journey-steps li > span {
  color: #e8d69d;
  font-size: .82rem;
  font-weight: 700;
}

.workflow-journey-steps strong,
.workflow-journey-steps small {
  display: block;
}

.workflow-journey-steps strong {
  color: #fff;
  font-size: 1.05rem;
}

.workflow-journey-steps small {
  margin-top: .28rem;
  color: rgba(247, 242, 233, .68);
  font-size: .9rem;
  line-height: 1.5;
}

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

.operating-map-card {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 1.35rem;
}

.operating-map-card h3,
.operating-map-card p,
.operating-location strong {
  color: #f7f2e9;
}

.operating-map-card p {
  color: rgba(247, 242, 233, .72);
}

.operating-flow,
.operating-location > div {
  display: grid;
  grid-template-columns: minmax(6rem, 1fr) minmax(2.5rem, .35fr) minmax(8rem, 1.15fr);
  align-items: center;
  gap: .5rem;
}

.operating-node {
  display: grid;
  place-items: center;
  min-height: 4.25rem;
  padding: .7rem;
  color: #f7f2e9;
  background: #132432;
  border: 1px solid rgba(156, 216, 255, .28);
  border-radius: .9rem;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
}

.operating-flow i,
.operating-location i {
  position: relative;
  height: 1px;
  background: rgba(232, 214, 157, .58);
}

.operating-flow i::after,
.operating-location i::after {
  position: absolute;
  right: -.05rem;
  top: -.25rem;
  width: .5rem;
  height: .5rem;
  content: "";
  border-top: 1px solid rgba(232, 214, 157, .75);
  border-right: 1px solid rgba(232, 214, 157, .75);
  transform: rotate(45deg);
}

.operating-location {
  padding: .85rem;
  border: 1px solid rgba(232, 214, 157, .28);
  border-radius: 1rem;
}

.operating-location > strong {
  display: block;
  margin-bottom: .75rem;
  text-align: center;
  font-size: .78rem;
}

.operating-map-addon {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem 1.25rem;
  color: rgba(247, 242, 233, .7);
  background: rgba(7, 16, 24, .5);
  border-left: 2px solid var(--gold);
  border-radius: .2rem 1rem 1rem .2rem;
}

.operating-map-addon strong {
  color: #fff;
}

.running-costs-section {
  background: #fffdf9;
}

.running-costs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.running-cost-card {
  padding: clamp(1.3rem, 2.6vw, 2rem);
  background: #f7f2e9;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
}

.running-cost-card h3 {
  margin-bottom: .2rem;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
}

.running-cost-period {
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.running-cost-card p:last-child,
.running-cost-note {
  margin-bottom: 0;
}

.running-cost-note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  color: var(--ink-soft);
  background: rgba(56, 92, 120, .06);
  border-radius: 1rem;
  font-size: .92rem;
}

/* Cost pages keep only a quiet trace of the atmospheric clouds. */
.pricing-page-section .section-clouds,
.care-section .section-clouds,
.data-boundary-section .section-clouds,
.scope-section .section-clouds {
  opacity: .16 !important;
}

.pricing-page-section .section-clouds i,
.care-section .section-clouds i,
.data-boundary-section .section-clouds i,
.scope-section .section-clouds i {
  animation-duration: 44s !important;
  filter: blur(24px) saturate(.5) !important;
}

@media (max-width: 850px) {
  .product-proof-layout,
  .workflow-journey,
  .operating-map,
  .running-costs-grid {
    grid-template-columns: 1fr;
  }

  .product-proof-layout > .section-heading,
  .operating-map-addon {
    grid-column: auto;
  }

  .hero-motion-toggle {
    right: .85rem;
    bottom: .85rem;
    width: 2.25rem;
    height: 2.25rem;
    min-height: 2.25rem;
    padding: 0;
    font-size: 0;
  }
}

@media (max-width: 520px) {
  .product-proof-section,
  .running-costs-section {
    padding-inline: 1rem;
  }

  .product-proof-window,
  .product-capture-needed,
  .workflow-journey,
  .operating-map-card,
  .running-cost-card {
    border-radius: 1rem;
  }

  .operating-flow,
  .operating-location > div {
    grid-template-columns: 1fr;
  }

  .operating-flow i,
  .operating-location i {
    width: 1px;
    height: 1.5rem;
    margin: 0 auto;
  }

  .operating-flow i::after,
  .operating-location i::after {
    right: -.25rem;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion-toggle {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-clouds {
    opacity: .58;
    transform: translateX(-50%);
    transition: none;
  }

  .section-clouds i {
    animation: none !important;
  }
}

.nikari-universe {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 83% 15%, rgba(88, 155, 198, .2), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(197, 169, 105, .11), transparent 30%),
    linear-gradient(145deg, #101e2a, #071018 72%);
}

.nikari-universe::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .34;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.nikari-universe-inner {
  position: relative;
}

.nikari-universe h2,
.nikari-universe h3 {
  color: #fff;
}

.nikari-universe .section-heading > p:last-child {
  color: rgba(255, 255, 255, .72);
}

.profile-rail {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
}

.profile-rail article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
}

.profile-rail span,
.scope-number {
  display: block;
  margin-bottom: 24px;
  color: #dcc78d;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-rail h3 {
  max-width: 520px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.profile-rail p,
.scope-card p,
.scope-list,
.scope-evidence-note {
  color: rgba(255, 255, 255, .68);
}

.profile-rail p {
  max-width: 64ch;
  margin-bottom: 0;
}

.nikari-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.scope-card {
  min-height: 410px;
  padding: 28px;
  background: rgba(8, 18, 26, .72);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 17px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.scope-card:hover {
  background: rgba(15, 31, 43, .86);
  border-color: rgba(197, 169, 105, .38);
  transform: translateY(-4px);
}

.scope-card h3 {
  min-height: 3.25em;
  margin-bottom: 16px;
  font-size: 1.22rem;
  line-height: 1.28;
}

.scope-card p {
  font-size: .89rem;
  line-height: 1.55;
}

.scope-list {
  margin: 22px 0 0;
  padding: 18px 0 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  list-style: none;
  font-size: .76rem;
  line-height: 1.45;
}

.scope-list li {
  position: relative;
  padding-left: 16px;
}

.scope-list li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: #d7bf7f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(215, 191, 127, .075);
}

.scope-evidence-note {
  max-width: 920px;
  margin: 30px 0 0;
  padding: 19px 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-left: 3px solid rgba(197, 169, 105, .72);
  border-radius: 4px 13px 13px 4px;
  font-size: .8rem;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .nikari-scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scope-card { min-height: 350px; }
}

@media (max-width: 720px) {
  .profile-rail,
  .nikari-scope-grid { grid-template-columns: 1fr; }
  .profile-rail article,
  .scope-card { min-height: 0; }
  .scope-card { padding: 25px 22px; }
  .scope-card h3 { min-height: 0; }
  .scope-number { margin-bottom: 18px; }
}

/* Interactive NIKARI field, agent map, and compact candidate navigation. */
:root {
  --candidate-height: 0px;
}

.candidate-banner {
  height: var(--candidate-height);
  color: rgba(255, 255, 255, .76);
  background: linear-gradient(90deg, #0a1118, #142230 48%, #0a1118);
  border-bottom-color: rgba(197, 169, 105, .28);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.candidate-banner::before {
  width: 6px;
  height: 6px;
  margin-right: 9px;
  display: inline-block;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(197, 169, 105, .09);
}

.site-header {
  height: var(--header-height);
  padding: 7px 0;
  background: rgba(7, 13, 19, .88);
  border: 0;
  backdrop-filter: blur(22px) saturate(125%);
}

.site-header.is-scrolled,
.site-header[data-scrolled] {
  border: 0;
  box-shadow: 0 14px 34px rgba(2, 7, 12, .24);
}

.nav {
  width: min(calc(100% - 32px), 1480px);
  height: 100%;
  padding: 0 7px 0 15px;
  gap: 20px;
  background: linear-gradient(110deg, rgba(31, 45, 58, .7), rgba(17, 28, 38, .83));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .035), 0 10px 32px rgba(0, 0, 0, .14);
}

.brand,
.nav-links a {
  color: #f4f6f8;
}

.brand {
  letter-spacing: .25em;
}

.brand img {
  filter: brightness(0) invert(1);
  opacity: .94;
}

.origin-badge {
  color: rgba(255, 255, 255, .58);
}

.nav-links {
  gap: 4px;
  padding: 4px;
  background: rgba(5, 12, 18, .32);
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 14px;
}

.nav-links a {
  padding: 8px 11px;
  border-radius: 10px;
  font-size: .78rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  transform: translateY(-1px);
}

.nav-links a:not(.nav-cta)::after {
  right: 11px;
  bottom: 4px;
  left: 11px;
  background: var(--gold);
}

.nav-cta {
  min-width: 68px;
  padding: 8px 14px !important;
  color: #101923;
  background: linear-gradient(135deg, #ead9ad, #c5a969);
  border: 0;
  box-shadow: 0 6px 18px rgba(197, 169, 105, .16);
}

.nav-cta:hover {
  color: #101923;
  border-color: transparent;
}

.nav-toggle span {
  background: #fff;
}

.home-hero {
  --pointer-x: 68%;
  --pointer-y: 42%;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --brain-tilt-x: 0deg;
  --brain-tilt-y: 0deg;
  --brain-intensity: .78;
  --hero-reveal: 0;
  min-height: clamp(650px, 82svh, 760px);
  background:
    radial-gradient(ellipse at 76% 44%, rgba(54, 103, 136, .44), transparent 36%),
    radial-gradient(ellipse at 30% 115%, rgba(197, 169, 105, .12), transparent 42%),
    linear-gradient(135deg, #071018 0%, #0d1923 47%, #101d28 100%);
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(520px circle at var(--pointer-x) var(--pointer-y), rgba(128, 202, 248, .22), transparent 68%);
  transition: background 90ms linear;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 17, .97) 0%, rgba(5, 11, 17, .9) 43%, rgba(5, 11, 17, .26) 72%, rgba(5, 11, 17, .42) 100%),
    linear-gradient(0deg, rgba(4, 9, 14, .72), transparent 48%);
}

.hero-interactive {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 220ms ease-out;
}

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

.hero-interactive::before {
  width: min(44vw, 650px);
  aspect-ratio: 1;
  top: 7%;
  right: 5%;
  background: radial-gradient(circle, rgba(98, 181, 232, .15) 0%, rgba(53, 103, 139, .08) 42%, transparent 70%);
  filter: blur(18px);
  opacity: var(--brain-intensity);
}

.hero-interactive::after {
  width: 260px;
  aspect-ratio: 1;
  right: 28%;
  bottom: 9%;
  background: radial-gradient(circle, rgba(226, 202, 139, .13), transparent 70%);
  filter: blur(16px);
}

.hero-mesh {
  position: absolute;
  inset: -8%;
  opacity: .36;
  background-image:
    linear-gradient(rgba(138, 177, 207, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 177, 207, .1) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 62% 47%, #000 2%, transparent 66%);
  transform: perspective(700px) rotateX(57deg) scale(1.4) translateY(3%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(138, 177, 207, .19);
  border-radius: 50%;
  box-shadow: inset 0 0 45px rgba(102, 169, 211, .025), 0 0 45px rgba(102, 169, 211, .025);
  opacity: .42;
}

.hero-orbit--one {
  width: min(44vw, 650px);
  aspect-ratio: 1;
  top: 5%;
  right: 4%;
  border-style: dashed;
}

.hero-orbit--two {
  width: min(31vw, 455px);
  aspect-ratio: 1;
  top: 17%;
  right: 14%;
  border-color: rgba(197, 169, 105, .2);
  border-style: dotted;
}

.hero-thought-field {
  position: absolute;
  width: min(37vw, 540px);
  aspect-ratio: 1;
  top: 12%;
  right: 8%;
  border-radius: 50%;
  background:
    conic-gradient(from 10deg, transparent 0 12%, rgba(137, 208, 251, .08) 13%, transparent 17% 31%, rgba(197, 169, 105, .08) 33%, transparent 38% 62%, rgba(137, 208, 251, .07) 64%, transparent 69%),
    repeating-radial-gradient(circle, transparent 0 42px, rgba(138, 177, 207, .055) 43px, transparent 44px 63px);
  mask-image: radial-gradient(circle, transparent 0 13%, #000 31%, transparent 74%);
  opacity: .68;
}

.hero-smoke-field {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  opacity: .98;
  mix-blend-mode: screen;
  filter: contrast(1.08) saturate(.8);
  transform: scale(1.025);
  transform-origin: var(--pointer-x) var(--pointer-y);
  transition: opacity 1050ms cubic-bezier(.16, .84, .24, 1), filter 1150ms ease, transform 1500ms cubic-bezier(.16, .84, .24, 1);
}

.home-hero.is-awake .hero-smoke-field {
  opacity: .13;
  filter: contrast(.9) saturate(.7) blur(8px);
  transform: scale(1.16);
}

.home-hero.is-awake .hero-interactive { z-index: 3; }

.hero-smoke {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 31% 48%, rgba(135, 187, 221, .3) 0 8%, rgba(69, 117, 151, .21) 19%, transparent 51%),
    conic-gradient(from 62deg at 48% 50%, transparent 0 9%, rgba(134, 184, 216, .18) 13%, transparent 22% 31%, rgba(58, 103, 136, .23) 39%, transparent 48% 66%, rgba(144, 191, 222, .15) 74%, transparent 83%),
    repeating-radial-gradient(ellipse at 48% 52%, rgba(154, 197, 223, .12) 0 8px, transparent 14px 31px);
  filter: blur(17px) saturate(.82);
  opacity: .74;
  transform-origin: center;
  will-change: transform, opacity;
}

.hero-smoke-art {
  position: absolute;
  inset: -12%;
  display: block;
  background: url("/site/images/hero-smoke.webp") center / cover no-repeat;
  filter: saturate(.58) brightness(.82) contrast(1.05);
  opacity: .84;
  transform-origin: 50% 48%;
  will-change: transform, opacity, filter;
}

.hero-smoke--left {
  width: 82%;
  height: 112%;
  top: -6%;
  left: -18%;
}

.hero-smoke--right {
  width: 84%;
  height: 116%;
  top: -8%;
  right: -20%;
  transform: scaleX(-1);
}

.hero-smoke--top {
  width: 98%;
  height: 72%;
  top: -24%;
  left: 1%;
  opacity: .72;
  transform: rotate(12deg);
}

.hero-smoke--bottom {
  width: 96%;
  height: 72%;
  right: 1%;
  bottom: -23%;
  opacity: .7;
  transform: rotate(-9deg);
}

.hero-smoke--veil-one,
.hero-smoke--veil-two,
.hero-smoke--veil-three {
  width: 58%;
  height: 82%;
  opacity: .62;
}

.hero-smoke--veil-one { top: 2%; left: 5%; transform: rotate(19deg); }
.hero-smoke--veil-two { top: 8%; left: 29%; transform: rotate(-11deg) scale(1.12); }
.hero-smoke--veil-three { top: -2%; right: 0; transform: rotate(25deg) scaleX(-1); }

.hero-network {
  position: absolute;
  z-index: 1;
  top: 1%;
  right: auto;
  bottom: -1%;
  left: 8%;
  width: 76%;
  height: 100%;
  overflow: visible;
  transform: perspective(900px) rotateX(var(--brain-tilt-y)) rotateY(var(--brain-tilt-x)) scale(1.035);
  transform-origin: 50% 48%;
  opacity: .22;
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1), filter 700ms ease, opacity 900ms ease;
  filter: saturate(.82) blur(2px);
}

.home-hero.is-awake .hero-network {
  opacity: 1;
  filter: saturate(1.24) brightness(1.08) blur(0);
}

.brain-silhouette {
  fill: url(#brain-fill);
  stroke: url(#brain-line);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .2;
  filter: blur(.5px) drop-shadow(0 0 20px rgba(128, 207, 255, .25));
}

.brain-divider,
.brain-fold {
  fill: none;
  stroke: rgba(166, 219, 250, .25);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brain-divider {
  stroke: rgba(234, 213, 157, .32);
  stroke-width: 2;
  stroke-dasharray: 3 8;
}

.hero-brain-links {
  fill: none;
  stroke: url(#brain-line);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-dasharray: 4 10;
  filter: drop-shadow(0 0 5px rgba(97, 180, 233, .42));
}

.hero-capability-arms {
  fill: none;
  stroke: rgba(150, 211, 247, .42);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 3 10;
  filter: drop-shadow(0 0 5px rgba(97, 180, 233, .28));
}

.hero-brain-activity circle {
  fill: #f1dda1;
  filter: url(#brain-glow);
}

.hero-brain-nodes .hero-node:not(.hero-node--core) > circle:first-child {
  fill: #9edbff;
  filter: drop-shadow(0 0 9px rgba(114, 190, 239, .82));
}

.hero-node .node-ring {
  fill: transparent;
  stroke: rgba(145, 207, 246, .42);
  stroke-width: 1;
}

.hero-node .core-glow {
  fill: url(#brain-core);
  filter: none;
}

.hero-node--core .core-wave {
  fill: none;
  stroke-width: 1.2;
  transform-box: fill-box;
  transform-origin: center;
}

.hero-node--core .core-wave--outer {
  stroke: rgba(146, 213, 253, .42);
  stroke-dasharray: 3 8;
}

.hero-node--core .core-wave--inner {
  stroke: rgba(225, 201, 137, .62);
  stroke-dasharray: 2 6;
}

.hero-node--core .core-point {
  fill: #f0dc9e;
  filter: url(#brain-glow);
  transform-box: fill-box;
  transform-origin: center;
}

.hero-core-logo {
  fill: #f4e4b2;
  opacity: 0;
  filter: url(#brain-glow) drop-shadow(0 0 16px rgba(137, 208, 251, .58));
  transform-box: fill-box;
  transform-origin: center;
}

.hero-core-reset {
  position: absolute;
  z-index: 7;
  top: 53.2%;
  left: 50%;
  width: 54px;
  height: 54px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #101923;
  background: rgba(8, 18, 27, .18);
  border: 1px solid rgba(237, 216, 156, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(229, 199, 118, 0);
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.74);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(.2, .8, .2, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.hero-core-reset > span {
  width: 13px;
  height: 13px;
  display: block;
  background: #f0dc9e;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(240, 220, 158, .95), 0 0 30px rgba(137, 208, 251, .62);
}

.home-hero:is(.is-awake, .is-tool-paused) .hero-core-reset {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.home-hero.is-returning .hero-smoke-field {
  opacity: .92;
  filter: contrast(1.04) saturate(.78);
  transform: scale(1.035);
}

.home-hero.is-returning .hero-network { opacity: .2; filter: saturate(.82) blur(2px); }
.home-hero.is-returning .hero-tool-cloud { opacity: .04; }

.hero-core-reset:is(:hover, :focus-visible) {
  border-color: rgba(240, 220, 158, .78);
  box-shadow: 0 0 0 8px rgba(229, 199, 118, .08), 0 0 30px rgba(137, 208, 251, .24);
  outline: none;
  transform: translate(-50%, -50%) scale(1.08);
}

.hero-tool-cloud {
  position: absolute;
  z-index: 4;
  inset: 0;
  opacity: .05;
  pointer-events: none;
  transition: opacity 900ms ease 180ms;
}

.home-hero.is-awake .hero-tool-cloud,
.home-hero.is-tool-paused .hero-tool-cloud { opacity: 1; }

.hero-tool-label {
  position: absolute;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: rgba(247, 250, 252, .98);
  background: linear-gradient(90deg, rgba(7, 16, 23, .96), rgba(11, 24, 34, .86));
  border: 1px solid rgba(145, 202, 236, .32);
  border-radius: 999px;
  font-family: inherit;
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: .045em;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  backdrop-filter: blur(14px) saturate(125%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .17), inset 0 1px rgba(255, 255, 255, .025);
  opacity: 0;
  transform: translateY(7px) scale(.97);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(.2, .8, .2, 1), border-color 420ms ease, background 420ms ease, box-shadow 420ms ease;
}

.hero-tool-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-right: 7px;
  fill: none;
  stroke: #9edbff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(126, 201, 245, .28));
}

.hero-tool-copy {
  display: grid;
  min-width: 0;
}

.hero-tool-name {
  min-width: 0;
}

.hero-tool-description {
  display: block;
  max-height: 0;
  max-width: 30ch;
  overflow: hidden;
  color: rgba(224, 238, 247, .82);
  font-size: .64rem;
  font-weight: 450;
  line-height: 1.45;
  letter-spacing: .015em;
  opacity: 0;
  transform: translateY(-3px);
  transition: max-height 360ms ease, margin-top 360ms ease, opacity 280ms ease, transform 360ms ease;
}

.hero-tool-label.is-visible {
  opacity: .92;
  transform: translateY(0) scale(1);
}

.hero-tool-label.is-visible.is-changing {
  opacity: .56;
  transform: translateY(2px) scale(.985);
}

.hero-tool-label:is(:hover, :focus-visible, .is-inspected) {
  z-index: 8;
  border-color: rgba(158, 219, 255, .72);
  background: linear-gradient(135deg, rgba(9, 22, 32, .98), rgba(17, 42, 57, .96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32), 0 0 0 1px rgba(126, 201, 245, .08), inset 0 1px rgba(255, 255, 255, .06);
}

.hero-tool-label.is-pinned {
  border-color: rgba(213, 184, 110, .88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32), 0 0 0 2px rgba(213, 184, 110, .16), inset 0 1px rgba(255, 255, 255, .06);
}

.hero-tool-label.is-inspected {
  width: clamp(210px, 18vw, 270px);
  min-height: 66px;
  padding: 10px 12px;
  align-items: flex-start;
  border-radius: 16px;
  white-space: normal;
  opacity: 1;
  transform: translateY(0) scale(1.015);
}

.hero-tool-label.is-inspected .hero-tool-icon {
  margin-top: 1px;
}

.hero-tool-label.is-inspected .hero-tool-description {
  max-height: 5.2em;
  margin-top: 4px;
  opacity: 1;
  transform: translateY(0);
}

.hero-tool-label:focus-visible {
  outline: 2px solid #d5b86e;
  outline-offset: 3px;
}

.home-hero.is-tool-paused .hero-brain-shell,
.home-hero.is-tool-paused .hero-brain-links,
.home-hero.is-tool-paused .hero-capability-arms,
.home-hero.is-tool-paused .brain-divider,
.home-hero.is-tool-paused .brain-fold,
.home-hero.is-tool-paused .hero-thought-field,
.home-hero.is-tool-paused .hero-orbit,
.home-hero.is-tool-paused .hero-node .node-ring,
.home-hero.is-tool-paused .hero-node--core > *,
.home-hero.is-tool-paused .hero-smoke-field > *,
.home-hero.is-tool-paused .hero-smoke-art,
.home-hero.is-tool-paused .hero-core-logo {
  animation-play-state: paused !important;
}

.hero-tool-label--one { top: 14%; left: 61%; }
.hero-tool-label--two { top: 18%; right: 4%; }
.hero-tool-label--three { top: 32%; left: 64%; }
.hero-tool-label--four { top: 39%; right: 3%; }
.hero-tool-label--five { top: 52%; left: 61%; }
.hero-tool-label--six { top: 60%; right: 5%; }
.hero-tool-label--seven { bottom: 22%; left: 63%; }
.hero-tool-label--eight { right: 18%; bottom: 14%; }
.hero-tool-label--nine { bottom: 7%; left: 62%; }
.hero-tool-label--ten { right: 2%; bottom: 4%; }

.hero-tool-cloud {
  inset: 0;
  display: block;
}

.hero-tool-label--one { top: 14%; right: 72%; left: auto; }
.hero-tool-label--two { top: 12%; right: auto; left: 50%; translate: -50% 0; }
.hero-tool-label--three { top: 14%; right: auto; left: 72%; }
.hero-tool-label--four { top: 37%; right: 72%; left: auto; }
.hero-tool-label--five { top: 37%; right: auto; left: 72%; }
.hero-tool-label--six { top: 60%; right: 72%; bottom: auto; left: auto; }
.hero-tool-label--seven { top: 60%; right: auto; bottom: auto; left: 72%; }
.hero-tool-label--eight { top: auto; right: 72%; bottom: 8%; left: auto; }
.hero-tool-label--nine { top: auto; right: auto; bottom: 6%; left: 50%; translate: -50% 0; }
.hero-tool-label--ten { top: auto; right: auto; bottom: 8%; left: 72%; }

.home-hero .hero-content {
  position: relative;
  z-index: 2;
  transition: opacity 780ms ease, transform 1000ms cubic-bezier(.16, .84, .24, 1), filter 900ms ease;
}

.home-hero.is-awake .hero-content,
.home-hero.is-tool-paused .hero-content {
  opacity: .16;
  filter: blur(1.8px);
  transform: translate3d(-24px, 0, 0);
}

.home-hero .hero-content > h1 {
  max-width: 980px;
}

.subagent-section {
  min-height: 720px;
  background:
    radial-gradient(circle at 20% 45%, rgba(56, 92, 120, .2), transparent 38%),
    var(--navy-deep);
}

.subagent-map {
  min-width: 0;
  margin: clamp(34px, 5vw, 68px);
  align-self: center;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(27, 42, 55, .96), rgba(8, 16, 23, .97));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .3), inset 0 1px rgba(255, 255, 255, .05);
}

.subagent-map-topline {
  min-height: 46px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .025);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.map-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.map-live i {
  width: 6px;
  height: 6px;
  background: #7dcb97;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(125, 203, 151, .09);
}

.subagent-stage {
  position: relative;
  min-height: 520px;
  background:
    radial-gradient(circle at 50% 48%, rgba(138, 177, 207, .12), transparent 31%),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.subagent-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(138, 177, 207, .45);
  stroke-width: 1.5;
  stroke-dasharray: 4 8;
}

.subagent-connectors path {
  fill: none;
}

.subagent-connectors circle {
  fill: rgba(197, 169, 105, .9);
  stroke: none;
}

.map-node {
  position: absolute;
  padding: 12px 14px;
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, .9);
  background: rgba(15, 27, 37, .92);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
  transform: translate(-50%, -50%);
}

.map-node small {
  color: var(--gold);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.map-node strong {
  font-size: .78rem;
  line-height: 1.25;
}

.map-node > span:not(.map-core-mark) {
  color: rgba(255, 255, 255, .56);
  font-size: .64rem;
  line-height: 1.25;
}

.map-node--task { top: 13%; left: 50%; min-width: 142px; text-align: center; }
.map-node--research { top: 35%; left: 21%; }
.map-node--documents { top: 35%; left: 79%; }
.map-node--structure { top: 65%; left: 21%; }
.map-node--output { top: 68%; left: 50%; text-align: center; }
.map-node--review { top: 88%; left: 50%; min-width: 180px; text-align: center; }

.map-node--core {
  top: 50%;
  left: 50%;
  width: 116px;
  aspect-ratio: 1;
  padding: 0;
  place-content: center;
  justify-items: center;
  background: radial-gradient(circle at 42% 34%, #304e65, #142432 70%);
  border-color: rgba(197, 169, 105, .46);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(197, 169, 105, .035), 0 18px 44px rgba(0, 0, 0, .32);
}

.map-core-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #142432;
  background: linear-gradient(135deg, #ead9ad, #c5a969);
  border-radius: 50%;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.map-node--core strong { margin-top: 5px; font-size: .84rem; letter-spacing: .08em; }
.map-node--core small { color: rgba(255, 255, 255, .55); letter-spacing: .05em; text-transform: none; }

.subagent-map figcaption {
  padding: 15px 18px 17px;
  color: rgba(255, 255, 255, .58);
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .7rem;
  line-height: 1.5;
}

.subagent-map figcaption span {
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-brain-shell { animation: brain-breathe 6.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .hero-brain-links { animation: network-dash 7.5s linear infinite; }
  .hero-capability-arms { animation: network-dash 6.2s linear infinite reverse; }
  .brain-divider { animation: network-dash 12s linear infinite reverse; }
  .brain-fold--left { animation: fold-think-left 5.8s ease-in-out infinite; transform-box: fill-box; transform-origin: right center; }
  .brain-fold--right { animation: fold-think-right 6.2s ease-in-out -2.6s infinite; transform-box: fill-box; transform-origin: left center; }
  .hero-thought-field { animation: thought-rotate 26s linear infinite; }
  .hero-orbit--one { animation: orbit-spin 28s linear infinite; }
  .hero-orbit--two { animation: orbit-spin 19s linear infinite reverse; }
  .hero-node .node-ring { animation: node-pulse 2.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .hero-brain-nodes .hero-node:nth-child(2n) .node-ring { animation-delay: -1.1s; }
  .hero-brain-nodes .hero-node:nth-child(3n) .node-ring { animation-delay: -2.2s; }
  .hero-node--core .core-glow { animation: core-light 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  .hero-node--core .core-wave--outer { animation: thought-wave 4.4s linear infinite; }
  .hero-node--core .core-wave--inner { animation: thought-wave 3.1s linear infinite reverse; }
  .hero-node--core .core-point { animation: core-point 1.9s ease-in-out infinite; }
  .hero-smoke--left { animation: smoke-open-left 14s cubic-bezier(.42, 0, .2, 1) infinite; }
  .hero-smoke--right { animation: smoke-open-right 14s cubic-bezier(.42, 0, .2, 1) infinite; }
  .hero-smoke--top { animation: smoke-drift-top 17s ease-in-out infinite; }
  .hero-smoke--bottom { animation: smoke-drift-bottom 19s ease-in-out -6s infinite; }
  .hero-smoke--veil-one { animation: smoke-drift-top 13s ease-in-out -4s infinite alternate; }
  .hero-smoke--veil-two { animation: smoke-drift-bottom 16s ease-in-out -9s infinite alternate; }
  .hero-smoke--veil-three { animation: smoke-open-right 18s ease-in-out -7s infinite alternate; }
  .hero-smoke-art { animation: smoke-art-reveal 14s cubic-bezier(.42, 0, .2, 1) infinite; }
  .hero-core-logo { animation: logo-through-smoke 14s cubic-bezier(.2, .78, .2, 1) infinite; }
  .subagent-connectors { animation: network-dash 22s linear infinite; }
  .map-node--core { animation: core-breathe 4.8s ease-in-out infinite; }
}

@keyframes network-dash { to { stroke-dashoffset: -120; } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes thought-rotate { to { transform: rotate(360deg) scale(1.04); } }
@keyframes brain-breathe { 50% { opacity: .88; transform: scale(1.012); } }
@keyframes fold-think-left { 50% { opacity: .6; transform: translateX(-4px) scaleX(1.012); } }
@keyframes fold-think-right { 50% { opacity: .55; transform: translateX(4px) scaleX(1.012); } }
@keyframes node-pulse { 50% { opacity: .5; transform: scale(1.46); } }
@keyframes core-light { 50% { opacity: .7; transform: scale(1.14); } }
@keyframes thought-wave { to { stroke-dashoffset: -80; transform: rotate(360deg); } }
@keyframes core-point { 50% { opacity: .72; transform: scale(.78); } }
@keyframes smoke-open-left {
  0%, 9% { opacity: .88; transform: translate3d(24%, 0, 0) scale(1.17) rotate(2deg); }
  24%, 69% { opacity: .61; transform: translate3d(-10%, -2%, 0) scale(1.05) rotate(-4deg); }
  84%, 100% { opacity: .82; transform: translate3d(18%, 1%, 0) scale(1.14) rotate(1deg); }
}
@keyframes smoke-open-right {
  0%, 9% { opacity: .9; transform: translate3d(-22%, 0, 0) scaleX(-1) scale(1.17) rotate(1deg); }
  24%, 69% { opacity: .62; transform: translate3d(10%, 2%, 0) scaleX(-1) scale(1.05) rotate(-3deg); }
  84%, 100% { opacity: .84; transform: translate3d(-17%, -1%, 0) scaleX(-1) scale(1.14) rotate(2deg); }
}
@keyframes smoke-drift-top {
  50% { opacity: .68; transform: translate3d(-4%, 10%, 0) rotate(5deg) scale(1.08); }
}
@keyframes smoke-drift-bottom {
  50% { opacity: .63; transform: translate3d(5%, -9%, 0) rotate(-2deg) scale(1.1); }
}
@keyframes smoke-art-reveal {
  0%, 10% { opacity: .86; transform: scale(1.16) rotate(.8deg); filter: saturate(.48) brightness(.72) blur(1.2px); }
  25%, 69% { opacity: .52; transform: scale(1.02) rotate(-.5deg); filter: saturate(.62) brightness(.86) blur(0); }
  84%, 100% { opacity: .78; transform: scale(1.12) rotate(.4deg); filter: saturate(.52) brightness(.76) blur(.8px); }
}
@keyframes logo-through-smoke {
  0%, 11% { opacity: 0; transform: scale(.72); }
  25%, 68% { opacity: 1; transform: scale(1); }
  82%, 100% { opacity: .08; transform: scale(.82); }
}
@keyframes tool-scene {
  0%, 10% { opacity: 0; }
  18%, 74% { opacity: 1; }
  84%, 100% { opacity: 0; }
}
@keyframes core-breathe { 50% { box-shadow: 0 0 0 17px rgba(197, 169, 105, .02), 0 20px 52px rgba(0, 0, 0, .38); } }

@media (max-width: 850px) {
  :root { --candidate-height: 0px; }
  .pilot-layout,
  .care-grid { grid-template-columns: 1fr; }
  .site-header { padding: 6px 0; }
  .nav { width: min(calc(100% - 18px), 1480px); padding-left: 12px; border-radius: 16px; }
  .nav-links {
    top: calc(var(--candidate-height) + var(--header-height) - 2px);
    right: 9px;
    left: 9px;
    max-height: calc(100svh - var(--candidate-height) - var(--header-height) - 10px);
    padding: 11px 14px 16px;
    background: rgba(13, 24, 34, .98);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .36);
  }
  .nav-links a { color: #f4f6f8; border-bottom-color: rgba(255, 255, 255, .09); }
  .hero-interactive { opacity: .78; }
  .hero-tool-label--nine,
  .hero-tool-label--ten { display: none; }
  .home-hero .hero-content > h1 { max-width: 760px; }
  .subagent-section { grid-template-columns: 1fr; }
  .subagent-map { width: min(calc(100% - 36px), 680px); margin: 52px auto 8px; }
  .media-band-copy { padding-top: 46px; }
}

@media (max-width: 620px) {
  .audience-quick-grid { grid-template-columns: 1fr; }
  .audience-quick-grid article { padding: 20px; }
  .candidate-banner { padding-inline: 8px; font-size: .56rem; letter-spacing: .045em; }
  .candidate-banner::before { width: 5px; height: 5px; margin-right: 7px; box-shadow: 0 0 0 4px rgba(197, 169, 105, .08); }
  .home-hero { min-height: 1050px; align-items: start; }
  .hero-interactive { inset: 0; opacity: .62; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5, 11, 17, .95), rgba(5, 11, 17, .72)); }
  .home-hero .hero-content { padding-bottom: 370px; }
  .home-hero.is-awake .hero-interactive { z-index: 1; }
  .home-hero.is-awake .hero-content,
  .home-hero.is-tool-paused .hero-content {
    z-index: 2;
    opacity: 1;
    filter: none;
    transform: none;
  }
  .hero-tool-cloud {
    inset: auto 12px 24px;
    height: 288px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 8px 10px;
  }
  .hero-tool-label,
  .hero-tool-label--one,
  .hero-tool-label--two,
  .hero-tool-label--three,
  .hero-tool-label--four,
  .hero-tool-label--five,
  .hero-tool-label--six {
    position: relative;
    inset: auto;
    translate: none;
    justify-self: start;
    max-width: 100%;
  }
  .hero-tool-label:nth-child(2n) { justify-self: end; }
  .hero-tool-label { min-height: 32px; height: max-content; padding: 7px 9px; align-self: center; font-size: .56rem; }
  .hero-tool-icon { width: 12px; height: 12px; flex-basis: 12px; margin-right: 5px; }
  .hero-tool-label.is-inspected {
    position: absolute;
    inset: 50% 0 auto;
    width: 100%;
    max-width: none;
    min-height: 82px;
    padding: 12px 14px;
    transform: translateY(-50%) scale(1);
    font-size: .65rem;
  }
  .hero-tool-label.is-inspected .hero-tool-description { max-width: none; font-size: .70rem; line-height: 1.55; }
  .hero-tool-label--seven,
  .hero-tool-label--eight,
  .hero-tool-label--nine,
  .hero-tool-label--ten { display: none; }
  .hero-orbit--one { width: 540px; right: -25%; }
  .hero-orbit--two { width: 380px; right: -4%; }
  .hero-thought-field { width: 430px; right: -9%; }
  .hero-network { inset: auto auto 0 -10%; width: 110%; height: 390px; transform: perspective(900px) rotateX(var(--brain-tilt-y)) rotateY(var(--brain-tilt-x)) scale(1.06); }
  .hero-core-logo { transform: scale(1.55) !important; }
  .hero-core-reset { top: calc(100% - 198px); width: 52px; height: 52px; }
  .subagent-map { width: min(calc(100% - 24px), 680px); margin-top: 36px; border-radius: 19px; }
  .subagent-map-topline { padding-inline: 12px; font-size: .55rem; letter-spacing: .045em; }
  .subagent-stage { min-height: 430px; }
  .map-node { padding: 9px 10px; border-radius: 10px; }
  .map-node small { font-size: .48rem; }
  .map-node strong { font-size: .68rem; }
  .map-node > span:not(.map-core-mark) { font-size: .55rem; }
  .map-node--task { top: 12%; min-width: 120px; }
  .map-node--research, .map-node--structure { left: 23%; }
  .map-node--documents { left: 77%; }
  .map-node--output { left: 50%; }
  .map-node--research, .map-node--documents { top: 35%; }
  .map-node--structure, .map-node--output { top: 68%; }
  .map-node--review { top: 89%; min-width: 155px; }
  .map-node--core { width: 94px; padding: 0; }
  .map-core-mark { width: 29px; height: 29px; font-size: .57rem; }
  .subagent-map figcaption { padding: 13px 14px 15px; font-size: .64rem; }
  .media-band-copy { padding: 45px 22px 65px; }
}

@media (hover: none), (pointer: coarse) {
  .hero-interactive { opacity: 1; }
  .hero-smoke-field { opacity: .16; filter: contrast(.96) saturate(.72) blur(4px); transform: scale(1.08); }
  .hero-network { z-index: 3; opacity: 1; filter: saturate(1.2) brightness(1.14); }
  .hero-tool-cloud { opacity: 1; }
  .hero-tool-label.is-visible { opacity: .98; }
  .hero-core-logo { fill: #f4e4b2 !important; opacity: 1 !important; filter: url(#brain-glow) drop-shadow(0 0 22px rgba(137, 208, 251, .82)); animation: none !important; }
  .home-hero .hero-content { opacity: 1; filter: none; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-interactive {
    transform: none;
    transition: none;
  }

  .hero-brain-activity {
    display: none;
  }

  .hero-network {
    transform: none;
    transition: none;
  }

  .hero-smoke--left { transform: translateX(-10%) scale(1.05); opacity: .58; }
  .hero-smoke--right { transform: translateX(10%) scaleX(-1) scale(1.05); opacity: .58; }
  .hero-smoke-art { opacity: .55; transform: none; }
  .hero-core-logo { opacity: 1; transform: none; }
  .hero-tool-cloud { opacity: 1; }
}
.capability-status-heading {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.package-table-wrap {
  margin-top: 2rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: 0 1.25rem 3rem rgba(6, 17, 27, 0.08);
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
}

.package-table-wrap:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.package-table {
  width: 100%;
  min-width: 66rem;
  border-collapse: collapse;
  color: var(--ink);
}

.package-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.package-table th,
.package-table td {
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.package-table th:last-child,
.package-table td:last-child {
  border-right: 0;
}

.package-table tbody tr:last-child th,
.package-table tbody tr:last-child td {
  border-bottom: 0;
}

.package-table thead th {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  color: #f7f2e8;
  background: #101c27;
  font-weight: 700;
}

.package-table thead th:first-child,
.package-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
}

.package-table thead th:first-child {
  z-index: 2;
}

.package-table tbody th {
  width: 12rem;
  background: var(--surface-strong, var(--surface));
  color: var(--ink);
}

.package-table tbody tr:nth-child(even) td {
  background: color-mix(in srgb, var(--surface) 94%, var(--gold) 6%);
}

.package-table-hint {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 720px) {
  .package-table-wrap {
    margin-inline: -0.25rem;
    border-radius: 1rem;
  }

  .package-table th,
  .package-table td {
    padding: 0.85rem;
    font-size: 0.9rem;
  }

  .package-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Performance: mobile keeps the cloud effect while avoiding costly layers. */
@media (max-width: 850px) {
  .site-header {
    background: rgba(7, 13, 19, .97);
    backdrop-filter: none;
  }
}

@media (max-width: 620px) {
  .hero-smoke--veil-two,
  .hero-smoke--veil-three,
  .hero-orbit--two {
    display: none;
  }
}

/* Final readability override for the interactive hero. */
.home-hero .hero-content {
  z-index: 4;
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(100deg, rgba(5, 12, 18, .94) 0%, rgba(7, 16, 24, .88) 58%, rgba(7, 16, 24, .28) 82%, transparent 100%);
  border-left: 1px solid rgba(232, 214, 157, .4);
  border-radius: 1.4rem;
}

.home-hero.is-awake .hero-content,
.home-hero.is-tool-paused .hero-content {
  opacity: 1;
  filter: none;
  transform: none;
}

@media (max-width: 720px) {
  .home-hero .hero-content {
    width: calc(100% - 1.5rem);
    padding: 1.4rem 1.2rem 1.65rem;
    background: rgba(5, 12, 18, .84);
    border: 1px solid rgba(232, 214, 157, .26);
    border-radius: 1rem;
  }
}

.hero-motion-toggle {
  pointer-events: auto;
}

@media (max-width: 520px) {
  .home-hero .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero .actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Final contrast override for the calm running-cost section. */
.running-costs-section,
.running-costs-section h2,
.running-costs-section h3 {
  color: var(--ink);
}

.running-costs-section .section-heading > p:last-child,
.running-cost-card p,
.running-cost-note {
  color: var(--ink-soft);
}

.running-cost-card {
  color: var(--ink);
  background: #f7f2e9;
}

body .running-costs-section,
body .running-costs-section h2,
body .running-costs-section .running-cost-card h3 {
  color: #182335 !important;
}

body .running-costs-section .section-heading > p:last-child,
body .running-costs-section .running-cost-card p,
body .running-costs-section .running-cost-note {
  color: #506072 !important;
}

body .product-proof-section,
body .product-proof-section h2,
body .product-proof-section h3 {
  color: #182335 !important;
}

body .product-proof-section .section-heading > p:last-child,
body .product-proof-section .product-capture-needed p {
  color: #506072 !important;
}

body .product-proof-section .product-proof-window figcaption {
  color: rgba(255, 255, 255, .76) !important;
}

/* Final hero composition: clear offer on the left, interactive NIKARI field on the right. */
@media (min-width: 901px) {
  .home-hero {
    min-height: clamp(690px, 78svh, 760px);
  }

  .home-hero .hero-content {
    width: min(48vw, 610px);
    margin-right: auto;
    margin-left: max(32px, calc((100vw - 1200px) / 2));
    padding: clamp(1.8rem, 3vw, 2.6rem);
    background: linear-gradient(135deg, rgba(5, 12, 18, .96), rgba(8, 20, 29, .9));
    border: 1px solid rgba(232, 214, 157, .28);
    border-left: 2px solid rgba(232, 214, 157, .62);
    border-radius: 1.35rem;
    box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, .28);
    backdrop-filter: blur(16px);
  }

  .home-hero .hero-content > h1 {
    max-width: 12.5ch;
    font-size: clamp(2.55rem, 3.65vw, 4rem);
  }

  .home-hero .hero-content .lead,
  .home-hero .hero-positioning {
    max-width: 56ch;
  }

  .home-hero .hero-network {
    top: 0;
    bottom: 0;
    left: 48%;
    width: 50%;
    height: 100%;
  }

  .home-hero .hero-capability-arms {
    display: none;
  }

  .home-hero .hero-core-reset {
    top: 53.2%;
    left: 75%;
  }

  .home-hero .hero-tool-label {
    max-width: min(20vw, 230px);
  }

  .home-hero .hero-tool-label--one {
    top: 20%;
    right: auto;
    bottom: auto;
    left: 52%;
    translate: none;
  }

  .home-hero .hero-tool-label--two {
    top: 20%;
    right: 2.5%;
    bottom: auto;
    left: auto;
    translate: none;
  }

  .home-hero .hero-tool-label--three {
    top: 38%;
    right: auto;
    bottom: auto;
    left: 52%;
    translate: none;
  }

  .home-hero .hero-tool-label--four {
    top: 38%;
    right: 2.5%;
    bottom: auto;
    left: auto;
    translate: none;
  }

  .home-hero .hero-tool-label--five {
    top: 62%;
    right: auto;
    bottom: auto;
    left: 52%;
    translate: none;
  }

  .home-hero .hero-tool-label--six {
    top: 62%;
    right: 2.5%;
    bottom: auto;
    left: auto;
    translate: none;
  }

  .home-hero .hero-tool-label--seven {
    top: 80%;
    right: auto;
    bottom: auto;
    left: 52%;
    translate: none;
  }

  .home-hero .hero-tool-label--eight {
    top: 80%;
    right: 2.5%;
    bottom: auto;
    left: auto;
    translate: none;
  }

  .home-hero .hero-tool-label--nine {
    top: 6%;
    right: auto;
    bottom: auto;
    left: 75%;
    translate: -50% 0;
  }

  .home-hero .hero-tool-label--ten {
    top: auto;
    right: auto;
    bottom: 5%;
    left: 75%;
    translate: -50% 0;
  }

  .home-hero.is-awake .hero-core-logo,
  .home-hero.is-tool-paused .hero-core-logo {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* Compact first section: the real product view leads, the missing capture is a small note. */
@media (min-width: 901px) {
  .product-proof-section {
    padding-top: clamp(3rem, 5vw, 4.5rem) !important;
    padding-bottom: clamp(3rem, 5vw, 4.5rem) !important;
  }

  .product-proof-layout {
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.65fr);
    grid-template-areas:
      "copy product"
      "note product";
    column-gap: clamp(2rem, 4vw, 4rem);
    row-gap: 1.15rem;
    align-items: center;
  }

  .product-proof-layout > .section-heading {
    grid-area: copy;
    align-self: end;
  }

  .product-proof-layout > .section-heading h2 {
    max-width: 11ch;
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 3.2vw, 3.35rem);
  }

  .product-proof-layout > .section-heading > p:last-child {
    max-width: 38ch;
    margin-bottom: 0;
    font-size: .98rem;
  }

  .product-proof-window {
    grid-area: product;
  }

  .product-capture-needed {
    grid-area: note;
    align-self: start;
    padding: 1rem 1.1rem;
    background: rgba(255, 253, 249, .64);
    border-style: solid;
  }

  .product-capture-needed > span {
    margin-bottom: .35rem;
    font-size: .66rem;
  }

  .product-capture-needed h3 {
    margin-bottom: .35rem;
    font-size: 1.08rem;
    font-weight: 700;
  }

  .product-capture-needed p {
    margin-bottom: 0;
    font-size: .86rem;
    line-height: 1.48;
  }
}

@media (max-width: 900px) {
  .product-proof-section {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .product-proof-layout {
    grid-template-columns: 1fr;
  }

  .product-proof-layout > .section-heading,
  .product-proof-window,
  .product-capture-needed {
    grid-column: 1;
  }

  .product-capture-needed {
    padding: 1rem;
  }
}

@media (min-width: 901px) {
  .home-hero .hero-content > h1 {
    max-width: none;
    font-size: clamp(2.35rem, 3.25vw, 3.55rem);
  }

  .product-proof-layout {
    grid-template-areas:
      "copy product"
      "copy note";
  }

  .product-proof-layout > .section-heading {
    align-self: center;
  }

  .product-proof-layout > .section-heading h2 {
    max-width: none;
    font-size: clamp(2rem, 2.8vw, 3rem);
  }

  .product-capture-needed {
    display: grid;
    grid-template-columns: minmax(10rem, .75fr) minmax(0, 1.25fr);
    column-gap: 1rem;
    align-items: start;
  }

  .product-capture-needed > span {
    grid-column: 1 / -1;
  }

  .product-capture-needed h3,
  .product-capture-needed p {
    margin: 0;
  }
}

/* Restore the generous hero copy while keeping the right-side reveal experience. */
@media (min-width: 901px) {
  .home-hero .hero-content {
    width: min(calc(100% - 64px), 1200px);
    margin-right: auto;
    margin-left: auto;
    padding: clamp(2.8rem, 5vw, 4.2rem) clamp(2rem, 3.2vw, 3rem);
    background: linear-gradient(100deg, rgba(5, 12, 18, .95) 0%, rgba(7, 16, 24, .89) 53%, rgba(7, 16, 24, .34) 78%, transparent 100%);
    border: 0;
    border-left: 1px solid rgba(232, 214, 157, .48);
    border-radius: 1.4rem;
    box-shadow: none;
    backdrop-filter: blur(8px);
  }

  .home-hero .hero-content > h1 {
    max-width: 980px;
    font-size: clamp(2.75rem, 4.35vw, 4.45rem);
  }

  .home-hero .hero-content .lead {
    max-width: 900px;
  }

  .home-hero .hero-positioning {
    max-width: 720px;
  }

  .home-hero.is-awake .hero-content,
  .home-hero.is-tool-paused .hero-content {
    opacity: .14;
    filter: blur(1px);
    transform: translate3d(-20px, 0, 0);
  }

  .home-hero .hero-motion-toggle {
    right: max(32px, calc((100vw - 1320px) / 2));
    bottom: 1rem;
    left: auto;
  }

  .home-hero:is(.is-awake, .is-tool-paused) .hero-interactive {
    z-index: 5;
  }

  .home-hero:is(.is-awake, .is-tool-paused) .hero-core-logo--asset {
    filter: drop-shadow(0 0 10px rgba(247, 242, 236, .55)) drop-shadow(0 0 28px rgba(137, 208, 251, .58));
  }
}


/* Price page: dark, calm surfaces without beige section backgrounds. */
.preise-page .price-hero,
.preise-page main > .cloud-section--light,
.preise-page .running-costs-section,
.preise-page .tinted-section::before {
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(71, 142, 188, .14), transparent 32%),
    linear-gradient(145deg, #101e2a, #071018 74%);
}

.preise-page .price-hero h1,
.preise-page .price-hero .lead,
.preise-page .pricing-mode-note,
.preise-page main > .cloud-section--light h2,
.preise-page main > .cloud-section--light h3,
.preise-page .running-costs-section h2,
.preise-page .running-costs-section h3,
body.preise-page .running-costs-section,
body.preise-page .running-costs-section h2,
body.preise-page .running-costs-section .running-cost-card h3 {
  color: #fff !important;
}

.preise-page .price-hero .lead,
.preise-page .pricing-mode-note,
.preise-page main > .cloud-section--light .section-heading > p:last-child,
.preise-page main > .cloud-section--light .scope-grid p,
.preise-page .package-table-hint,
.preise-page .scope-evidence-note,
body.preise-page .running-costs-section .section-heading > p:last-child,
body.preise-page .running-costs-section .running-cost-card p,
body.preise-page .running-costs-section .running-cost-note {
  color: rgba(255, 255, 255, .72) !important;
}

.preise-page .pricing-mode-switch {
  background: rgba(5, 13, 20, .72);
  border-color: rgba(225, 201, 133, .55);
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
}

.preise-page .pricing-mode-switch button {
  color: rgba(255, 255, 255, .82);
}

.preise-page .pricing-audience-switch button[aria-selected="true"] {
  color: #0c1721;
}

.preise-page .pilot-card,
.preise-page .running-cost-card,
.preise-page main > .cloud-section--light .scope-grid article,
.preise-page .package-table-wrap {
  color: #fff;
  background: rgba(8, 18, 27, .76);
  border-color: rgba(154, 210, 244, .2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22), inset 0 1px rgba(255, 255, 255, .04);
}

.preise-page main > .cloud-section--light .scope-grid article h3,
.preise-page main > .cloud-section--light .scope-grid article span {
  color: #fff;
}

.preise-page .package-table {
  color: rgba(255, 255, 255, .82);
}

.preise-page .package-table th,
.preise-page .package-table td {
  border-color: rgba(154, 210, 244, .14);
}

.preise-page .package-table tbody th,
.preise-page .package-table tbody tr:nth-child(even) td {
  color: #fff;
  background: rgba(255, 255, 255, .045);
}

.preise-page .running-cost-note {
  background: rgba(92, 161, 204, .08);
  border: 1px solid rgba(154, 210, 244, .14);
}

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

.care-subheading {
  margin: clamp(3rem, 6vw, 5rem) 0 1.25rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

@media (max-width: 1050px) {
  .care-grid--three { grid-template-columns: 1fr; }
}

.preise-page .care-grid--three .care-card > strong {
  font-size: clamp(1.65rem, 2.15vw, 2.4rem);
}

/* Price page refinement: one continuous canvas, compact rhythm and centred brand hero. */
body.preise-page,
.preise-page main {
  background: #08131c;
}

.preise-page main {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 74% 6%, rgba(78, 151, 195, .13), transparent 27rem),
    radial-gradient(circle at 12% 48%, rgba(63, 122, 160, .08), transparent 30rem),
    linear-gradient(180deg, #0d1a25 0%, #08131c 42%, #0b1822 100%);
}

.preise-page .price-hero,
.preise-page .pilot-detail-section,
.preise-page .care-section,
.preise-page main > .cloud-section--light,
.preise-page .running-costs-section,
.preise-page .tinted-section::before {
  background: transparent;
}

.preise-page main > .section,
.preise-page [data-price-panel] > .section {
  position: relative;
  padding-top: clamp(3.25rem, 5.8vw, 5rem);
  padding-bottom: clamp(3.25rem, 5.8vw, 5rem);
}

.preise-page main > .section::after,
.preise-page [data-price-panel] > .section::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 100vw;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent 5%, rgba(156, 216, 255, .12) 28%, rgba(232, 214, 157, .2) 50%, rgba(156, 216, 255, .12) 72%, transparent 95%);
  transform: translateX(50%);
}

.preise-page .price-hero {
  color: #fff;
  background:
    radial-gradient(circle at 50% 12%, rgba(117, 192, 236, .16), transparent 28rem),
    linear-gradient(180deg, rgba(15, 31, 43, .98), rgba(8, 19, 28, .96));
  border-bottom: 1px solid rgba(232, 214, 157, .2);
}

.preise-page .price-hero > .price-hero-inner {
  width: min(calc(100% - 2rem), 68rem);
  min-height: auto;
  padding: clamp(3rem, 6vw, 5.4rem) 0 clamp(3.25rem, 6vw, 5.5rem);
  justify-items: center;
  text-align: center;
}

.price-hero-mark {
  width: clamp(5.5rem, 8vw, 7.4rem);
  margin-bottom: 1.1rem;
  display: grid;
  place-items: center;
}

.price-hero-mark img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 1.4rem rgba(137, 208, 251, .22));
}

.preise-page .price-hero h1 {
  max-width: 15ch;
  margin: 0 auto .8rem;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
}

.preise-page .price-hero .lead {
  max-width: 47rem;
  margin: 0 auto 1.5rem;
}

.preise-page .price-hero .actions {
  justify-content: center;
  margin-bottom: 1.6rem;
}

.preise-page .price-control-stack {
  width: min(100%, 46rem);
  margin-right: auto;
  margin-left: auto;
  gap: .75rem;
}

.preise-page .pricing-mode-note {
  max-width: 45rem;
  margin: .9rem auto 0;
  font-size: .9rem;
}

.preise-page .section-heading {
  margin-bottom: clamp(1.7rem, 3vw, 2.7rem);
}

.preise-page .pilot-layout {
  gap: clamp(1.5rem, 4vw, 3.75rem);
}

.preise-page .pilot-card,
.preise-page .care-card {
  padding: clamp(1.45rem, 3vw, 2.35rem);
}

.preise-page .pilot-card > strong,
.preise-page .care-card > strong {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.preise-page .pilot-card > span,
.preise-page .care-card > span {
  margin-bottom: 1rem;
}

.preise-page .care-grid,
.preise-page .running-costs-grid,
.preise-page .scope-grid {
  gap: 1rem;
}

.preise-page .care-note {
  margin-top: 1.25rem;
}

.preise-page .care-subheading {
  margin: clamp(2.2rem, 4vw, 3.4rem) 0 1rem;
}

.preise-page .running-cost-card,
.preise-page main > .cloud-section--light .scope-grid article,
.preise-page .cloud-fact-card {
  min-height: 0;
  padding: clamp(1.3rem, 2.5vw, 2rem);
}

.preise-page .closing-cta {
  margin-top: 0;
  padding: clamp(1.75rem, 4vw, 3.2rem);
}

.cloud-choice-section {
  color: #fff;
}

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

.cloud-fact-card {
  background: rgba(8, 18, 27, .72);
  border: 1px solid rgba(154, 210, 244, .18);
  border-radius: 1.15rem;
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
}

.cloud-fact-card > span {
  display: block;
  margin-bottom: .8rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.cloud-fact-card h3 {
  margin-bottom: .55rem;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.cloud-fact-card p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
}

.official-facts {
  margin-top: 1rem;
  padding: 1.15rem 1.3rem;
  display: grid;
  grid-template-columns: minmax(8rem, .35fr) minmax(0, 1.45fr);
  gap: .55rem 1.25rem;
  align-items: start;
  color: rgba(255, 255, 255, .72);
  background: rgba(72, 137, 177, .08);
  border: 1px solid rgba(154, 210, 244, .14);
  border-radius: 1rem;
}

.official-facts strong {
  color: #fff;
}

.official-facts p {
  margin: 0;
}

.official-facts p:last-child {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1rem;
}

.official-facts a {
  color: #e8d69d;
  text-underline-offset: .22rem;
}

@media (max-width: 720px) {
  .preise-page .price-hero > .price-hero-inner {
    padding-top: 2.2rem;
    padding-bottom: 2.8rem;
  }

  .price-hero-mark {
    width: 4.8rem;
    margin-bottom: .8rem;
  }

  .preise-page .price-hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .preise-page main > .section,
  .preise-page [data-price-panel] > .section {
    padding-top: 2.7rem;
    padding-bottom: 2.7rem;
  }

  .cloud-facts-grid,
  .official-facts {
    grid-template-columns: 1fr;
  }

  .official-facts p:last-child {
    grid-column: 1;
  }
}

/* Shared NIKARI badge in the header. */
.brand .brand-mark-full {
  width: 68px;
  height: 56px;
  display: block;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* Home hero: restore the animated inner system to the geometric centre. */
@media (min-width: 901px) {
  .home-hero .hero-network {
    top: 0;
    right: auto;
    bottom: 0;
    left: 12%;
    width: 76%;
    height: 100%;
  }

  .home-hero .hero-core-reset {
    left: 50%;
  }

  .home-hero .hero-tool-label--one { top: 14%; right: 72%; bottom: auto; left: auto; translate: none; }
  .home-hero .hero-tool-label--two { top: 12%; right: auto; bottom: auto; left: 50%; translate: -50% 0; }
  .home-hero .hero-tool-label--three { top: 14%; right: auto; bottom: auto; left: 72%; translate: none; }
  .home-hero .hero-tool-label--four { top: 37%; right: 72%; bottom: auto; left: auto; translate: none; }
  .home-hero .hero-tool-label--five { top: 37%; right: auto; bottom: auto; left: 72%; translate: none; }
  .home-hero .hero-tool-label--six { top: 60%; right: 72%; bottom: auto; left: auto; translate: none; }
  .home-hero .hero-tool-label--seven { top: 60%; right: auto; bottom: auto; left: 72%; translate: none; }
  .home-hero .hero-tool-label--eight { top: auto; right: 72%; bottom: 8%; left: auto; translate: none; }
  .home-hero .hero-tool-label--nine { top: auto; right: auto; bottom: 6%; left: 50%; translate: -50% 0; }
  .home-hero .hero-tool-label--ten { top: auto; right: auto; bottom: 8%; left: 72%; translate: none; }
}

/* Price hero: normal copy at left, compact selector card at right. */
.preise-page .price-hero > .price-hero-inner {
  width: min(calc(100% - 4rem), var(--content));
  min-height: auto;
  padding: clamp(3.2rem, 6vw, 5.4rem) 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(32rem, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  justify-items: stretch;
  text-align: left;
}

.preise-page .price-hero h1 {
  max-width: 11ch;
  margin: 0 0 .9rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.preise-page .price-hero .lead {
  max-width: 38rem;
  margin: 0 0 1.5rem;
}

.preise-page .price-hero .actions {
  justify-content: flex-start;
  margin-bottom: 0;
}

.price-hero-selector {
  padding: clamp(1.35rem, 2.4vw, 2rem);
  background: rgba(5, 13, 20, .62);
  border: 1px solid rgba(232, 214, 157, .25);
  border-radius: 1.35rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .2), inset 0 1px rgba(255, 255, 255, .04);
  backdrop-filter: blur(16px);
}

.price-selector-label {
  margin: 0 0 .85rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.preise-page .price-control-stack {
  width: 100%;
  grid-template-columns: 1fr;
  gap: .7rem;
}

.preise-page .pricing-mode-switch button[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(135deg, #28465e, #142b3d);
}

.preise-page .pricing-mode-note {
  max-width: none;
  margin: .9rem 0 0;
}

@media (max-width: 900px) {
  .brand .brand-mark-full {
    width: 60px;
    height: 50px;
  }

  .preise-page .price-hero > .price-hero-inner {
    width: min(calc(100% - 2rem), 44rem);
    padding: 2.6rem 0 3rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .preise-page .price-hero h1 {
    max-width: none;
    font-size: clamp(2.45rem, 11vw, 4rem);
  }
}

@media (min-width: 901px) {
  /* The artwork's visual centre sits at 55% of its SVG viewBox. */
  .home-hero .hero-network { left: 8%; }
}


/* Continuous section transitions: full-width atmosphere without visible content-column seams. */
.preise-page .cloud-section,
.home-page .cloud-section {
  overflow: visible;
}

.preise-page main,
.home-page main {
  overflow: clip;
}

.preise-page main > .section::after,
.preise-page [data-price-panel] > .section::after {
  z-index: 0;
  top: clamp(-7rem, -8vw, -4.5rem);
  right: 50%;
  bottom: auto;
  width: 100vw;
  height: clamp(9rem, 16vw, 15rem);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(90, 165, 207, .095) 0%, rgba(90, 165, 207, .035) 42%, transparent 72%);
  transform: translateX(50%);
}

.preise-page main > .section > :not(.section-clouds),
.preise-page [data-price-panel] > .section > :not(.section-clouds) {
  position: relative;
  z-index: 1;
}

.preise-page .closing-cta {
  background:
    radial-gradient(ellipse at 76% 50%, rgba(96, 173, 218, .12) 0%, rgba(54, 112, 148, .045) 38%, transparent 74%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* The homepage keeps its light and dark chapters, but their edges dissolve into each other. */
.home-page .product-proof-section,
.home-page .examples-section,
.home-page .pricing-teaser,
.home-page .entry-section,
.home-page .nikari-universe,
.home-page .dark-band,
.home-page .pilot-section {
  position: relative;
}

.home-page .product-proof-section::after,
.home-page .examples-section::after,
.home-page .pricing-teaser::after,
.home-page .nikari-universe::after,
.home-page .dark-band::after {
  position: absolute;
  z-index: 0;
  top: clamp(-8rem, -9vw, -5rem);
  left: 50%;
  width: 100vw;
  height: clamp(8rem, 14vw, 13rem);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.home-page .product-proof-section::after,
.home-page .examples-section::after,
.home-page .pricing-teaser::after {
  background: linear-gradient(180deg, transparent 0%, rgba(235, 240, 242, .48) 48%, rgba(247, 242, 233, .96) 100%);
}

.home-page .nikari-universe::after,
.home-page .dark-band::after {
  background: linear-gradient(180deg, transparent 0%, rgba(10, 23, 33, .72) 52%, rgba(7, 16, 24, .98) 100%);
}

.home-page .product-proof-section > *,
.home-page .examples-section > :not(.section-clouds),
.home-page .pricing-teaser > :not(.section-clouds),
.home-page .nikari-universe > :not(.section-clouds),
.home-page .dark-band > :not(.section-clouds) {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .preise-page main > .section::after,
  .preise-page [data-price-panel] > .section::after {
    top: -4.25rem;
    height: 8.5rem;
  }

  .home-page .product-proof-section::after,
  .home-page .examples-section::after,
  .home-page .pricing-teaser::after,
  .home-page .nikari-universe::after,
  .home-page .dark-band::after {
    top: -4.5rem;
    height: 7.5rem;
  }
}


/* Homepage full-width chapter canvases: content stays centred, surfaces reach the viewport edge. */
.home-page .product-proof-section,
.home-page .split-section,
.home-page .examples-section,
.home-page .pricing-teaser,
.home-page .entry-section {
  isolation: isolate;
  background: transparent;
}

.home-page .product-proof-section::before,
.home-page .split-section::before,
.home-page .examples-section::before,
.home-page .pricing-teaser::before,
.home-page .entry-section::before {
  position: absolute;
  z-index: -1;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  content: "";
  transform: translateX(-50%);
}

.home-page .product-proof-section::before {
  background: linear-gradient(145deg, #f7f2e9 0%, #fffdf9 58%, #e8eef2 100%);
}

.home-page .split-section::before,
.home-page .examples-section::before,
.home-page .pricing-teaser::before,
.home-page .entry-section::before {
  background:
    radial-gradient(circle at 82% 8%, rgba(143, 184, 208, .16), transparent 32rem),
    linear-gradient(145deg, #f7f2e9 0%, #fffdf9 64%, #edf2f4 100%);
}

.home-page .closing-cta {
  background:
    radial-gradient(ellipse at 76% 50%, rgba(96, 173, 218, .12) 0%, rgba(54, 112, 148, .045) 38%, transparent 74%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}


/* Keep light homepage chapters readable even when the visitor uses a dark system theme. */
.home-page .product-proof-section,
.home-page .split-section,
.home-page .examples-section,
.home-page .pricing-teaser,
.home-page .entry-section {
  --ink: #182335;
  --ink-soft: #506072;
  --navy: #263344;
  --navy-deep: #101923;
  --blue: #385c78;
  --blue-soft: #e9eff3;
  --gold-strong: #9d7b35;
  --paper: #f7f2e9;
  --paper-warm: #eee5d7;
  --surface: #fffdf9;
  --line: rgba(38, 51, 68, .16);
  --line-strong: rgba(38, 51, 68, .28);
  --shadow: 0 22px 64px rgba(17, 30, 45, .12);
  --shadow-soft: 0 12px 34px rgba(17, 30, 45, .08);
  color: var(--ink);
}


/* Full-width dark demo chapter without a visible 1200px background boundary. */
.home-page .pilot-section {
  isolation: isolate;
  background: transparent;
}

.home-page .pilot-section::before {
  position: absolute;
  z-index: -1;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  content: "";
  background:
    radial-gradient(circle at 82% 18%, rgba(83, 159, 207, .22), transparent 34%),
    linear-gradient(145deg, #101e2a, #071018 74%);
  transform: translateX(-50%);
}


/* Homepage visual system: one continuous NIKARI blue canvas below the unchanged hero. */
.home-page main {
  background:
    radial-gradient(circle at 78% 18%, rgba(75, 150, 194, .12), transparent 32rem),
    radial-gradient(circle at 12% 64%, rgba(49, 104, 139, .1), transparent 34rem),
    linear-gradient(180deg, #0d1b26 0%, #08131c 48%, #0b1822 100%);
}

.home-page .product-proof-section,
.home-page .split-section,
.home-page .examples-section,
.home-page .pricing-teaser,
.home-page .entry-section,
.home-page .pilot-section {
  --ink: #f4f7fa;
  --ink-soft: rgba(226, 234, 240, .72);
  --navy: #1b3447;
  --navy-deep: #08131c;
  --blue: #9ccfeb;
  --blue-soft: #142837;
  --gold-strong: #dcc78d;
  --paper: #0b1822;
  --paper-warm: #102331;
  --surface: rgba(11, 27, 39, .84);
  --line: rgba(154, 210, 244, .17);
  --line-strong: rgba(232, 214, 157, .28);
  --shadow: 0 22px 64px rgba(0, 0, 0, .24);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, .18);
  color: var(--ink);
}

.home-page .product-proof-section::before,
.home-page .split-section::before,
.home-page .examples-section::before,
.home-page .pricing-teaser::before,
.home-page .entry-section::before,
.home-page .pilot-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    radial-gradient(circle at 82% 14%, rgba(83, 159, 207, .11), transparent 31rem),
    linear-gradient(145deg, rgba(16, 34, 47, .98), rgba(7, 16, 24, .98) 74%);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.home-page .product-proof-section::after,
.home-page .examples-section::after,
.home-page .pricing-teaser::after,
.home-page .nikari-universe::after,
.home-page .dark-band::after {
  background:
    radial-gradient(ellipse at 50% 48%, rgba(96, 173, 218, .12) 0%, rgba(54, 112, 148, .045) 42%, transparent 74%);
}

body.home-page .product-proof-section,
body.home-page .product-proof-section h2,
body.home-page .product-proof-section h3,
.home-page .split-section h2,
.home-page .split-section h3,
.home-page .examples-section h2,
.home-page .examples-section h3,
.home-page .pricing-teaser h2,
.home-page .pricing-teaser h3,
.home-page .entry-section h2,
.home-page .entry-section h3 {
  color: var(--ink) !important;
}

body.home-page .product-proof-section .section-heading > p:last-child,
body.home-page .product-proof-section .product-capture-needed p,
.home-page .split-section .text-stack,
.home-page .split-section .audience-quick-grid p,
.home-page .split-section .audience-setup-note,
.home-page .examples-section .section-heading > p:last-child,
.home-page .examples-section .example-card p,
.home-page .examples-section .example-card small,
.home-page .pricing-teaser .section-heading > p:last-child,
.home-page .pricing-teaser .price-teaser-card p,
.home-page .pricing-teaser .price-teaser-card > span,
.home-page .entry-section .closing-cta p:not(.kicker) {
  color: var(--ink-soft) !important;
}

.home-page .product-capture-needed,
.home-page .audience-quick-grid article,
.home-page .example-card,
.home-page .price-teaser-card {
  background: rgba(9, 23, 34, .8);
  border-color: rgba(154, 210, 244, .17);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035), 0 18px 48px rgba(0, 0, 0, .16);
}

.home-page .product-capture-needed {
  border-style: solid;
}

.home-page .price-teaser-card.featured {
  background: linear-gradient(145deg, rgba(29, 58, 78, .94), rgba(10, 25, 36, .94));
  border-color: rgba(232, 214, 157, .3);
}

.home-page .closing-cta {
  background:
    radial-gradient(ellipse at 76% 50%, rgba(96, 173, 218, .12) 0%, rgba(54, 112, 148, .045) 38%, transparent 74%);
}

.home-page .product-proof-section .section-heading,
.home-page .split-section > div:first-of-type,
.home-page .examples-section .section-heading,
.home-page .pricing-teaser > .section-heading,
.home-page .entry-section .closing-cta {
  border-top: 1px solid rgba(154, 210, 244, .15);
  padding-top: clamp(1.1rem, 2vw, 1.6rem);
}

.home-page .section-clouds {
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}


/* Refined hero copy and calm blue chapters without the repeated tile grid. */
.home-page .product-proof-section::before,
.home-page .split-section::before,
.home-page .examples-section::before,
.home-page .pricing-teaser::before,
.home-page .entry-section::before,
.home-page .pilot-section::before {
  background:
    radial-gradient(circle at 82% 14%, rgba(83, 159, 207, .12), transparent 31rem),
    radial-gradient(circle at 10% 78%, rgba(55, 111, 146, .08), transparent 34rem),
    linear-gradient(145deg, rgba(16, 34, 47, .985), rgba(7, 16, 24, .985) 74%);
  background-size: auto;
}

.home-page .nikari-universe::before {
  background-image: none;
}

.home-hero .hero-content {
  position: relative;
  isolation: isolate;
  padding-left: clamp(2rem, 4vw, 3.5rem);
  background: none;
  border: 0;
  border-left: 1px solid rgba(232, 214, 157, .48);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.home-hero .hero-content::before {
  position: absolute;
  z-index: -1;
  top: -2rem;
  right: -5rem;
  bottom: -2rem;
  left: -2rem;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 46%, rgba(4, 11, 17, .96) 0%, rgba(5, 14, 21, .88) 46%, rgba(8, 20, 29, .52) 66%, transparent 84%);
  filter: blur(18px);
}

.home-hero .hero-eyebrow {
  display: flex;
  gap: .8rem;
  align-items: center;
  letter-spacing: .14em;
}

.home-hero .hero-eyebrow::before {
  width: 2.2rem;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(232, 214, 157, .1));
}

.home-hero .hero-content > h1 {
  max-width: 15ch;
  margin-top: 1.15rem;
  line-height: 1.03;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.home-hero .hero-content .lead {
  max-width: 61ch;
  margin-top: 1.3rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(137, 208, 251, .5);
}

.home-hero .hero-positioning {
  max-width: 66ch;
  color: rgba(247, 242, 236, .66);
}

.home-hero .actions {
  margin-top: 1.7rem;
}

@media (max-width: 720px) {
  .home-hero .hero-content {
    padding: 1.5rem 1.2rem 1.7rem 1.45rem;
    background: none;
    border: 0;
    border-left: 1px solid rgba(232, 214, 157, .42);
    border-radius: 0;
  }

  .home-hero .hero-content::before {
    top: -.75rem;
    right: -1rem;
    bottom: -.75rem;
    left: -.8rem;
    background: radial-gradient(ellipse at 32% 46%, rgba(4, 11, 17, .96) 0%, rgba(5, 14, 21, .88) 62%, transparent 94%);
    filter: blur(10px);
  }

  .home-hero .hero-eyebrow {
    display: block;
  }

  .home-hero .hero-eyebrow::before {
    display: none;
  }

  .home-hero .hero-content .lead {
    padding-left: .8rem;
  }
}

/* Selected hero direction: 05 Bühne. The copy stays unchanged and opens onto the cloud field. */
@media (min-width: 901px) {
  .home-hero .hero-content.hero-stage {
    width: min(calc(100% - 96px), 1320px);
    min-height: clamp(34rem, 69svh, 42rem);
    margin: 0 auto;
    padding: clamp(4.2rem, 8vh, 6.5rem) clamp(1.5rem, 3vw, 3rem) clamp(2.6rem, 5vh, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-hero .hero-content.hero-stage::before {
    top: 1.25rem;
    right: 37%;
    bottom: 1.25rem;
    left: -8rem;
    background: radial-gradient(ellipse at 52% 46%, rgba(4, 11, 17, .88) 0%, rgba(5, 14, 21, .62) 48%, transparent 78%);
    filter: blur(24px);
  }

  .home-hero .hero-stage-headline {
    max-width: 62rem;
  }

  .home-hero .hero-stage .hero-eyebrow {
    margin-bottom: 1.25rem;
    color: var(--gold-strong);
  }

  .home-hero .hero-stage .hero-eyebrow::before {
    display: none;
  }

  .home-hero .hero-stage h1 {
    max-width: 14.5ch;
    margin: 0;
    font-size: clamp(3.45rem, 5.3vw, 5.85rem);
    line-height: 1.01;
    letter-spacing: -.044em;
    text-wrap: balance;
  }

  .home-hero .hero-stage-detail {
    width: min(48rem, 62%);
    display: block;
    padding-top: clamp(1.4rem, 3vh, 2.4rem);
    border-top: 1px solid rgba(232, 214, 157, .28);
  }

  .home-hero .hero-stage .lead {
    max-width: 62ch;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .home-hero .hero-stage .hero-positioning {
    max-width: 43ch;
    margin: 0 0 .15rem;
  }

  .home-hero .hero-stage .actions {
    margin-top: 1.4rem;
  }
}

@media (max-width: 900px) {
  .home-hero .hero-content.hero-stage {
    width: min(calc(100% - 2rem), 44rem);
    padding: clamp(2.4rem, 7vw, 3.5rem) 0 clamp(2.2rem, 7vw, 3.2rem);
    background: none;
    border: 0;
    border-radius: 0;
  }

  .home-hero .hero-content.hero-stage::before {
    top: 0;
    right: -1rem;
    bottom: 0;
    left: -1rem;
    background: radial-gradient(ellipse at 38% 46%, rgba(4, 11, 17, .9) 0%, rgba(5, 14, 21, .66) 58%, transparent 92%);
    filter: blur(14px);
  }

  .home-hero .hero-stage .hero-eyebrow {
    margin-bottom: 1rem;
    color: var(--gold-strong);
  }

  .home-hero .hero-stage .hero-eyebrow::before {
    display: none;
  }

  .home-hero .hero-stage h1 {
    max-width: 14ch;
    margin: 0;
    line-height: 1.02;
    letter-spacing: -.038em;
  }

  .home-hero .hero-stage-detail {
    margin-top: clamp(2.2rem, 8vw, 3.5rem);
    padding-top: 1.4rem;
    border-top: 1px solid rgba(232, 214, 157, .28);
  }

  .home-hero .hero-stage .lead {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .home-hero .hero-stage .hero-positioning {
    margin: 1.35rem 0 0;
  }

  .home-hero .hero-stage .actions {
    margin-top: 1.35rem;
  }
}

/* Continuous homepage atmosphere: one blue canvas, varied mist, no hard chapter seams. */
.home-page main {
  background:
    radial-gradient(ellipse at 74% 10%, rgba(69, 145, 190, .13), transparent 30rem),
    radial-gradient(ellipse at 16% 42%, rgba(41, 92, 124, .1), transparent 36rem),
    radial-gradient(ellipse at 80% 78%, rgba(63, 130, 169, .1), transparent 34rem),
    linear-gradient(180deg, #0d1b26 0%, #0a1721 28%, #07121b 62%, #0b1822 100%);
}

.home-page .product-proof-section::before,
.home-page .split-section::before,
.home-page .examples-section::before,
.home-page .pricing-teaser::before,
.home-page .entry-section::before,
.home-page .pilot-section::before {
  background: transparent;
}

.home-page .nikari-universe,
.home-page .dark-band {
  background: transparent;
}

.home-page .product-proof-section::before {
  background:
    radial-gradient(ellipse at 82% 20%, rgba(97, 172, 214, .1), transparent 38%),
    radial-gradient(ellipse at 8% 86%, rgba(197, 169, 105, .045), transparent 30%);
}

.home-page .split-section::before {
  background:
    radial-gradient(ellipse at 14% 48%, rgba(66, 137, 179, .12), transparent 34%),
    radial-gradient(ellipse at 88% 76%, rgba(41, 92, 124, .07), transparent 30%);
}

.home-page .nikari-universe {
  background:
    radial-gradient(ellipse at 83% 15%, rgba(88, 155, 198, .12), transparent 36%),
    radial-gradient(ellipse at 8% 88%, rgba(197, 169, 105, .055), transparent 31%);
}

.home-page .examples-section::before {
  background:
    radial-gradient(ellipse at 20% 18%, rgba(76, 151, 194, .11), transparent 33%),
    radial-gradient(ellipse at 86% 72%, rgba(39, 87, 117, .08), transparent 36%);
}

.home-page .dark-band {
  background:
    radial-gradient(ellipse at 50% 8%, rgba(55, 119, 157, .08), transparent 34%),
    radial-gradient(ellipse at 92% 62%, rgba(78, 151, 195, .08), transparent 32%);
}

.home-page .pilot-section::before {
  background:
    radial-gradient(ellipse at 78% 28%, rgba(83, 159, 207, .12), transparent 36%),
    radial-gradient(ellipse at 9% 82%, rgba(197, 169, 105, .04), transparent 28%);
}

.home-page .pricing-teaser::before {
  background:
    radial-gradient(ellipse at 14% 20%, rgba(70, 143, 186, .11), transparent 34%),
    radial-gradient(ellipse at 84% 76%, rgba(42, 93, 125, .07), transparent 38%);
}

.home-page .entry-section::before {
  background: radial-gradient(ellipse at 66% 46%, rgba(83, 159, 207, .1), transparent 42%);
}

.home-page .product-proof-section::after {
  background: radial-gradient(ellipse at 72% 48%, rgba(113, 186, 226, .1), transparent 70%);
}

.home-page .nikari-universe::after {
  background: radial-gradient(ellipse at 24% 52%, rgba(70, 143, 186, .09), transparent 72%);
}

.home-page .examples-section::after {
  background: radial-gradient(ellipse at 78% 52%, rgba(77, 151, 194, .1), transparent 72%);
}

.home-page .dark-band::after {
  background: radial-gradient(ellipse at 36% 52%, rgba(55, 119, 157, .08), transparent 72%);
}

.home-page .pricing-teaser::after {
  background: radial-gradient(ellipse at 64% 52%, rgba(70, 143, 186, .08), transparent 72%);
}

.home-page .cloud-section--quiet .section-clouds {
  opacity: .25;
}

.home-page .cloud-section--reverse .section-clouds {
  transform: scaleX(-1) translateZ(0);
}

/* The NIKARI mark itself is the return control; no separate yellow centre point is drawn. */
.home-hero .hero-core-reset {
  width: clamp(8rem, 13vw, 11rem);
  height: clamp(6rem, 10vw, 8.5rem);
  background: transparent;
  border: 0;
  border-radius: 1rem;
  box-shadow: none;
}

.home-hero .hero-core-reset > span,
.home-hero .hero-node--core .core-point {
  display: none;
}

.home-hero .hero-core-reset:is(:hover, :focus-visible) {
  border: 0;
  box-shadow: none;
  transform: translate(-50%, -50%) scale(1);
}

.home-hero .hero-core-reset:focus-visible {
  outline: 2px solid rgba(232, 214, 157, .74);
  outline-offset: .35rem;
}

@media (max-width: 620px) {
  .home-hero .hero-core-reset {
    width: 7.5rem;
    height: 6rem;
  }

  .home-page .product-proof-section::after,
  .home-page .examples-section::after,
  .home-page .pricing-teaser::after,
  .home-page .nikari-universe::after,
  .home-page .dark-band::after {
    top: -5.5rem;
    height: 10rem;
  }
}

/* Refined inner hero sequence: compact orbit, readable holds and a dedicated mobile stage. */
.home-hero:is(.is-awake, .is-tool-paused) .hero-core-logo--asset {
  transform: scale(.72);
  transform-origin: center;
}

.hero-tool-progress {
  position: absolute;
  z-index: 6;
  right: 50%;
  bottom: 1.4rem;
  width: min(15rem, 30vw);
  display: grid;
  gap: .45rem;
  color: rgba(224, 238, 247, .7);
  font-size: .61rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  translate: 50% 5px;
  transition: opacity 420ms ease, translate 420ms ease;
}

.home-hero:is(.is-awake, .is-tool-paused, .is-mobile-experience) .hero-tool-progress {
  opacity: 1;
  translate: 50% 0;
}

.hero-tool-progress i {
  height: 2px;
  display: block;
  overflow: hidden;
  background: rgba(145, 202, 236, .13);
  border-radius: 999px;
}

.hero-tool-progress b {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, rgba(137, 208, 251, .42), rgba(232, 214, 157, .82));
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-tool-progress b.is-running {
  animation: hero-tool-hold var(--tool-hold, 7600ms) linear forwards;
}

.home-hero:is(.is-tool-paused, .is-motion-paused) .hero-tool-progress b {
  animation-play-state: paused;
}

.home-hero.is-tool-changing .hero-tool-progress {
  opacity: .42;
}

.home-hero .hero-tool-label.is-changing {
  opacity: .06;
  filter: blur(2px);
  transform: translateY(5px) scale(.94);
}

@keyframes hero-tool-hold {
  to { transform: scaleX(1); }
}

@keyframes nikari-mobile-tool-focus {
  0%, 13% {
    color: #fff;
    border-color: rgba(232, 214, 157, .92);
    box-shadow: 0 0 0 1px rgba(232, 214, 157, .14), 0 10px 28px rgba(0, 0, 0, .28), 0 0 24px rgba(137, 208, 251, .16);
    filter: brightness(1.18);
    transform: translateY(-1px);
  }
  17%, 100% {
    color: #f7fafc;
    border-color: rgba(158, 219, 255, .62);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22), inset 0 1px rgba(255, 255, 255, .045);
    filter: none;
    transform: none;
  }
}

@keyframes nikari-mobile-core-pulse {
  0%, 100% { opacity: .92; }
  50% { opacity: 1; }
}

@media (min-width: 901px) {
  .home-hero .hero-tool-label--one { top: 23%; right: 66.5%; }
  .home-hero .hero-tool-label--two { top: 15%; left: 50%; }
  .home-hero .hero-tool-label--three { top: 23%; left: 66.5%; }
  .home-hero .hero-tool-label--four { top: 39%; right: 66.5%; }
  .home-hero .hero-tool-label--five { top: 39%; left: 66.5%; }
  .home-hero .hero-tool-label--six { top: 56%; right: 66.5%; }
  .home-hero .hero-tool-label--seven { top: 56%; left: 66.5%; }
  .home-hero .hero-tool-label--eight { right: 66.5%; bottom: 17%; }
  .home-hero .hero-tool-label--nine { bottom: 11%; left: 50%; }
  .home-hero .hero-tool-label--ten { bottom: 17%; left: 66.5%; }
}

@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
  .home-hero {
    min-height: 54rem;
  }

  .home-hero .hero-interactive {
    opacity: 1;
  }

  .home-hero.is-mobile-experience .hero-smoke-field {
    opacity: .32;
    filter: contrast(.96) saturate(.66) blur(3px);
    transform: scale(1.08);
  }

  .home-hero .hero-content.hero-stage,
  .home-hero:is(.is-awake, .is-tool-paused, .is-returning, .is-tool-changing) .hero-content.hero-stage {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .home-hero .hero-content.hero-stage > * {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }

  .home-hero .hero-content.hero-stage {
    padding-bottom: 23.5rem;
  }

  .home-hero .hero-network {
    z-index: 3;
    top: auto;
    right: 50%;
    bottom: 2rem;
    left: auto;
    width: 22.5rem;
    height: 18rem;
    opacity: .96;
    filter: saturate(1.14) brightness(1.12);
    transform: translateX(50%) scale(.86);
    transform-origin: center bottom;
  }

  .home-hero.is-returning .hero-network,
  .home-hero.is-mobile-experience .hero-network {
    opacity: .96;
    filter: saturate(1.14) brightness(1.12);
  }

  .home-hero .hero-capability-arms {
    stroke: rgba(158, 219, 255, .55);
    stroke-width: 1.8;
  }

  .home-hero.is-mobile-experience .hero-core-logo--asset,
  .home-hero:is(.is-awake, .is-tool-paused) .hero-core-logo--asset {
    opacity: 0 !important;
    animation: none !important;
    transform: scale(.7) !important;
    filter: drop-shadow(0 0 9px rgba(247, 242, 236, .72)) drop-shadow(0 0 22px rgba(137, 208, 251, .66));
  }

  .home-hero .hero-core-reset {
    top: auto;
    right: auto;
    bottom: 8.7rem;
    left: 50%;
    width: 4.6rem;
    height: 4.6rem;
    background: url("/site/images/nikari-ladescreen.svg") center / contain no-repeat;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(247, 242, 236, .68)) drop-shadow(0 0 24px rgba(137, 208, 251, .7));
    animation: nikari-mobile-core-pulse 4.8s ease-in-out infinite;
  }

  .home-hero.is-mobile-experience .hero-core-reset {
    pointer-events: auto;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .home-hero .hero-tool-cloud {
    inset: auto auto 1rem 50%;
    width: min(calc(100% - 1.25rem), 27rem);
    height: 24rem;
    box-sizing: border-box;
    padding: 4.6rem .9rem 1.2rem;
    grid-template-columns: minmax(0, 1fr) 4.5rem minmax(0, 1fr);
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: .55rem .7rem;
    isolation: isolate;
    opacity: 1;
    transform: translateX(-50%);
    transition: transform 560ms cubic-bezier(.2, .8, .2, 1), filter 560ms ease;
  }

  .home-hero .hero-tool-cloud::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background:
      radial-gradient(circle at 50% 58%, rgba(94, 183, 236, .24), transparent 39%),
      linear-gradient(160deg, rgba(18, 42, 57, .94), rgba(5, 16, 24, .97));
    border: 1px solid rgba(158, 219, 255, .42);
    border-top-color: rgba(232, 214, 157, .58);
    border-radius: 1.5rem;
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .04);
    backdrop-filter: blur(9px);
    transition: background 560ms ease, border-color 560ms ease, box-shadow 560ms ease, backdrop-filter 560ms ease;
  }

  .home-hero.is-returning .hero-tool-cloud,
  .home-hero.is-mobile-experience .hero-tool-cloud {
    opacity: 1;
  }

  .home-hero .hero-tool-label {
    width: 100%;
    max-width: none;
    min-height: 2.65rem;
    padding: .55rem .7rem;
    color: #f7fafc;
    background: linear-gradient(100deg, rgba(7, 20, 29, .98), rgba(16, 42, 57, .96));
    border-color: rgba(158, 219, 255, .62);
    font-size: .66rem;
    line-height: 1.2;
    white-space: normal;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22), inset 0 1px rgba(255, 255, 255, .045);
    transition: opacity 420ms ease, transform 520ms cubic-bezier(.2, .8, .2, 1), filter 420ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    animation: none;
  }

  .home-hero.is-mobile-stage-focus .hero-tool-cloud {
    z-index: 10;
    filter: brightness(1.08) saturate(1.08);
    transform: translateX(-50%) translateY(-.35rem) scale(1.018);
  }

  .home-hero.is-mobile-stage-focus .hero-tool-cloud::before {
    background:
      radial-gradient(circle at 50% 58%, rgba(105, 195, 248, .3), transparent 42%),
      linear-gradient(155deg, rgba(22, 50, 67, .985), rgba(5, 17, 26, .99));
    border-color: rgba(232, 214, 157, .72);
    box-shadow: 0 1.7rem 4.2rem rgba(0, 0, 0, .48), 0 0 0 1px rgba(137, 208, 251, .12), 0 0 3.5rem rgba(90, 172, 221, .16), inset 0 1px rgba(255, 255, 255, .07);
    backdrop-filter: blur(16px) saturate(118%);
  }

  .home-hero.is-mobile-stage-focus .hero-smoke-field {
    opacity: .12;
    filter: contrast(.9) saturate(.52) blur(14px);
    transform: scale(1.14);
  }

  .home-hero.is-mobile-stage-focus .hero-mesh,
  .home-hero.is-mobile-stage-focus .hero-orbit,
  .home-hero.is-mobile-stage-focus .hero-thought-field {
    opacity: .11;
    filter: blur(5px);
  }

  .home-hero.is-mobile-stage-focus .hero-network {
    opacity: .38;
    filter: saturate(.72) brightness(.72) blur(2px);
  }

  .home-hero.is-mobile-stage-focus .hero-core-reset {
    z-index: 11;
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(247, 242, 236, .78)) drop-shadow(0 0 28px rgba(137, 208, 251, .78));
  }

  .home-hero.is-mobile-stage-focus .hero-content.hero-stage {
    opacity: .22 !important;
    filter: blur(7px) saturate(.72) !important;
    transform: scale(.985) !important;
    pointer-events: none;
    transition: opacity 480ms ease, filter 520ms ease, transform 520ms ease !important;
  }

  .home-hero .hero-tool-label .hero-tool-copy,
  .home-hero .hero-tool-label .hero-tool-name,
  .home-hero .hero-tool-label .hero-tool-icon {
    color: #f7fafc;
    opacity: 1 !important;
    visibility: visible;
  }

  .home-hero .hero-tool-label .hero-tool-icon {
    stroke: #9edbff;
  }

  .home-hero .hero-tool-label.is-visible {
    color: #f7fafc;
    opacity: 1 !important;
  }

  .home-hero .hero-tool-label.is-visible.is-changing,
  .home-hero .hero-tool-label.is-changing {
    opacity: .1 !important;
    filter: blur(1.5px);
    transform: translateY(5px) scale(.975);
  }

  .home-hero .hero-tool-label:nth-child(odd) { grid-column: 1; justify-self: stretch; }
  .home-hero .hero-tool-label:nth-child(even) { grid-column: 3; justify-self: stretch; }
  .home-hero .hero-tool-label:nth-child(1),
  .home-hero .hero-tool-label:nth-child(2) { grid-row: 1; }
  .home-hero .hero-tool-label:nth-child(3),
  .home-hero .hero-tool-label:nth-child(4) { grid-row: 2; }
  .home-hero .hero-tool-label:nth-child(5),
  .home-hero .hero-tool-label:nth-child(6) { grid-row: 3; }
  .home-hero .hero-tool-label:nth-child(7),
  .home-hero .hero-tool-label:nth-child(8) { grid-row: 4; }

  .home-hero .hero-tool-label--seven,
  .home-hero .hero-tool-label--eight {
    display: inline-flex;
  }

  .home-hero .hero-tool-label--nine,
  .home-hero .hero-tool-label--ten {
    display: none;
  }

  .home-hero .hero-tool-icon {
    width: 13px;
    height: 13px;
    flex-basis: 13px;
  }

  .home-hero .hero-tool-name {
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .home-hero .hero-tool-label.is-inspected {
    position: absolute;
    z-index: 12;
    inset: 5.3rem .85rem auto;
    width: calc(100% - 1.7rem);
    max-width: none;
    min-height: 7.4rem;
    padding: 1.1rem 1rem;
    align-items: flex-start;
    color: #fff;
    background: linear-gradient(145deg, rgba(15, 42, 58, .99), rgba(6, 18, 27, .99));
    border: 1px solid rgba(232, 214, 157, .72);
    border-radius: 1.1rem;
    box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, .38), inset 0 1px rgba(255, 255, 255, .07);
    transform: none;
    animation: none;
  }

  .home-hero .hero-tool-label.is-inspected .hero-tool-description {
    display: block !important;
    max-height: none !important;
    max-width: 100%;
    margin-top: .55rem;
    color: rgba(239, 247, 252, .9);
    font-size: .76rem;
    line-height: 1.5;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-wrap: anywhere;
    transform: none !important;
  }

  .home-hero.is-tool-paused .hero-tool-label:not(.is-inspected) {
    visibility: hidden;
    opacity: 0 !important;
    pointer-events: none;
  }

  .home-hero.is-tool-paused .hero-core-reset {
    opacity: .24;
    pointer-events: none;
  }

  .home-hero .hero-tool-progress {
    top: 1.2rem;
    right: auto;
    bottom: auto;
    left: 1.1rem;
    width: 9.5rem;
    font-size: .6rem;
    font-weight: 750;
    text-align: left;
    color: #e8d69d;
    opacity: 1 !important;
    translate: 0;
  }

  .home-hero:is(.is-awake, .is-tool-paused, .is-mobile-experience) .hero-tool-progress {
    opacity: 1 !important;
    translate: 0;
  }

  .home-hero.is-tool-changing .hero-tool-progress {
    opacity: 1 !important;
  }

  .home-hero .hero-motion-toggle {
    right: max(1.15rem, calc((100% - 27rem) / 2 + 1.15rem));
    bottom: 22.5rem;
    z-index: 14;
    width: 2rem;
    height: 2rem;
    min-height: 2rem;
    padding: 0;
    font-size: 0;
    color: rgba(255, 255, 255, .84);
    background: rgba(7, 17, 24, .78);
    border-color: rgba(255, 255, 255, .26);
    box-shadow: none;
    backdrop-filter: blur(6px);
  }

  .home-hero .hero-motion-toggle:is(:hover, :focus-visible) {
    color: #fff;
    background: rgba(10, 25, 34, .94);
    border-color: rgba(255, 255, 255, .5);
    box-shadow: none;
    transform: none;
  }

  .home-hero .hero-motion-toggle[aria-pressed="true"] {
    color: #e8d69d;
    background: rgba(10, 25, 34, .94);
    border-color: rgba(232, 214, 157, .42);
  }

  .home-hero .hero-motion-toggle span {
    width: .58rem;
    height: .68rem;
  }

  .home-hero.is-mobile-stage-focus .hero-motion-toggle {
    z-index: 14;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 420px) {
  .home-hero {
    min-height: 55.5rem;
  }

  .home-hero .hero-content.hero-stage {
    padding-bottom: 23.5rem;
  }

  .home-hero .hero-network {
    width: 21.5rem;
    height: 15rem;
  }

  .home-hero .hero-tool-cloud {
    width: calc(100% - 1rem);
    height: 24rem;
    padding: 4.5rem .7rem 1rem;
    grid-template-columns: minmax(0, 1fr) 3.4rem minmax(0, 1fr);
    gap: .45rem .35rem;
  }

  .home-hero .hero-tool-label {
    max-width: none;
    padding-inline: .58rem;
    font-size: .62rem;
  }

  .home-hero .hero-motion-toggle {
    right: .8rem;
    bottom: 22.5rem;
  }
}

@media (max-width: 350px) {
  .home-hero {
    min-height: 62rem;
  }

  .home-hero .hero-content.hero-stage {
    padding-bottom: 25.5rem;
  }

  .home-hero .hero-tool-cloud {
    width: calc(100% - .7rem);
    height: 26rem;
    padding: 4.5rem .55rem 1rem;
    grid-template-columns: minmax(0, 1fr) 2.75rem minmax(0, 1fr);
    gap: .38rem .25rem;
  }

  .home-hero .hero-tool-label {
    min-height: 3rem;
    padding: .48rem .5rem;
    font-size: .58rem;
  }

  .home-hero .hero-tool-icon {
    width: 11px;
    height: 11px;
    flex-basis: 11px;
    margin-right: 4px;
  }

  .home-hero .hero-motion-toggle {
    right: .55rem;
    bottom: 24.5rem;
    padding-inline: .6rem;
    font-size: .57rem;
  }

  .home-hero .hero-core-reset {
    bottom: 9.65rem;
    width: 3.7rem;
    height: 3.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tool-progress b { display: none; }
  .home-hero .hero-tool-label,
  .home-hero .hero-core-reset { animation: none !important; }
  .home-hero .hero-tool-label:first-child {
    border-color: rgba(232, 214, 157, .92);
    box-shadow: 0 0 0 1px rgba(232, 214, 157, .14), 0 10px 28px rgba(0, 0, 0, .28);
  }
}

/* Clickable package comparisons read as controls instead of underlined text links. */
.price-teaser-card .package-compare-button {
  min-height: 2.75rem;
  margin-top: 1.1rem;
  padding: .7rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #eef8ff;
  background: rgba(137, 208, 251, .08);
  border: 1px solid rgba(158, 219, 255, .42);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.price-teaser-card .package-compare-button:is(:hover, :focus-visible) {
  color: #fff;
  background: rgba(137, 208, 251, .15);
  border-color: rgba(158, 219, 255, .72);
  box-shadow: 0 .7rem 1.8rem rgba(0, 0, 0, .18), inset 0 1px rgba(255, 255, 255, .055);
  outline: none;
  transform: translateY(-2px);
}

.price-teaser-card.featured .package-compare-button {
  color: #111d28;
  background: linear-gradient(135deg, #ead9ad, #c5a969);
  border-color: transparent;
}

.price-teaser-card.featured .package-compare-button:is(:hover, :focus-visible) {
  color: #0b1620;
  background: linear-gradient(135deg, #f1e3bc, #d2b774);
  box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .22);
}

@media (max-width: 620px) {
  .price-teaser-card .package-compare-button {
    width: 100%;
  }
}

/* Compact product footer: brand, provider and Swiss origin form one signature. */
.site-footer {
  background:
    radial-gradient(ellipse at 16% 0%, rgba(71, 142, 188, .07), transparent 28rem),
    #0a121a;
}

.site-footer .footer-inner {
  min-height: 0;
  padding: 2.25rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto minmax(0, 1fr);
  gap: clamp(.8rem, 2vw, 1.6rem);
  align-items: center;
}

.site-footer .footer-brand {
  display: block;
  justify-self: start;
  align-items: center;
}

.site-footer .footer-brand > strong {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: .22em;
}

.site-footer .footer-brand > strong::after {
  display: none;
}

.footer-signature {
  display: block;
  justify-self: center;
}

.site-footer .footer-powered {
  min-height: 0;
  padding: .35rem .8rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, .76);
  border: 1px solid transparent;
  border-radius: 1rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-footer .footer-powered:is(:hover, :focus-visible) {
  color: #fff;
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .1);
  outline: none;
}

.site-footer .footer-powered img {
  width: 2.25rem;
  height: 2.25rem;
}

.site-footer .footer-swiss-mark {
  position: relative;
  justify-self: center;
  width: 2rem;
  height: 2rem;
  flex-basis: 2rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: filter 180ms ease, transform 180ms ease;
}

.site-footer .footer-swiss-mark:is(:hover, :focus-visible) {
  background: transparent;
  border-color: transparent;
  filter: brightness(1.12);
  outline: none;
  transform: translateY(-2px);
}

.site-footer .footer-swiss-mark > img {
  width: 1.55rem;
  height: 1.55rem;
}

.site-footer .footer-links {
  padding-left: 0;
  gap: .45rem;
  flex-wrap: nowrap;
  justify-self: end;
  border-left: 0;
}

.site-footer .footer-links a {
  min-height: 2.5rem;
  padding: .62rem .8rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-footer .footer-links a:is(:hover, :focus-visible) {
  color: #fff;
  background: rgba(255, 255, 255, .055);
  text-decoration: none;
  outline: none;
}

@media (max-width: 1040px) {
  .site-footer .footer-inner {
    gap: .75rem;
  }

  .site-footer .footer-links {
    padding-left: 0;
    gap: .1rem;
  }

  .site-footer .footer-links a {
    padding-inline: .58rem;
  }

  .site-footer .footer-powered {
    padding-right: .8rem;
  }
}

@media (max-width: 880px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .site-footer .footer-brand {
    display: none;
  }

  .site-footer .footer-signature {
    order: 1;
  }

  .site-footer .footer-links {
    order: 2;
  }

  .site-footer .footer-swiss-mark {
    order: 3;
  }

  .site-footer .footer-brand,
  .site-footer .footer-swiss-mark,
  .site-footer .footer-signature,
  .site-footer .footer-links {
    justify-self: center;
    justify-content: center;
  }

  .site-footer .footer-links {
    padding: .7rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .site-footer .footer-inner {
    width: min(calc(100% - 2rem), var(--content));
    padding: 2rem 0 1.7rem;
    gap: .9rem;
  }

  .site-footer .footer-brand {
    display: none;
  }

  .site-footer .footer-brand > strong,
  .site-footer .footer-signature {
    justify-content: center;
  }

  .site-footer .footer-brand > strong::after {
    display: none;
  }

  .site-footer .footer-signature {
    width: fit-content;
  }

  .site-footer .footer-powered {
    font-size: .76rem;
  }

  .site-footer .footer-links {
    gap: .15rem .3rem;
  }

  .site-footer .footer-links a {
    padding-inline: .65rem;
  }

  .site-footer .footer-swiss-mark > span {
    right: 0;
    left: auto;
    transform: translateY(6px);
  }

  .site-footer .footer-swiss-mark:is(:hover, :focus-visible, :focus-within, :active) > span {
    transform: none;
  }
}

/* Final responsive alignment: compact controls, a complete tablet tool stage and one footer rhythm. */
.operations-grid--compact {
  gap: 1rem;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.operations-grid--compact article {
  min-height: 0;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 1.2rem;
}

.operations-grid--compact article h3 {
  margin-bottom: .75rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.operations-grid--compact article p {
  font-size: .9rem;
  line-height: 1.65;
}

@media (min-width: 901px) {
  .operations-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .operations-grid--compact article {
    min-height: 15rem;
  }
}

@media (min-width: 621px) and (max-width: 1100px),
       (min-width: 621px) and (hover: none) and (pointer: coarse) {
  .home-hero {
    min-height: 56rem;
    align-items: start;
  }

  .home-hero .hero-content.hero-stage {
    padding-bottom: 25rem;
  }

  .home-hero .hero-content.hero-stage > * {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .home-hero .hero-interactive,
  .home-hero .hero-tool-cloud,
  .home-hero.is-mobile-experience .hero-tool-cloud {
    opacity: 1;
  }

  .home-hero .hero-smoke-field {
    opacity: .34;
    filter: contrast(.96) saturate(.68) blur(2px);
  }

  .home-hero .hero-network,
  .home-hero.is-mobile-experience .hero-network {
    z-index: 3;
    top: auto;
    right: 50%;
    bottom: 1.5rem;
    left: auto;
    width: 38rem;
    height: 23rem;
    opacity: .84;
    filter: saturate(1.08) brightness(1.05);
    transform: translateX(50%) scale(.9);
    transform-origin: center bottom;
  }

  .home-hero .hero-tool-cloud {
    inset: auto auto 1.25rem 50%;
    width: min(calc(100% - 3rem), 43rem);
    height: 25rem;
    padding: 4.6rem 1.4rem 1.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 7rem minmax(0, 1fr);
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: .7rem 1rem;
    isolation: isolate;
    transform: translateX(-50%);
  }

  .home-hero .hero-tool-cloud::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: radial-gradient(circle at 50% 58%, rgba(94, 183, 236, .21), transparent 40%), linear-gradient(160deg, rgba(18, 42, 57, .92), rgba(5, 16, 24, .97));
    border: 1px solid rgba(158, 219, 255, .35);
    border-top-color: rgba(232, 214, 157, .5);
    border-radius: 1.6rem;
    box-shadow: 0 1.4rem 3.4rem rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
  }

  .home-hero .hero-tool-label,
  .home-hero .hero-tool-label--one,
  .home-hero .hero-tool-label--two,
  .home-hero .hero-tool-label--three,
  .home-hero .hero-tool-label--four,
  .home-hero .hero-tool-label--five,
  .home-hero .hero-tool-label--six,
  .home-hero .hero-tool-label--seven,
  .home-hero .hero-tool-label--eight {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    min-height: 2.8rem;
    padding: .6rem .75rem;
    align-self: center;
    translate: none;
    white-space: normal;
    opacity: 1;
    transform: none;
  }

  .home-hero .hero-tool-label:nth-child(odd) { grid-column: 1; }
  .home-hero .hero-tool-label:nth-child(even) { grid-column: 3; }
  .home-hero .hero-tool-label:nth-child(1),
  .home-hero .hero-tool-label:nth-child(2) { grid-row: 1; }
  .home-hero .hero-tool-label:nth-child(3),
  .home-hero .hero-tool-label:nth-child(4) { grid-row: 2; }
  .home-hero .hero-tool-label:nth-child(5),
  .home-hero .hero-tool-label:nth-child(6) { grid-row: 3; }
  .home-hero .hero-tool-label:nth-child(7),
  .home-hero .hero-tool-label:nth-child(8) { grid-row: 4; }

  .home-hero .hero-tool-label--nine,
  .home-hero .hero-tool-label--ten {
    display: none;
  }

  .home-hero .hero-core-logo--asset {
    opacity: 0 !important;
  }

  .home-hero .hero-core-reset,
  .home-hero.is-mobile-experience .hero-core-reset {
    top: auto;
    right: auto;
    bottom: 8.9rem;
    left: 50%;
    width: 5.4rem;
    height: 5.4rem;
    pointer-events: auto;
    opacity: 1;
    background: url("/site/images/nikari-ladescreen.svg") center / contain no-repeat;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(247, 242, 236, .68)) drop-shadow(0 0 24px rgba(137, 208, 251, .64));
    transform: translate(-50%, -50%);
  }

  .home-hero .hero-tool-progress {
    top: 1.35rem;
    right: auto;
    bottom: auto;
    left: 1.4rem;
    width: 13rem;
    color: #e8d69d;
    opacity: 1;
    text-align: left;
    translate: 0;
  }

  .home-hero .hero-motion-toggle {
    right: max(2rem, calc((100% - 43rem) / 2 + 1.15rem));
    bottom: 23.65rem;
  }
}

@media (min-width: 1101px) and (max-width: 1100px) {
  .home-hero {
    min-height: max(43rem, calc(100svh - var(--candidate-height) - var(--header-height)));
  }

  .home-hero .hero-interactive,
  .home-hero .hero-tool-cloud,
  .home-hero.is-mobile-experience .hero-tool-cloud {
    opacity: 1;
  }

  .home-hero .hero-content.hero-stage {
    width: min(calc(100% - 3.5rem), 68rem);
    min-height: max(39rem, calc(100svh - var(--candidate-height) - var(--header-height)));
    padding: clamp(3.2rem, 7vh, 4.8rem) 1.4rem clamp(2.3rem, 5vh, 3.4rem);
  }

  .home-hero .hero-content.hero-stage > * {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .home-hero .hero-stage-headline {
    width: 54%;
  }

  .home-hero .hero-stage-detail {
    width: 50%;
  }

  .home-hero .hero-smoke-field {
    opacity: .48;
    filter: contrast(.98) saturate(.72);
  }

  .home-hero .hero-network,
  .home-hero.is-mobile-experience .hero-network {
    z-index: 3;
    top: 7%;
    right: 0;
    bottom: 4%;
    left: 50%;
    width: 50%;
    height: 89%;
    opacity: .92;
    filter: saturate(1.1) brightness(1.08);
    transform: scale(.94);
    transform-origin: 55% 50%;
  }

  .home-hero .hero-tool-cloud {
    inset: 0;
    display: block;
    transform: none;
  }

  .home-hero .hero-tool-label,
  .home-hero .hero-tool-label--one,
  .home-hero .hero-tool-label--two,
  .home-hero .hero-tool-label--three,
  .home-hero .hero-tool-label--four,
  .home-hero .hero-tool-label--five,
  .home-hero .hero-tool-label--six,
  .home-hero .hero-tool-label--seven,
  .home-hero .hero-tool-label--eight {
    width: clamp(8.2rem, 17vw, 11rem);
    max-width: 18vw;
    min-height: 2.45rem;
    padding: .5rem .65rem;
    font-size: .6rem;
    white-space: normal;
    opacity: 1;
    translate: none;
    transform: none;
  }

  .home-hero .hero-tool-label--one { top: 18%; right: 25%; left: auto; }
  .home-hero .hero-tool-label--two { top: 18%; right: 2.5%; left: auto; }
  .home-hero .hero-tool-label--three { top: 36%; right: 25%; left: auto; }
  .home-hero .hero-tool-label--four { top: 36%; right: 2.5%; left: auto; }
  .home-hero .hero-tool-label--five { top: 54%; right: 25%; left: auto; }
  .home-hero .hero-tool-label--six { top: 54%; right: 2.5%; left: auto; }
  .home-hero .hero-tool-label--seven { top: 72%; right: 25%; bottom: auto; left: auto; }
  .home-hero .hero-tool-label--eight { top: 72%; right: 2.5%; bottom: auto; left: auto; }

  .home-hero .hero-tool-label--nine,
  .home-hero .hero-tool-label--ten {
    display: none;
  }

  .home-hero .hero-tool-icon {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
    margin-right: 5px;
  }

  .home-hero .hero-core-logo--asset {
    opacity: 0 !important;
  }

  .home-hero .hero-core-reset,
  .home-hero.is-mobile-experience .hero-core-reset {
    top: 51%;
    right: auto;
    bottom: auto;
    left: 76.5%;
    width: 4.8rem;
    height: 4.8rem;
    pointer-events: auto;
    opacity: 1;
    background: url("/site/images/nikari-ladescreen.svg") center / contain no-repeat;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(247, 242, 236, .68)) drop-shadow(0 0 24px rgba(137, 208, 251, .64));
    transform: translate(-50%, -50%);
  }

  .home-hero .hero-tool-progress,
  .home-hero:is(.is-awake, .is-tool-paused, .is-mobile-experience) .hero-tool-progress {
    right: 23.5%;
    bottom: 1.15rem;
    width: min(13rem, 28vw);
    color: #e8d69d;
    opacity: 1;
    translate: 50% 0;
  }

  .home-hero .hero-motion-toggle {
    right: 1.1rem;
    top: 1rem;
    bottom: auto;
  }

  .home-hero .hero-tool-label.is-inspected {
    z-index: 12;
    width: min(21rem, 40vw);
    max-width: 40vw;
  }

  .home-hero.is-tool-paused .hero-tool-label:not(.is-inspected) {
    opacity: .12;
    pointer-events: none;
  }
}

.site-footer .footer-inner {
  width: min(calc(100% - 3rem), 74rem);
  grid-template-columns: auto minmax(13rem, 1fr) auto;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.site-footer .footer-brand,
.site-footer .footer-swiss-mark,
.site-footer .footer-signature,
.site-footer .footer-links {
  align-self: center;
}

.site-footer .footer-signature {
  justify-self: center;
}

@media (max-width: 1100px) {
  .site-footer .footer-inner {
    width: min(calc(100% - 2.5rem), 46rem);
    grid-template-columns: 1fr;
    gap: .9rem;
    padding-block: 2.2rem 1.8rem;
    text-align: center;
  }

  .site-footer .footer-brand {
    display: none;
  }

  .site-footer .footer-signature {
    order: 1;
  }

  .site-footer .footer-links {
    order: 2;
    width: 100%;
    padding: .7rem 0 0;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .site-footer .footer-swiss-mark {
    order: 3;
  }

  .site-footer .footer-signature,
  .site-footer .footer-links,
  .site-footer .footer-swiss-mark {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .site-footer .footer-inner {
    width: min(calc(100% - 2rem), 31rem);
  }

  .site-footer .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .25rem;
  }

  .site-footer .footer-links a {
    justify-content: center;
  }
}


/* Offer revision v4: compact hero facts and clear setup value. */
.home-hero .hero-stage .hero-positioning {
  display: grid;
  gap: .52rem;
  max-width: 64ch;
  margin-top: 1rem;
  color: rgba(236, 243, 248, .72);
  line-height: 1.52;
}

.home-hero .hero-stage .hero-positioning strong {
  color: #f7fafc;
  font-size: 1rem;
  font-weight: 650;
}

.home-hero .hero-stage .hero-positioning span {
  display: block;
  font-size: .91rem;
}

.fixed-price-note {
  max-width: 74rem;
  margin: clamp(1.8rem, 4vw, 3rem) auto 0;
  padding: 1.35rem 1.5rem;
  color: rgba(244, 248, 251, .8);
  background: rgba(7, 17, 25, .56);
  border-left: 2px solid var(--gold);
  border-radius: 0 1rem 1rem 0;
}

.fixed-price-note strong {
  display: block;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.fixed-price-note p { margin: .45rem 0 0; }

.setup-rates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 74rem;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
}

.setup-rates-grid .care-card { min-height: 0; }

.handover-preview .section-heading p + p { margin-top: 1rem; }

@media (max-width: 900px) {
  .home-hero { min-height: 61rem; }
  .home-hero .hero-content.hero-stage { padding-bottom: 25.5rem; }
  .home-hero .hero-stage .hero-positioning strong { font-size: .94rem; }
  .home-hero .hero-stage .hero-positioning span { font-size: .84rem; }
}

@media (max-width: 620px) {
  .setup-rates-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: 64rem; }
  .home-hero .hero-content.hero-stage { padding-bottom: 25.5rem; }
}

@media (max-width: 420px) {
  .home-hero { min-height: 67rem; }
  .home-hero .hero-stage h1 { font-size: clamp(2.45rem, 12.2vw, 3.5rem); }
  .home-hero .hero-stage .hero-positioning { margin-top: .9rem; gap: .4rem; }
  .home-hero .hero-stage .actions { margin-top: 1rem; }
}

/* Application-led homepage. Native disclosures work with touch, mouse and keyboard. */
.home-page .home-hero .hero-stage h1 { max-width: 19ch; font-size: clamp(2.65rem, 4.9vw, 5.3rem); line-height: 1.06; }
.home-page .home-hero .hero-stage-detail { border-top: 0; margin-top: 1.65rem; padding-top: 0; }
.home-page .home-hero .hero-stage .hero-positioning { max-width: 59ch; margin: 1rem 0; color: #c7d5dc; font-size: 1rem; }
.home-page .hero-hardware-note { max-width: 62ch; margin-top: 1.1rem; font-size: .88rem; line-height: 1.6; color: #b8c9d2; }
.home-page .home-hero .hero-stage .lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; }
.home-page .application-section,
.home-page .work-preview-section,
.home-page .personal-fit-section,
.home-page .control-section,
.home-page .pricing-teaser,
.home-page .entry-section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.home-page .application-section .section-heading { max-width: 52rem; margin-bottom: 1.6rem; }
.application-scope { max-width: 72ch; color: #b6c8d2; font-size: .96rem; line-height: 1.7; margin: 0 0 2.2rem; }
.application-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem 2rem; align-items: start; }
.application-card { min-width: 0; padding: 1.5rem 0 1.15rem; border-top: 1px solid #385260; transition: border-color .2s ease; }
.application-top { display: flex; align-items: center; gap: .7rem; color: #b2c6d3; font-size: .76rem; letter-spacing: .055em; }
.application-index { color: #dfca8e; font-size: .85rem; font-variant-numeric: tabular-nums; }
.application-card h3 { color: #f5f8fa; margin: 1.1rem 0 .75rem; font-size: clamp(1.3rem, 1.9vw, 1.65rem); line-height: 1.25; text-wrap: balance; }
.application-card > p { color: #bdcdd6; font-size: 1rem; line-height: 1.65; min-height: 5em; margin: 0 0 1.25rem; }
.application-detail summary,
.application-more > summary,
.product-preview-details > summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; color: #e4edf2; border: 1px solid #465f6e; padding: .7rem 1rem; border-radius: .65rem; font-size: .87rem; line-height: 1.4; background: #102330; }
.application-detail summary::-webkit-details-marker,
.application-more > summary::-webkit-details-marker,
.product-preview-details > summary::-webkit-details-marker { display: none; }
.application-plus { font-size: 1.25rem; line-height: 1; transition: transform .2s ease; }
.application-detail[open] .application-plus { transform: rotate(45deg); }
.application-detail[open] > summary { border-color: #ddc88b; color: #f5e7bd; }
.application-expanded { padding: 1.3rem .1rem .3rem; animation: application-open .22s ease-out both; }
.application-caption { color: #dac68f; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.application-expanded blockquote { margin: .5rem 0 1.2rem; padding: 0 0 0 .85rem; border-left: 2px solid #789daa; color: #e7eef1; font-size: 1rem; line-height: 1.65; }
.application-expanded p { margin: .5rem 0 1.2rem; font-size: .96rem; line-height: 1.65; }
.application-expanded .application-context { font-size: .85rem; color: #b3c5cf; }
.application-more { margin-top: 1.5rem; }
.application-more > summary { width: fit-content; margin-inline: auto; min-height: 48px; padding-inline: 1.4rem; }
.application-more > .application-grid { margin-top: 2rem; }
.application-more .when-open { display: none; }
.application-more[open] .when-open { display: inline; }
.application-more[open] .when-closed { display: none; }
.application-detail summary:focus-visible,
.application-more > summary:focus-visible,
.product-preview-details > summary:focus-visible { outline: 3px solid #dfca8e; outline-offset: 4px; }
.work-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; list-style: none; margin: 2.5rem 0; padding: 0; }
.nikari-film { width:100%; max-width:1100px; margin:0 0 2.5rem; }
.nikari-film-player { position:relative; overflow:hidden; border:1px solid #50616a; border-radius:1.15rem; background:#fbf8f3; }
.nikari-film-player video { display:block; width:100%; height:auto; aspect-ratio:16/9; background:#fbf8f3; }
.nikari-film-play { display:none; position:absolute; z-index:1; top:50%; left:50%; transform:translate(-50%,-50%); align-items:center; gap:.55rem; min-height:52px; padding:.75rem 1.2rem; border:1px solid #e6d4aa; border-radius:999px; background:#172b38; color:#fff; font:inherit; font-weight:700; white-space:nowrap; cursor:pointer; }
.nikari-film-player[data-film-ready] .nikari-film-play:not([hidden]) { display:flex; }
.nikari-film-play:hover { background:#2b4556; }
.nikari-film-play:focus-visible { outline:3px solid #dfca8e; outline-offset:4px; }
.nikari-film figcaption { margin-top:.7rem; color:var(--ink-soft); font-size:.88rem; line-height:1.55; }
:root[data-theme="light"] .nikari-film-player { border-color:#c6bba9; }
.work-steps li { min-width: 0; border-top: 1px solid #375161; padding-top: 1.25rem; }
.work-steps li > span { color: #dfca8e; font-size: .85rem; }
.work-steps h3 { font-size: 1.35rem; color: #f3f7fa; margin: .8rem 0; }
.work-steps p { font-size: 1rem; color: #bdcdd6; line-height: 1.7; }
.product-preview-details { max-width: 62rem; }
.product-preview-details > summary { width: fit-content; }
.product-preview-details .product-proof-window { margin: 1.5rem 0 0; }
.product-preview-details img { display: block; max-width: 100%; height: auto; }
.fit-grid,.control-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin: 2.3rem 0; }
.fit-grid article,.control-grid article { min-width: 0; border-top: 1px solid #375161; padding-top: 1.5rem; }
.fit-grid article > span { color: #dfca8e; font-size: .8rem; }
.fit-grid h3,.control-grid h3 { color: #f5f8fa; font-size: 1.4rem; line-height: 1.3; margin: .85rem 0; }
.fit-grid p,.control-grid p { font-size: 1rem; line-height: 1.75; color: #bdcdd6; }
.fit-offer,.personal-contact { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.7rem 0; border-block: 1px solid #304958; }
.fit-offer p,.personal-contact p { max-width: 70ch; color: #b9cbd5; font-size: .96rem; line-height: 1.65; }
.fit-offer .button { flex-shrink: 0; }
.personal-contact strong { color: #f0f5f8; font-size: 1.2rem; }
.personal-contact .actions { margin: 0; flex-shrink: 0; flex-direction: column; align-items: stretch; }
.home-offer-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; }
.home-offer { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(1.3rem,3vw,2.5rem); background: rgba(7,20,30,.7); border: 1px solid #344e60; border-radius: 1.3rem; }
.home-offer h3 { margin: .4rem 0 1.6rem; color: #f5f8fa; font-size: clamp(1.6rem,2.3vw,2rem); line-height: 1.25; }
.home-price-pair { width: 100%; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.home-price-pair div { display: flex; flex-direction: column; min-width: 0; }
.home-price-pair span { color: #c3d4dd; font-size: .88rem; }
.home-price-pair strong { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 300; color: #fff; line-height: 1.4; white-space: nowrap; }
.home-price-pair small { font-size: .78rem; color: #aebfcc; line-height: 1.5; }
.home-offer > p { color: #bdcdd6; font-size: 1rem; line-height: 1.7; }
.home-offer > .subscription-note { color: #d9ca9f; font-size: .9rem; }
.home-offer > .offer-quote { font-size: clamp(1.6rem,2.5vw,2.25rem); font-weight: 300; color: #f4e2b1; margin: 1.1rem 0; }
.home-offer > .button { margin-top: auto; }
.home-offer > p:last-of-type { margin-bottom: 1.7rem; }
.home-page .demo-safety-note { font-size: .85rem; color: #b3c3ce; }
/* Price copy emphasis is not itself a price display. */
.care-card p strong { font-size: inherit; font-weight: 700; letter-spacing: normal; }
@keyframes application-open { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
@media (hover: hover) and (pointer: fine) {
  .application-card:hover { border-color: #dac58e; }
  .application-detail summary:hover,.application-more > summary:hover,.product-preview-details > summary:hover { background: #193646; border-color: #7b9aab; }
}
@media (max-width: 1100px) {
  .application-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .home-page .home-hero .hero-stage h1 { font-size: clamp(2.7rem,6vw,4.4rem); }
  .fit-grid,.control-grid { gap: 1.2rem; }
  .home-offer-grid { gap: 1.2rem; grid-template-columns: 1fr 1fr; }
  .home-price-pair { grid-template-columns: 1fr; gap: 1rem; }
  .personal-contact { align-items: flex-start; }
}
@media (max-width: 700px) {
  .home-page .home-hero .hero-stage h1 { font-size: clamp(2.5rem,10.5vw,3.5rem); }
  .application-grid,.fit-grid,.control-grid,.home-offer-grid,.work-steps { grid-template-columns: 1fr; gap: 1.2rem; }
  .application-card > p { min-height: 0; }
  .application-card h3 { font-size: 1.5rem; text-wrap: pretty; }
  .application-more > summary { width: 100%; justify-content: center; }
  .fit-offer,.personal-contact { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .fit-offer .button,.personal-contact .actions { width: 100%; }
  .work-steps li { display: grid; grid-template-columns: 2rem minmax(0,1fr); }
  .work-steps h3 { margin-top: 0; }
  .home-price-pair { grid-template-columns: repeat(2,minmax(0,1fr)); gap: .75rem; }
  .home-offer { padding: 1.35rem; }
  .home-offer > .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .application-expanded { animation: none; }
  .application-card,.application-plus { transition: none; }
}

/* Reserve the full tool stage below the copy, including its lifted focus state. */
@media (max-width: 1100px) {
  .home-page .home-hero .hero-content.hero-stage { padding-bottom: 31rem; }
  .home-page .home-hero .hero-tool-label { font-size: .875rem; line-height: 1.3; }
}
@media (max-width: 620px) {
  .home-page .home-hero .hero-tool-label { font-size: .75rem; padding-inline: .5rem; }
  .home-page .home-hero .hero-tool-cloud { grid-template-columns: minmax(0,1fr) 2.8rem minmax(0,1fr); }
  .home-page .home-hero .hero-tool-icon { flex-basis: 12px; width: 12px; height: 12px; margin-right: 4px; }
}

/* Secondary pages share the homepage's quiet blue canvas and editorial rhythm. */
:is(.preise-page,.kontakt-page,.legal-page,.error-page) main { background: radial-gradient(ellipse at 95% 5%,rgba(59,105,133,.18),transparent 40%),#0b1b26; }
.subpage-intro { padding-top: clamp(3.5rem,7vw,6rem); padding-bottom: 2.6rem; position: relative; }
.subpage-intro h1 { max-width: 19ch; margin: .9rem 0 1.3rem; font-size: clamp(2.6rem,4.8vw,4.7rem); line-height: 1.09; text-wrap: balance; }
.subpage-intro .lead { max-width: 48ch; font-size: clamp(1.05rem,1.8vw,1.3rem); line-height: 1.65; color:#bdcdd6; }
.subpage-intro .eyebrow { color:#d6bf80; }
.subpage-section { padding-block: clamp(3rem,5vw,5rem); }
.subpage-section-heading { max-width: 49rem; margin-bottom: 2rem; }
.subpage-section-heading h2,.subpage-closing h2 { font-size: clamp(2rem,3.5vw,3.2rem); line-height:1.15; margin:.8rem 0 1.2rem; }
.subpage-section-heading p,.subpage-closing p { color:#bdcdd6; line-height:1.75; }
.price-workspace { display:grid; grid-template-columns:minmax(16rem,.8fr) minmax(0,1.2fr); gap:clamp(2rem,5vw,5rem); align-items:start; padding-top:1rem; padding-bottom:3.5rem; }
.offer-controls { padding:1.6rem 0; border-top:1px solid #385260; }
.offer-controls .price-control-stack { margin-top:1.5rem; }
.offer-controls .pricing-mode-switch { display:grid; grid-template-columns:1fr 1fr; width:100%; min-width:0; margin:0 0 .85rem; border-radius:.9rem; padding:.3rem; background:#091923; border:1px solid #35505e; }
.offer-controls .pricing-mode-switch button { min-width:0; padding:.8rem .7rem; border-radius:.6rem; min-height:68px; text-align:left; white-space:normal; }
.offer-controls .pricing-mode-switch button strong { font-size:.97rem; line-height:1.35; }
.offer-controls .pricing-mode-switch button[aria-selected=true] { background:#254658; color:#fff; box-shadow:none; }
.offer-controls .pricing-mode-note { min-height:5em; max-width:42ch; color:#b7cad5; font-size:.95rem; margin:1.2rem 0 1.5rem; }
.offer-results { min-width:0; }
.offer-result { padding:clamp(1.5rem,3vw,2.5rem); border:1px solid #416172; border-radius:1.2rem; background:linear-gradient(145deg,#173344,#0b202d); }
.offer-result h2 { font-size:1.5rem; font-weight:400; margin:.9rem 0 1.6rem; }
.offer-result .offer-amount { color:#fff; font-size:clamp(1.95rem,3.1vw,3rem); line-height:1.16; font-weight:300; margin:0; text-wrap:balance; }
.offer-result .offer-unit { color:#d5c38c; margin:.6rem 0 1.5rem; font-size:.9rem; }
.offer-result > p:not(.kicker):not(.offer-amount):not(.offer-unit) { font-size:1rem; color:#bdcdd6; line-height:1.65; }
.included-list { padding:0; list-style:none; margin:1.5rem 0; }
.included-list li { position:relative; padding:.55rem 0 .55rem 1.4rem; color:#e0eaf0; font-size:.98rem; }
.included-list li::before { content:'✓'; position:absolute; left:0; color:#d6bf80; }
.offer-result .offer-terms { padding-top:1.1rem; border-top:1px solid #3b5665; }
.offer-result .button { margin-top:1rem; }
.editorial-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:2rem; }
.editorial-grid article { min-width:0; border-top:1px solid #375161; padding-top:1.5rem; }
.editorial-grid article > span { color:#d6bf80; font-size:.8rem; }
.editorial-grid h3 { font-size:1.4rem; color:#f4f7f9; margin:.9rem 0; line-height:1.3; }
.editorial-grid p { font-size:1rem; color:#bdcdd6; line-height:1.7; }
.subpage-disclosures { max-width:64rem; }
.subpage-disclosures details { border-top:1px solid #3c5665; }
.subpage-disclosures details:last-child { border-bottom:1px solid #3c5665; }
.subpage-disclosures summary { list-style:none; cursor:pointer; display:flex; justify-content:space-between; gap:1rem; padding:1.4rem 0; min-height:48px; color:#f3f7fa; font-size:1.15rem; line-height:1.5; }
.subpage-disclosures summary::-webkit-details-marker { display:none; }
.subpage-disclosures summary span { flex-shrink:0; color:#d6bf80; transition:transform .2s; }
.subpage-disclosures details[open] summary span { transform:rotate(45deg); }
.subpage-disclosures details > div { max-width:74ch; padding:0 0 1.5rem; animation:application-open .2s ease-out; }
.subpage-disclosures p { color:#bdcdd6; font-size:1rem; line-height:1.75; }
.subpage-disclosures summary:focus-visible,.contact-intents button:focus-visible { outline:2px solid #dfca8e; outline-offset:5px; }
.subpage-closing { display:flex; justify-content:space-between; align-items:center; gap:3rem; border-top:1px solid #304958; }
.subpage-closing > div { max-width:45rem; }
.subpage-closing > .button { flex-shrink:0; }
.contact-workspace { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:clamp(2rem,5vw,5rem); padding-top:1rem; padding-bottom:3rem; }
.contact-choice { padding-top:1.5rem; border-top:1px solid #375161; }
.contact-intents { display:flex; flex-direction:column; gap:.6rem; margin:1.5rem 0; }
.contact-intents button { display:grid; grid-template-columns:1.6rem minmax(0,1fr) 1rem; gap:.8rem; width:100%; text-align:left; align-items:center; padding:1.15rem 1rem; border:1px solid #344e5d; border-radius:.8rem; background:#102633; color:#eef4f7; font:inherit; cursor:pointer; transition:background .2s,border-color .2s; }
.contact-intents button > span:first-child { font-size:.8rem; color:#d6bf80; }
.contact-intents strong { font-size:1.12rem; line-height:1.4; font-weight:600; }
.contact-intents small { display:block; font-size:.88rem; line-height:1.6; color:#b5c8d4; margin-top:.35rem; }
.contact-intents button[aria-pressed=true] { border-color:#d6bf80; background:#1d3b4d; }
.contact-helper { font-size:.9rem; color:#aebfcb; max-width:46ch; line-height:1.65; }
.contact-direct { min-width:0; padding:clamp(1.5rem,3vw,2.5rem); border:1px solid #416172; border-radius:1.2rem; background:linear-gradient(145deg,#173344,#0b202d); }
.contact-direct h2 { font-size:clamp(1.9rem,3vw,2.5rem); margin:.8rem 0 1.2rem; line-height:1.15; }
.contact-direct p { color:#bdcdd6; font-size:1rem; line-height:1.7; }
.contact-direct .contact-selection { padding:.9rem 0; border-block:1px solid #416172; background:none; border-radius:0; margin:1.2rem 0; }
.contact-direct .contact-selection span { display:block; color:#cdbb88; font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; }
.contact-direct .contact-selection strong { font-size:1rem; font-weight:600; display:block; color:#f1f5f8; margin-top:.4rem; }
.contact-direct .contact-actions { display:flex; flex-wrap:wrap; gap:.75rem; margin:1.6rem 0; }
.contact-direct .contact-actions a { width:auto; }
.contact-direct-address { display:flex; flex-direction:column; align-items:flex-start; gap:.45rem; padding:1.3rem 0; border-block:1px solid #375161; }
.contact-direct-address span { font-size:.92rem; color:#b9cbd5; }
.contact-direct-address a { font-size:1.4rem; color:#f6f9fa; text-decoration:none; padding:.4rem 0; }
.contact-direct .contact-discretion { font-size:.83rem; margin:1.2rem 0 0; color:#aabecb; }
.contact-return { display:flex; gap:.8rem; flex-wrap:wrap; margin-top:2rem; }
.legal-page .legal-hero { background:none; min-height:0; }
.legal-page .legal-hero > div { max-width:58rem; }
.legal-page .legal-hero h1 { max-width:24ch; }
.legal-page .legal-hero .button { margin-top:1rem; white-space:normal; }
.legal-page .legal-intro { padding:1.2rem 0; border-block:1px solid #375161; background:none; border-radius:0; color:#bdcdd6; }
.legal-page .legal-reading-list { display:block; max-width:58rem; margin-top:2rem; }
.legal-page .legal-reading-list .legal-card { padding:1.5rem 0; border:0; border-bottom:1px solid #304958; border-radius:0; background:none; box-shadow:none; }
.legal-reading-list .legal-card h2 { font-size:1.5rem; margin:0 0 .9rem; color:#edf3f7; }
.legal-reading-list .legal-card p { max-width:75ch; font-size:1rem; line-height:1.8; color:#bdcdd6; }
.error-page .subpage-error { min-height:65svh; padding:5rem 1.5rem; background:none; }
.error-page .subpage-error .error-card { background:none; border:0; box-shadow:none; max-width:54rem; padding:0; margin:auto; text-align:left; }
.error-page .subpage-error h1 { font-size:clamp(2.5rem,5vw,4.5rem); line-height:1.1; }
@media (hover:hover) {
 .contact-intents button:hover { background:#1d3b4d; border-color:#7899ac; }
 .subpage-disclosures summary:hover { color:#dfca8e; }
}
@media (max-width:900px) {
 .price-workspace,.contact-workspace { gap:1.5rem; grid-template-columns:minmax(0,1fr) minmax(0,1.1fr); }
 .offer-controls .pricing-mode-switch button strong { font-size:.87rem; }
 .editorial-grid { gap:1.3rem; }
 .subpage-closing { flex-direction:column; align-items:flex-start; gap:1rem; }
 .contact-direct .contact-actions { flex-direction:column; }
}
@media (max-width:700px) {
 .subpage-intro { padding-top:2.7rem; padding-bottom:1.5rem; }
 .price-workspace,.contact-workspace,.editorial-grid { grid-template-columns:1fr; }
 .offer-controls .pricing-mode-note { min-height:0; }
 .offer-controls .pricing-mode-switch button strong { font-size:1rem; }
 .offer-controls { padding-bottom:.5rem; }
 .offer-result .button,.subpage-closing>.button { width:100%; }
 .subpage-section { padding-block:3rem; }
 .contact-choice { padding-top:1rem; }
 .contact-return { flex-direction:column; }
 .contact-return .button { width:100%; }
 .subpage-intro h1 { font-size:clamp(2.3rem,9.5vw,3.3rem); }
 .contact-direct .contact-actions a { width:100%; }
}
@media (prefers-reduced-motion:reduce) {
 .subpage-disclosures details>div { animation:none; }
 .subpage-disclosures summary span,.contact-intents button { transition:none; }
}
/* Override legacy page-wide section spacing only on the refreshed sections. */
:is(.preise-page,.kontakt-page,.legal-page) .subpage-intro { padding-top:clamp(3rem,6vw,5rem); padding-bottom:2.5rem; }
.preise-page .price-workspace,.kontakt-page .contact-workspace { padding-top:1rem; padding-bottom:3.5rem; }
:is(.preise-page,.kontakt-page) .subpage-section { padding-block:clamp(3rem,5vw,5rem); }
:is(.preise-page,.kontakt-page) main .button.primary { color:#0b1b26; background:#f4f7f9; border-color:#f4f7f9; box-shadow:none; }
:is(.preise-page,.kontakt-page) main .button.primary:hover { background:#dce8ef; border-color:#dce8ef; }
.contact-direct { scroll-margin-top:calc(var(--header-height) + 1.5rem); }
@media (max-width:700px) {
 :is(.preise-page,.kontakt-page,.legal-page) .subpage-intro { padding-top:2.5rem; padding-bottom:1.5rem; }
 :is(.preise-page,.kontakt-page) .subpage-section { padding-block:3rem; }
}
.preise-page main > .subpage-intro { padding-top:clamp(3rem,6vw,5rem); padding-bottom:2.5rem; }
.preise-page main > .price-workspace { padding-top:1rem; padding-bottom:3.5rem; }
.preise-page main > .subpage-section { padding-block:clamp(3rem,5vw,5rem); }
@media (max-width:700px) {
 .preise-page main > .subpage-intro { padding-top:2.5rem; padding-bottom:1.5rem; }
 .preise-page main > .subpage-section { padding-block:3rem; }
}
.contact-direct .contact-selection { border-inline:0; }
.legal-page .legal-date { color:#aebfcc; font-size:.9rem; padding:1rem 0; border-bottom:1px solid #375161; }

/* Targeted consultation offer additions. */
.hardware-intro { margin:0 0 1.8rem; }
.hardware-intro h2 { font-size:clamp(1.8rem,3vw,2.5rem); line-height:1.2; margin:.6rem 0 1rem; }
.hardware-intro p:not(.kicker),.consultation-scope p { color:#bdcdd6; font-size:1rem; line-height:1.7; }
.consultation-offer h3 { font-size:clamp(1.4rem,2vw,1.8rem); line-height:1.3; margin:0 0 1rem; color:#f4f7f9; }
.abo-features { margin-top:1.5rem; }
.abo-features h3,.consultation-result h4 { font-size:1rem; font-weight:600; margin:0 0 .6rem; color:#f4f7f9; }
.abo-features p { line-height:1.8; }
.consultation-result { border-top:1px solid #416172; margin:1.5rem 0; padding-top:1.2rem; }
.consultation-result p { margin-bottom:0; }
.consultation-scope { margin-top:1.3rem; }
.consultation-scope strong { color:#eef4f7; }
.consultation-offer .button { white-space:normal; text-align:center; }
.consultation-offer .offer-amount > span { display:inline-block; white-space:nowrap; }

@media (max-width:600px) {
 .consultation-teaser .home-price-pair { grid-template-columns:1fr; gap:1.3rem; }
}

/* Touch devices: stable controls and a separate, explicitly dismissible explanation. */
.hero-touch-toolbar,.hero-touch-navigation,.hero-touch-hint,.hero-touch-detail { display:none; }
@media (max-width:1100px), (hover:none) and (pointer:coarse) {
 .home-page .home-hero .hero-content.hero-stage { padding-bottom:35rem; }
 .home-page .home-hero .hero-tool-cloud {
   width:min(calc(100% - 2rem),43rem); height:32rem; bottom:1.25rem;
   padding:5rem 1rem 7rem; grid-template-columns:repeat(2,minmax(0,1fr));
   grid-template-rows:repeat(4,minmax(0,1fr)); gap:.65rem; transform:translateX(-50%) !important;
   filter:none !important; touch-action:pan-y; pointer-events:auto;
 }
 .home-page .home-hero .hero-tool-label:nth-of-type(odd) { grid-column:1; }
 .home-page .home-hero .hero-tool-label:nth-of-type(even) { grid-column:2; }
 .home-page .home-hero .hero-tool-label:nth-of-type(1),.home-page .home-hero .hero-tool-label:nth-of-type(2) { grid-row:1; }
 .home-page .home-hero .hero-tool-label:nth-of-type(3),.home-page .home-hero .hero-tool-label:nth-of-type(4) { grid-row:2; }
 .home-page .home-hero .hero-tool-label:nth-of-type(5),.home-page .home-hero .hero-tool-label:nth-of-type(6) { grid-row:3; }
 .home-page .home-hero .hero-tool-label:nth-of-type(7),.home-page .home-hero .hero-tool-label:nth-of-type(8) { grid-row:4; }
 .home-page .home-hero .hero-tool-label {
   position:relative; inset:auto; width:100%; max-width:none; height:100%; min-height:48px;
   padding:.6rem .65rem; border-radius:.7rem; font-size:.82rem; line-height:1.35;
   transform:none !important; translate:none; box-shadow:none; text-align:left; align-items:center;
 }
 .home-page .home-hero .hero-tool-name { hyphens:none; overflow-wrap:normal; }
 .home-page .home-hero .hero-tool-label .hero-tool-description { display:none !important; }
 .home-page .home-hero.is-tool-paused .hero-tool-label { visibility:hidden; opacity:0 !important; pointer-events:none; }
 .home-page .home-hero .hero-core-reset,.home-page .home-hero .hero-network { display:none; }
 .hero-touch-toolbar { display:flex; position:absolute; top:1rem; left:1rem; right:1rem; height:44px; align-items:center; justify-content:flex-end; }
 .hero-touch-logo { position:absolute; left:50%; transform:translateX(-50%); width:38px; height:38px; background:url('/site/images/nikari-ladescreen.svg') center/contain no-repeat; }
 .home-page .home-hero .hero-touch-toolbar .hero-motion-toggle {
   position:static; width:44px; height:44px; min-height:44px; margin:0; border:1px solid #66808f;
   border-radius:50%; opacity:1 !important; visibility:visible; transform:none; pointer-events:auto; background:#0b202c;
 }
 .home-page .home-hero .hero-tool-progress { top:1.35rem; left:1rem; width:7.7rem; font-size:.66rem; pointer-events:none; }
 .hero-touch-hint { display:block; position:absolute; bottom:4.55rem; left:1rem; right:1rem; margin:0; font-size:.76rem; color:#c4d4de; text-align:center; }
 .hero-touch-navigation { display:flex; justify-content:space-between; gap:1rem; position:absolute; bottom:1rem; left:1rem; right:1rem; }
 .hero-touch-navigation button,.hero-touch-detail button { min-width:44px; min-height:44px; border:1px solid #66808f; border-radius:.6rem; background:#0b202c; color:#f4f7f9; font:inherit; cursor:pointer; touch-action:manipulation; }
 .hero-touch-navigation button { padding:.5rem 1rem; font-size:.88rem; }
 .hero-touch-detail:not([hidden]) { display:block; position:absolute; z-index:20; inset:4.7rem 1rem 7rem; padding:1rem; background:#102b3b; border:1px solid #7397ad; border-radius:.8rem; overflow-y:auto; }
 .hero-touch-detail > div { display:flex; align-items:flex-start; justify-content:space-between; gap:.8rem; }
 .hero-touch-detail strong { font-size:1.1rem; line-height:1.45; color:#fff; padding-top:.4rem; }
 .hero-touch-detail button { flex-shrink:0; font-size:1.6rem; line-height:1; }
 .hero-touch-detail p { font-size:1rem; line-height:1.75; color:#d1e0e9; margin:1rem 0 0; }
 .hero-touch-navigation button:focus-visible,.hero-touch-detail button:focus-visible { outline:2px solid #e8d69d; outline-offset:3px; }
}
@media (max-width:370px) {
 .home-page .home-hero .hero-tool-label { font-size:.74rem; padding:.55rem; }
 .home-page .home-hero .hero-tool-progress { width:6.7rem; font-size:.6rem; }
}

@media (max-width:1100px), (hover:none) and (pointer:coarse) {
 .home-page .home-hero .hero-tool-copy { min-width:0; width:100%; }
 .home-page .home-hero .hero-tool-name { white-space:normal; overflow-wrap:anywhere; hyphens:auto; letter-spacing:0; }
 .home-page .home-hero .hero-tool-icon { flex-shrink:0; }
 .home-page .home-hero .hero-interactive { transform:none !important; }
}
/* Clipping must not let focusing a control scroll the decorative layer internally. */
.home-hero,.home-hero .hero-interactive { overflow:clip; }

/* Each tool explains its purpose through a concrete example request. */
.hero-tool-example { display:none; }
@media (min-width:1101px) and (hover:hover) and (pointer:fine) {
 .home-hero .hero-tool-label.is-inspected { width:clamp(250px,23vw,340px); max-width:340px; }
 .home-hero .hero-tool-label.is-inspected .hero-tool-description { max-height:none; max-width:none; font-size:.78rem; line-height:1.55; }
 .home-hero .hero-tool-label.is-inspected .hero-tool-example { display:grid; gap:.4rem; margin-top:.75rem; padding-top:.65rem; border-top:1px solid #48616f; font-size:.78rem; font-weight:400; line-height:1.55; color:#d3e1e9; letter-spacing:0; }
 .hero-tool-example strong { color:#e2cc90; font-size:.72rem; font-weight:600; }
}
@media (max-width:1100px), (hover:none) and (pointer:coarse) {
 .hero-touch-detail > .hero-touch-example { display:block; border-top:1px solid #48616f; padding-top:.85rem; margin-top:1.2rem; }
 .hero-touch-example > strong { display:block; padding:0; color:#e2cc90; font-size:.82rem; font-weight:600; }
 .hero-touch-example > p { margin-top:.5rem; font-size:.95rem; line-height:1.65; }
}

@media (max-width:1100px), (hover:none) and (pointer:coarse) {
 .hero-touch-detail > div:first-child { position:sticky; top:-1rem; padding-block:.35rem; background:#102b3b; z-index:1; }
 .home-page .home-hero .hero-tool-progress { white-space:nowrap; }
}

/* Colour preference is shared by every public page. Keep layout independent of colour. */
:root[data-theme="dark"] { color-scheme:dark; }
:root[data-theme="light"] {
 color-scheme:light;
 --ink:#263344; --ink-soft:#4b5968; --navy:#263344; --navy-deep:#263344;
 --blue:#385c78; --blue-soft:#ede4d7; --gold:#725d2f; --gold-strong:#725d2f;
 --paper:#f8f3ed; --paper-warm:#ede4d7; --surface:#fffaf4;
 --line:rgba(38,51,68,.18); --line-strong:rgba(38,51,68,.3);
 --shadow:0 12px 28px rgba(38,51,68,.07);
}
.site-header .nav { grid-template-columns:auto minmax(1.5rem,1fr) auto auto; gap:12px; }
.site-header .nav-links { grid-column:3; }
.theme-control { position:relative; grid-column:4; grid-row:1; }
.theme-toggle { display:grid; place-items:center; width:44px; height:44px; padding:0; border:1px solid #52616b; border-radius:50%; background:transparent; color:#edf1f4; cursor:pointer; }
.theme-toggle:hover { background:rgba(255,255,255,.09); }
.theme-options { position:absolute; right:0; top:calc(100% + 12px); min-width:154px; padding:6px; border:1px solid #52616b; border-radius:12px; background:#102330; box-shadow:0 12px 30px #0004; }
.theme-options[hidden] { display:none; }
.theme-options button { display:block; width:100%; min-height:44px; text-align:left; padding:9px 12px; border:0; border-radius:7px; background:transparent; color:#edf1f4; cursor:pointer; }
.theme-options button[aria-pressed="true"] { background:#294657; }
.theme-options button[aria-pressed="true"]::after { content:'✓'; float:right; margin-left:20px; }
.theme-options button:hover { background:#294657; }
@media(max-width:850px) {
 .site-header .nav { grid-template-columns:auto minmax(1.35rem,1fr) 44px 44px; gap:8px; }
 .theme-control { grid-column:3; }
 .site-header .nav-toggle { grid-column:4; grid-row:1; }
 .theme-options { right:-48px; }
}
@media(max-width:360px) { .site-header .nav { gap:4px; padding-left:9px; } }
:root[data-theme="light"],
:root[data-theme="light"] body,
:root[data-theme="light"] body main { color:#263344; background:#f8f3ed; }
:root[data-theme="light"] .site-header { background:rgba(248,243,237,.94); }
:root[data-theme="light"] .site-header .nav { background:rgba(255,250,244,.94); border-color:#d7cfc2; box-shadow:0 5px 20px #26334408; }
:root[data-theme="light"] .site-header .brand-wordmark { color:#263344; }
:root[data-theme="light"] .site-header .brand-symbol { filter:brightness(0) saturate(100%); opacity:.85; }
:root[data-theme="light"] .nav-links { background:#f2ebe2; border-color:#ded5c8; }
:root[data-theme="light"] .nav-links a { color:#263344; }
:root[data-theme="light"] .nav-links a:hover { background:#e8dfd2; }
:root[data-theme="light"] .nav-toggle span { background:#263344; }
:root[data-theme="light"] .theme-toggle { color:#263344; border-color:#a69f93; }
:root[data-theme="light"] .theme-toggle:hover { background:#ede4d7; }
:root[data-theme="light"] .theme-options { background:#fffaf4; border-color:#c5bbab; }
:root[data-theme="light"] .theme-options button { color:#263344; }
:root[data-theme="light"] .theme-options button:is(:hover,[aria-pressed="true"]) { background:#ede4d7; }
/* Existing dark sections have accumulated explicit colours. These scoped roles
   make the light palette consistent without changing their sizes or behaviour. */
:root[data-theme="light"] body main :is(h1,h2,h3,h4,strong,blockquote) { color:#263344; }
:root[data-theme="light"] body main :is(p,li,small),
:root[data-theme="light"] body main .lead,
:root[data-theme="light"] body main .hero-positioning,
:root[data-theme="light"] body main .hero-positioning span { color:#4b5968; }
:root[data-theme="light"] body main :is(.kicker,.eyebrow,.application-index,.application-caption,.offer-unit,.subscription-note,.offer-quote),
:root[data-theme="light"] .work-steps li>span,
:root[data-theme="light"] :is(.fit-grid,.editorial-grid) article>span { color:#725d2f; }
:root[data-theme="light"] :is(.application-card,.work-steps li,.fit-grid article,.control-grid article,.editorial-grid article,.fit-offer,.personal-contact,.offer-controls,.contact-choice,.subpage-disclosures details,.subpage-closing,.legal-card,.legal-date,.legal-intro,.consultation-result) { border-color:#cec6bb; }
:root[data-theme="light"] :is(.application-top,.home-price-pair span,.home-price-pair small,.contact-direct-address span,.contact-intents small,.contact-selection span) { color:#4b5968; }
:root[data-theme="light"] :is(.application-detail,.application-more,.product-preview-details)>summary { background:#f0e8dd; border-color:#c6bba9; color:#263344; }
:root[data-theme="light"] :is(.application-detail,.application-more,.product-preview-details)>summary:hover { background:#e6dccb; }
:root[data-theme="light"] .application-detail[open]>summary { border-color:#8e7540; color:#604d26; }
:root[data-theme="light"] .application-expanded blockquote { border-color:#9e8b65; }
:root[data-theme="light"] body :is(.home-offer,.offer-result,.contact-direct) { background:linear-gradient(145deg,#fffaf4,#f0e7da); border-color:#cec0aa; box-shadow:none; }
:root[data-theme="light"] body :is(.home-price-pair strong,.offer-result .offer-amount,.consultation-offer h3) { color:#263344; }
:root[data-theme="light"] .offer-controls .pricing-mode-switch { background:#eee5d8; border-color:#cfc2b1; }
:root[data-theme="light"] .offer-controls .pricing-mode-switch button { color:#4b5968; }
:root[data-theme="light"] .offer-controls .pricing-mode-switch button[aria-selected="true"] { background:#263344; color:#fffaf4; }
:root[data-theme="light"] body .offer-controls .pricing-mode-switch button[aria-selected="true"] :is(strong,span) { color:#fffaf4; }
:root[data-theme="light"] .included-list li::before { color:#725d2f; }
:root[data-theme="light"] :is(.offer-terms,.contact-direct-address,.contact-selection) { border-color:#cec6bb; }
:root[data-theme="light"] body main .subpage-disclosures summary { color:#263344; }
:root[data-theme="light"] .subpage-disclosures summary span { color:#725d2f; }
:root[data-theme="light"] .contact-intents button { background:#fffaf4; color:#263344; border-color:#cfc2b1; }
:root[data-theme="light"] .contact-intents button:is(:hover,[aria-pressed="true"]) { background:#ede4d7; border-color:#8e7540; }
:root[data-theme="light"] .contact-intents button>span:first-child { color:#725d2f; }
:root[data-theme="light"] .contact-direct-address a { color:#263344; }
:root[data-theme="light"] body main .button { background:transparent; color:#263344; border-color:#7c8990; }
:root[data-theme="light"] body main .button:hover { background:#ede4d7; }
:root[data-theme="light"] body main .button.primary,
:root[data-theme="light"] .site-header .nav-cta { background:#263344; color:#fffaf4; border-color:#263344; box-shadow:none; }
:root[data-theme="light"] body main .button.primary:hover,
:root[data-theme="light"] .site-header .nav-cta:hover { background:#38516a; border-color:#38516a; }
:root[data-theme="light"] .site-footer { background:#f1e9df; border-color:#d7cfc2; }
:root[data-theme="light"] .site-footer :is(.footer-brand>strong,.footer-powered,.footer-links a) { color:#263344; }
:root[data-theme="light"] .site-footer .footer-links { border-color:#d7cfc2; }
:root[data-theme="light"] .site-footer :is(.footer-powered,.footer-links a):hover { color:#725d2f; background:transparent; }
:root[data-theme="light"] .home-page .closing-cta { background:transparent; border-color:#cec6bb; }
:root[data-theme="light"] .home-page .pricing-teaser::before,
:root[data-theme="light"] .home-page .pricing-teaser::after,
:root[data-theme="light"] .home-page .entry-section::before { background:radial-gradient(ellipse,rgba(212,198,161,.18),transparent 70%); }
:root[data-theme="light"] .section-clouds { opacity:.1; mix-blend-mode:multiply; }
/* Retain the actual mist artwork, with an ivory canvas and a soft ink tint. */
:root[data-theme="light"] .home-page .home-hero { background:#f8f3ed; border-color:transparent; }
:root[data-theme="light"] .home-hero::before { background:radial-gradient(ellipse at 75% 45%,#d9d1c333,transparent 65%); }
:root[data-theme="light"] .home-hero .hero-overlay { background:linear-gradient(90deg,rgba(248,243,237,.95),rgba(248,243,237,.62) 48%,rgba(248,243,237,.12)); }
:root[data-theme="light"] .hero-interactive::before,
:root[data-theme="light"] .hero-interactive::after { background:none; }
:root[data-theme="light"] .home-hero .hero-smoke-field { filter:invert(1) sepia(.16) saturate(.55) contrast(1.12); opacity:.8; mix-blend-mode:multiply; }
:root[data-theme="light"] .home-hero .hero-mesh { opacity:.06; }
:root[data-theme="light"] .home-hero .hero-network { filter:none; }
:root[data-theme="light"] .home-hero .hero-core-reset { filter:none; }
:root[data-theme="light"] .home-hero .hero-core-logo--asset { filter:none; }
:root[data-theme="light"] .home-hero .hero-tool-label { color:#263344; background:#fffaf4; border-color:#aaa28f; box-shadow:0 5px 18px #2633440c; }
:root[data-theme="light"] .home-hero .hero-tool-label:is(:hover,:focus-visible,.is-inspected) { background:#fffaf4; border-color:#725d2f; }
:root[data-theme="light"] .home-hero :is(.hero-tool-name,.hero-tool-description,.hero-tool-example) { color:#263344; }
:root[data-theme="light"] .home-hero .hero-tool-icon { color:#385c78; stroke:#385c78; filter:none; }
:root[data-theme="light"] .home-hero .hero-tool-progress { color:#725d2f; }
:root[data-theme="light"] .home-hero .hero-tool-progress>i { background:#d8cfbf; }
:root[data-theme="light"] .home-hero .hero-tool-progress>i>b { background:#806d44; }
:root[data-theme="light"] body .home-hero .hero-motion-toggle { background:#fffaf4; color:#263344; border-color:#a69f93; box-shadow:none; }
:root[data-theme="light"] .hero-motion-toggle .motion-symbol { color:#263344; }
:root[data-theme="light"] .product-proof-window { background:#efe7db; border-color:#c6bba9; }
:root[data-theme="light"] .product-proof-window :is(.product-window-bar,figcaption) { background:#efe7db; color:#4b5968; }
@media(max-width:1100px), (hover:none) and (pointer:coarse) {
 :root[data-theme="light"] .home-page .home-hero .hero-tool-cloud::before { background:linear-gradient(145deg,#fffaf4,#eee4d5); border-color:#b6a887; box-shadow:0 10px 28px #26334412; }
 :root[data-theme="light"] .hero-touch-logo { filter:none; background-image:url("/site/images/nikari-ladescreen-light.svg"); }
 :root[data-theme="light"] body .hero-touch-detail:not([hidden]),
 :root[data-theme="light"] .hero-touch-detail>div:first-child { background:#fffaf4; color:#263344; border-color:#b6a887; }
 :root[data-theme="light"] .hero-touch-detail :is(strong,p) { color:#263344; }
 :root[data-theme="light"] .hero-touch-example { border-color:#cec6bb; }
 :root[data-theme="light"] :is(.hero-touch-navigation,.hero-touch-detail) button { background:#f0e8dd; color:#263344; border-color:#a69f93; }
 :root[data-theme="light"] .hero-touch-hint { color:#4b5968; }
}
:root[data-theme="light"] .home-page .home-hero .hero-content.hero-stage::before { background:radial-gradient(ellipse at 42% 46%,rgba(248,243,237,.92),rgba(248,243,237,.62) 48%,transparent 78%); }
:root[data-theme="light"] .home-page .home-hero .hero-stage :is(h1,.lead,.hero-positioning,.hero-hardware-note) { color:#263344; text-shadow:none; }
:root[data-theme="light"] .home-page .home-hero .hero-stage .hero-eyebrow { color:#725d2f; }
/* Explicit text roles take precedence over legacy dark section selectors. */
:root[data-theme="light"] body main :is(h1,h2,h3,h4,strong,blockquote) { color:#263344 !important; }
:root[data-theme="light"] body main :is(p,li,small) { color:#4b5968 !important; }
:root[data-theme="light"] body main :is(.kicker,.eyebrow,.application-caption,.offer-unit,.subscription-note,.offer-quote) { color:#725d2f !important; }
:root[data-theme="light"] body .offer-controls .pricing-mode-switch button[aria-selected="true"] :is(strong,span) { color:#fffaf4 !important; }
:root[data-theme="light"] .site-header.is-scrolled { box-shadow:0 8px 24px #2633440d; }
:root[data-theme="dark"] {
 --ink:#edf1f4; --ink-soft:#b5c0ca; --navy:#36566f; --navy-deep:#0c131b;
 --blue:#8ab1cf; --blue-soft:#1a2935; --gold:#c5a969; --gold-strong:#d3b979;
 --paper:#111923; --paper-warm:#18232e; --surface:#18232e;
 --line:rgba(255,255,255,.12); --line-strong:rgba(255,255,255,.23);
 --shadow:0 22px 64px rgba(0,0,0,.28); --shadow-soft:0 12px 34px rgba(0,0,0,.22);
}
:root[data-theme="dark"] .nav-toggle span { background:#fff; }
:root[data-theme="light"] .home-page :is(.pricing-teaser,.entry-section) {
 --ink:#263344; --ink-soft:#4b5968; --navy:#263344; --navy-deep:#263344;
 --blue:#385c78; --gold-strong:#725d2f; --paper:#f8f3ed;
 --paper-warm:#ede4d7; --surface:#fffaf4; --line:rgba(38,51,68,.18);
}
:root[data-theme="light"] .home-page .pricing-teaser>.section-heading { border-color:#cec6bb; }

/* Original logo colours follow the site theme, including a manual override. */
.hero-logo-light { display:none; }
:root[data-theme="light"] .hero-logo-dark { display:none; }
:root[data-theme="light"] .hero-logo-light { display:block; }
:root[data-theme="light"] .home-hero .hero-overlay {
  background:linear-gradient(90deg,rgba(248,243,237,.9),rgba(248,243,237,.42) 48%,rgba(248,243,237,.04));
}
:root[data-theme="light"] .home-hero .hero-smoke-art { filter:saturate(.7) brightness(.92) contrast(1.2); }

/* One entrance per content group. Existing hero controls keep their own transforms. */
.home-hero .hero-content.hero-stage > * { animation:none !important; }
@media (prefers-reduced-motion:no-preference) {
  .home-hero .hero-stage :is(.hero-eyebrow,h1,.lead,.hero-positioning,.actions,.hero-hardware-note),
  .subpage-intro > * {
    animation:nikari-hero-enter 650ms cubic-bezier(.22,.61,.36,1) backwards;
  }
  .home-hero .hero-stage .hero-eyebrow { animation-delay:40ms; }
  .home-hero .hero-stage h1, .subpage-intro h1 { animation-delay:110ms; }
  .home-hero .hero-stage .lead, .subpage-intro .lead { animation-delay:200ms; }
  .home-hero .hero-stage .hero-positioning { animation-delay:260ms; }
  .home-hero .hero-stage .actions { animation-delay:320ms; }
  .home-hero .hero-stage .hero-hardware-note { animation-delay:380ms; }
  .home-hero:is(.is-awake,.is-tool-paused) .hero-stage :is(.hero-eyebrow,h1,.lead,.hero-positioning,.actions,.hero-hardware-note) { animation:none; }
  .reveal.reveal-ready {
    transform:translateY(12px);
    transition:opacity 520ms ease var(--reveal-delay,0ms), transform 520ms cubic-bezier(.22,.61,.36,1) var(--reveal-delay,0ms);
  }
  .reveal.reveal-ready.is-visible { transform:none; }
}
.reveal.reveal-ready:focus-within { opacity:1; transform:none; transition:none; }
@media (prefers-reduced-motion:reduce) {
  .reveal.reveal-ready { opacity:1; transform:none; transition:none; }
  .home-hero .hero-stage *, .subpage-intro > * { animation:none !important; }
}

/* Focused polish: recognisable clouds, labelled tools and quiet header controls. */
.home-page .home-hero .hero-smoke { display:none; }
.home-page .home-hero .hero-smoke-field {
  opacity:.88; filter:contrast(1.1) saturate(.78); transform:translateY(var(--mist-scroll,0px)) scale(var(--mist-spread,1.025));
  transform-origin:50% 50%; transition:transform 700ms ease-out,opacity 650ms ease;
}
.home-page .home-hero .hero-smoke-art {
  opacity:.9; filter:saturate(.7) brightness(.94) contrast(1.12); inset:-14%;
}
.home-page .home-hero .hero-smoke-field::after {
  content:""; position:absolute; inset:-12%; pointer-events:none;
  background:url('/site/images/hero-smoke.webp') 65% 50%/cover no-repeat; opacity:.22;
  transform:scaleX(-1) scale(1.12); mix-blend-mode:screen;
}
.home-page .home-hero:is(.is-awake,.is-tool-paused,.is-mobile-stage-focus) .hero-smoke-field { opacity:.7; filter:contrast(1.08) saturate(.75); }
:root[data-theme="light"] .home-page .home-hero .hero-smoke-field { opacity:.88; filter:invert(1) sepia(.12) saturate(.5) contrast(1.15); mix-blend-mode:multiply; }
:root[data-theme="light"] .home-page .home-hero .hero-smoke-art { filter:saturate(.6) brightness(.93) contrast(1.18); }
@keyframes nikari-mist-drift {
  from { transform:translate3d(-3%,1%,0) scale(1.04) rotate(-1deg); }
  to { transform:translate3d(3%,-2%,0) scale(1.12) rotate(1deg); }
}
@keyframes nikari-mist-counter {
  from { transform:translate3d(2%,0,0) scaleX(-1) scale(1.12); }
  to { transform:translate3d(-3%,3%,0) scaleX(-1) scale(1.05); }
}
@media(prefers-reduced-motion:no-preference) {
 .home-page .home-hero .hero-smoke-art { animation:nikari-mist-drift 12s ease-in-out infinite alternate; }
 .home-page .home-hero .hero-smoke-field::after { animation:nikari-mist-counter 17s ease-in-out infinite alternate; }
}
.home-page .home-hero.is-motion-paused .hero-smoke-field::after,
.home-page .home-hero.is-tool-paused .hero-smoke-field::after,
:root[data-page-hidden] .home-page .hero-smoke-field::after { animation-play-state:paused; }
.hero-tools-heading { position:absolute; top:1rem; left:50%; transform:translateX(-50%); text-align:center; width:max-content; max-width:calc(100% - 7rem); pointer-events:none; }
.hero-tools-heading h2 { margin:0; font-size:1.15rem; line-height:1.3; letter-spacing:0; font-weight:600; color:var(--ink); }
.hero-tools-heading p { margin:.35rem 0 0; font-size:.8rem; color:var(--ink-soft); }
@media(min-width:1101px) and (hover:hover) and (pointer:fine) {
 .hero-tools-heading { opacity:0; transition:opacity 350ms; }
 .home-hero:is(.is-awake,.is-tool-paused) .hero-tools-heading { opacity:1; }
}
@media(max-width:1100px), (hover:none) and (pointer:coarse) {
 .home-page .home-hero .hero-content.hero-stage { padding-bottom:38rem; }
 .home-page .home-hero .hero-tool-cloud { height:35rem; padding-top:7.7rem; }
 .hero-tools-heading { top:1.15rem; left:1rem; transform:none; text-align:left; max-width:calc(100% - 5rem); }
 .hero-tools-heading h2 { font-size:1.08rem; }
 .hero-tools-heading p { font-size:.76rem; line-height:1.5; max-width:29ch; }
 .home-page .home-hero .hero-tool-progress { top:5.35rem; left:1rem; width:8rem; }
 .hero-touch-logo { display:none; }
 .hero-touch-detail:not([hidden]) { top:7.5rem; }
 .home-page .home-hero .hero-smoke-field { opacity:.85; }
 .home-page .home-hero:is(.is-mobile-stage-focus,.is-tool-paused) .hero-smoke-field { opacity:.8; }
}
/* Retain large touch targets without visible circles. */
.theme-control { display:flex; align-items:center; gap:0; }
.site-header .theme-toggle,.site-header .help-toggle {
 display:grid;place-items:center;width:44px;height:44px;flex:0 0 44px;padding:0;border:0;border-radius:8px;
 background:transparent;color:#edf1f4;box-shadow:none;cursor:pointer;
}
.site-header :is(.theme-toggle,.help-toggle):hover { background:#ffffff0c; }
.site-header :is(.theme-toggle,.help-toggle):focus-visible { outline:2px solid #c5a969;outline-offset:1px; }
:root[data-theme="light"] .site-header :is(.theme-toggle,.help-toggle) { color:#263344;border:0;background:transparent; }
:root[data-theme="light"] .site-header :is(.theme-toggle,.help-toggle):hover { background:#26334409; }
.site-header .theme-options { width:min(320px,calc(100vw - 2rem)); padding:1rem; max-height:calc(100dvh - 6rem); overflow-y:auto; text-align:left; }
.help-heading { margin:0 0 .75rem; font-size:.95rem; font-weight:600; }
.theme-options .theme-choices { display:flex; gap:4px; }
.theme-options .theme-choices button { flex:1; min-width:0; width:auto; text-align:center; padding:.55rem .4rem; }
.theme-options .theme-choices button[aria-pressed="true"]::after { display:none; }
.theme-options .theme-choices button[aria-pressed="true"] { box-shadow:none; }
.theme-options .motion-preference { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin:.75rem 0 0; border:0; border-radius:7px; padding:.7rem .75rem; font-size:.8rem; line-height:1.35; }
.motion-preference span { float:none; flex:0 0 auto; margin-left:.5rem; opacity:0; }
.motion-preference[aria-pressed="true"] span { opacity:1; }
.theme-options .motion-preference[aria-pressed="true"]::after { display:none; }
.theme-options .motion-preference:disabled { opacity:.8;cursor:default; }
.help-instructions { border-top:1px solid #66808f55; }
.help-instructions summary { padding:.75rem 0; min-height:44px; cursor:pointer;font-size:.87rem; }
.help-instructions p { font-size:.84rem; line-height:1.65; margin:.25rem 0 .7rem; color:inherit; }
.theme-options .help-contact { display:block;padding:.65rem .8rem;margin-top:.5rem;border:1px solid #66808f;border-radius:8px; text-align:center;color:inherit;text-decoration:none;font-size:.85rem; }
.site-header .nav-links a.nav-cta {
  display:flex; align-items:center;justify-content:center; min-height:44px;
  background:#c5a969; border:0; box-shadow:none; text-decoration:none;
}
:root[data-theme="light"] .site-header .nav-links a.nav-cta { background:#263344;color:#fffaf4;border:0;box-shadow:none; }
.site-header .nav-links a.nav-cta::after { display:none; }
:root[data-theme="light"] .site-header .nav-links a.nav-cta:hover { background:#38516a; }
@media(max-width:850px) {
 .site-header .nav { grid-template-columns:auto minmax(1.35rem,1fr) 44px 44px; gap:4px; }
 .site-header .nav-links a.nav-cta { margin-top:.7rem; padding:.6rem 1rem; border-radius:.7rem; }
 .theme-options { right:-48px; }
}
.application-icon { width:25px;height:25px;flex-shrink:0;color:var(--gold); }
.application-top { align-items:center;gap:.7rem; }
.section-photo-intro { display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);gap:clamp(1.8rem,4vw,4rem);align-items:center;margin-bottom:2rem; }
.section-photo-intro .section-heading { margin:0; }
.context-photo { margin:0;min-width:0; }
.context-photo img { display:block;width:100%;height:auto;aspect-ratio:3/2;object-fit:cover;border-radius:1rem; }
.context-photo a { color:inherit;text-decoration:none; }
.context-photo a:hover { text-decoration:underline; }
@media(max-width:700px) {
 .section-photo-intro { grid-template-columns:1fr;gap:1.2rem; }
 .context-photo img { aspect-ratio:2/1; }
}

.back-to-top {
 position:fixed; z-index:45; right:clamp(1rem,2.5vw,2rem); bottom:max(1rem,env(safe-area-inset-bottom));
 display:grid; place-items:center; width:46px; height:46px; padding:0;
 color:#edf1f4; background:rgba(16,35,48,.94); border:1px solid #66808f; border-radius:50%;
 box-shadow:none; backdrop-filter:blur(8px); cursor:pointer;
 animation:back-to-top-in 180ms ease-out both;
}
.back-to-top[hidden] { display:none; }
.back-to-top:hover { background:#294657; }
.back-to-top:focus-visible { outline:2px solid #c5a969; outline-offset:3px; }
:root[data-theme="light"] .back-to-top { color:#263344; background:rgba(255,250,244,.95); border-color:#a69f93; box-shadow:none; }
:root[data-theme="light"] .back-to-top:hover { background:#ede4d7; }
@keyframes back-to-top-in { from { opacity:0; transform:translateY(7px); } to { opacity:1; transform:none; } }
@media(prefers-reduced-motion:reduce) { .back-to-top { animation:none; } }
:root[data-motion="reduced"] { scroll-behavior:auto !important; }
:root[data-motion="reduced"] *, :root[data-motion="reduced"] *::before, :root[data-motion="reduced"] *::after { animation:none !important;transition:none !important;scroll-behavior:auto !important; }
:root[data-motion="reduced"] .reveal.reveal-ready { opacity:1;transform:none; }
:root[data-motion="reduced"] .home-page .home-hero .hero-smoke-field { transform:none; }
@media(prefers-reduced-motion:reduce) {
 .home-page .home-hero .hero-smoke-field { transform:none; }
 .home-page .home-hero .hero-smoke-art,.home-page .home-hero .hero-smoke-field::after { animation:none; }
}

@media(max-width:1100px), (hover:none) and (pointer:coarse) {
 .home-page .home-hero .hero-touch-hint { visibility:hidden; }
 .home-page .home-hero.is-tool-paused .hero-touch-hint { visibility:visible; }
}
.site-header .nav-links a.nav-cta { color:#101923; }
:root[data-theme="light"] .site-header .nav-links a.nav-cta { color:#fffaf4; }
@media(max-width:1100px), (hover:none) and (pointer:coarse) {
 .home-page .home-hero .hero-tool-cloud { opacity:1 !important; }
}
@media(min-width:1101px) and (hover:hover) and (pointer:fine) {
 .home-page .home-hero:is(.is-awake,.is-tool-paused) .hero-network { z-index:3;opacity:1;filter:none; }
 .home-page .home-hero:is(.is-awake,.is-tool-paused) .hero-core-logo--asset { filter:none; }
}
@media(max-width:360px) {
 .site-header .theme-options { position:fixed;top:4.5rem;left:1rem;right:1rem;width:auto; }
}

/* Sommer-Systems-Verweis und dezente Jahrespreise. */
.provider-identity { margin:0; display:flex; flex-direction:column; align-items:center; gap:1.8rem; padding:1.4rem; }
.provider-wordmark { display:block; width:min(100%, 22rem); border-radius:.4rem; }
.provider-wordmark:focus-visible { outline:2px solid var(--gold); outline-offset:12px; }
.provider-wordmark img { display:block; width:100%; height:auto; }
.provider-wordmark .provider-logo-light { display:none; }
:root[data-theme="light"] .provider-wordmark .provider-logo-light { display:block; }
:root[data-theme="light"] .provider-wordmark .provider-logo-dark { display:none; }
.home-price-pair .annual-price, .offer-result > .annual-price { font-size:.875rem; line-height:1.5; color:var(--ink-soft); }
.home-price-pair .annual-price { margin-top:.5rem; }
.offer-result > .annual-price { margin:-.3rem 0 1.3rem; }
@media (max-width:700px) {
 .provider-identity { padding:1rem 0; gap:1.5rem; }
 .provider-wordmark { width:min(100%, 18rem); }
}

/* Included personal setup, presented as two short, scannable benefits. */
.abo-personal { list-style:none; margin:1rem 0 1.5rem; padding:0; display:grid; gap:1.2rem; }
.abo-personal li { display:flex; gap:.85rem; align-items:flex-start; }
.abo-personal strong { display:block; color:var(--ink); font-size:1rem; line-height:1.45; }
.abo-personal li p { margin:.35rem 0 0; font-size:.93rem; line-height:1.6; }
.abo-feature-icon,.abo-feature-count { display:grid; place-items:center; flex:0 0 1.8rem; height:1.8rem; border:1px solid var(--line); border-radius:.45rem; color:var(--gold); font-weight:600; }
.offer-result .abo-extension { font-size:.88rem; line-height:1.6; margin-top:1.2rem; color:var(--ink-soft); }
/* Keep the original cloud detail visible on ivory instead of inverting it to beige. */
:root[data-theme="light"] .home-page .home-hero .hero-smoke-field { filter:none; mix-blend-mode:multiply; opacity:.48; }
:root[data-theme="light"] .home-page .home-hero .hero-smoke-art { filter:grayscale(.85) brightness(.65) contrast(1.2); opacity:1; }
:root[data-theme="light"] .home-page .home-hero .hero-smoke-field::after { filter:grayscale(.85) brightness(.65) contrast(1.2); mix-blend-mode:multiply; opacity:.3; }

/* Overlapping mist slowly reshapes around fixed anchors; no horizontal pan. */
.home-page .home-hero .hero-smoke-field,
.home-page .home-hero:is(.is-awake,.is-tool-paused,.is-mobile-stage-focus) .hero-smoke-field,
:root[data-theme="light"] .home-page .home-hero .hero-smoke-field {
  transform:none; filter:none; opacity:var(--mist-presence,.85); mix-blend-mode:normal;
  mask-image:linear-gradient(to bottom,transparent,#000 10%,#000 78%,transparent);
  transition:opacity 1.2s ease;
}
.home-page .home-hero .hero-smoke-art,
:root[data-theme="light"] .home-page .home-hero .hero-smoke-art {
  inset:0; background:url('/site/images/nikari-mist-seamless-v2.webp') 65% 50%/cover no-repeat;
  transform-origin:78% 42%; filter:none; opacity:.65; mix-blend-mode:screen; will-change:transform,opacity;
  --mist-low:.55; --mist-high:.82;
  animation:nikari-mist-shape 12s ease-in-out -4s infinite alternate;
}
.home-page .home-hero .hero-smoke-field::after,
:root[data-theme="light"] .home-page .home-hero .hero-smoke-field::after {
  inset:0; background:url('/site/images/nikari-mist-seamless-v2.webp') 35% 65%/cover no-repeat;
  transform-origin:35% 65%; filter:none; opacity:.32; mix-blend-mode:screen; will-change:transform,opacity;
  --mist-low:.24; --mist-high:.42;
  animation:nikari-mist-fold 17s ease-in-out -9s infinite alternate;
}
:root[data-theme="light"] .home-page .home-hero .hero-smoke-art {
  filter:invert(1) contrast(1.2); mix-blend-mode:multiply; opacity:.48; --mist-low:.38; --mist-high:.60;
}
:root[data-theme="light"] .home-page .home-hero .hero-smoke-field::after {
  filter:invert(1) contrast(1.2); mix-blend-mode:multiply; opacity:.22; --mist-low:.15; --mist-high:.30;
}
@keyframes nikari-mist-shape {
 from { opacity:var(--mist-low); transform:scale(1.12,.94) rotate(-4deg); }
 to { opacity:var(--mist-high); transform:scale(.96,1.13) rotate(4deg); }
}
@keyframes nikari-mist-fold {
 from { opacity:var(--mist-high); transform:scale(-1.08,1.10) rotate(3deg); }
 to { opacity:var(--mist-low); transform:scale(-1.18,.94) rotate(-4deg); }
}
.home-page .home-hero:is(.is-motion-paused,.is-tool-paused) .hero-smoke-art,
.home-page .home-hero:is(.is-motion-paused,.is-tool-paused) .hero-smoke-field::after,
:root[data-page-hidden] .home-page .hero-smoke-art,
:root[data-page-hidden] .home-page .hero-smoke-field::after { animation-play-state:paused !important; }
@media(prefers-reduced-motion:reduce) {
 .home-page .home-hero .hero-smoke-art,.home-page .home-hero .hero-smoke-field::after { animation:none !important; }
}
.demo-example .demo-image-dark { display:block; }
.demo-example .demo-image-light { display:none; }
:root[data-theme="light"] .demo-example .demo-image-dark { display:none; }
:root[data-theme="light"] .demo-example .demo-image-light { display:block; }
.demo-example a { cursor:zoom-in; }
.demo-example a:focus-visible { outline:2px solid var(--gold);outline-offset:-4px; }
.demo-example img { display:block; }
/* The text stage's reserved space must not intercept touches on the tool panel. */
@media(max-width:1100px), (hover:none) and (pointer:coarse) {
 .home-page .home-hero .hero-content.hero-stage { pointer-events:none; }
 .home-page .home-hero .hero-content.hero-stage > * { pointer-events:auto; }
}

/* Clear contact actions and a separate, readable note in the closing section. */
.personal-contact .button { display:inline-flex; align-items:center; justify-content:center; gap:.65rem; }
.button-icon { width:1.15em; height:1.15em; flex:0 0 1.15em; }
.home-page .entry-section .closing-cta { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:2rem; }
.home-page .entry-section .closing-cta > div { min-width:0; }
.home-page .entry-section .closing-cta p.demo-safety-note { margin-top:1.2rem; font-size:.875rem; line-height:1.65; max-width:58ch; }
.home-page .entry-section .closing-cta .button { white-space:normal; text-align:center; max-width:100%; }
@media(max-width:1000px) {
 .home-page .entry-section .closing-cta { grid-template-columns:minmax(0,1fr); gap:1.5rem; }
 .home-page .entry-section .closing-cta > .button { justify-self:start; }
}
@media(max-width:700px) {
 .home-page .entry-section .closing-cta { padding:1.6rem 0; }
 .home-page .entry-section .closing-cta > .button { width:100%; }
 .home-page .home-hero .hero-smoke-art { background-position:80% center; }
}

/* Keep the mist texture legible on tall touch screens rather than cropping it to a blurred strip. */
@media(max-width:1100px), (hover:none) and (pointer:coarse) {
 .home-page .home-hero .hero-smoke-art,
 .home-page .home-hero .hero-smoke-field::after,
 :root[data-theme="light"] .home-page .home-hero .hero-smoke-art,
 :root[data-theme="light"] .home-page .home-hero .hero-smoke-field::after { background-size:cover; }
}

@media(max-width:1100px), (hover:none) and (pointer:coarse) {
 .home-page .home-hero .hero-smoke-art,
 :root[data-theme="light"] .home-page .home-hero .hero-smoke-art { inset:0; height:100%; }
 .home-page .home-hero .hero-smoke-field::after,
 :root[data-theme="light"] .home-page .home-hero .hero-smoke-field::after { inset:0; height:100%; }
}
@media(max-width:700px) {
 .home-page .home-hero .hero-smoke-art,
 :root[data-theme="light"] .home-page .home-hero .hero-smoke-art,
 .home-page .home-hero .hero-smoke-field::after,
 :root[data-theme="light"] .home-page .home-hero .hero-smoke-field::after { height:100%; }
}
