/* =========================================================
   Nakara — Headcount. Reinvented.
   Customer-facing site. Calm. Premium. Modern.
   ========================================================= */

/* -------- Brand tokens -------- */
:root {
  /* Palette: deep navy + warm off-white + single soft accent */
  --navy-900: #06182E;
  --navy-800: #0A2540;
  --navy-700: #14355B;
  --navy-500: #2E5A8A;
  --ink: #0F1B2D;
  --ink-soft: #3A4A60;
  --muted: #6B7A91;
  --line: #E6EAF0;
  --off-white: #F7F5F1;   /* warm paper */
  --paper: #FAF9F6;       /* slightly warmer than #fff */
  --white: #FFFFFF;

  /* Single accent — warm clay, used very sparingly (active row, focus, etc.) */
  --accent: #C97B5C;
  --accent-soft: #F1D9CE;

  /* Highlight for "new / highlight" row in hero mockup */
  --highlight: #E8F0EC;
  --highlight-line: #B9D4C5;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --container: 1180px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --t-fast: 160ms;
  --t-med: 280ms;
}

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.btn--primary:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn--ghost:hover {
  background: var(--navy-800);
  color: var(--white);
}

/* -------- Section labels & headlines (shared) -------- */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.section-h {
  font-size: clamp(1.6rem, 2.5vw + 1rem, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy-900);
  margin: 0 0 3rem;
  max-width: 26ch;
}

/* -------- Section 1: NAV -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.nav__logo-mark {
  height: 36px;
  width: 36px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.nav__wordmark {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy-900);
}
/* Trademark claim (pending — ™ only; never ® until registration) */
.tm {
  font-size: 0.48em;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0;
  vertical-align: super;
  position: relative;
  top: -0.15em;
  margin-left: 0.08em;
  opacity: 0.72;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.35rem;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--t-fast) var(--ease);
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .nav__links { gap: 1.75rem; }
  .nav__links a { font-size: 0.92rem; }
}
.nav__links a:hover { color: var(--navy-800); }
.nav__signin { color: var(--navy-800) !important; font-weight: 500; }

.nav__cta { display: none; }

.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0 9px;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--navy-800);
  border-radius: 1px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-800);
  padding: 0.5rem 0;
}

/* -------- Section 2: HERO -------- */
.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201, 123, 92, 0.06), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero__copy { max-width: 36rem; }
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin: 0 0 1rem;
}
.hero__headline {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--navy-900);
  margin: 0 0 1.1rem;
}
.hero__lede {
  font-size: clamp(1.08rem, 0.5vw + 1rem, 1.25rem);
  color: var(--ink);
  max-width: 34rem;
  margin: 0 0 0.85rem;
  line-height: 1.5;
  font-weight: 500;
}
.hero__lede strong {
  color: var(--navy-900);
  font-weight: 600;
}
.hero__sub {
  font-size: clamp(1.02rem, 0.35vw + 0.95rem, 1.12rem);
  color: var(--ink-soft);
  max-width: 32rem;
  margin: 0 0 2rem;
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.hero__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-800);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--t-fast) var(--ease);
}
.hero__link:hover { border-bottom-color: var(--navy-800); }
.hero__proof {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 30rem;
  line-height: 1.5;
}

/* Hero visual — animated live product stage (mobile-first) */
.hero__visual {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}
.hero-stage {
  position: relative;
  width: 100%;
  min-height: 22rem;
  padding: 0.5rem 0 0.25rem;
}
.hero-stage__glow {
  position: absolute;
  inset: 10% 5% 15%;
  background: radial-gradient(ellipse at 55% 40%, rgba(143, 179, 161, 0.28), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Phone */
.hero-phone {
  position: relative;
  z-index: 1;
  width: 58%;
  max-width: 12.5rem;
  margin-left: 0;
  border-radius: 1.35rem;
  background: linear-gradient(165deg, #0f2744 0%, #0a1b30 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 40px -18px rgba(10, 37, 64, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 0.55rem 0.55rem 0.7rem;
}
.hero-phone__notch {
  width: 36%;
  height: 0.28rem;
  margin: 0.15rem auto 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.hero-phone__screen {
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.85rem 0.75rem 0.75rem;
  min-height: 11.5rem;
}
.hero-phone__label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-phone__num {
  margin: 0.35rem 0 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-phone__wave {
  display: flex;
  align-items: flex-end;
  gap: 0.22rem;
  height: 1.4rem;
  margin-bottom: 0.75rem;
}
.hero-phone__wave span {
  display: block;
  width: 0.28rem;
  border-radius: 999px;
  background: #7dcea0;
  animation: hero-wave 1.1s ease-in-out infinite;
}
.hero-phone__wave span:nth-child(1) { height: 35%; animation-delay: 0s; }
.hero-phone__wave span:nth-child(2) { height: 70%; animation-delay: 0.12s; }
.hero-phone__wave span:nth-child(3) { height: 100%; animation-delay: 0.24s; }
.hero-phone__wave span:nth-child(4) { height: 55%; animation-delay: 0.36s; }
.hero-phone__wave span:nth-child(5) { height: 40%; animation-delay: 0.48s; }
@keyframes hero-wave {
  0%, 100% { transform: scaleY(0.55); opacity: 0.65; }
  50% { transform: scaleY(1); opacity: 1; }
}
.hero-phone__line {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.78);
}
.hero-phone__line--a { animation: hero-fade-in 8s ease-in-out infinite; }
.hero-phone__line--b {
  color: rgba(255,255,255,0.55);
  animation: hero-fade-in 8s ease-in-out infinite;
  animation-delay: 1.2s;
}
@keyframes hero-fade-in {
  0%, 8% { opacity: 0; transform: translateY(4px); }
  18%, 70% { opacity: 1; transform: translateY(0); }
  85%, 100% { opacity: 0.35; }
}
.hero-phone__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: #b8e0c8;
}

/* Chat card */
.hero-chat {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 2.4rem;
  width: 68%;
  max-width: 14.5rem;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(10, 37, 64, 0.03),
    0 22px 44px -22px rgba(10, 37, 64, 0.35);
  padding: 0.7rem 0.7rem 0.65rem;
  animation: hero-float 5.5s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-chat__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}
.hero-chat__head img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 35%;
  background: #0b1f36;
}
.hero-chat__head strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--navy-900);
  line-height: 1.15;
}
.hero-chat__head span {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--muted);
}
.hero-chat__log {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 6.5rem;
}
.hero-chat__bubble {
  max-width: 95%;
  padding: 0.45rem 0.55rem;
  border-radius: 0.7rem;
  font-size: 0.68rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(6px);
  animation: hero-bubble 9s ease-in-out infinite;
}
.hero-chat__bubble--user {
  align-self: flex-end;
  background: var(--navy-900);
  color: #fff;
  border-bottom-right-radius: 0.25rem;
  animation-delay: 0.4s;
}
.hero-chat__bubble--bot {
  align-self: flex-start;
  background: var(--paper);
  color: var(--navy-800);
  border: 1px solid var(--line);
  border-bottom-left-radius: 0.25rem;
  animation-delay: 1.6s;
}
.hero-chat__bubble--late { animation-delay: 3.2s; }
@keyframes hero-bubble {
  0%, 6% { opacity: 0; transform: translateY(6px); }
  14%, 78% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0.25; }
}
.hero-chat__typing {
  display: inline-flex;
  gap: 0.22rem;
  margin-top: 0.45rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: var(--paper);
  width: fit-content;
}
.hero-chat__typing i {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--muted);
  animation: hero-dot 1.2s ease-in-out infinite;
}
.hero-chat__typing i:nth-child(2) { animation-delay: 0.15s; }
.hero-chat__typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes hero-dot {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

/* Offerings strip */
.hero-offers {
  position: relative;
  z-index: 3;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding: 0;
  justify-content: flex-start;
}
.hero-offers li {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  opacity: 0.55;
  transition: opacity 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  animation: hero-offer-pulse 8s ease-in-out infinite;
}
.hero-offers li:nth-child(1) { animation-delay: 0s; }
.hero-offers li:nth-child(2) { animation-delay: 2s; }
.hero-offers li:nth-child(3) { animation-delay: 4s; }
.hero-offers li:nth-child(4) { animation-delay: 6s; }
@keyframes hero-offer-pulse {
  0%, 18%, 100% { opacity: 0.5; background: var(--white); border-color: var(--line); }
  8%, 14% {
    opacity: 1;
    background: var(--highlight);
    border-color: var(--highlight-line);
  }
}
.hero-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d9b6e;
  box-shadow: 0 0 0 4px rgba(61, 155, 110, 0.15);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-phone__wave span,
  .hero-phone__line,
  .hero-chat,
  .hero-chat__bubble,
  .hero-chat__typing i,
  .hero-offers li {
    animation: none !important;
  }
  .hero-chat__bubble,
  .hero-phone__line { opacity: 1; transform: none; }
  .hero-offers li { opacity: 0.85; }
}

