:root {
  --accent: #7967e8;
  --accent-hover: #8a7af0;
  --violet: #9b5de5;
  --blue: #4b8fe8;
  --bg: #202024;
  --bg-raised: #27272c;
  --hairline: rgba(255, 255, 255, .09);
  --hairline-strong: rgba(255, 255, 255, .16);
  --text: rgba(255, 255, 255, .92);
  --text-2: rgba(255, 255, 255, .62);
  --text-3: rgba(255, 255, 255, .42);
  --ok: #4fc783;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

@supports (color: oklch(50% .1 180)) {
  :root {
    --accent: oklch(67.3% .182 276.935);
    --accent-hover: oklch(71% .17 276.935);
    --violet: oklch(60% .19 300);
    --blue: oklch(62% .15 250);
    --bg: oklch(14.5% .008 276.935);
    --bg-raised: oklch(17% .01 276.935);
    --hairline: oklch(100% 0 0 / .09);
    --hairline-strong: oklch(100% 0 0 / .16);
    --text: oklch(100% 0 0 / .92);
    --text-2: oklch(100% 0 0 / .62);
    --text-3: oklch(100% 0 0 / .42);
    --ok: oklch(72% .14 150);
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
.modal { scrollbar-width: none; }
.modal::-webkit-scrollbar { display: none; }

body {
  font-family: var(--sans);
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: padding-right .3s ease-out;
}

.nrv-top-notice-spacer {
  height: 44px;
}

.nrv-top-notice {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(90deg, oklch(14.5% .008 276.935 / .96), oklch(18% .018 276.935 / .96)),
    var(--bg);
  color: var(--text);
  padding: 9px 24px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, right .3s ease-out;
}

.nrv-top-notice:hover {
  border-bottom-color: oklch(67.3% .182 276.935 / .34);
  background:
    linear-gradient(90deg, oklch(15.5% .012 276.935 / .98), oklch(20% .028 276.935 / .98)),
    var(--bg);
}

.nrv-top-notice-eyebrow,
.nrv-top-notice-copy,
.nrv-top-notice-action {
  flex: 0 0 auto;
  font-family: var(--mono) !important;
  font-size: 10.5px !important;
  font-weight: 500 !important;
  letter-spacing: .12em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.nrv-top-notice-eyebrow { color: oklch(66% .14 250) !important; }
.nrv-top-notice-action { color: oklch(86% .055 276.935) !important; }
.nrv-top-notice-copy {
  min-width: 0;
  color: var(--text) !important;
}

::selection { background: oklch(67.3% .182 276.935 / .35); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3 { font-weight: 600; letter-spacing: -.02em; text-wrap: balance; }

code {
  font-family: var(--mono);
  font-size: .85em;
  color: var(--text);
  background: oklch(100% 0 0 / .07);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 1px 5px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ----- Buttons & links ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 18px;
  border-radius: 6px; border: 1px solid transparent;
  appearance: none; -webkit-appearance: none;
  background: transparent;
  font: 500 14px/1 var(--sans);
  text-decoration: none; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .25s ease;
}
.btn-sm { height: 32px; padding: 0 14px; font-size: 13px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { border-color: var(--hairline-strong); color: var(--text-2); }
.btn-ghost:hover { color: var(--text); border-color: oklch(100% 0 0 / .3); }

.text-link {
  font: 500 14px/1 var(--sans);
  color: var(--text-2); text-decoration: none;
  transition: color .15s ease;
}
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover { color: var(--text); }
.text-link:hover span { transform: translateX(3px); }

/* ----- Nav ----- */
.nav {
  position: fixed; inset: 44px 0 auto; z-index: 10;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease, right .3s ease-out;
}
.nav.scrolled {
  background: oklch(14.5% .008 276.935 / .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline);
}
.nav-progress {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: 0 50%;
}
.nav-inner { display: flex; align-items: center; height: 60px; gap: 40px; }

.nav-logo { display: inline-flex; }
.nav-logo img {
  width: 34px; height: 34px; display: block;
  transition: transform .25s ease;
}
.nav-logo:hover img { transform: scale(1.1) rotate(-8deg); }
.wordmark {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 16px; font-weight: 600; letter-spacing: -.02em;
  color: var(--text); text-decoration: none;
}
.mark { width: 22px; height: 22px; display: block; }
.nav-wordmark {
  flex-shrink: 0;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-wordmark .mark { width: 34px; height: 34px; }

.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a {
  position: relative;
  font-size: 13.5px; color: var(--text-2); text-decoration: none;
  transition: color .15s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-signin { font-size: 13.5px; color: var(--text-2); text-decoration: none; }
.nav-signin:hover { color: var(--text); }
.nav-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: 500 26px/1 var(--sans);
  transition: color .15s ease;
}
.nav-menu-toggle:hover {
  color: #fff;
}
.nav-mobile-menu {
  position: absolute;
  right: 12px;
  top: calc(100% + 10px);
  width: min(82vw, 260px);
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: var(--bg);
  box-shadow: 0 24px 60px rgb(0 0 0 / .32);
}
.nav-mobile-menu[hidden] { display: none; }
.nav-mobile-menu a,
.nav-mobile-menu button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 12px 16px;
  text-align: left;
  text-decoration: none;
  font: 400 13px/1.35 var(--sans);
  cursor: pointer;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu button:hover { background: rgb(255 255 255 / .055); }
.nav-ask {
  border-color: oklch(67.3% .182 276.935 / .38);
  background: oklch(67.3% .182 276.935 / .10);
  color: oklch(86% .055 276.935);
}
.nav-ask:hover {
  border-color: oklch(67.3% .182 276.935 / .62);
  background: oklch(67.3% .182 276.935 / .16);
  color: #fff;
}

@media (min-width: 980px) {
  body.nerova-chat-open { padding-right: 30rem; }
  body.nerova-chat-open .nav { right: 30rem; }
  body.nerova-chat-open .nrv-top-notice { right: 30rem; }
  body.nerova-chat-open .modal-overlay { right: 30rem; }
}

/* ----- Hero ----- */
.hero {
  position: relative; overflow: hidden;
  padding: 152px 0 96px;
  text-align: center;
}
.aurora { position: absolute; inset: 0; pointer-events: none; will-change: transform; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); will-change: transform;
}
.blob-1 {
  width: 980px; height: 560px; background: var(--accent);
  bottom: -250px; left: calc(50% - 490px);
  opacity: .3;
  animation: drift-1 26s ease-in-out infinite alternate;
}
.blob-2 {
  width: 600px; height: 460px; background: var(--violet);
  bottom: -140px; left: calc(50% - 660px);
  opacity: .18;
  animation: drift-2 32s ease-in-out infinite alternate;
}
.blob-3 {
  width: 600px; height: 460px; background: var(--blue);
  bottom: -140px; left: calc(50% + 100px);
  opacity: .16;
  animation: drift-3 38s ease-in-out infinite alternate;
}
@keyframes drift-1 { to { transform: translate(0, -60px) scale(1.08); } }
@keyframes drift-2 { to { transform: translate(120px, -40px) scale(1.06); } }
@keyframes drift-3 { to { transform: translate(-120px, -50px) scale(.95); } }
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero > .container { position: relative; }
.hero-copy,
.hero-demo {
  opacity: 0;
  animation: hero-fade-in .65s ease-out forwards;
}
.hero-demo { animation-delay: .12s; }
.hero h1 {
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.05;
  max-width: 16ch; margin: 0 auto 24px;
}
.hero-sub {
  font-size: clamp(17.5px, 2vw, 19.5px); color: var(--text-2);
  max-width: 58ch; margin: 0 auto 34px;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-bottom: 20px;
}
.hero-note { font-family: var(--mono); font-size: 12px; color: var(--text-3); }
.hero-note-setup::before { content: " · "; }

.hero-demo {
  position: relative;
  max-width: 760px;
  margin: 72px auto 0;
}

/* ----- Terminal ----- */
.terminal {
  position: relative; z-index: 1;
  text-align: left;
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  background: oklch(17% .01 276.935 / .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}
.terminal::before {
  content: ""; position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, oklch(67.3% .182 276.935 / .6), transparent);
}
.terminal-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--hairline);
}
.terminal-title, .terminal-run {
  font-family: var(--mono); font-size: 11.5px; color: var(--text-3);
}
.terminal-body {
  padding: 16px;
  font-family: var(--mono); font-size: 12px; line-height: 1.9;
  min-height: 212px;
}
.t-line { display: flex; gap: 14px; align-items: baseline; opacity: 0; transition: opacity .5s ease; }
.t-line.visible { opacity: 1; }
.t-time { color: var(--text-3); flex-shrink: 0; width: 7ch; }
.t-tag { flex-shrink: 0; width: 5ch; font-weight: 500; }
.t-tag.tag-plan { color: var(--accent); }
.t-tag.tag-act { color: var(--text-3); }
.t-tag.tag-ok { color: var(--ok); }
.t-text {
  font-family: var(--sans); font-size: 13px;
  color: var(--text-2);
}
.t-text strong { color: var(--text); font-weight: 500; }
.t-status {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-3);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok); flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .3; } }

/* ----- Spotlight (hover-capable devices, class added by JS) ----- */
@media (hover: hover) {
  .spot { position: relative; }
  .spot::after {
    content: ""; position: absolute; inset: 0;
    border-radius: inherit; pointer-events: none;
    opacity: 0; transition: opacity .3s ease;
    background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%),
      oklch(67.3% .182 276.935 / .09), transparent 65%);
  }
  .spot:hover::after { opacity: 1; }
  .plan.spot { transition: border-color .25s ease; }
  .plan.spot:hover { border-color: oklch(67.3% .182 276.935 / .35); }
  .plan-featured.spot:hover { border-color: oklch(67.3% .182 276.935 / .55); }
}

