/* ===== Base tokens ===== */
:root {
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --bg-body: #000000;
  --bg-surface: #050505;
  --bg-elevated: #0a0a0a;

  --color-surface: #050505;
  --color-panel: #0c0c0c;
  --color-panel-soft: #111111;

  --color-body: #e8e8e8;
  --color-muted: #a0a0a0;
  --color-strong: #ffffff;

  --primary: #29dbcb;
  --primary-soft: rgba(41, 219, 203, 0.12);
  --primary-strong: #00e5be;
  --accent: #00e5be;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.65);
  --glow-teal: 0 0 40px rgba(41, 219, 203, 0.35);

  --transition-fast: 0.18s ease-out;
}

body.accent-soft {
  --primary: #1fb5aa;
  --primary-strong: #17a89e;
  --accent: #1fb5aa;
  --glow-teal: 0 0 28px rgba(31, 181, 170, 0.22);
}

/* ===== Reset & base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
  background-color: var(--bg-body);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(41, 219, 203, 0.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.06), transparent 45%),
    linear-gradient(180deg, #030303 0%, #000000 40%, #000000 100%);
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.75), transparent);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--color-strong);
}

.logo-block {
  min-width: 0;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.logo-text {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 12px;
  background: conic-gradient(from 200deg, var(--accent), #6366f1, var(--accent));
  box-shadow: var(--glow-teal);
}

.nav-shell {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 500;
}

.nav-pill {
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
}

.nav a {
  padding: 8px 11px;
  color: var(--color-muted);
  border-radius: 999px;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  font-size: 0.8rem;
}

.nav a:hover {
  color: var(--color-strong);
  background: rgba(255, 255, 255, 0.06);
}

.nav a.is-active {
  color: #021312;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: var(--glow-teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-theme {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--color-muted);
  font-size: 0.78rem;
  padding-inline: 12px;
}

.btn-theme:hover {
  color: var(--color-strong);
  border-color: rgba(255, 255, 255, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-body);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  background: transparent;
  color: var(--color-body);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-strong) 100%);
  border-color: rgba(0, 229, 190, 0.45);
  color: #03110f;
  box-shadow: var(--glow-teal), 0 12px 40px rgba(0, 0, 0, 0.45);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-ghost {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-body);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-strong);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-arrow::after {
  content: "→";
  margin-left: 8px;
  font-weight: 600;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
}

/* ===== Sections ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background:
    radial-gradient(circle at 0% 0%, rgba(41, 219, 203, 0.07), transparent 50%),
    radial-gradient(circle at 100% 30%, rgba(99, 102, 241, 0.08), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(249, 115, 22, 0.04), transparent 50%);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 2.8vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--color-strong);
  font-weight: 800;
}

.section-headline-accent {
  font-weight: 800;
  letter-spacing: -0.035em;
}

.section-subtitle {
  margin: 0;
  color: #a8a8a8;
  font-size: 0.98rem;
  line-height: 1.62;
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header--center .section-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Schedule ===== */
.schedule-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.schedule-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 22px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: rgba(5, 8, 8, 0.92);
}

.schedule-panel--standalone {
  max-width: 820px;
}

.schedule-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.schedule-config-hint,
.schedule-page-section .section-subtitle code {
  font-size: 0.82rem;
}

.schedule-config-hint {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
}

.schedule-config-hint code {
  color: #94a3b8;
}

.schedule-page-inner {
  max-width: 960px;
}

.schedule-book-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 8px;
}

.schedule-book-option {
  min-width: 0;
}

.schedule-book-option-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-strong);
}

.book-demo-panel {
  padding: 22px 22px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: rgba(5, 8, 8, 0.92);
}

.book-demo-lead {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.book-demo-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.book-demo-note a {
  color: var(--color-accent);
}

.schedule-book-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
}

.schedule-book-divider span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(5, 8, 8, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-demo-form textarea {
  margin-bottom: 14px;
}

@media (max-width: 960px) {
  .schedule-book-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .schedule-book-divider {
    padding-top: 0;
  }
}

.trial-page-inner {
  max-width: 640px;
}

.trial-page-section {
  padding-top: 48px;
  padding-bottom: 64px;
}

.trial-page-section .section-header {
  margin-bottom: 20px;
}

.trial-page-section .section-subtitle {
  max-width: 520px;
}

.trial-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.trial-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 140px;
  position: relative;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trial-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 18px);
  width: calc(100% - 36px);
  height: 1px;
  background: rgba(55, 65, 81, 0.9);
}

