*, *::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; overflow-x: clip; }
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;
  overflow-x: clip;
}
/* 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;
}
/* Page sections above the glow — nav is excluded so it can stack above content (mobile menu) */
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;
  z-index: 50;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(12px);
}
.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-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav-toggle:hover { color: var(--green); }
.nav-toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.nav-toggle-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
.nav-open .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }
.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: 1280px; 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: 800px; 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: 800px; 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: 1280px; 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; }
.term-status-short { display: none; }
@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: 1280px; 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); 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: 1280px; 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: 1280px; 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: 600px; 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; gap: 1rem; 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 { flex-shrink: 0; font-weight: 500; color: var(--text); text-transform: capitalize; }
.pricing-row .price { flex: 1; min-width: 0; text-align: right; font-family: var(--font-mono); color: var(--green); font-size: 13px; }

.site-footer {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background: transparent;
  border-top: 1px solid var(--line);
  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: repeat(3, 1fr);
  gap: 32px 56px;
  align-items: start;
}
.footer-social-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -12px 0 -54px;
  padding: 0;
  position: relative;
  z-index: 2;
}
.footer-social-wordmark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.footer-social-wordmark:hover {
  transform: translateY(-1px);
}
.footer-social-wordmark:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.footer-social-wordmark img {
  display: block;
  height: 18px;
  width: auto;
  transition: filter 0.2s ease;
}
.footer-social-wordmark:hover img {
  filter: brightness(0) invert(1);
}
.footer-social-nav {
  margin: 0;
  padding: 0;
}
.footer-social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.footer-social-icons li {
  margin: 0;
  padding: 0;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: none;
  background: transparent;
  border-radius: 0;
  color: var(--text2);
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-social-icon:hover {
  color: var(--text);
  transform: translateY(-1px);
}
.footer-social-icon:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.footer-social-icon-mark {
  display: block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.footer-social-icon--github .footer-social-icon-mark {
  -webkit-mask-image: url("https://cdn.simpleicons.org/github/ffffff");
  mask-image: url("https://cdn.simpleicons.org/github/ffffff");
}
.footer-social-icon--instagram .footer-social-icon-mark {
  -webkit-mask-image: url("https://cdn.simpleicons.org/instagram/ffffff");
  mask-image: url("https://cdn.simpleicons.org/instagram/ffffff");
}
.footer-social-icon--x .footer-social-icon-mark {
  -webkit-mask-image: url("https://cdn.simpleicons.org/x/ffffff");
  mask-image: url("https://cdn.simpleicons.org/x/ffffff");
}
.footer-social-icon--linkedin .footer-social-icon-mark {
  -webkit-mask-image: url("/icons/linkedin.svg");
  mask-image: url("/icons/linkedin.svg");
}
.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;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  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: 20px;
  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: 50em;
  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;
}
.footer-ask {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  row-gap: 16px;
  width: 100%;
}
.footer-ask-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}
.footer-ask-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.footer-ask-icons li {
  margin: 0;
  padding: 0;
}
.footer-ask-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line2);
  background: var(--bg2);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-ask-icon:hover {
  border-color: var(--green);
  background: var(--bg3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.45);
}
.footer-ask-icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.footer-ask-icon--chatgpt img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-ask-icon--grok img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

@media (max-width: 520px) {
  .footer-ask {
    flex-direction: column;
    gap: 16px;
  }
  .footer-ask-label { white-space: normal; max-width: 16rem; }
  .footer-ask-icons { flex-wrap: wrap; gap: 24px; }
}

/* Legal pages */
.legal-page {
  max-width: 1280px; 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: 900px; }
.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 h3 {
  font-size: 15px; font-weight: 600; letter-spacing: -0.02em; color: var(--text);
  margin: 24px 0 8px; line-height: 1.35;
}
/* Code samples (blog / legal) — base pre; figure variant overrides below */
.legal-inner pre {
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  line-height: 1.75;
  tab-size: 2;
  -moz-tab-size: 2;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--line2) transparent;
}
.legal-inner pre code {
  font-family: var(--font-mono);
  font-size: inherit;
  line-height: inherit;
  color: var(--text2);
  background: none;
  padding: 0;
}
/* Framed blocks with label — match terminal-section token colors */
.legal-inner .legal-code-block {
  margin: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.legal-inner .legal-code-block figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 19, 0.85);
}
.legal-inner .legal-code-block figcaption::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(48, 227, 154, 0.45);
  vertical-align: 0.1em;
}
.legal-inner .legal-code-block pre {
  margin: 0;
  padding: 16px 18px 18px;
  border: none;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.22);
  font-size: 13px;
  line-height: 1.75;
  tab-size: 2;
  -moz-tab-size: 2;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--line2) transparent;
}
.legal-inner .legal-code-block pre code {
  display: block;
  white-space: pre;
}
.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 table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 24px;
  font-weight: 300;
  color: var(--text2);
}
.legal-inner th,
.legal-inner td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-inner th {
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.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); }