/* ----- Logos ----- */
.logos { border-block: 1px solid var(--hairline); padding: 20px 0; }
.logos-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(28px, 5vw, 56px);
}
.logos-caption {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-3);
  margin-right: 8px;
}
.logos-row > span:not(.logos-caption) {
  opacity: .45; color: var(--text);
  transition: opacity .25s ease;
}
.logos-row > span:not(.logos-caption):hover { opacity: .85; }
.logo-mark-a { font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.logo-mark-b { font-family: Georgia, serif; font-style: italic; font-size: 16px; }
.logo-mark-c { font-family: var(--mono); font-size: 14px; }
.logo-mark-d { font-size: 12.5px; font-weight: 600; letter-spacing: .2em; }

/* ----- Sections ----- */
section { padding: 104px 0; }
section.bordered { border-top: 1px solid var(--hairline); }

.section-head { max-width: 560px; margin-bottom: 56px; }
.section-index {
  display: block;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(26px, 3vw, 34px); line-height: 1.2; }
.section-head p { color: var(--text-2); margin-top: 14px; }

/* ----- Reveal on scroll (class added by JS) ----- */
.reveal {
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ----- Features ----- */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 48px; row-gap: 40px;
}
.feature { position: relative; border-top: 1px solid var(--hairline); padding-top: 20px; }
.feature-index {
  font-family: var(--mono); font-size: 11px; color: var(--text-3);
  display: block; margin-bottom: 12px;
  transition: color .25s ease;
}
.feature:hover .feature-index { color: var(--accent); }
.feature h3 { font-size: 16px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--text-2); max-width: 52ch; }
.feature .text-link { display: inline-block; margin-top: 12px; font-size: 13.5px; }