@media (min-width: 480px) {
  .hero__visual { max-width: 26rem; }
  .hero-stage { min-height: 24rem; }
}

@media (min-width: 768px) {
  .hero__visual {
    max-width: none;
    margin: 0;
    justify-content: flex-end;
  }
  .hero-stage {
    width: 100%;
    max-width: 26rem;
    margin-left: auto;
    min-height: 26rem;
  }
  .hero-phone { max-width: 13.5rem; }
  .hero-chat {
    top: 2.75rem;
    max-width: 15.5rem;
  }
}

/* Hide unused old hero-card styles if present */
.hero-card { display: none; }
.board { display: none; }

/* -------- Section 2.5: WHAT NAKARA IS -------- */
.what {
  padding: 5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.what__inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.what__lead {
  font-size: clamp(1.15rem, 1vw + 1rem, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.45;
  color: var(--navy-900);
  margin: 0 0 3rem;
}
.what__glance {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}
.glance {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.glance__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin: 0 0 0.4rem;
}
.glance__p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* -------- COST / MONEY LEAK (content revision) -------- */
.cost {
  padding: 5rem 0 5.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.cost .section-h { max-width: 22ch; margin-bottom: 0.9rem; }
.cost__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 44rem;
  margin: 0 0 2.25rem;
  line-height: 1.55;
}
.cost__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 800px) {
  .cost__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.cost-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem 1.5rem;
}
.cost-card__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.55rem;
}
.cost-card__h {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 0.45rem;
  line-height: 1.25;
}
.cost-card__p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.math-box {
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem 1.55rem;
  margin-bottom: 2.25rem;
}
.math-box__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin: 0 0 0.75rem;
}
.math-box__lead {
  font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.28rem);
  line-height: 1.45;
  margin: 0 0 0.75rem;
  max-width: 48rem;
  letter-spacing: -0.01em;
}
.math-box__lead strong { color: #fff; font-weight: 650; }
.math-box__close {
  font-size: 1.02rem;
  margin: 0 0 0.85rem;
  color: rgba(255,255,255,0.92);
  max-width: 40rem;
}
.math-box__note {
  font-size: 0.82rem;
  margin: 0;
  color: rgba(255,255,255,0.55);
}
.roi {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.6rem;
}
@media (min-width: 900px) {
  .roi {
    grid-template-columns: 0.9fr 1.35fr;
    gap: 1.75rem;
    padding: 1.75rem 1.85rem;
  }
}
.roi__h {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 0.45rem;
}
.roi__p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 28ch;
}
.roi__form { display: flex; flex-direction: column; gap: 1rem; }
.roi__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .roi__fields { grid-template-columns: repeat(3, 1fr); }
}
.roi__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.roi__field input {
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  text-transform: none;
}
.roi__field input:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}
.roi__result {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem 1.1rem;
}
.roi__result-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.35rem;
}
.roi__result-num {
  font-size: clamp(1.8rem, 2vw + 1.2rem, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin: 0 0 0.35rem;
  line-height: 1.1;
}
.roi__result-sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.45;
}

/* -------- PROOF / CALL NAKA -------- */
.proof {
  padding: 5rem 0;
  background: var(--navy-900);
  color: var(--white);
}
.proof__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .proof__inner { grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; }
}
.proof .section-label { color: rgba(255,255,255,0.55); }
.proof .section-h {
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 0.9rem;
}
.proof__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 40rem;
  margin: 0 0 1.35rem;
  line-height: 1.55;
}
.proof__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.proof .btn--primary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}
.proof .btn--primary:hover {
  background: var(--off-white);
  border-color: var(--off-white);
}
.proof .btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.proof .btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.proof .hero__link {
  color: rgba(255,255,255,0.78);
}
.proof .hero__link:hover { color: var(--white); }
.proof__note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 40rem;
  line-height: 1.5;
}
.proof__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.55rem;
}
.proof__card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 0.5rem;
}
.proof__card-num {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}
.proof__card-line {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  margin: 0 0 1.1rem;
  font-style: italic;
}
.proof__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.proof__card-list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  padding-left: 1.1rem;
  position: relative;
}
.proof__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Problem close line */
.problem__close {
  margin: 1.35rem 0 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

/* Flagship-first what-we-build */
.how__grid--flagship {
  grid-template-columns: 1fr !important;
  max-width: 52rem;
}
.feature--flagship {
  padding: 1.6rem 1.55rem 1.65rem;
}
.feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

/* Why: three pillars */
@media (min-width: 800px) {
  .why__grid--three {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}
.why__grid--three .pillar__p { max-width: 36ch; }

/* Legal mini-pages */
.legal-page {
  padding: 4.5rem 0 5.5rem;
  background: var(--white);
}
.legal-page .section-h { max-width: 28ch; margin-bottom: 1rem; }
.legal-page__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 44rem;
  margin: 0 0 2rem;
  line-height: 1.55;
}
.legal-page__body {
  max-width: 44rem;
  display: grid;
  gap: 1.25rem;
}
.legal-page__body h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0.5rem 0 0;
  letter-spacing: -0.01em;
}
.legal-page__body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.98rem;
}
.legal-page__body a { color: var(--navy-800); text-decoration: underline; text-underline-offset: 2px; }