/* Changelog (timeline + filters) */
.legal-inner.changelog-inner {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}
.changelog-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 24px;
  width: 100%;
  margin-bottom: 12px;
}

/* Changelog index: title + filters on row 1 (desktop); title, intro, then filters (mobile) */
.changelog-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 24px;
  row-gap: 12px;
  width: 100%;
  margin-bottom: 56px;
}
.changelog-hero .changelog-title {
  grid-column: 1;
  grid-row: 1;
}
.changelog-hero .changelog-filters {
  grid-column: 2;
  grid-row: 1;
  margin-left: 0;
}
.changelog-hero .changelog-intro {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-bottom: 0;
}
.changelog-inner h1.changelog-title,
.blog-inner h1.changelog-title,
.brand-inner h1.changelog-title,
.contact-inner h1.changelog-title,
.careers-inner h1.changelog-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}
.changelog-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
}
.changelog-filter {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: var(--text3);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.15s ease;
}
.changelog-filter:hover {
  color: var(--text2);
}
.changelog-filter.is-active {
  color: var(--text);
  font-weight: 600;
}
@media (max-width: 520px) {
  .changelog-hero .changelog-title {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .changelog-hero .changelog-intro {
    grid-row: 2;
  }
  .changelog-hero .changelog-filters {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: flex-end;
  }
}
.changelog-intro {
  font-size: 14px;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 56px;
  max-width: 52rem;
}
.changelog-intro a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.changelog-intro a:hover {
  color: var(--text);
}
.changelog-list-wrap {
  position: relative;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* Keep back link flush with title column (timeline is centered separately) */
.changelog-page .legal-back {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  width: 100%;
  max-width: none;
}
.changelog-release-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 16px;
}
.changelog-release-kicker a {
  color: var(--text2);
  text-decoration: none;
}
.changelog-release-kicker a:hover {
  color: var(--blue);
}
.changelog-release-head {
  margin-bottom: 32px;
  max-width: 42rem;
}
.changelog-release-head .changelog-pill {
  display: inline-block;
  margin-bottom: 12px;
}
.changelog-inner h1.changelog-release-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.changelog-release-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text3);
  margin: 0 0 16px;
}
.changelog-release-lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text2);
  font-weight: 300;
  margin: 0;
}
.changelog-release-body {
  max-width: 42rem;
  margin-top: 8px;
}
.changelog-release-body .changelog-detail-list,
.changelog-release-body .changelog-detail-p {
  margin-top: 0;
}
.changelog-vline {
  position: absolute;
  z-index: 0;
  /* Center in timeline column: date col + gap + half of rail − half line width */
  left: calc(112px + 12px + 12px - 2px);
  top: 20px;
  bottom: 20px;
  width: 4px;
  border-radius: 999px;
  background: var(--line);
  opacity: 0.65;
  pointer-events: none;
}
.changelog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}
.changelog-item {
  scroll-margin-top: 88px;
  position: relative;
  z-index: 1;
}
.changelog-item[hidden] {
  display: none !important;
}
.changelog-row {
  display: grid;
  grid-template-columns: 112px 24px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  padding: 28px 0;
}
.changelog-item:first-child .changelog-row {
  padding-top: 8px;
}
.changelog-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text3);
  padding-top: 12px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.changelog-rail {
  display: flex;
  justify-content: center;
  padding-top: 12px;
  position: relative;
  z-index: 1;
}
.changelog-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  border: none;
  box-shadow: none;
}
.changelog-item[data-category="version"] .changelog-dot {
  background: var(--green);
  box-shadow:
    0 0 0 3px rgba(48, 227, 154, 0.14),
    0 0 18px rgba(48, 227, 154, 0.55);
}
.changelog-item[data-category="feature"] .changelog-dot {
  background: var(--blue);
  box-shadow:
    0 0 0 3px rgba(92, 164, 255, 0.14),
    0 0 18px rgba(92, 164, 255, 0.55);
}
.changelog-main {
  min-width: 0;
}
.changelog-card-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.legal-inner a.changelog-card-link,
.legal-inner a.changelog-card-link:hover {
  color: inherit;
  text-decoration: none;
}
.changelog-item[data-category="feature"] .changelog-card-link:hover .changelog-card-title,
.changelog-item[data-category="feature"] .changelog-card-link:focus-visible .changelog-card-title {
  color: var(--blue);
}
.changelog-item[data-category="version"] .changelog-card-link:hover .changelog-card-title,
.changelog-item[data-category="version"] .changelog-card-link:focus-visible .changelog-card-title {
  color: var(--green);
}
.changelog-item[data-category="feature"] .changelog-card-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}
.changelog-item[data-category="version"] .changelog-card-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
.changelog-card-title {
  display: block;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.changelog-card-summary {
  display: block;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--text2);
  margin-bottom: 16px;
}
.changelog-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.changelog-pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text3);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg2);
}
.changelog-card-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text2);
  transition: color 0.15s ease;
}
.changelog-card-link:hover .changelog-card-cta {
  color: var(--text);
}
.changelog-panel {
  margin-top: 20px;
  padding: 20px 20px 20px 22px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg2);
}
.changelog-detail-list {
  margin: 0 0 16px 1.15em;
  padding: 0;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
}
.changelog-detail-list li {
  margin-bottom: 10px;
}
.changelog-detail-p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  margin: 0 0 16px;
}
.changelog-panel-links {
  font-size: 13px;
  margin: 0;
  color: var(--text3);
}
.changelog-panel-links a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.changelog-panel-links a:hover {
  color: var(--text);
}
@media (max-width: 640px) {
  .changelog-list-wrap {
    max-width: 100%;
  }
  .changelog-vline {
    display: none;
  }
  .changelog-row {
    grid-template-columns: 18px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
  }
  .changelog-date {
    grid-column: 2;
    grid-row: 1;
    padding-top: 0;
  }
  .changelog-rail {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding-top: 22px;
    align-self: start;
  }
  .changelog-main {
    grid-column: 2;
    grid-row: 2;
  }
}

