*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* ============================================================
   TRUVAL DESIGN TOKENS — shared landing + legal pages
   ============================================================ */

:root {
  /* ── Backgrounds ── */
  --bg:    #070a13;
  --bg2:   #0f1422;
  --bg3:   #151d2d;

  /* ── Borders ── */
  --line:  #222e44;
  --line2: #344361;

  /* ── Text ── */
  --text:  #f7fafc;
  --text2: #9aa9c2;
  --text3: #63738f;

  /* ── Accent colors ── */
  --green: #30e39a;
  --blue:  #5ca4ff;
  --amber: #ffbe63;
  --red:   #ff6f88;

  /* ── Fonts ── */
  --font-mono: 'JetBrains Mono', monospace;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 0% 0%, rgba(92, 164, 255, 0.12), transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(48, 227, 154, 0.1), transparent 40%),
    var(--bg);
  color: var(--text);
  font-size: 14px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Subtle top glow only — no scanlines (they drew horizontal lines over nav/footer) */
body::before {
  content: ''; position: fixed; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
/* Keep page content above the decorative overlay (not nav — would break sticky) */
body > *:not(nav) {
  position: relative;
  z-index: 1;
}
a { color: inherit; text-decoration: none; }

.mono { font-family: var(--font-mono); }
.sans { font-family: var(--font-sans); }

/* Top bar only — footer <nav class="footer-nav"> is not body > nav, so it avoids height/border rules */
body > nav {
  border-bottom: 1px solid var(--line); padding: 0 24px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: rgba(3, 7, 18, 0.8); backdrop-filter: blur(12px); z-index: 100;
}
.nav-logo { display: flex; align-items: center; line-height: 0; }
.nav-logo img { height: 20px; width: auto; max-width: min(200px, 52vw); display: block; object-fit: contain; object-position: left center; }
.nav-right { display: flex; align-items: center; gap: 0; }
.nav-item {
  color: var(--text2); font-size: 13px; padding: 0 16px; height: 56px;
  display: flex; align-items: center; border-left: 1px solid var(--line);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-mono);
}
.nav-item:hover { color: var(--text); background: var(--bg2); box-shadow: inset 0 -2px 0 var(--line2); }
.nav-item.active { color: var(--green); box-shadow: inset 0 -2px 0 var(--green); }

.hero {
  padding: 96px 24px 0; max-width: 900px; margin: 0 auto;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  min-height: calc(100vh - 56px); display: flex; flex-direction: column;
  position: relative;
}
.hero::after {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none; z-index: -1;
}
.hero-top { border-bottom: 1px solid var(--line); padding-bottom: 64px; }
.prompt-line {
  color: var(--text2); font-size: 12px; margin-bottom: 32px;
  display: flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  background: var(--bg2); padding: 6px 12px; border-radius: 6px; border: 1px solid var(--line);
  width: fit-content;
}
.prompt-line::before { content: '>'; color: var(--green); font-weight: 500; }
.hero-h1 { font-family: var(--font-sans); font-size: clamp(36px, 5.5vw, 64px); font-weight: 400; line-height: 1.1; letter-spacing: -0.03em; color: var(--text); margin-bottom: 16px; }
.hero-h1 .accent { color: var(--green); font-weight: 500; }
.hero-h1 .dim { color: var(--text3); }
.hero-sub { font-size: 15px; color: var(--text2); max-width: 580px; line-height: 1.6; font-weight: 300; margin-top: 24px; margin-bottom: 16px; }
.hero-coming { font-size: 13px; color: var(--text3); font-family: var(--font-mono); max-width: 580px; line-height: 1.5; margin-bottom: 40px; }
.hero-coming strong { color: var(--text2); font-weight: 500; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  padding: 12px 24px; border: 1px solid var(--line2); background: var(--bg2);
  color: var(--text); cursor: pointer; transition: all 0.2s ease; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn:hover { background: var(--bg3); border-color: var(--text2); transform: translateY(-1px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.btn-primary { border-color: var(--green); color: var(--bg); background: var(--green); box-shadow: 0 0 15px rgba(16, 185, 129, 0.3); }
.btn-primary:hover { background: #059669; border-color: #059669; color: var(--text); box-shadow: 0 0 25px rgba(16, 185, 129, 0.5); }

.stats-row { border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); background: var(--bg); }
.stat-cell { padding: 32px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; transition: background 0.2s ease; }
.stat-cell:hover { background: var(--bg2); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 500; color: var(--text); display: block; margin-bottom: 4px; letter-spacing: -0.02em; }
.stat-num span { color: var(--green); }
.stat-txt { font-family: var(--font-mono); font-size: 11px; color: var(--text2); letter-spacing: 0.05em; text-transform: uppercase; }

.hero-bottom {
  padding: 28px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-bottom-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-copy-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.55);
}
.hero-copy-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.hero-copy-bar-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-copy-bar-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.04em;
}
.hero-copy-pre {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.65;
  color: var(--text2);
  white-space: pre-wrap;
  word-break: break-word;
  padding: 16px 18px;
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
}
.hero-copy-actions {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}
.hero-copy-actions .btn { margin: 0; }

.hero-marquee-block { display: flex; flex-direction: column; gap: 12px; }
.hero-marquee-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.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-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: hero-marquee 42s linear infinite;
}
.hero-marquee-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.hero-marquee-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid rgba(52, 67, 97, 0.45);
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.hero-marquee-logo {
  height: 22px;
  width: 22px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.hero-marquee-item:hover .hero-marquee-logo-wrap {
  border-color: var(--line2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 0 0 1px rgba(48, 227, 154, 0.22);
}
.hero-marquee-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.hero-marquee-item:hover .hero-marquee-name { color: var(--green); }
@keyframes hero-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track {
    animation: none;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 28px;
    row-gap: 12px;
    max-width: 100%;
    width: 100%;
  }
  /* second half is only for seamless loop — hide when not animating */
  .hero-marquee-track .hero-marquee-item:nth-child(n + 12) { display: none; }
}

.terminal-section {
  max-width: 900px; margin: 48px auto;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-top: 1px solid var(--line);
  border-radius: 12px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: var(--bg);
}
.term-header {
  border-bottom: 1px solid var(--line); padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between; background: var(--bg2);
}
.term-dots { display: flex; gap: 6px; }
.term-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line2); }
.term-dot.close { background: var(--red); }
.term-dot.min { background: var(--amber); }
.term-dot.max { background: var(--green); opacity: 0.8; }
.term-title { font-family: var(--font-mono); font-size: 11px; color: var(--text2); letter-spacing: 0.05em; position: absolute; left: 50%; transform: translateX(-50%); }
.term-status { font-family: var(--font-mono); font-size: 11px; color: var(--green); display: flex; align-items: center; gap: 6px; }
.term-status::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 0.5; } 50% { opacity: 1; } 100% { opacity: 0.5; } }