/* -------- Letter from the Founder -------- */
.letter-page {
  padding: 4.5rem 0 5.5rem;
  background:
    radial-gradient(900px 420px at 12% -8%, rgba(201, 123, 92, 0.07), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--white) 55%, var(--paper) 100%);
}
.letter-page__shell {
  max-width: 44rem;
  margin: 0 auto;
}
.letter-page__eyebrow { margin-bottom: 0.75rem; }
.letter-page__corp {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.letter-page__title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy-900);
  max-width: 18ch;
}
.letter-page__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(6, 24, 46, 0.06);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.letter-page__body {
  display: grid;
  gap: 1.2rem;
}
.letter-page__body > p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ink-soft);
}
.letter-page__pull {
  font-size: 1.2rem !important;
  font-weight: 600;
  line-height: 1.45 !important;
  color: var(--navy-900) !important;
  letter-spacing: -0.015em;
  padding: 0.35rem 0 0.35rem 1rem;
  border-left: 3px solid var(--accent);
}
.letter-page__pull--soft {
  border-left-color: var(--navy-500);
  font-weight: 600;
}
.letter-page__close {
  font-size: 1.12rem !important;
  font-weight: 600;
  color: var(--navy-900) !important;
  line-height: 1.55 !important;
  margin-top: 0.35rem !important;
}
.letter-page__sign {
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.letter-page__sig {
  display: block;
  width: min(200px, 52vw);
  height: auto;
  margin: 0 0 0.15rem -0.25rem;
  user-select: none;
  pointer-events: none;
}
.letter-page__name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.letter-page__role {
  margin: 0.15rem 0 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.letter-page__site {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
}
.letter-page__site a {
  color: var(--navy-800);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.letter-page__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 2rem;
}
.letter-page__phone {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-800);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-letter .nav__links a[aria-current="page"] {
  color: var(--navy-900);
  font-weight: 600;
}

/* -------- Section 2.6: WHO IT'S FOR -------- */
.audience {
  padding: 5rem 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.audience__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2.25rem;
}
.audience .section-h { max-width: 28ch; margin-bottom: 0.85rem; }
.audience__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42rem;
  margin: 0;
  line-height: 1.55;
}
.audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.9rem;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -16px rgba(10, 37, 64, 0.12);
  border-color: #D7DDE7;
}
.audience-card__h {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 0.6rem;
}
.audience-card__p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 36ch;
}

/* Behind Nakara card (beside Who it's for intro) */
.behind-card {
  margin: 0;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(10, 37, 64, 0.03),
    0 18px 36px -26px rgba(10, 37, 64, 0.2);
}
.behind-card .section-label {
  margin-bottom: 0.75rem;
}
.behind-card .behind__lead {
  font-size: clamp(1rem, 0.5vw + 0.92rem, 1.15rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.45;
  color: var(--navy-900);
  margin: 0 0 0.9rem;
  text-align: left;
}
.behind-card .behind__quiet {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
  text-align: left;
}

@media (min-width: 900px) {
  .audience__top {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.75rem;
    align-items: center;
    margin-bottom: 2.75rem;
  }
}

/* -------- Section 3: PROBLEM -------- */
.problem {
  padding: 5rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}
.problem__title {
  margin: 0 0 1.5rem;
  max-width: 14ch;
}
.problem__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: prob;
}
.problem__item {
  position: relative;
  padding: 1.75rem 0 1.75rem 3.5rem;
  border-top: 1px solid var(--line);
  counter-increment: prob;
}
.problem__item:last-child { border-bottom: 1px solid var(--line); }
.problem__item::before {
  content: counter(prob, decimal-leading-zero);
  position: absolute;
  left: 0; top: 1.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.problem__h {
  font-size: clamp(1.15rem, 1.2vw + 0.85rem, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--navy-900);
  margin: 0 0 0.45rem;
  max-width: 28ch;
}
.problem__sub {
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0;
  line-height: 1.55;
}
.problem__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(10, 37, 64, 0.03),
    0 22px 44px -24px rgba(10, 37, 64, 0.28);
  background: #dfe5ec;
}
.problem__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
}

@media (min-width: 900px) {
  .problem__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
  }
  .problem__media {
    position: sticky;
    top: 6.5rem;
  }
}

/* -------- Section 3.5: WHAT YOU STOP DOING -------- */
.stop {
  padding: 5rem 0 6rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.stop__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}
.stop .section-h { max-width: 28ch; margin-bottom: 1.25rem; }
.stop__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 44rem;
}
.stop__item {
  position: relative;
  padding: 1.5rem 0 1.5rem 1.75rem;
  border-top: 1px solid var(--line);
}
.stop__item:last-child { border-bottom: 1px solid var(--line); }
.stop__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.85rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: transparent;
}
.stop__h {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.stop__p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 48ch;
}
.stop__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(10, 37, 64, 0.03),
    0 22px 44px -24px rgba(10, 37, 64, 0.28);
  background: #e8edf2;
}
.stop__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 25%;
}

@media (min-width: 900px) {
  .stop__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
  }
  .stop__media {
    position: sticky;
    top: 6.5rem;
  }
}

/* -------- Section 4: HOW NAKARA WORKS -------- */
.how {
  padding: 5rem 0 6rem;
  background: var(--white);
}
.how .section-h { max-width: 28ch; }
.how__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 0 2.5rem;
}
.how__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2.25rem;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -16px rgba(10, 37, 64, 0.12);
  border-color: #D7DDE7;
}
.feature__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.9rem;
}
.feature__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--navy-900);
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.feature__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature__benefits li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.feature__benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 1.5px;
  background: var(--accent);
}
.feature__note {
  margin: 1.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.how__flex {
  margin-top: 2rem;
  padding: 2rem 1.75rem 2.15rem;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}
.how__flex-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.how__flex-h {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.how__flex-p {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 62ch;
}

/* -------- Section 4.5: HOW A PLANNING CYCLE WORKS -------- */
.cycle {
  padding: 5rem 0 6rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.cycle__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.cycle .section-h { max-width: 24ch; margin-bottom: 0.75rem; }
.cycle__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 40ch;
  line-height: 1.55;
}
.cycle__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.cycle__step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.75rem;
}
.cycle__num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.cycle__h {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 0.5rem;
}
.cycle__p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 36ch;
}