.trial-flow-num {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(5, 8, 8, 0.85);
  font-size: 0.75rem;
  z-index: 1;
}

.trial-flow-step.is-current {
  color: #c8f7f0;
}

.trial-flow-step.is-current .trial-flow-num {
  border-color: rgba(41, 219, 203, 0.55);
  background: rgba(41, 219, 203, 0.12);
  color: #c8f7f0;
}

.trial-flow-step.is-done {
  color: #94a3b8;
}

.trial-flow-step.is-done .trial-flow-num {
  border-color: rgba(41, 219, 203, 0.35);
  background: rgba(41, 219, 203, 0.08);
  color: #29dbcb;
}

.trial-panel {
  margin-top: 0;
  padding: 28px 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(5, 8, 8, 0.65);
}

.trial-fieldset {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  min-width: 0;
}

.trial-fieldset-legend {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.trial-form .form-row {
  margin-bottom: 14px;
}

.trial-form .form-row:last-child {
  margin-bottom: 0;
}

.trial-form .form-field--full {
  grid-column: 1 / -1;
  width: 100%;
}

.trial-form .btn {
  width: 100%;
}

.trial-terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 2px 0 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-muted);
  cursor: pointer;
}

.trial-terms input[type="checkbox"] {
  margin: 0.2em 0 0;
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #29dbcb;
}

.trial-terms > span {
  flex: 1 1 auto;
  min-width: 0;
}

.trial-terms a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trial-form-note {
  margin: 18px 0 0;
  font-size: 0.88rem;
  color: var(--color-muted);
  text-align: center;
}

.trial-form-note a {
  color: var(--color-accent);
}

/* Verify email page */
.verify-panel {
  text-align: center;
  padding: 36px 28px 28px;
}

.verify-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid rgba(41, 219, 203, 0.4);
  background: rgba(41, 219, 203, 0.1);
  color: #29dbcb;
}

.verify-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.verify-title {
  margin: 0 0 12px;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-body);
  letter-spacing: -0.02em;
}

.verify-body {
  margin: 0 0 8px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.verify-email {
  display: inline-block;
  margin: 0 0 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #c8f7f0;
  word-break: break-word;
}

.verify-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 18px;
}

.verify-actions .btn {
  width: 100%;
}

.verify-hint {
  margin: 0 0 16px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #64748b;
}

.verify-feedback {
  margin: 0 0 14px;
  min-height: 0;
}

.verify-change {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.verify-change a {
  color: var(--color-accent);
}

.form-field-optional {
  font-weight: 400;
  color: #64748b;
}

@media (max-width: 520px) {
  .trial-panel,
  .verify-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trial-flow-label {
    font-size: 0.72rem;
  }

  .trial-flow-step:not(:last-child)::after {
    left: calc(50% + 16px);
    width: calc(100% - 32px);
  }
}

.hero-actions .btn-outline {
  border-color: rgba(41, 219, 203, 0.45);
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .hero-secondary-link {
    text-align: center;
  }
}

.schedule-embed-note {
  margin: 0 0 12px;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.schedule-embed-wrap {
  margin-top: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.35);
  min-height: 0;
}

.schedule-embed-wrap--active {
  min-height: 680px;
}

.schedule-embed-iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
}

@media (max-width: 720px) {
  .schedule-panel-actions {
    flex-direction: column;
  }

  .schedule-panel-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.journey-strip {
  padding: 28px 0 12px;
}

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

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.journey-step:hover {
  border-color: rgba(41, 219, 203, 0.48);
  background: rgba(41, 219, 203, 0.08);
  transform: translateY(-1px);
}

.journey-step-no {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #02201d;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
}

.journey-step-copy {
  color: #b8b8b8;
  font-size: 0.92rem;
  line-height: 1.5;
}

.journey-step-copy strong {
  color: var(--color-strong);
}

@media (max-width: 960px) {
  .journey-steps {
    grid-template-columns: 1fr;
  }
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card,
.feature-card,
.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 20px 20px 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.card h3,
.feature-card h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--color-strong);
}