.catch-all {
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-size: 14.5px; color: var(--text-2);
}
.catch-all .text-link { color: var(--text); }
.catch-all .text-link:hover { color: var(--accent); }

/* ----- Chatbot vs agent ----- */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 880px;
}
.compare {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 28px;
}
.compare h3 { font-size: 15px; margin-bottom: 14px; color: var(--text-3); }
.compare ul { list-style: none; }
.compare li {
  font-size: 13.5px; color: var(--text-3);
  padding: 9px 0;
  border-top: 1px solid var(--hairline);
}
.compare li:last-child { border-bottom: 1px solid var(--hairline); }
.compare-agent { border-color: var(--hairline-strong); border-top: 2px solid var(--accent); }
.compare-agent h3 { color: var(--text); }
.compare-agent li { color: var(--text-2); }

/* ----- Try it ----- */
.try-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.try-card {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  padding: 28px;
  background: radial-gradient(420px 200px at 50% 120%, oklch(67.3% .182 276.935 / .08), transparent 70%), var(--bg-raised);
}
.try-card .btn { margin-top: auto; }
.try-tag {
  position: absolute; top: 30px; right: 28px;
  font-family: var(--mono); font-size: 11px; color: var(--text-3);
}
.try-card h3 { font-size: 17px; margin-bottom: 10px; padding-right: 88px; }
.try-card p { font-size: 14px; color: var(--text-2); max-width: 46ch; margin-bottom: 22px; }
.agent-name { font-weight: 600; }
.agent-scope { color: oklch(78% .16 85); }
.agent-genie { color: oklch(66% .14 250); }
.try-note {
  margin-top: 24px;
  font-size: 13.5px; color: var(--text-3);
}