/* Animated Discover→Improve reel */
.cycle-reel {
  position: relative;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}
.cycle-reel__stage {
  position: relative;
  height: 11.5rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(143, 179, 161, 0.22), transparent 55%),
    linear-gradient(165deg, #0f2744 0%, #0a1b30 100%);
  border: 1px solid rgba(15, 39, 68, 0.35);
  box-shadow: 0 22px 44px -24px rgba(10, 37, 64, 0.4);
  overflow: hidden;
}
.cycle-reel__card {
  position: absolute;
  inset: 0;
  padding: 1.35rem 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  animation: cycle-flip 12s ease-in-out infinite;
}
.cycle-reel__card--1 { animation-delay: 0s; }
.cycle-reel__card--2 { animation-delay: 3s; }
.cycle-reel__card--3 { animation-delay: 6s; }
.cycle-reel__card--4 { animation-delay: 9s; }
@keyframes cycle-flip {
  0%, 5% { opacity: 0; transform: translateY(14px) scale(0.97); }
  10%, 22% { opacity: 1; transform: translateY(0) scale(1); }
  28%, 100% { opacity: 0; transform: translateY(-10px) scale(0.98); }
}
.cycle-reel__num {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.55rem;
}
.cycle-reel__card strong {
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.35rem;
}
.cycle-reel__card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  max-width: 18ch;
}
.cycle-reel__icon {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
/* Simple geometric marks per step */
.cycle-reel__icon--discover::before,
.cycle-reel__icon--design::before,
.cycle-reel__icon--deploy::before,
.cycle-reel__icon--improve::before {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  border: 2px solid #7dcea0;
}
.cycle-reel__icon--design::before {
  border-radius: 0.35rem;
  transform: rotate(15deg);
}
.cycle-reel__icon--deploy::before {
  border-radius: 0.2rem;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border: 0;
  background: #7dcea0;
  inset: 30% 28% 26%;
}
.cycle-reel__icon--improve::before {
  border-radius: 0;
  border: 0;
  background: linear-gradient(90deg, transparent 40%, #7dcea0 40%, #7dcea0 60%, transparent 60%),
              linear-gradient(0deg, transparent 40%, #7dcea0 40%, #7dcea0 60%, transparent 60%);
  inset: 30%;
}
.cycle-reel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.cycle-reel__dots span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--line);
  animation: cycle-dot 12s ease-in-out infinite;
}
.cycle-reel__dots span:nth-child(1) { animation-delay: 0s; }
.cycle-reel__dots span:nth-child(2) { animation-delay: 3s; }
.cycle-reel__dots span:nth-child(3) { animation-delay: 6s; }
.cycle-reel__dots span:nth-child(4) { animation-delay: 9s; }
@keyframes cycle-dot {
  0%, 8%, 100% { background: var(--line); transform: scale(1); }
  10%, 25% { background: var(--navy-800); transform: scale(1.25); }
  30% { background: var(--line); transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .cycle-reel__card,
  .cycle-reel__dots span { animation: none !important; }
  .cycle-reel__card--1 { opacity: 1; transform: none; }
  .cycle-reel__card--2,
  .cycle-reel__card--3,
  .cycle-reel__card--4 { display: none; }
}

@media (min-width: 900px) {
  .cycle__top {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
  }
  .cycle-reel {
    margin: 0 0 0 auto;
    max-width: 22rem;
  }
  .cycle-reel__stage { height: 12.5rem; }
}

/* -------- Section 5.5: HOW TEAMS USE NAKARA -------- */
.usecases {
  padding: 5rem 0 6rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.usecases__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.usecases__copy .section-h {
  max-width: 18ch;
  margin-bottom: 1.75rem;
}
.usecases__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 40rem;
}
.usecase {
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent-soft);
}
.usecase__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin: 0 0 0.5rem;
}
.usecase__body {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 48ch;
}