.card p,
.feature-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 96px;
  padding-bottom: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-mesh {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(circle at 20% 30%, rgba(41, 219, 203, 0.12), transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1), transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(249, 115, 22, 0.06), transparent 45%);
  filter: blur(0);
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%);
  opacity: 0.35;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(255, 255, 255, 0.5), transparent 72%);
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #c8c8c8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero-title {
  margin: 22px 0 6px;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--color-strong);
}

.hero-tagline {
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-muted);
  font-weight: 500;
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 0 22px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #8a8a8a;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #c4c4c4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-footnote {
  margin: 0;
  font-size: 0.75rem;
  color: #6b6b6b;
}

.hero-alt-cta {
  margin: -8px 0 0;
  font-size: 0.85rem;
}

.hero-alt-cta a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.hero-alt-cta a:hover {
  text-decoration: underline;
}

.hero-icp {
  margin: 0 0 12px;
  max-width: 520px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #b8b8b8;
}

.hero-icp strong {
  color: var(--color-strong);
  font-weight: 600;
}

.hero-value-prop {
  margin: 0 0 18px;
  max-width: 520px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(41, 219, 203, 0.35);
  background: linear-gradient(135deg, rgba(41, 219, 203, 0.12), rgba(99, 102, 241, 0.06));
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  color: #dcefef;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.hero-value-prop strong {
  color: var(--primary-strong);
  font-weight: 700;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.browser-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: rgba(6, 8, 8, 0.95);
  box-shadow: var(--shadow-soft), var(--glow-teal);
}

.browser-mock-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--border-subtle);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.browser-dot:nth-child(1) {
  background: #ff5f57;
}

.browser-dot:nth-child(2) {
  background: #febc2e;
}

.browser-dot:nth-child(3) {
  background: #28c840;
}

.browser-title {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.browser-mock-shot {
  display: block;
  line-height: 0;
  background: #000;
}

.browser-mock-shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.browser-mock-cap {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.72rem;
  color: #7a7a7a;
  border-top: 1px solid var(--border-subtle);
}

.hero-glow-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 219, 203, 0.2) 0%, transparent 70%);
  filter: blur(20px);
}

.hero-gauge {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-gauge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 270deg, rgba(255, 255, 255, 0.08) 270deg 360deg);
  padding: 10px;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #fff calc(100% - 11px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #fff calc(100% - 11px));
}

.hero-gauge-ring::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-gauge-core {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #151515 0%, #050505 55%, #000 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.hero-gauge-value {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-strong);
  line-height: 1;
}

.hero-gauge-caption {
  margin-top: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.hero-gauge-status {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.float-card {
  position: absolute;
  min-width: 132px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(20, 20, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  animation: float-y 5s ease-in-out infinite;
}

.float-card:nth-child(even) {
  animation-duration: 6.5s;
  animation-delay: -1s;
}

.float-icon {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  opacity: 0.9;
}

.float-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8f8f8f;
  margin-bottom: 4px;
}

.float-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-strong);
}

.float-card--tl {
  top: 8%;
  left: 0;
}

.float-card--tr {
  top: 4%;
  right: 0;
  animation-delay: -2s;
}

.float-card--bl {
  bottom: 14%;
  left: 4%;
  animation-delay: -0.5s;
}

.float-card--mr {
  right: 0;
  top: 42%;
  animation-delay: -1.5s;
}

.float-card--br {
  bottom: 6%;
  right: 6%;
  animation-delay: -2.5s;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .browser-mock {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .float-card {
    display: none;
  }

  .hero-visual {
    min-height: 280px;
  }
}

.text-gradient {
  background: linear-gradient(100deg, var(--primary) 0%, var(--accent) 45%, #86efac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Problem cards ===== */
.card-list {
  display: grid;
  gap: 16px;
}

.problem-card {
  background: rgba(5, 8, 8, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-soft);
}

.problem-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  color: var(--color-strong);
}

.problem-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ===== Solution / feature summaries ===== */
.feature-summary {
  background: radial-gradient(circle at top left, rgba(94, 234, 212, 0.18), transparent 55%), rgba(5, 8, 8, 0.97);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
}

.feature-summary h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--color-strong);
}

