:root {
  --brand: #0A8F9E;
  --brand-deep: #076E7B;
  --brand-glow: rgba(10, 143, 158, 0.28);
  --bg: #0B0E10;
  --bg-elevated: #14181C;
  --bg-card: #171B20;
  --bg-chip: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.14);
  --text: #EDEEEF;
  /* Raised from 0.62 / 0.42 in v1.4.4 for WCAG AA contrast on dark bg.
     0.42 muted text was failing AA on every foot-mini / price-footnote
     / video-label at <14px. */
  --text-secondary: rgba(237, 238, 239, 0.72);
  --text-muted: rgba(237, 238, 239, 0.60);
  --good: #22C55E;
  --warn: #F59E0B;
  --bad: #EF4444;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 16px;
}

body {
  color-scheme: dark;
  background:
    radial-gradient(1200px 600px at 80% -5%, rgba(10, 143, 158, 0.14), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(10, 143, 158, 0.08), transparent 55%),
    var(--bg);
}

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

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

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

/* ========== Brand wordmark ========== */

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.brand-name {
  font-family: -apple-system-body, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.brand-pro {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.08em;
  border-radius: 4px;
  padding: 3px 6px;
  margin-left: 7px;
  vertical-align: baseline;
  text-transform: uppercase;
}

/* ========== Header / nav ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 14, 16, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
}

.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 1.75rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}

.nav-cta:hover { background: var(--brand-deep); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-hamburger {
  display: none;
  background: var(--bg-chip);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  color: var(--text);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 1.5rem 1rem;
  background: rgba(11, 14, 16, 0.92);
  border-top: 1px solid var(--stroke);
}

.mobile-menu[data-open="true"] {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--stroke);
  color: var(--text);
  font-size: 1rem;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: inline-flex; }
}

/* ========== Section scaffolding ========== */

main > section {
  padding: 6rem 1.5rem;
}

.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.kicker {
  font-size: 1.6rem !important;
  font-weight: 500 !important;
  color: var(--text-secondary) !important;
}

.lede-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 0 3rem;
}

.eyebrow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--bg-chip);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

/* ========== Buttons ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.08s ease, color 0.15s ease;
  line-height: 1;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 30px -12px var(--brand-glow);
  gap: 0.5rem;
}
.btn-primary:hover { background: var(--brand-deep); }

.btn-icon {
  width: 16px;
  height: 16px;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--stroke-strong);
}
.btn-ghost:hover {
  background: var(--bg-chip);
  border-color: var(--text-muted);
}

/* Tertiary-link style for the "or download for eval" in the hero.
   Much quieter than primary/ghost buttons — it's an escape hatch for
   devs who want to evaluate before scheduling a demo, not the main
   path. Styled as an inline link with a subtle underline on hover. */
.btn-link {
  background: transparent;
  color: var(--text-muted);
  border: 0;
  padding: 0.75rem 0.4rem;
  font-weight: 500;
}
.btn-link:hover {
  color: var(--text);
  text-decoration: underline;
}

/* ========== Hero ========== */

.hero {
  padding: 5rem 1.5rem 7rem !important;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 1.25rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 0 2rem;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* Hero visual — stylized console */

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
}