/* Blog */
.blog-page {
  /* Artificial height till more articles are added */
  min-height: 1200px;
}
.blog-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.blog-post-list > li {
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.blog-post-link {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 28px);
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
/* Override .legal-inner a underline for article cards */
.legal-inner a.blog-post-link,
.legal-inner a.blog-post-link:hover {
  text-decoration: none;
  color: inherit;
}
.blog-post-thumb {
  flex: 0 0 clamp(120px, 28vw, 200px);
  max-width: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg2);
  align-self: flex-start;
}
.blog-post-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}
.blog-post-text {
  flex: 1;
  min-width: 0;
}
.blog-post-link:hover {
  background: rgba(92, 164, 255, 0.04);
}
.blog-post-link:hover .blog-post-title {
  color: var(--blue);
}
@media (max-width: 520px) {
  .blog-post-link {
    flex-direction: column;
    gap: 14px;
  }
  .blog-post-thumb {
    flex: none;
    max-width: none;
    width: 100%;
  }
}
.blog-post-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.legal-inner .blog-post-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0;
}
.blog-post-summary {
  font-size: 14px;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.55;
  margin: 8px 0 0;
}

.blog-cover {
  margin: 0 0 28px;
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.blog-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-cover figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  padding: 10px 14px 12px;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Brand kit (2×2 dark / light grid) */
.brand-kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(200px, 32vw) minmax(200px, 32vw);
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-kit-cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 6vw, 56px) clamp(20px, 4vw, 40px);
  min-height: 200px;
}
.brand-kit-cell--dark {
  background: #080a13;
}
.brand-kit-cell--light {
  background: #e8eaee;
}
.brand-kit-cell-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(520px, 92%);
}
.brand-kit-cell-inner img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
.brand-kit-cell--wordmark .brand-kit-cell-inner img {
  max-height: clamp(40px, 7vw, 56px);
}
.brand-kit-cell--mark .brand-kit-cell-inner img {
  max-height: clamp(100px, 22vw, 160px);
  max-width: min(160px, 42vw);
}
.brand-kit-copy {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease;
  pointer-events: none;
}
.brand-kit-cell--light .brand-kit-copy {
  color: #0f1419;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.brand-kit-cell--light .brand-kit-copy:hover,
.brand-kit-cell--light .brand-kit-copy:focus-visible {
  background: #fff;
}
.brand-kit-copy:hover,
.brand-kit-copy:focus-visible {
  background: rgba(0, 0, 0, 0.72);
}
.brand-kit-cell--light .brand-kit-copy:hover,
.brand-kit-cell--light .brand-kit-copy:focus-visible {
  background: #fff;
}
.brand-kit-copy svg {
  flex-shrink: 0;
  opacity: 0.85;
}
.brand-kit-cell:hover .brand-kit-copy,
.brand-kit-cell:focus-within .brand-kit-copy {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (hover: none) {
  .brand-kit-copy {
    opacity: 0.92;
    transform: none;
    pointer-events: auto;
  }
}
.brand-kit-copy:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.brand-kit-foot { padding-top: 8px; }

@media (max-width: 560px) {
  .brand-kit-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* Pricing page */
.pricing-page {
  max-width: 1280px; 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: 800px; 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-badge-blue { color: var(--blue); }
.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-enterprise {
  background: var(--bg);
  transition: background 0.2s ease;
}
.pricing-enterprise:hover {
  background: var(--bg2);
}
.pricing-enterprise-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 8px;
}
.pricing-enterprise-head .pricing-tier-title {
  margin-bottom: 0;
}
.pricing-enterprise-body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px 32px;
}
.pricing-enterprise-copy {
  flex: 1 1 280px;
  min-width: 0;
}
.pricing-enterprise-lede {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text2);
  max-width: 560px;
  margin: 0;
}
.pricing-enterprise-lede strong {
  font-weight: 500;
  color: var(--text);
}
.pricing-enterprise-cta {
  flex: 0 0 auto;
}
.pricing-enterprise-cta .btn {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .pricing-enterprise-body {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 12px;
  }
  .pricing-enterprise-copy {
    flex: 0 0 auto;
  }
  .pricing-enterprise-cta {
    margin-top: 18px;
  }
  .pricing-enterprise-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.pricing-compare-wrap {
  border-top: 1px solid var(--line2);
  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: 1280px; margin: 0 auto; padding: 24px 24px 0;
  font-family: var(--font-mono); font-size: 11px; color: var(--text3); line-height: 1.6;
}
.pricing-footnote a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s ease;
}
.pricing-footnote a:hover {
  color: var(--text);
}

.cursor {
  display: inline-block;
  width: 2.5px;
  height: 1.15em;
  background: var(--green);
  vertical-align: -0.15em;
  margin-left: 3px;
  animation: blink 0.9s step-end infinite;
  box-shadow: 0 0 8px rgba(48, 227, 154, 0.4);
}
.cursor.typing {
  animation: none;
  opacity: 1;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

@media (max-width: 768px) {
  .hero, .terminal-section, .feature-section, .schema-section, .cta-section, .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); }
  .term-status-short { display: inline; }
  .term-status-full { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--line); }
  .feature-grid .feature-item:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .feature-grid .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; }
  body > nav { padding: 0 14px; }
  .nav-toggle { display: inline-flex; }
  .nav-right {
    position: absolute;
    top: 64px;
    left: 12px;
    right: 12px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line2);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(7, 10, 19, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }
  .nav-open .nav-right {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .nav-right .nav-item {
    height: auto;
    min-height: 52px;
    border-left: none;
    border-bottom: 1px solid var(--line);
    padding: 0 16px;
    width: 100%;
    justify-content: space-between;
  }
  .nav-right .nav-item:last-child { border-bottom: none; }
  /* Removed .nav-open { overflow: hidden; } to allow scrolling when menu is open */
  .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; }
  .footer-col-title { text-align: left; }
  .footer-nav { align-items: flex-start; }
  .footer-social-wordmark {
    display: none;
  }
  .footer-social-row {
    justify-content: flex-start;
  }
  .footer-social-icons {
    justify-content: flex-start;
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--line); }
  .pricing-card:last-child { border-bottom: none; }
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Blog: no scroll-in animation; content is readable immediately */
.legal-page.blog-page .reveal {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