.feature-summary p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.feature-summary ul {
  padding-left: 1.1rem;
  margin: 0;
  list-style: disc;
  color: var(--color-muted);
  font-size: 0.88rem;
}

/* ===== Detailed feature blocks ===== */
.feature-block {
  margin-top: 40px;
}

.feature-block-header {
  margin-bottom: 18px;
}

.feature-block-header h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--color-strong);
}

.feature-block-header p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.feature-card .feature-what,
.feature-card .feature-why,
.feature-card .feature-impact,
.feature-card .feature-example {
  margin-bottom: 6px;
  font-size: 0.86rem;
}

.feature-card .feature-impact strong,
.feature-card .feature-example strong {
  color: var(--color-body);
}

/* ===== Financial clarity ===== */
.check-list {
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--accent);
}

.financial-highlight {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(5, 8, 8, 0.98);
  box-shadow: var(--shadow-soft);
}

.financial-highlight h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  color: var(--color-strong);
}

.financial-highlight p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ===== Comparison ===== */
.comparison .card-accent {
  border-color: rgba(41, 219, 203, 0.45);
  background: radial-gradient(circle at top left, rgba(41, 219, 203, 0.18), transparent 60%), rgba(5, 8, 8, 0.97);
}

.comparison ul {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ===== Pricing ===== */
.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--color-strong);
}

.pricing-tagline {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.pricing-card ul {
  padding-left: 1.1rem;
  margin: 6px 0 12px;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-card-featured {
  border-color: rgba(41, 219, 203, 0.55);
  background: radial-gradient(circle at top left, rgba(41, 219, 203, 0.2), transparent 60%), rgba(5, 8, 8, 0.98);
}

/* ===== CTA ===== */
.cta {
  background: radial-gradient(circle at top, rgba(41, 219, 203, 0.18), transparent 65%),
    linear-gradient(to bottom, rgba(5, 8, 8, 1), rgba(0, 0, 0, 1));
}

.cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.cta-inner h2,
.cta-inner .cta-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-strong);
  font-weight: 800;
}

.cta-inner p {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.cta-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(5, 8, 8, 0.98);
  color: var(--color-body);
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.cta-form input[type="checkbox"],
.cta-form input[type="radio"] {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: #64748b;
}

.cta-form textarea {
  resize: vertical;
  min-height: 96px;
  margin-bottom: 14px;
}

.cta-form .form-feedback {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(5, 8, 8, 0.85);
  color: var(--color-muted);
  min-height: 0;
}

.cta-form .form-feedback:empty {
  display: none;
}

.cta-form .form-feedback--ok {
  border-color: rgba(41, 219, 203, 0.45);
  color: #c8f7f0;
  background: rgba(41, 219, 203, 0.08);
}

.cta-form .form-feedback--err {
  border-color: rgba(248, 113, 113, 0.45);
  color: #fecaca;
  background: rgba(248, 113, 113, 0.08);
}

.cta-form .form-row-labeled .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-form .form-field-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

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

.form-config-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
}

.form-config-note code {
  font-size: 0.85em;
  color: #94a3b8;
}

.cta-form .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 720px) {
  .cta-form .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(5, 8, 8, 0.98);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.22s ease-out, padding-bottom 0.22s ease-out;
}

.faq-answer p {
  margin: 10px 0 12px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
  padding-bottom: 10px;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid rgba(5, 8, 8, 1);
  background: radial-gradient(circle at top, rgba(5, 8, 8, 1), #000000 65%, #000000 100%);
  padding-top: 32px;
  color: var(--color-muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 0 24px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-column h3 {
  margin: 0 0 8px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-body);
}

.footer-column a {
  display: block;
  font-size: 0.86rem;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.footer-column a:hover {
  color: var(--color-body);
}

.footer-summary {
  margin-top: 8px;
  font-size: 0.88rem;
  max-width: 260px;
}

.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 10px 0 20px;
}

.footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: var(--color-muted);
}

.footer-social a:hover {
  color: var(--color-body);
}

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .nav-shell.is-open {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    top: 68px;
    z-index: 50;
    justify-content: center;
  }

  .nav-shell.is-open .nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border-radius: 16px;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
  }

  .nav-shell.is-open .nav a {
    text-align: center;
  }

  .header-actions {
    display: none;
  }

  .header-actions.is-open {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 16px;
    z-index: 50;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 16px;
  }

  .logo-tagline {
    white-space: normal;
    max-width: 46vw;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ===== Positioning, selling points, roles, screen gallery, BMS spec ===== */
.position-quote {
  margin: 0;
  padding: 0;
  border: none;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.55;
  color: #c6c6c6;
  font-weight: 500;
  max-width: 900px;
}

.position-quote p {
  margin: 0;
}

.position-quote p::before {
  content: "“";
  color: var(--accent);
  font-size: 1.4em;
  margin-right: 4px;
}

.position-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Trust strip */
.trust-strip {
  padding: 48px 0;
  border-block: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(8, 12, 12, 0.95), rgba(0, 0, 0, 0.4));
}