/* Tall Naka capacity board (left) — distinct from cycle reel */
.naka-board {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  min-height: 100%;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    radial-gradient(90% 60% at 15% 0%, rgba(125, 206, 160, 0.16), transparent 55%),
    linear-gradient(175deg, #102a48 0%, #0a1b30 55%, #081624 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 28px 50px -28px rgba(10, 37, 64, 0.5);
}
.naka-board__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}
.naka-board__face {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 32%;
  border: 2px solid rgba(125, 206, 160, 0.45);
  box-shadow: 0 0 0 4px rgba(125, 206, 160, 0.12);
  background: #0b1f36;
  flex-shrink: 0;
}
.naka-board__who strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 650;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.naka-board__who span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
}
.naka-board__live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dcea0;
  box-shadow: 0 0 0 0 rgba(125, 206, 160, 0.5);
  animation: naka-live 1.8s ease-out infinite;
}
@keyframes naka-live {
  0% { box-shadow: 0 0 0 0 rgba(125, 206, 160, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(125, 206, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 206, 160, 0); }
}
.naka-board__tag {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.naka-board__lanes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.naka-board__lane {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0.25rem 0.75rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.35s ease, background 0.35s ease;
}
.naka-board__lane.is-run {
  border-color: rgba(125, 206, 160, 0.28);
  background: rgba(125, 206, 160, 0.08);
  animation: naka-lane-glow 3.2s ease-in-out infinite;
}
.naka-board__lane.is-run:nth-child(3) { animation-delay: 1.1s; }
@keyframes naka-lane-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(125, 206, 160, 0); }
  50% { box-shadow: 0 0 0 1px rgba(125, 206, 160, 0.2); }
}
.naka-board__lane.is-done {
  border-color: rgba(125, 206, 160, 0.18);
}
.naka-board__lane-label {
  grid-column: 1;
  font-size: 0.82rem;
  font-weight: 650;
  color: #fff;
  letter-spacing: -0.01em;
}
.naka-board__lane-status {
  grid-column: 2;
  justify-self: end;
  align-self: start;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.naka-board__lane.is-done .naka-board__lane-status { color: #b8e0c8; }
.naka-board__lane.is-run .naka-board__lane-status { color: #7dcea0; }
.naka-board__meter {
  grid-column: 1 / -1;
  display: block;
  height: 4px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.naka-board__meter i {
  display: block;
  height: 100%;
  width: var(--p, 50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #5fad88, #7dcea0);
}
.naka-board__lane.is-run .naka-board__meter i {
  animation: naka-meter 2.8s ease-in-out infinite alternate;
}
@keyframes naka-meter {
  from { filter: brightness(0.95); }
  to { filter: brightness(1.15); }
}
.naka-board__foot {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.naka-board__bubble {
  position: relative;
  margin: 0 0 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.85rem 0.85rem 0.85rem 0.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
  font-style: italic;
}
.naka-board__meta {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.42);
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .naka-board__live,
  .naka-board__lane.is-run,
  .naka-board__lane.is-run .naka-board__meter i {
    animation: none !important;
  }
}

@media (min-width: 900px) {
  .usecases__inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.25rem;
    align-items: stretch;
  }
  .naka-board {
    margin: 0;
    max-width: none;
    min-height: 100%;
    height: 100%;
    padding: 1.75rem 1.5rem 1.55rem;
  }
  .naka-board__lanes {
    gap: 0.85rem;
  }
  .naka-board__lane {
    padding: 1rem 1rem;
  }
  .naka-board__face {
    width: 64px;
    height: 64px;
  }
}

/* -------- Section 6: EARLY ACCESS -------- */
.early {
  padding: 5rem 0 6rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.early__inner {
  max-width: 40rem;
}
.early .section-h { max-width: 22ch; margin-bottom: 1rem; }
.early__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 48ch;
}
.early__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.early__list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.early__list li:last-child { border-bottom: 0; }
.early__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 2px var(--accent);
}

/* -------- FAQ (full width) -------- */
.faq {
  padding: 5rem 0 6rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.faq .section-h {
  max-width: 18ch;
  margin-bottom: 1.5rem;
}
.faq__list {
  max-width: 44rem;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.25rem 0;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  cursor: pointer;
  line-height: 1.35;
}
.faq__q:hover { color: var(--navy-700); }
.faq__q:focus-visible {
  outline: 2px solid var(--navy-800);
  outline-offset: 3px;
  border-radius: 2px;
}
.faq__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--navy-800);
  border-radius: 1px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.faq__icon::before {
  left: 0; top: 8px;
  width: 18px; height: 1.5px;
}
.faq__icon::after {
  left: 8px; top: 0;
  width: 1.5px; height: 18px;
}
.faq__q[aria-expanded="true"] .faq__icon::after {
  opacity: 0;
  transform: rotate(90deg);
}
.faq__a {
  padding: 0 0 1.35rem;
}
.faq__a[hidden] { display: none; }
.faq__a p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 48ch;
}

/* legacy */
.behind { display: none; }
.faq-behind { display: none; }

/* -------- Section 5: WHY NAKARA -------- */
.why {
  padding: 5rem 0 6rem;
  background: var(--off-white);
  border-top: 1px solid var(--line);
}
.why .section-h { max-width: 32ch; margin-bottom: 1rem; }
.why__diff {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin: 0 0 3rem;
  max-width: 48ch;
  line-height: 1.55;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.pillar { padding: 0 0 0 1.25rem; border-left: 2px solid var(--line); }
.pillar__h {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 0.5rem;
}
.pillar__p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 32ch;
  line-height: 1.55;
}

/* -------- Section 6: CUSTOMER VOICE -------- */
.customer {
  padding: 5rem 0;
  background: var(--white);
}
.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
  margin: 0 0 4rem;
  opacity: 0.7;
}
.logos__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}
.logos__name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.shape {
  width: 22px;
  height: 22px;
  background: #C8CFD9;
  flex-shrink: 0;
}
.shape--circle  { border-radius: 50%; }
.shape--square  { border-radius: 3px; }
.shape--triangle {
  background: transparent;
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #C8CFD9;
}
.shape--diamond  { transform: rotate(45deg); border-radius: 2px; }
.shape--hex {
  border-radius: 4px;
  background: #C8CFD9;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.quote {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.quotes .quote { margin: 0; }
.quote p {
  font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--navy-900);
  margin: 0 0 1.25rem;
}
.quote__attr {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: normal;
}
.quote__attr cite { font-style: normal; font-weight: 600; color: var(--navy-800); }
.quote__placeholder {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: middle;
}

/* -------- Section 7: CTA -------- */
.cta {
  padding: 6rem 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(10, 37, 64, 0.04), transparent 70%),
    var(--paper);
  border-top: 1px solid var(--line);
}
.cta__inner { text-align: center; max-width: 38rem; margin: 0 auto; }
.cta__h {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--navy-900);
  margin: 0 0 0.9rem;
}
.cta__sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 2.25rem;
  line-height: 1.55;
}
.cta__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
}
.cta__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cta__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.cta__honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.cta__form input,
.cta__form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  width: 100%;
  box-sizing: border-box;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.cta__form textarea {
  min-height: 8.5rem;
  resize: vertical;
  line-height: 1.5;
}
.cta__form input::placeholder,
.cta__form textarea::placeholder { color: var(--muted); }
.cta__form input:focus,
.cta__form textarea:focus {
  outline: none;
  border-color: var(--navy-800);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.08);
}
.cta__form .btn {
  width: 100%;
  margin-top: 0.25rem;
}
.cta__form .btn:disabled {
  opacity: 0.7;
  cursor: wait;
}
.cta__status {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}
.cta__status.is-ok { color: #2F6B4F; }
.cta__status.is-err { color: #9B3B2E; }

/* -------- Section 8: FOOTER -------- */
.footer {
  padding: 4rem 0 2rem;
  background: var(--navy-900);
  color: #B8C2D2;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand { display: flex; flex-direction: column; gap: 0.9rem; }
.footer__logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  width: fit-content;
}
.footer__logo-mark {
  height: 36px;
  width: 36px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  /* color mark (enso-circuit trial) — no mono invert */
  opacity: 1;
}
.footer__wordmark {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #FFFFFF;
}
.footer__wordmark .tm {
  opacity: 0.65;
  color: inherit;
}
.footer__tm-note {
  font-size: 0.72rem;
  line-height: 1.45;
  color: #7A8AA0;
  margin: 0.35rem 0 0;
  max-width: 22rem;
}
.footer__base .footer__tm-note {
  margin: 0;
  max-width: none;
}
.footer__tm-inline {
  white-space: nowrap;
  font-weight: 500;
}
.footer__base p {
  max-width: 48rem;
}
.footer__tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7A8AA0;
  margin: 0;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__h {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.4rem;
}
.footer__col a {
  font-size: 0.88rem;
  color: #B8C2D2;
  transition: color var(--t-fast) var(--ease);
}
.footer__col a:hover { color: var(--white); }

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: #7A8AA0;
}
.footer__base p { margin: 0; }
.footer__quiet { font-style: italic; }

.footer__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  font-size: 0.75rem;
  color: #7A8AA0;
}
.footer__meta p { margin: 0; }
.footer__coming { letter-spacing: 0.04em; }
.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.04em;
}
.footer__status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7FB08A;
}