.term-body { display: grid; grid-template-columns: 1fr 1fr; }
.term-col { padding: 32px; }
.term-col:first-child { border-right: 1px solid var(--line); background: var(--bg); }
.term-col-label { font-family: var(--font-mono); font-size: 11px; color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
pre { font-family: var(--font-mono); font-size: 13px; line-height: 1.7; color: var(--text2); white-space: pre; overflow-x: auto; }
.c-green { color: var(--green); } .c-blue { color: var(--blue); }
.c-amber { color: var(--amber); } .c-red { color: var(--red); }
.c-dim { color: var(--text3); } .c-text { color: var(--text); }
.c-keyword { color: #c084fc; }

.feature-section {
  max-width: 900px; margin: 0 auto;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.feature-section-header { font-family: var(--font-mono); padding: 16px 24px; border-bottom: 1px solid var(--line); font-size: 12px; color: var(--text2); letter-spacing: 0.1em; text-transform: uppercase; background: var(--bg2); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.feature-item { padding: 36px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: all 0.3s ease; position: relative; overflow: hidden; }
.feature-item::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% -20%, rgba(16,185,129,0.05), transparent 70%); opacity: 0; transition: opacity 0.3s ease; }
.feature-item:hover::before { opacity: 1; }
.feature-item:hover { background: var(--bg2); transform: translateY(-2px); box-shadow: 0 10px 20px -10px rgba(0,0,0,0.5); z-index: 1; border-color: var(--line2); }
.feature-item:nth-child(3n) { border-right: none; }
.feature-item:nth-child(n+4) { border-bottom: none; }
.feature-num { font-family: var(--font-mono); font-size: 11px; color: var(--green); margin-bottom: 16px; letter-spacing: 0.1em; font-weight: 500; }
.feature-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 12px; letter-spacing: -0.01em; }
.feature-desc { font-size: 14px; color: var(--text2); line-height: 1.6; font-weight: 300; }

.schema-section {
  max-width: 900px; margin: 48px auto;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-top: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
}
.schema-header { font-family: var(--font-mono); padding: 16px 24px; border-bottom: 1px solid var(--line); font-size: 12px; color: var(--text2); letter-spacing: 0.1em; text-transform: uppercase; background: var(--bg2); }
.schema-row { display: grid; grid-template-columns: 160px 100px 1fr; padding: 12px 24px; border-bottom: 1px solid var(--line); align-items: baseline; transition: background 0.2s; }
.schema-row:last-child { border-bottom: none; }
.schema-row:hover { background: var(--bg2); }
.schema-key { font-family: var(--font-mono); color: var(--blue); font-size: 13px; font-weight: 500; }
.schema-type { font-family: var(--font-mono); color: var(--text3); font-size: 12px; }
.schema-desc { color: var(--text2); font-size: 13px; font-weight: 400; }

.cta-section {
  max-width: 900px; margin: 0 auto 64px auto;
  border: 1px solid var(--line); border-radius: 16px;
  padding: 64px 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--green), transparent); opacity: 0.3; }