.trust-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

@media (max-width: 900px) {
  .trust-metrics {
    grid-template-columns: minmax(0, 1fr);
  }
}

.trust-metric {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
}

.trust-metric-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-strong);
  margin-bottom: 6px;
}

.trust-metric-label {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #909090;
}

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

@media (max-width: 900px) {
  .trust-quotes {
    grid-template-columns: minmax(0, 1fr);
  }
}

.trust-quote {
  margin: 0;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(41, 219, 203, 0.2);
  background: rgba(41, 219, 203, 0.05);
}

.trust-quote blockquote {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #c4c4c4;
  font-style: italic;
}

.trust-quote figcaption {
  font-size: 0.78rem;
  color: #6f8f8a;
}

.trust-quote cite {
  font-style: normal;
}

/* Compare table */
.compare-scroll {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(5, 8, 8, 0.96);
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-subtle);
}

.compare-table thead th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-strong);
  font-weight: 700;
  white-space: nowrap;
}

.compare-table tbody th[scope="row"] {
  color: #c8c8c8;
  font-weight: 600;
  max-width: 200px;
}

.compare-table td {
  color: #a5a5a5;
}

.compare-table tbody tr:nth-child(even) td,
.compare-table tbody tr:nth-child(even) th {
  background: rgba(255, 255, 255, 0.02);
}

.compare-foot {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #b0b0b0;
}

.compare-foot a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sell-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

@media (min-width: 900px) {
  .sell-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.sell-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--color-body);
}

.sell-ico {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

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

@media (max-width: 720px) {
  .role-showcase {
    grid-template-columns: minmax(0, 1fr);
  }
}

.role-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  overflow: hidden;
}

.role-shot {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 0;
}

.role-shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.role-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--color-strong);
}

.role-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.section-screens {
  position: relative;
  overflow: hidden;
}

.screens-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(41, 219, 203, 0.1), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(99, 102, 241, 0.1), transparent 40%);
  pointer-events: none;
}

.section-screens .container {
  position: relative;
  z-index: 1;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.gallery-tab {
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-tab:hover {
  color: var(--color-strong);
  border-color: rgba(255, 255, 255, 0.2);
}

.gallery-tab.is-active {
  color: #021312;
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  border-color: rgba(0, 229, 190, 0.45);
  box-shadow: var(--glow-teal);
}

.gallery-panel:not(.is-active) {
  display: none;
}

.gallery-panel.is-active {
  display: block;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.product-shot-grid {
  max-width: 1080px;
  margin: 0 auto;
}

.product-shot-grid .shot-card figcaption strong {
  color: var(--color-strong);
}

.shot-card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.45);
}

.shot-card-link {
  display: block;
  line-height: 0;
}

.shot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.shot-card figcaption {
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.screens-strip-title {
  margin: 36px 0 14px;
  font-size: 1rem;
  color: var(--color-strong);
}

.screens-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screens-thumb {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  line-height: 0;
  background: #000;
}

.screens-thumb img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
  transition: opacity var(--transition-fast);
}

.screens-thumb:hover img {
  opacity: 1;
}

.screens-pdf-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bms-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}

.bms-details {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  padding: 0 4px;
}

.bms-details summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-strong);
}

.bms-details summary::-webkit-details-marker {
  display: none;
}

.bms-details summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 600;
}