.console {
  background: linear-gradient(180deg, var(--bg-card), #10141A);
  border: 1px solid var(--stroke-strong);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(10, 143, 158, 0.12) inset;
  position: absolute;
  inset: 0 15% 20% 0;
}

.console-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.console-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  background: var(--bg-chip);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.console-pill-live {
  color: var(--bad);
  font-weight: 700;
  letter-spacing: 0.08em;
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
}

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.dot-ok { background: var(--brand); box-shadow: 0 0 0 3px rgba(10, 143, 158, 0.2); }

.console-video {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 50%, rgba(10, 143, 158, 0.18), transparent 70%),
    linear-gradient(180deg, #0B1214, #080B0D);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(10, 143, 158, 0.6);
  box-shadow:
    0 0 0 8px rgba(10, 143, 158, 0.08),
    0 0 0 16px rgba(10, 143, 158, 0.04);
}

.video-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.75rem;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.faders {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.fader {
  display: grid;
  grid-template-columns: 70px 1fr 46px;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.75rem;
}

.fader-lbl {
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.fader-track {
  height: 5px;
  background: var(--bg-chip);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.fader-track i {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  background: linear-gradient(90deg, var(--brand), #3DBFCE);
  border-radius: 3px;
}

.fader-db {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.transport {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.xp {
  padding: 0.7rem 0;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--bg-chip);
  border: 1px solid var(--stroke);
  color: var(--text-secondary);
}

.xp-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 6px 20px -8px var(--brand-glow);
}

/* PA latched is RED in the actual app (live to room), cough is orange.
   v1.4.4 swap — previously this was reversed and looked wrong to any
   pro-AV visitor who could spot the mis-coded state. */
.xp-pa {
  background: rgba(239, 68, 68, 0.12);
  color: var(--bad);
  border-color: rgba(239, 68, 68, 0.35);
}

.xp-cough {
  background: rgba(245, 158, 11, 0.12);
  color: var(--warn);
  border-color: rgba(245, 158, 11, 0.35);
}

/* Transport buttons now have a title + target-audience subtitle, matching
   the real app's button face. */
.xp {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.55rem 0;
}

.xp-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.xp-target {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Phone mockup */

.phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(180deg, #1C1F24, #0F1214);
  border: 1px solid var(--stroke-strong);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}

.phone-screen {
  height: 100%;
  background: var(--bg-elevated);
  border-radius: 20px;
  padding: 1.2rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid var(--stroke);
}

.phone-brand {
  font-size: 0.95rem;
  font-weight: 600;
}

.phone-brand span {
  background: var(--brand);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 4px;
}

.phone-lang {
  background: var(--bg-chip);
  border: 1px solid var(--stroke);
  border-radius: 6px;
  padding: 0.45rem 0.6rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Phone mockup in v1.4.4 matches the actual listener UX: listen-only by
   default with a pulsing "Listening" status chip, tap-to-talk-back as the
   secondary action. Previous mockup showed a misleading "Mute" button. */
.phone-listening {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(10, 143, 158, 0.08);
  border: 1px solid rgba(10, 143, 158, 0.28);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: auto;
}

.phone-listening-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(10, 143, 158, 0.5);
  animation: phone-listening-pulse 1.6s ease-in-out infinite;
}

@keyframes phone-listening-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 143, 158, 0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(10, 143, 158, 0); }
}

.phone-hint {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin: 2rem auto 0; width: 100%; }
}

/* ========== Problem ========== */

.problem {
  background: var(--bg-elevated);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.problem-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 0.75rem;
}

.problem-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.problem-list .x {
  flex-shrink: 0;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  padding-top: 1px;
  letter-spacing: 0;
}

/* ========== Features ========== */

.features-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature:hover {
  border-color: rgba(10, 143, 158, 0.4);
  transform: translateY(-2px);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(10, 143, 158, 0.12);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.feature p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.55;
}

/* ========== How it works ========== */

.how {
  background: var(--bg-elevated);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.flow {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.flow-step {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}

.flow-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.flow-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.flow-step p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  opacity: 0.75;
}

.flow-arrow svg {
  width: 36px;
  height: 16px;
}

.flow-caption {
  margin-top: 2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 780px;
}

@media (max-width: 900px) {
  .flow {
    grid-template-columns: 1fr;
  }
  .flow-arrow { transform: rotate(90deg); }
}

/* Four-step variant for the service-flow ("How we work") section. No arrows —
   the four steps wrap to 2x2 on tablet and stack on phone. */
.flow.flow-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .flow.flow-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .flow.flow-4 { grid-template-columns: 1fr; }
}

/* ========== Hardware ========== */

/* Vendor wordmark strip sits between the lede and the hw-grid. Typographic
   placeholders for now — each li styled to hint at the vendor's brand feel
   without using their official logo. Replace with real SVG wordmarks when
   brand-asset review lands. */
.vendor-strip {
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.vendor-mark {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  opacity: 0.82;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.vendor-mark:hover {
  opacity: 1;
  border-color: var(--stroke-strong);
}

.vendor-focusrite { font-style: italic; letter-spacing: -0.02em; }
.vendor-rme       { font-family: "Courier New", monospace; letter-spacing: 0; font-weight: 700; }
.vendor-blackmagic{ letter-spacing: 0.02em; }
.vendor-dante     { font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; font-size: 0.82rem; }
.vendor-ndi       { font-weight: 800; letter-spacing: 0.04em; }
.vendor-elgato    { font-weight: 500; letter-spacing: -0.01em; }
.vendor-motu      { font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.82rem; }

.hw-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.hw-col {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}

.hw-col h4 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hw-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.hw-col li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--stroke);
}

.hw-col li:last-child { border-bottom: 0; }

/* ========== Pricing ========== */

.pricing {
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(10, 143, 158, 0.08), transparent 60%),
    var(--bg);
}

.pricing-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

/* Tighter minmax for the 4-card layout. Drops to 250px so we can fit
   all four side-by-side at desktop width, then auto-fit naturally
   wraps to 2-up on tablet and 1-up on phone. */
.pricing-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.pricing-grid-4 .price-card {
  padding: 1.5rem 1.4rem 1.35rem;
}

.pricing-grid-4 .price-number {
  font-size: 2.8rem;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.price-card:hover {
  border-color: rgba(10, 143, 158, 0.35);
  transform: translateY(-2px);
}

.price-card-featured {
  border-color: rgba(10, 143, 158, 0.6);
  background: linear-gradient(180deg, rgba(10, 143, 158, 0.06), var(--bg-card));
  box-shadow: 0 0 0 1px rgba(10, 143, 158, 0.12) inset, 0 20px 60px -30px var(--brand-glow);
}

.price-ribbon {
  position: absolute;
  top: -11px;
  right: 1.4rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 0 3px 12px -2px var(--brand-glow);
}

.price-head h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.price-sub {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  padding: 0.25rem 0 0.15rem;
  border-bottom: 1px solid var(--stroke);
}

.price-currency {
  color: var(--text-secondary);
  font-size: 1.4rem;
  font-weight: 500;
}

.price-number {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.price-custom {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  padding: 0.75rem 0 0.5rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.price-features li {
  color: var(--text-secondary);
  font-size: 0.93rem;
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.45;
}

/* Inline SVG checkmark as a data-URI background-image. Sharper than the
   rotated-border trick at every zoom level. */
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230A8F9E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8l4 4 6-8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.price-cta {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.price-footnote {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

.pricing-notes {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 780px;
  margin: 2rem 0 0;
  line-height: 1.6;
}

.pricing-notes a {
  color: var(--brand);
  border-bottom: 1px dotted var(--brand);
}

/* ========== Use cases ========== */

.use-cases {
  background: var(--bg-elevated);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.uc-grid {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.uc-grid li {
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.98rem;
}

/* ========== FAQ ========== */

.faq-list {
  margin: 2rem 0 0;
  padding: 0;
}

.faq-item {
  padding: 1.25rem 0;
  border-top: 1px solid var(--stroke);
}

.faq-item:last-child { border-bottom: 1px solid var(--stroke); }

.faq-item dt {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.faq-item dd {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 820px;
}

.faq-item dd a {
  color: var(--brand);
  border-bottom: 1px dotted var(--brand);
}

.faq-item dd code,
.feature p code {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--bg-chip);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  color: var(--text);
}

/* ========== CTA ========== */

.cta {
  background:
    radial-gradient(700px 400px at 50% 100%, rgba(10, 143, 158, 0.12), transparent 60%),
    var(--bg-elevated);
  border-top: 1px solid var(--stroke);
  text-align: center;
}

.cta h2 { text-align: center; }
.cta .lede-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* CTA is a single mailto-anchor now — the previous <form action="mailto:">
   silently failed on most mobile browsers. This works 100% of the time
   and opens a pre-filled email. */
.cta-mail {
  font-size: 1.05rem;
  padding: 1rem 2rem;
  gap: 0.65rem;
}

.cta-note {
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cta-note a {
  color: var(--brand);
  border-bottom: 1px dotted var(--brand);
}
.cta-note a:hover { color: #3DBFCE; }

/* ========== Footer ========== */

.site-footer {
  padding: 3rem 1.5rem 4rem;
  border-top: 1px solid var(--stroke);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}

.foot-tag {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0.6rem 0 0;
}

.foot-links {
  margin: 1.25rem 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.88rem;
}

.foot-links a {
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.foot-links a:hover { color: var(--text); }

.foot-dot {
  color: var(--text-muted);
  user-select: none;
}

.foot-mini {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 1.25rem auto 0;
  max-width: 720px;
}

/* ========== Legal page ========== */

.legal-page {
  padding-top: 3rem !important;
}

.legal-inner {
  max-width: 820px;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.legal-effective {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

.legal-effective a {
  color: var(--brand);
  border-bottom: 1px dotted var(--brand);
}

.legal-toc {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  margin-bottom: 3rem;
  font-size: 0.92rem;
}

.legal-toc a {
  color: var(--brand);
}

.legal-toc a:hover {
  color: #3DBFCE;
  text-decoration: underline;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  scroll-margin-top: 80px;
}

.legal-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
  letter-spacing: -0.005em;
}

.legal-section p,
.legal-section li {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-section ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.legal-section li {
  margin-bottom: 0.35rem;
}

.legal-section a {
  color: var(--brand);
  border-bottom: 1px dotted var(--brand);
}

.legal-section a:hover {
  color: #3DBFCE;
}

.legal-section code {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--bg-chip);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: var(--text);
}

.legal-section strong {
  color: var(--text);
  font-weight: 600;
}

.legal-back {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stroke);
  font-size: 0.95rem;
}

.legal-back a {
  color: var(--brand);
}