/* -------- Reveal animation -------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- Responsive -------- */
@media (min-width: 560px) {
  .logos { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  body { font-size: 17.5px; }

  .nav__burger { display: none; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }

  .hero { padding: 7rem 0 6rem; }
  .hero__inner { grid-template-columns: 1.05fr 1fr; gap: 5rem; }

  .what { padding: 6.5rem 0; }
  .what__glance { grid-template-columns: repeat(3, 1fr); }

  .audience { padding: 6.5rem 0; }
  .audience__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .problem { padding: 7rem 0; }
  .problem__item { padding: 2.5rem 0 2.5rem 4.5rem; }

  .stop { padding: 7rem 0 8rem; }

  .how { padding: 7rem 0 8rem; }
  .how__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .how__flex {
    padding: 2.25rem 2.25rem 2.4rem;
  }

  .cycle { padding: 7rem 0 8rem; }
  .cycle__steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .why { padding: 7rem 0 8rem; }
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }

  .usecases { padding: 7rem 0 8rem; }

  .early { padding: 7rem 0 8rem; }

  .behind { padding: 6rem 0; }

  .faq { padding: 7rem 0 8rem; }

  .cta { padding: 8rem 0; }
  .cta__form { max-width: 30rem; }

  .footer { padding: 5rem 0 2rem; }
  .footer__inner {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
}

@media (min-width: 1100px) {
  .how__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .cycle__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .why__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

/* -------- Agents showcase page (shareable; not in main nav) -------- */
.page-agents .nav__links a { font-size: 0.88rem; }

.agents-hero {
  padding: 7.5rem 0 4rem;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(10, 37, 64, 0.05), transparent 70%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.agents-hero__inner { max-width: 40rem; }
.agents-hero__h {
  font-size: clamp(2rem, 3.5vw + 1rem, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy-900);
  margin: 0 0 1rem;
}
.agents-hero__sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 48ch;
}
.agents-hero__proof {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
}
.agents-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.agents-roster {
  padding: 5rem 0 4rem;
  background: var(--white);
}
.agents-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 2.5rem;
  line-height: 1.6;
}
.agents-roster__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.roster-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.roster-card:hover {
  border-color: #D7DDE7;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -16px rgba(10, 37, 64, 0.12);
}
.roster-card__name {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.roster-card__role {
  font-size: 0.92rem;
  color: var(--muted);
}

.agent-profile {
  padding: 4.5rem 0 5rem;
  background: var(--white);
  border-top: 1px solid var(--line);
  scroll-margin-top: 5rem;
}
.agent-profile--alt { background: var(--paper); }
.agent-profile__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
.agent-profile__name {
  font-size: clamp(1.9rem, 2vw + 1rem, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin: 0 0 0.35rem;
  line-height: 1.15;
}
.agent-profile__role {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.1rem;
}
.agent-profile__one {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 54ch;
  margin: 0 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.agent-profile__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.agent-profile__h {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}
.agent-profile__list,
.agent-profile__caps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.agent-profile__list li,
.agent-profile__caps li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.agent-profile__list li::before,
.agent-profile__caps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1.5px;
  background: var(--accent);
}
.agent-profile__caps {
  max-width: 52rem;
}

.agents-cta {
  padding: 5rem 0 6rem;
  background: var(--navy-900);
  color: #B8C2D2;
  text-align: center;
}
.agents-cta__inner { max-width: 32rem; margin: 0 auto; }
.agents-cta__h {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}
.agents-cta__sub {
  font-size: 1.05rem;
  margin: 0 0 1.75rem;
  line-height: 1.55;
  color: #B8C2D2;
}
.agents-cta .btn--primary {
  background: var(--white);
  color: var(--navy-900);
}
.agents-cta .btn--primary:hover {
  background: var(--paper);
}

@media (min-width: 720px) {
  .agents-roster__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .agent-profile__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1000px) {
  .agents-hero { padding: 8.5rem 0 5rem; }
  .agents-roster__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }
  .agents-roster__grid .roster-card:last-child {
    grid-column: span 1;
  }
  .agent-profile { padding: 5.5rem 0 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Site chat widget (Front-desk intake)
   ========================================================= */
.nk-chat {
  position: fixed;
  z-index: 80;
  right: 1.1rem;
  bottom: 1.1rem;
  font-family: var(--font-sans);
}
.nk-chat__launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  cursor: pointer;
  padding: 0.55rem 1.05rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(6, 24, 46, 0.28);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nk-chat__launcher:hover { transform: translateY(-1px); background: var(--navy-800); }
.nk-chat__launcher-face {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 35%;
  padding: 0;
  background: #0b1f36;
  border: 1px solid rgba(255,255,255,0.14);
  box-sizing: border-box;
}
.nk-chat__launcher-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7dcea0;
  box-shadow: 0 0 0 4px rgba(125, 206, 160, 0.2);
}
.nk-chat__head-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.nk-chat__head-face {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 35%;
  padding: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-sizing: border-box;
  flex-shrink: 0;
}
.nk-chat__launcher-label {
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: 0.01em;
}
.nk-chat__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  width: min(420px, calc(100vw - 1.25rem));
  height: min(640px, calc(100vh - 5.5rem));
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(6, 24, 46, 0.18);
  overflow: hidden;
}
/* display:flex above beats the UA [hidden] rule — force hide when attribute set */
.nk-chat__panel[hidden],
.nk-chat__pane[hidden] {
  display: none !important;
}
.nk-chat__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.05rem 1.1rem 0.95rem;
  background: var(--navy-900);
  color: var(--white);
  flex-shrink: 0;
}
.nk-chat__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nk-chat__sub {
  margin: 0.28rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #B8C2D2;
}
.nk-chat__close {
  border: 0;
  background: transparent;
  color: #B8C2D2;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  flex-shrink: 0;
}
.nk-chat__close:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nk-chat__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  overflow: hidden;
}
.nk-chat__pane {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nk-chat__log {
  flex: 1 1 auto;
  min-height: 10rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.nk-chat__msg {
  max-width: 90%;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  font-size: 0.94rem;
  line-height: 1.5;
  white-space: pre-wrap;
}
.nk-chat__msg--bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.nk-chat__msg--user {
  align-self: flex-end;
  background: var(--navy-800);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.nk-chat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.45rem 1rem 0.65rem;
  flex-shrink: 0;
  background: var(--paper);
}
.nk-chat__chip {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nk-chat__chip:hover { border-color: var(--navy-500); color: var(--navy-800); }
.nk-chat__chip--cta {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--navy-900);
  font-weight: 560;
}
.nk-chat__call {
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-top: 0.15rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 560;
}
.nk-chat__compose {
  display: flex;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem 0.95rem;
  border-top: 1px solid var(--line);
  background: var(--white);
  flex-shrink: 0;
}
.nk-chat__input,
.nk-chat__finput {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  background: var(--white);
  min-width: 0;
}
.nk-chat__input:focus,
.nk-chat__finput:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}
.nk-chat__send {
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 560;
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
}
.nk-chat__send:hover { background: var(--navy-800); }
.nk-chat__send:disabled { opacity: 0.6; cursor: default; }
.nk-chat__send--block { width: 100%; margin-top: 0.45rem; }
.nk-chat__lead-intro {
  margin: 0;
  padding: 1rem 1.1rem 0.35rem;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.nk-chat__lead-form {
  flex: 1;
  min-height: 0;
  padding: 0.35rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nk-chat__flab {
  font-size: 0.78rem;
  font-weight: 560;
  color: var(--muted);
  margin-top: 0.4rem;
}
.nk-chat__opt { font-weight: 400; }
.nk-chat__fta { resize: vertical; min-height: 5rem; }
.nk-chat__back {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.86rem;
  cursor: pointer;
  padding: 0.55rem 0 0.2rem;
  text-align: left;
}
.nk-chat__status {
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
}
.nk-chat__status.is-ok { color: #1f6b45; }
.nk-chat__status.is-err { color: #9b2c2c; }

/* Booking pane */
.nk-chat__book-slots {
  padding: 0.35rem 1.1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.nk-chat__book-hint,
.nk-chat__book-loading,
.nk-chat__book-empty {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.nk-chat__book-picked {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 560;
  color: var(--navy-800);
}
.nk-chat__slot {
  text-align: left;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy-900);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.nk-chat__slot:hover {
  border-color: var(--navy-500);
}
.nk-chat__slot.is-selected {
  border-color: var(--navy-800);
  background: rgba(15, 35, 55, 0.06);
  font-weight: 560;
}

@media (max-width: 480px) {
  .nk-chat { right: 0.75rem; bottom: 0.75rem; }
  .nk-chat__panel {
    position: fixed;
    right: 0.5rem;
    left: 0.5rem;
    bottom: 4.75rem;
    width: auto;
    height: min(78vh, 680px);
  }
  .nk-chat__sub {
    font-size: 0.8rem;
  }
}
/* =========================================================
   Services page (shareable, not in main nav)
   ========================================================= */
.page-services .svc-hero {
  padding: 7.5rem 0 3.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.svc-hero__inner { max-width: 720px; }
.svc-hero__h {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.svc-hero__sub {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.svc-hero__proof {
  margin: 0 0 1.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.svc-menu { padding: 4.5rem 0 3rem; }
.svc-menu__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
.svc-menu__card {
  display: block;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.svc-menu__card:hover {
  border-color: var(--navy-500);
  box-shadow: 0 8px 28px rgba(6, 24, 46, 0.06);
}
.svc-menu__kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.svc-menu__title {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}
.svc-menu__blurb {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.svc-menu__note {
  margin: 1.5rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.svc-block { padding: 4rem 0; }
.svc-block--alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc-lead {
  max-width: 640px;
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.svc-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.svc-card {
  padding: 1.4rem 1.45rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.svc-block--alt .svc-card { background: var(--white); }
.svc-card__h {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
}
.svc-card__p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.svc-card__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.5;
}
.svc-card__list li { margin-bottom: 0.4rem; }
.svc-card__link {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  font-weight: 560;
}
.svc-card__link a { color: var(--navy-700); }
.svc-card__link a:hover { color: var(--accent); }

.svc-how {
  padding: 4rem 0;
  background: var(--navy-900);
  color: var(--white);
}
.svc-how .section-label { color: #8FA3BC; }
.svc-how .section-h { color: var(--white); }
.svc-how__list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: svc-how;
  max-width: 640px;
}
.svc-how__list li {
  counter-increment: svc-how;
  position: relative;
  padding: 0.85rem 0 0.85rem 2.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1.02rem;
  line-height: 1.5;
  color: #D5DCE6;
}
.svc-how__list li::before {
  content: counter(svc-how, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #8FA3BC;
}
.svc-how__list strong { color: var(--white); font-weight: 600; }
.svc-how__fence {
  margin: 1.75rem 0 0;
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #B8C2D2;
}

.svc-cta {
  padding: 4.5rem 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.svc-cta__inner { max-width: 640px; }
.svc-cta__h {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.svc-cta__sub {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.svc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

@media (min-width: 720px) {
  .svc-menu__grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
}
@media (min-width: 1000px) {
  .page-services .svc-hero { padding: 8.5rem 0 4rem; }
  .svc-menu__grid { grid-template-columns: repeat(4, 1fr); }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   Demo hub (/demo.html) — four pillars live proof
   ========================================================= */
.page-demo .demo-hero {
  padding: 7.5rem 0 3.25rem;
  background: var(--navy-900);
  color: var(--white);
}
.demo-hero__inner { max-width: 720px; }
.page-demo .demo-hero .section-label { color: #8FA3BC; }
.demo-hero__h {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.demo-hero__sub {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #C5CEDA;
}
.demo-hero__proof {
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
  color: #B8C2D2;
}
.demo-hero__proof strong { color: var(--white); font-weight: 600; }
.demo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.page-demo .demo-hero .btn--ghost {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.page-demo .demo-hero .hero__link { color: #B8C2D2; }

.demo-pillars { padding: 4rem 0 2.5rem; }
.demo-lead {
  max-width: 640px;
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.demo-pillars__grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}
.demo-pillars__grid--two {
  grid-template-columns: 1fr;
  max-width: 720px;
}
@media (min-width: 720px) {
  .demo-pillars__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}
.demo-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease);
  text-decoration: none;
  color: inherit;
}
.demo-pillar:hover { border-color: var(--navy-500); }
.demo-pillar__num {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.demo-pillar__h {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
}
.demo-pillar__p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.demo-pillar__status {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}
.demo-pillar__status--live {
  color: #1f6b45;
  border-color: #b9d4c5;
  background: var(--highlight);
}

.demo-block { padding: 3.5rem 0; }
.demo-block--alt {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.demo-block__grid {
  display: grid;
  gap: 2rem;
}
.demo-list {
  margin: 1.25rem 0 1.5rem;
  padding: 0 0 0 1.15rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.5;
}
.demo-list li { margin-bottom: 0.45rem; }

.demo-card {
  padding: 1.5rem 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 24, 46, 0.05);
}
.demo-card--preview { background: var(--off-white); }
.demo-card__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.demo-card__number {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.demo-card__hint {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.demo-card__btn { margin-bottom: 0.85rem; }
.demo-card__fine {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}
.demo-card__prompts {
  margin: 0;
  padding: 0;
  list-style: none;
}
.demo-card__prompts li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
}
.demo-card__prompts li:first-child { border-top: 0; }

.demo-sms {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink);
}
.demo-sms p { margin: 0; }
.demo-flow {
  margin: 0;
  padding: 0 0 0 1.2rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}
.demo-flow li { margin-bottom: 0.45rem; }

.demo-next {
  padding: 4rem 0 4.5rem;
  background: var(--navy-900);
  color: var(--white);
}
.page-demo .demo-next .section-label { color: #8FA3BC; }
.page-demo .demo-next .section-h { color: var(--white); }
.page-demo .demo-next .demo-lead { color: #C5CEDA; }
.demo-next__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.5rem;
}
.page-demo .demo-next .hero__link { color: #B8C2D2; }
.demo-next__fence {
  margin: 1.75rem 0 0;
  max-width: 520px;
  font-size: 0.92rem;
  color: #8FA3BC;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .demo-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .demo-block__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: start;
  }
}
@media (min-width: 1000px) {
  .page-demo .demo-hero { padding: 8.5rem 0 4rem; }
  .demo-pillars__grid:not(.demo-pillars__grid--two) { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Demo mobile / email-landing polish ---- */
.demo-pillar--static { cursor: default; }
.demo-card__number-link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.demo-card__number-link:active .demo-card__number {
  color: var(--navy-700);
}
.demo-card__number--soft {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.25;
}
.page-demo .demo-hero .btn,
.page-demo .demo-card .btn,
.page-demo .demo-block .btn {
  min-height: 48px;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}
.page-demo .demo-btn-call {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Sticky action bar — phone email path */
.demo-sticky {
  display: none;
}
body.page-demo {
  padding-bottom: 0;
}

@media (max-width: 719px) {
  .page-demo .demo-hero {
    padding: 5.25rem 0 2.25rem;
  }
  .demo-hero__h {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    max-width: 16ch;
  }
  .demo-hero__sub {
    font-size: 1rem;
  }
  .demo-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .demo-hero__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }
  .demo-hero__actions .hero__link {
    text-align: center;
    padding: 0.35rem 0 0.15rem;
  }
  .demo-block { padding: 2.75rem 0; }
  .demo-pillars { padding: 2.75rem 0 1.75rem; }
  .demo-card__number {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }
  .demo-card__btn {
    display: flex;
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
  .page-demo .demo-next__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-demo .demo-next__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .page-demo .section-h {
    max-width: 18ch;
  }

  /* Leave room for sticky bar + chat launcher */
  body.page-demo {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
  body.page-demo .footer {
    padding-bottom: 1rem;
  }

  .demo-sticky {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 0.45rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(6, 24, 46, 0.08);
  }
  .demo-sticky__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
  }
  .demo-sticky__btn--call {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
  }
  .demo-sticky__btn--chat {
    background: var(--white);
    color: var(--navy-800);
    border-color: var(--navy-800);
  }
  .demo-sticky__btn--book {
    background: var(--paper);
    color: var(--navy-800);
    border-color: var(--line);
  }

  /* Chat launcher sits above sticky bar, smaller label on tiny screens */
  body.page-demo .nk-chat {
    bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
    right: 0.75rem;
  }
  body.page-demo .nk-chat__panel {
    height: min(560px, calc(100vh - 9.5rem - env(safe-area-inset-bottom, 0px)));
    width: min(420px, calc(100vw - 1rem));
  }
}

@media (max-width: 380px) {
  body.page-demo .nk-chat__launcher-label {
    /* icon-only-ish: keep short word */
    font-size: 0.85rem;
  }
  .demo-sticky {
    gap: 0.35rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .demo-sticky__btn { font-size: 0.88rem; }
}


/* =========================================================
   Meet Naka (main site)
   ========================================================= */
.naka {
  padding: 5rem 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.naka__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.naka__copy .section-label {
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  color: var(--navy-900);
  margin-bottom: 0.9rem;
}
.naka__lead {
  margin: 0.75rem 0 1.25rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 34rem;
}
.naka__list {
  margin: 0 0 1.75rem;
  padding: 0 0 0 1.15rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 32rem;
}
.naka__list li { margin-bottom: 0.45rem; }
.naka__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}
.naka__visual {
  display: flex;
  justify-content: center;
}
.naka__lockup {
  width: min(100%, 380px);
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(6, 24, 46, 0.12));
}
@media (min-width: 900px) {
  .naka__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
  .naka__visual {
    justify-content: flex-start;
  }
}


.naka__live {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.naka__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-top: 1.25rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

/* =========================================================
   Book page (public discovery booking)
   ========================================================= */
.page-book .book-hero {
  padding: 7.5rem 0 2.25rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.book-hero__inner { max-width: 640px; }
.book-hero__h {
  margin: 0.45rem 0 0.85rem;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.book-hero__sub {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.book-hero__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.book-main {
  padding: 2.5rem 0 3rem;
  background: var(--white);
}
.book-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 840px) {
  .book-layout { grid-template-columns: 1fr; }
}
.book-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  padding: 1.25rem 1.35rem 1.4rem;
  min-height: 280px;
}
.book-panel--form { background: var(--white); }
.book-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.book-panel__h {
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy-900);
}
.book-refresh {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--navy-800);
}
.book-refresh:hover { border-color: var(--navy-500); }
.book-panel__hint {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.book-slots { display: flex; flex-direction: column; gap: 0.85rem; }
.book-day {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}
.book-day-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.book-slot {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy-900);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  cursor: pointer;
  min-width: 6.5rem;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.book-slot:hover { border-color: var(--navy-500); }
.book-slot.is-selected {
  border-color: var(--navy-800);
  background: rgba(15, 35, 55, 0.07);
  font-weight: 600;
}
.book-picked {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 560;
  color: var(--navy-800);
}
.book-form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.book-flab {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 560;
  color: var(--muted);
}
.book-opt { font-weight: 400; }
.book-finput {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--navy-900);
}
.book-finput:focus {
  outline: 2px solid rgba(15, 35, 55, 0.2);
  border-color: var(--navy-500);
}
.book-fta { resize: vertical; min-height: 4.5rem; }
.book-submit { margin-top: 0.85rem; width: 100%; justify-content: center; }
.book-status {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.book-status.is-ok { color: #1f6b45; }
.book-status.is-err { color: #9b2c2c; }
.book-alt {
  margin: 1.1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.book-alt a { color: var(--navy-800); }
.book-text-btn {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: var(--navy-800);
  text-decoration: underline;
  cursor: pointer;
}
.book-footnote {
  padding: 0 0 3.5rem;
  background: var(--white);
}
.book-footnote p {
  margin: 0;
  max-width: 640px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