.bms-details[open] summary::after {
  content: "−";
}

.bms-details-body {
  padding: 0 16px 16px;
  border-top: 1px solid var(--border-subtle);
}

.bms-details-body p {
  margin: 12px 0 8px;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.bms-details-body ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.bms-details-body li {
  margin-bottom: 6px;
}

.bms-see,
.features-cta-row {
  margin-top: 12px;
}

.bms-see a,
.features-cta-row a {
  font-weight: 600;
}

.features-cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.bms-inline-shots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.bms-inline-shots a {
  flex: 1 1 160px;
  min-width: 140px;
  max-width: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  line-height: 0;
}

.bms-inline-shots img {
  width: 100%;
  height: auto;
  display: block;
}

/* Theme toggle (no visible "Accent" label) */
.btn-theme {
  min-width: 2.5rem;
  padding-left: 0.65rem;
  padding-right: 0.65rem;
}

.btn-theme-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Secondary CTAs defer to "Book a demo" */
.btn-secondary-cta {
  opacity: 0.92;
}

.text-muted-link {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.text-muted-link:hover {
  color: var(--accent);
}

/* AI section */
.section-ai .ai-cap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-ai .ai-cap-list li {
  margin-bottom: 1.25rem;
}

.section-ai .ai-cap-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--color-strong);
}

.section-ai .ai-cap-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.ai-footnote {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.ai-mock-body {
  padding: 1.25rem 1.5rem 1.5rem;
  background: linear-gradient(165deg, #0a1211 0%, #050505 100%);
  border-top: 1px solid var(--border-subtle);
}

.ai-mock-kicker {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.ai-mock-cards {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-mock-cards li {
  margin-bottom: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(41, 219, 203, 0.08);
  border: 1px solid var(--border-subtle);
  font-size: 0.88rem;
}

/* Pricing anchor */
.pricing-from {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: var(--color-strong);
}

.pricing-period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
}

.pricing-disclaimer {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* Safeguarding blurb */
.safeguarding-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  border-left: 2px solid var(--accent);
  padding-left: 0.75rem;
}

.safeguarding-note a {
  color: var(--accent);
}

/* CTA form de-emphasized vs calendar */
.cta-priority-hint {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  text-align: center;
}

.cta-priority-hint a {
  color: var(--accent);
  font-weight: 600;
}

/* Legal pages */
.legal-page {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.legal-prose {
  max-width: 42rem;
}

.legal-prose h1 {
  margin-top: 0;
  color: var(--color-strong);
}

.legal-prose h2 {
  margin-top: 2rem;
  font-size: 1.15rem;
  color: var(--color-strong);
}

.legal-prose p,
.legal-prose li {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.legal-prose a {
  color: var(--accent);
}

/* Visually hidden headings */
.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;
}

/* Hero social proof */
.hero-social-proof {
  margin: 1rem 0 0.35rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.hero-trust-line {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted);
  opacity: 0.85;
}

@media (min-width: 900px) {
  .hero-social-proof,
  .hero-trust-line {
    text-align: left;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--color-panel);
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-body);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.avatar-circle {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  background: var(--accent);
}

.avatar-circle--alt {
  background: #5b8def;
  color: #fff;
}

.avatar-circle--alt2 {
  background: #c4a35a;
  color: #000;
}

.testimonial-name {
  display: block;
  font-weight: 600;
  color: var(--color-strong);
  font-size: 0.88rem;
}

.testimonial-title {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* AI feature grid (updated) */
.ai-feature-grid {
  margin-bottom: 1.5rem;
}

.ai-feature-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--color-panel-soft);
}

.ai-feature-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.ai-feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-strong);
}

.ai-feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.ai-proof-line {
  margin: 0;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-strong);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(41, 219, 203, 0.08);
}

/* Pricing two-card */
.pricing-grid--two {
  max-width: 52rem;
  margin: 0 auto;
}

.pricing-callout {
  margin: 1rem 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: rgba(41, 219, 203, 0.06);
}

.pricing-from--custom {
  font-size: 1.2rem;
}

.pricing-guarantee {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* Demo steps */
.demo-steps-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .demo-steps-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .demo-steps-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.demo-step {
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--color-panel);
  font-size: 0.9rem;
  color: var(--color-body);
  line-height: 1.5;
}