/* ----- Purchase modal ----- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: center;
  padding: 20px;
  background: oklch(0% 0 0 / .6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .25s ease, right .3s ease-out;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.open { opacity: 1; }
.modal {
  position: relative;
  width: min(600px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--bg-raised);
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  padding: 32px;
  transform: translateY(10px) scale(.98);
  transition: transform .25s ease;
}
.modal-overlay.open .modal { transform: none; }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 24px; line-height: 1; color: var(--text-3);
  transition: color .15s ease;
}
.modal-close:hover { color: var(--text); }
.modal-head { margin-bottom: 24px; }
.modal-head .section-index { margin-bottom: 10px; }
.modal-head h3 { font-size: 22px; margin-bottom: 6px; }
.modal-head p { font-family: var(--mono); font-size: 12px; color: var(--text-3); }

.booking-form { display: flex; flex-direction: column; gap: 12px; }
.booking-form input, .booking-form textarea {
  width: 100%;
  font: 400 14px/1.5 var(--sans);
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  padding: 11px 14px;
  transition: border-color .15s ease;
}
.booking-form textarea { resize: vertical; min-height: 80px; }
.booking-form input::placeholder, .booking-form textarea::placeholder { color: var(--text-3); }
.booking-form input:focus, .booking-form textarea:focus { outline: none; border-color: var(--accent); }
.form-error {
  font-size: 13px;
  color: oklch(80.8% .114 19.571);
}

.plan-picker {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 18px;
}
.plan-option {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 16px; text-align: left;
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: 8px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.plan-option strong { font: 600 14px var(--sans); color: var(--text); }
.plan-option-price { font: 400 12px var(--mono); color: var(--text-3); }
.plan-option:hover { border-color: oklch(67.3% .182 276.935 / .5); }
.plan-option.selected { border-color: var(--accent); background: oklch(67.3% .182 276.935 / .08); }
.plan-option.selected .plan-option-price { color: var(--text-2); }
.agent-role-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.agent-role-tabs[hidden] { display: none; }
.agent-role-tab {
  height: 34px;
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text-3);
  font: 500 12px/1 var(--sans);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.agent-role-tab:hover { border-color: oklch(67.3% .182 276.935 / .5); color: var(--text-2); }
.agent-role-tab.selected { border-color: var(--accent); background: oklch(67.3% .182 276.935 / .08); color: var(--text); }

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  justify-self: stretch;
}
.btn-wide { height: 48px; font-size: 15px; }
.booking-form .btn { align-self: flex-start; }
.booking-form .btn:disabled { opacity: .45; cursor: default; }
@media (max-width: 640px) {
  .plan-picker { grid-template-columns: 1fr; }
  .agent-role-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modal { padding: 24px 20px; }
}

/* ----- Steps ----- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { border-top: 1px solid var(--hairline); padding-top: 20px; }
.step-num {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  display: block; margin-bottom: 12px;
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-2); }

/* ----- Stats ----- */
.stats {
  border-block: 1px solid var(--hairline);
  background: radial-gradient(640px 220px at 18% 50%, oklch(67.3% .182 276.935 / .06), transparent 70%);
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 28px 24px;
  border-left: 1px solid var(--hairline);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-val {
  display: block;
  font-size: 26px; font-weight: 600; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 13px; color: var(--text-3); }

/* ----- Quotes ----- */
.quotes-section .container {
  display: grid; grid-template-columns: 3fr 2fr; gap: 64px;
  align-items: end;
}
.pull-quote blockquote {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500; letter-spacing: -.015em; line-height: 1.45;
  text-wrap: balance;
}
.side-quote blockquote { font-size: 15px; color: var(--text-2); }
.pull-quote figcaption, .side-quote figcaption {
  margin-top: 20px;
  font-family: var(--mono); font-size: 12px; color: var(--text-3);
}

/* ----- Pricing ----- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 28px;
}
.plan-featured { border-color: var(--hairline-strong); border-top: 2px solid var(--accent); }
.plan-flag {
  position: absolute; top: 30px; right: 28px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
}
.plan h3 { font-size: 15px; }
.plan-desc { font-size: 13px; color: var(--text-3); margin: 4px 0 24px; }
.plan-price { margin-bottom: 24px; }
.plan-price-discount {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
}
.plan-price-original {
  color: var(--text-3);
  font: 500 15px var(--mono);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.plan-price .amount {
  font-size: 30px; font-weight: 600; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.plan-price .period { font-size: 13px; color: var(--text-3); margin-left: 4px; }
.plan-savings {
  flex-basis: 100%;
  color: var(--accent);
  font: 700 11px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.plan ul { list-style: none; flex: 1; margin-bottom: 28px; }
.plan li {
  font-size: 13.5px; color: var(--text-2);
  padding: 9px 0;
  border-top: 1px solid var(--hairline);
}
.plan li:last-child { border-bottom: 1px solid var(--hairline); }
.plan-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pricing-note {
  margin-top: 28px;
  font-size: 13.5px; color: var(--text-3);
  text-align: center;
}

/* ----- FAQ ----- */
.faq-list { max-width: 720px; }
.faq-item { border-top: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  position: relative;
  list-style: none; cursor: pointer;
  padding: 18px 40px 18px 0;
  font-size: 15px; font-weight: 500; color: var(--text);
  transition: color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono); font-size: 16px; color: var(--text-3);
  transition: transform .25s ease, color .2s ease;
}
.faq-item summary:hover::after { color: var(--accent); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--accent); }
.faq-item p {
  padding: 0 40px 20px 0;
  font-size: 14px; color: var(--text-2);
  max-width: 64ch;
}

