@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;
}

.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;
}

.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-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;
}

.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: flex-start;
  }
}

@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: flex-start;
  }

  .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 (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;
  }
}