.demo-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  background: var(--accent);
  vertical-align: middle;
}

.demo-steps-cta-row {
  text-align: center;
  margin-bottom: 0.75rem;
}

.demo-steps-email {
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.demo-steps-email a {
  color: var(--accent);
}

/* Compare matrix */
.compare-table--matrix .compare-col-krama {
  background: rgba(41, 219, 203, 0.08);
  font-weight: 500;
}

.compare-table--matrix th[scope="row"] {
  text-align: left;
  font-weight: 500;
}

.compare-yes {
  color: var(--accent);
  font-weight: 700;
}

.compare-no {
  color: var(--color-muted);
}

.compare-partial {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.compare-footnote {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--color-muted);
  text-align: center;
}

/* Team */
.team-fallback {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Data trust */
.section-data-trust {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.data-trust-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .data-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.data-trust-list {
  margin: 0;
}

.data-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.data-trust-links a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-email {
  margin-top: 0.5rem;
  font-size: 0.88rem;
}

.footer-email a {
  color: var(--accent);
}

/* Nav sticky CTA */
.btn-nav-cta {
  font-size: 0.88rem;
  padding: 0.45rem 0.85rem;
}

.logo-stack .logo-tagline {
  display: none;
}

/* Hero */
.hero-tags--outcomes {
  margin: 0.75rem 0 1rem;
}

.hero-secondary-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-secondary-link:hover {
  color: var(--accent);
}

/* Credibility bar */
.credibility-bar {
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.credibility-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.credibility-item {
  text-align: center;
  min-width: 120px;
}

.credibility-value {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-strong);
}

.credibility-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.credibility-divider {
  width: 1px;
  height: 2rem;
  background: var(--border-subtle);
}

@media (max-width: 640px) {
  .credibility-divider {
    display: none;
  }
}

/* Problem / solution */
.problem-grid .problem-card,
.capability-card,
.migration-step {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--color-panel);
}

.problem-icon,
.solution-icon,
.capability-icon,
.migration-icon {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.problem-transition,
.solution-cta,
.features-depth-link,
.migration-trust,
.screens-inline-cta {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.problem-transition a,
.solution-cta a,
.features-depth-link a,
.screens-inline-cta a {
  color: var(--accent);
  font-weight: 600;
}

.solution-grid .feature-summary ul {
  display: none;
}

/* Screens 2x2 */
@media (min-width: 768px) {
  .shot-grid--quad {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Capability grid */
.capability-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--color-strong);
}

.capability-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.testimonial-metric {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Data trust points */
.data-trust-points {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .data-trust-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

.data-trust-point {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--color-panel-soft);
}

.data-trust-point h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--color-strong);
}

.data-trust-point p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Schedule */
.schedule-steps-mini {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  max-width: 40rem;
}

.schedule-steps-mini li {
  margin-bottom: 0.5rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.schedule-fallback-actions {
  text-align: center;
  margin-top: 1rem;
}

.cta-footer-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.cta-footer-note a {
  color: var(--accent);
}

.pricing-for {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.pricing-guarantee-inline {
  margin: 0.5rem 0 1rem;
  font-size: 0.82rem;
  color: var(--accent);
}

.cta-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(5, 8, 8, 0.98);
  color: var(--color-body);
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-field--full {
  flex: 1 1 100%;
}

/* ROI calculator */
.roi-calculator {
  max-width: 32rem;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--color-panel);
}

.roi-field {
  display: block;
  margin-bottom: 1.25rem;
}

.roi-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.roi-label strong {
  color: var(--accent);
}

.roi-field input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.roi-output {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--color-panel-soft);
  font-size: 0.92rem;
  color: var(--color-body);
  line-height: 1.55;
}

.roi-output p {
  margin: 0 0 0.65rem;
}

.roi-output p:last-child {
  margin-bottom: 0;
}

.roi-cta {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.roi-cta a {
  color: var(--accent);
  font-weight: 600;
}

.testimonials-pilot-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.testimonials-pilot-note a {
  color: var(--accent);
  font-weight: 600;
}

.data-trust-check {
  color: var(--accent);
  margin-right: 0.35rem;
}

.schedule-steps-mini--center {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