/* ----- Contact / intake ----- */
.contact {
  background: radial-gradient(700px 320px at 80% 60%, oklch(60% .19 300 / .06), transparent 70%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.contact-copy h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 14px; }
.contact-copy p { color: var(--text-2); max-width: 44ch; }
.contact-alt { margin-top: 22px; font-size: 14px; }

.intake { display: flex; flex-direction: column; gap: 12px; }
.intake-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.intake input, .intake textarea {
  width: 100%;
  font: 400 14px/1.5 var(--sans);
  color: var(--text);
  background: var(--bg-raised);
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  padding: 11px 14px;
  transition: border-color .15s ease;
}
.intake textarea { resize: vertical; min-height: 96px; }
.intake input::placeholder, .intake textarea::placeholder { color: var(--text-3); }
.intake input:focus, .intake textarea:focus {
  outline: none; border-color: var(--accent);
}
.intake .btn { align-self: flex-start; }
.intake-note { margin-top: 12px; font-size: 12.5px; color: var(--text-3); }
.intake-success {
  border: 1px solid oklch(72% .14 150 / .4);
  border-radius: 6px;
  background: oklch(72% .14 150 / .07);
  padding: 18px 20px;
  font-size: 14px; color: var(--text-2);
}
.intake-success strong { color: var(--text); font-weight: 600; }

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

/* ----- Team section ----- */
.team-section {
  padding: 72px 0;
  background: radial-gradient(620px 200px at 50% 120%, oklch(67.3% .182 276.935 / .06), transparent 70%);
}
.team-section .section-head { margin-bottom: 32px; }
.team-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.team-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: var(--bg-raised);
  text-decoration: none;
  font-size: 13px;
}
.team-chip:hover { border-color: oklch(67.3% .182 276.935 / .5); transform: translateY(-1px); }
.team-chip strong { color: var(--text); font-weight: 600; }
.team-chip .team-role { color: var(--text-3); }
.team-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok); flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}