.cta-left h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 400; letter-spacing: -0.03em; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.cta-left h2 span { color: var(--green); font-weight: 500; }
.cta-left p { font-size: 15px; color: var(--text2); max-width: 420px; line-height: 1.6; font-weight: 300; margin-bottom: 32px; }
.cta-right { border: 1px solid var(--line2); padding: 24px 32px; background: var(--bg); border-radius: 12px; min-width: 300px; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2); }
.cta-right-label { font-family: var(--font-mono); font-size: 11px; color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.pricing-row:last-child { border-bottom: none; padding-bottom: 0; }
.pricing-row .tier { font-weight: 500; color: var(--text); text-transform: capitalize; }
.pricing-row .price { font-family: var(--font-mono); color: var(--green); font-size: 13px; }

.site-footer {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg);
  border-top: 1px solid rgba(34, 46, 68, 0.55);
  padding: 56px 32px 64px;
  box-sizing: border-box;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
  align-items: start;
}
.footer-col {
  min-width: 0;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: none;
  height: auto;
  min-height: 0;
  padding: 0;
  position: static;
  background: transparent;
  backdrop-filter: none;
  justify-content: flex-start;
}
.footer-nav .footer-link {
  padding: 2px 0;
  line-height: 1.45;
}
.footer-link {
  font-family: var(--font-mono); font-size: 12px; color: var(--text2);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}
.footer-link:hover { color: var(--text); }
.footer-link-muted {
  color: var(--text3); cursor: default;
}
.footer-link-muted:hover { color: var(--text3); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 48px;
  margin-top: 8px;
  border-top: 1px solid rgba(34, 46, 68, 0.35);
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  text-align: center;
  margin: 0;
  max-width: 36em;
  line-height: 1.55;
}
.footer-rights {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text2);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* Legal pages */
.legal-page {
  max-width: 900px; margin: 0 auto;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  min-height: calc(100vh - 56px - 120px);
  padding-bottom: 48px;
}
.legal-header-bar {
  font-family: var(--font-mono); padding: 16px 24px; border-bottom: 1px solid var(--line);
  font-size: 12px; color: var(--text2); letter-spacing: 0.1em; text-transform: uppercase; background: var(--bg2);
}
.legal-inner { padding: 40px 24px 0; max-width: 720px; }
.legal-inner h1 {
  font-size: clamp(28px, 4vw, 36px); font-weight: 400; letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 8px; line-height: 1.2;
}
.legal-meta { font-family: var(--font-mono); font-size: 12px; color: var(--text3); margin-bottom: 32px; }
.legal-inner h2 {
  font-family: var(--font-mono); font-size: 12px; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase;
  margin: 32px 0 12px;
}
.legal-inner p { color: var(--text2); font-size: 15px; line-height: 1.65; font-weight: 300; margin-bottom: 16px; }
.legal-inner ul { color: var(--text2); font-size: 15px; line-height: 1.65; margin: 0 0 16px 1.25em; font-weight: 300; }
.legal-inner li { margin-bottom: 8px; }
.legal-inner a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-inner a:hover { color: var(--text); }
.legal-back { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal-back a { font-family: var(--font-mono); font-size: 12px; color: var(--text2); text-decoration: none; }
.legal-back a:hover { color: var(--green); }

/* Pricing page */
.pricing-page {
  max-width: 900px; margin: 0 auto;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  padding-bottom: 64px;
}
.pricing-hero {
  padding: 72px 24px 40px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pricing-hero::after {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(92, 164, 255, 0.08) 0%, transparent 60%);
  pointer-events: none; z-index: -1;
}
.pricing-hero .prompt-line { margin-bottom: 24px; }
.pricing-hero h1 {
  font-family: var(--font-sans); font-size: clamp(32px, 5vw, 48px); font-weight: 400;
  letter-spacing: -0.03em; color: var(--text); line-height: 1.15; margin-bottom: 16px;
}
.pricing-hero h1 .accent { color: var(--green); font-weight: 500; }
.pricing-hero-lede {
  font-size: 15px; color: var(--text2); max-width: 560px; line-height: 1.65; font-weight: 300;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.pricing-card {
  border-right: 1px solid var(--line);
  padding: 32px 24px 28px;
  display: flex; flex-direction: column;
  min-height: 100%;
  background: var(--bg);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:last-child { border-right: none; }
.pricing-card:hover { background: var(--bg2); }
.pricing-card-featured {
  background: linear-gradient(180deg, rgba(48, 227, 154, 0.07) 0%, var(--bg) 55%);
  box-shadow: inset 0 0 0 1px rgba(48, 227, 154, 0.22);
}
.pricing-card-featured:hover { background: linear-gradient(180deg, rgba(48, 227, 154, 0.1) 0%, var(--bg2) 55%); }
.pricing-card-head { margin-bottom: 20px; }
.pricing-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green);
  margin-bottom: 10px;
}
.pricing-badge-muted { color: var(--text3); }
.pricing-badge-amber { color: var(--amber); }
.pricing-tier-title {
  font-size: 20px; font-weight: 500; letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 4px;
}
.pricing-price-row { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }
.pricing-price-main { font-size: 34px; font-weight: 500; color: var(--green); letter-spacing: -0.02em; }
.pricing-price-main span { font-size: 15px; font-weight: 400; color: var(--text2); }
.pricing-price-note { font-family: var(--font-mono); font-size: 12px; color: var(--text3); margin-bottom: 20px; }
.pricing-included {
  font-family: var(--font-mono); font-size: 13px; color: var(--text2);
  padding: 12px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line);
  margin-bottom: 16px; line-height: 1.5;
}
.pricing-included strong { color: var(--text); font-weight: 500; }
.pricing-benefits-title {
  font-family: var(--font-mono); font-size: 11px; color: var(--text3);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}