/* ----- Footer ----- */
footer { border-top: 1px solid var(--hairline); padding: 56px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(4, 1fr);
  gap: 32px; margin-bottom: 56px;
}
.footer-brand .mark { width: 34px; height: 34px; }
.footer-brand p { font-size: 13px; color: var(--text-3); margin-top: 14px; }
.footer-col h4 {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--text-2);
  text-decoration: none; margin-bottom: 10px;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--hairline);
  font-size: 12.5px; color: var(--text-3);
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .hero { padding: 128px 0 64px; }
  .quotes-section .container { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-actions { max-width: 520px; width: 100%; }
  .nav-links { display: none; }
}
@media (max-width: 760px) {
  .nrv-top-notice-spacer { height: 58px; }
  .nrv-top-notice {
    min-height: 58px;
    gap: 6px;
    padding: 8px 12px;
  }
  .nrv-top-notice-eyebrow { display: none; }
  .nrv-top-notice-copy {
    flex: 1 1 auto;
    max-width: calc(100vw - 76px);
    font-size: 10.5px !important;
    letter-spacing: .055em !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .nrv-top-notice-action {
    flex: 0 0 auto;
    font-size: 10.5px !important;
    letter-spacing: .12em !important;
  }
  .nav { top: 58px; }
  .nav-inner {
    gap: 12px;
    padding-left: 14px;
    padding-right: 8px;
  }
  .nav-actions {
    position: relative;
    margin-left: auto;
    gap: 6px;
  }
  .nav-signin { display: none; }
  .nav-menu-toggle { display: inline-flex; }
  #agents .feature.scroll-active .feature-index { color: var(--accent); }
  section { padding: 72px 0; }
  .feature-grid, .steps, .pricing-grid, .compare-grid, .try-grid { grid-template-columns: 1fr; }
  .plan-actions { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; padding-left: 0; border-top: 1px solid var(--hairline); }
  .stat:first-child, .stat:nth-child(2) { border-top: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand .mark { width: 22px; height: 22px; }
  .intake-row { grid-template-columns: 1fr; }
  .nav.scrolled,
  .terminal,
  .modal-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .blob { filter: blur(28px); }
  .blob-1 { bottom: -38px; }
  .blob-2 { bottom: 2px; left: calc(50% - 460px); }
  .blob-3 { bottom: -18px; left: calc(50% - 40px); }
  .blob-1, .blob-2, .blob-3 { animation: none; }
  .aurora { will-change: auto; }
  .hero-copy, .hero-demo { animation-duration: .45s; }
  .hero-note-setup {
    display: block;
    margin-top: 6px;
    text-align: center;
  }
  .hero-note-setup::before { content: ""; }
  .catch-all .text-link {
    display: block;
    width: fit-content;
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-copy, .hero-demo {
    opacity: 1;
    transform: none;
  }
}