.pricing-benefits {
  list-style: none; margin: 0; padding: 0; flex: 1;
}
.pricing-benefits li {
  font-size: 13px; color: var(--text2); line-height: 1.5; font-weight: 300;
  padding: 8px 0 8px 18px; position: relative;
  border-bottom: 1px solid var(--line);
}
.pricing-benefits li:last-child { border-bottom: none; }
.pricing-benefits li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px rgba(48, 227, 154, 0.45);
}
.pricing-card-cta { margin-top: 24px; }
.pricing-card-cta .btn { width: 100%; justify-content: center; }

.pricing-compare-wrap {
  border-bottom: 1px solid var(--line);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.pricing-compare {
  margin-top: 0;
  min-width: 520px;
}
.pricing-compare-header {
  font-family: var(--font-mono); padding: 16px 24px; border-bottom: 1px solid var(--line);
  font-size: 12px; color: var(--text2); letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--bg2);
}
.pricing-compare-row {
  display: grid; grid-template-columns: 1.2fr repeat(3, 1fr);
  padding: 14px 24px; border-bottom: 1px solid var(--line); align-items: center;
  gap: 12px;
}
.pricing-compare-row:last-child { border-bottom: none; }
.pricing-compare-row:hover { background: var(--bg2); }
.pricing-compare-row--tiers { background: var(--bg2); }
.pricing-compare-row--tiers:hover { background: var(--bg2); }
.pricing-compare-row--tiers .pricing-compare-val { color: var(--green); font-weight: 500; }
.pricing-compare-label { color: var(--text2); font-size: 13px; font-weight: 400; }
.pricing-compare-val {
  font-family: var(--font-mono); font-size: 12px; color: var(--text);
}
.pricing-compare-val-muted { color: var(--text3); }

.pricing-footnote {
  max-width: 900px; margin: 0 auto; padding: 24px 24px 0;
  font-family: var(--font-mono); font-size: 11px; color: var(--text3); line-height: 1.6;
}

.cursor { display: inline-block; width: 12px; height: 18px; background: var(--green); vertical-align: baseline; margin-left: 4px; animation: blink 1.1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

@media (max-width: 768px) {
  .hero, .terminal-section, .feature-section, .schema-section, .cta-section, footer, .legal-page, .pricing-page { border-left: none; border-right: none; border-radius: 0; }
  .term-body { grid-template-columns: 1fr; }
  .term-col:first-child { border-right: none; border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--line); }
  .feature-item:last-child { border-bottom: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
  .hero-bottom { padding: 24px 16px 32px; }
  .hero-copy-pre { font-size: 11px; max-height: 260px; }
  .schema-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 24px; }
  .schema-type { display: inline-block; margin-left: 8px; }
  .nav-right .nav-item:not(:last-child) { display: none; }
  .cta-section { padding: 40px 24px; flex-direction: column; align-items: stretch; }
  .cta-right { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer { padding: 48px 20px 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--line); }
  .pricing-card:last-child { border-bottom: none; }
}
