/* AgentGuard - Marketing Site Shared Styles */
:root {
  --bg: #f7f4ee;
  --ink: #1e1b16;
  --accent: #1b6c4a;
  --muted: #6c645a;
  --card: #ffffff;
  --green: #16a34a;
  --yellow: #ca8a04;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", "Space Grotesk", "Avenir", sans-serif;
  background: radial-gradient(circle at 20% 10%, #f0efe9 0%, var(--bg) 55%);
  color: var(--ink);
}

/* Layout */
.wrap { max-width: 980px; margin: 0 auto; padding: 32px 16px 60px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 32px 16px 60px; }
@media (min-width: 640px) {
  .wrap, .wrap-narrow { padding: 56px 24px 80px; }
}

/* Top nav */
.site-nav {
  display: flex; align-items: center; gap: 12px 20px; font-size: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid #e8e2d6;
}
.site-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  min-width: 0;
}
.site-nav-menu {
  display: none;
  margin-left: auto;
}
.site-nav-menu summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #d7d0c5;
  color: var(--muted);
}
.site-nav-menu summary::-webkit-details-marker { display: none; }
.site-nav-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  gap: 10px;
  min-width: 180px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #e8e2d6;
  background: var(--card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}
.site-nav-menu-panel a {
  color: var(--ink);
}
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--accent); }
.site-nav .brand {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  flex: 1 0 100%;
}
@media (min-width: 640px) {
  .site-nav { flex-wrap: nowrap; }
  .site-nav .brand { flex: 0 0 auto; margin-right: auto; }
  .site-nav-links { flex-wrap: nowrap; justify-content: flex-end; }
}

/* Typography */
h1 { font-size: 28px; line-height: 1.15; margin: 16px 0; }
h2 { margin-top: 40px; }
p { font-size: 16px; line-height: 1.6; }
@media (min-width: 640px) {
  h1 { font-size: 44px; line-height: 1.1; }
  h2 { margin-top: 48px; }
  p { font-size: 18px; }
}
.muted { color: var(--muted); }

/* Links */
.back-link { color: var(--accent); text-decoration: none; font-size: 14px; }
.back-link:hover { text-decoration: underline; }

/* Badge */
.badge { display: inline-block; padding: 6px 10px; border: 1px solid #d7d0c5; border-radius: 999px; color: var(--muted); font-size: 11px; letter-spacing: 0.04em; }
@media (min-width: 640px) { .badge { font-size: 12px; } }
.update-component-badge { padding: 2px 8px; margin: 0 6px; vertical-align: middle; font-weight: 500; }
.update-component-badge[data-component="sdk"] { border-color: var(--accent); color: var(--accent); }
.update-component-badge[data-component="both"] { border-color: var(--accent); color: var(--accent); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent); color: #fff; border: none; padding: 12px 18px;
  border-radius: 8px; font-weight: 600; cursor: pointer; text-decoration: none;
  font-size: 15px; text-align: center; line-height: 1.25; max-width: 100%;
  white-space: normal;
}
.btn:hover { opacity: 0.9; }
.btn.secondary { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn.secondary:hover { background: var(--accent); color: #fff; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* CTA row */
.cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 32px; }
.cta .btn { flex: 1; min-width: 140px; }
@media (min-width: 640px) {
  .cta { margin: 24px 0 40px; }
  .cta .btn { flex: none; min-width: auto; }
}

/* Grid */
.grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 480px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 768px) { .grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }

/* Card */
.card { background: var(--card); padding: 14px; border-radius: 12px; border: 1px solid #e8e2d6; }
.card p { font-size: 14px; }
@media (min-width: 640px) { .card { padding: 18px; } .card p { font-size: 16px; } }

/* Product model */
.product-model-flow {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 20px;
  margin-bottom: 8px;
}
.product-model-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 18px;
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid #ddd4c7;
  background: rgba(255, 255, 255, 0.55);
}
.product-model-number {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.product-model-step strong { font-size: 18px; line-height: 1.3; }
.product-model-step p { margin: 0; max-width: 26ch; }
@media (min-width: 768px) {
  .product-model-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .product-model-step {
    position: relative;
    min-height: 100%;
    padding-right: 28px;
  }
  .product-model-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    right: -12px;
    width: 1px;
    height: calc(100% - 56px);
    background: #ddd4c7;
  }
}

/* Stats bar */
.stats {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: flex-end;
  margin: 32px 0; padding: 20px 0; border-top: 1px solid #e8e2d6; border-bottom: 1px solid #e8e2d6;
}
.stat { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; min-height: 52px; }
.stat .num { font-size: 28px; font-weight: 700; color: var(--accent); display: block; }
.stat img { display: block; height: 28px; margin-bottom: 2px; }
.stat .label { font-size: 13px; color: var(--muted); }
@media (min-width: 640px) {
  .stats { gap: 48px; }
  .stat .num { font-size: 32px; }
}

/* Integration badges */
.integrations {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-bottom: 32px;
}
.integration-badge {
  display: inline-block; padding: 5px 12px; border: 1px solid #d7d0c5; border-radius: 999px;
  color: var(--muted); font-size: 13px; letter-spacing: 0.02em;
}

/* Code block */
.code-wrap { position: relative; margin-top: 24px; }
.code {
  background: #0f1115; color: #e2e8f0; padding: 16px; border-radius: 12px;
  font-family: "IBM Plex Mono", "Fira Code", monospace; font-size: 12px;
  line-height: 1.7; overflow-x: auto; white-space: pre; margin: 0;
}
@media (min-width: 640px) { .code { padding: 20px 24px; font-size: 14px; } }
.code .kw { color: #c084fc; }
.code .fn { color: #60a5fa; }
.code .str { color: #4ade80; }
.code .comment { color: #6b7280; }
.copy-btn {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #94a3b8; border-radius: 6px; padding: 6px 10px;
  font-size: 12px; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; gap: 5px; transition: all 0.15s;
}
.copy-btn:hover { background: rgba(255,255,255,0.15); color: #e2e8f0; }
.copy-btn.copied { color: #4ade80; border-color: #4ade80; }
.copy-btn svg { width: 14px; height: 14px; }

/* Pricing */
.pricing-grid { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 16px; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; } }
.pricing-card { background: var(--card); padding: 20px; border-radius: 12px; border: 1px solid #e8e2d6; display: flex; flex-direction: column; }
@media (min-width: 640px) { .pricing-card { padding: 24px; } }
.pricing-card.highlight { border-color: var(--accent); border-width: 2px; }
.pricing-card h3 { margin: 0 0 4px; }
.pricing-card .price { font-size: 28px; font-weight: 700; margin: 8px 0 16px; }
.pricing-card ul { padding-left: 18px; margin: 0 0 20px; flex: 1; }
.pricing-card li { margin: 6px 0; }
.pricing-card .btn { width: 100%; }

/* Steps */
.steps { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 16px; }
.step { text-align: center; padding: 16px; }
.step .num { display: inline-block; width: 32px; height: 32px; line-height: 32px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; font-size: 14px; }

/* Tables (trust page) */
table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 14px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #e8e2d6; }
th { font-weight: 600; background: rgba(0,0,0,0.02); }
.status { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.status.current { background: #dcfce7; color: var(--green); }
.status.planned { background: #fef9c3; color: var(--yellow); }

/* Testimonials */
.testimonials-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 16px; }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial-card { background: var(--card); padding: 20px; border-radius: 12px; border: 1px solid #e8e2d6; }
.testimonial-card blockquote {
  margin: 0;
  font-style: italic;
  line-height: 1.6;
  padding: 16px 18px;
  border: 1px solid #e8e2d6;
  border-radius: 12px;
  background: rgba(27, 108, 74, 0.05);
}
.testimonial-card .attribution { margin-top: 12px; font-size: 14px; }

/* FAQ */
.faq { margin-top: 16px; }
.faq details { border: 1px solid #e8e2d6; border-radius: 12px; margin-bottom: 8px; background: var(--card); }
.faq summary { cursor: pointer; padding: 14px 18px; font-weight: 600; font-size: 15px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+ "; color: var(--accent); font-weight: 700; }
.faq details[open] summary::before { content: "− "; }
.faq details div { padding: 0 18px 14px; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* Footer */
footer { margin-top: 40px; font-size: 14px; color: var(--muted); text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 8px; }
.footer-links a { color: var(--accent); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

/* Email capture */
.email-section { margin-top: 48px; text-align: center; }
.email-form { display: flex; gap: 8px; max-width: 420px; margin: 16px auto 0; flex-wrap: wrap; justify-content: center; }
.email-form input[type="email"] {
  flex: 1; min-width: 200px; padding: 12px 16px; border: 1px solid #d7d0c5;
  border-radius: 8px; font-size: 15px; font-family: inherit; background: var(--card); color: var(--ink);
}
.email-form input[type="email"]:focus { outline: 2px solid var(--accent); border-color: transparent; }
.email-form button { padding: 12px 20px; }
.email-msg { margin-top: 12px; font-size: 14px; }
.email-msg.ok { color: var(--accent); }
.email-msg.err { color: #c0392b; }

/* Pilot intake */
.pilot-proof-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
.pilot-proof-item {
  padding: 16px;
  border: 1px solid #e8e2d6;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
}
.pilot-proof-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pilot-proof-item strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.2;
}
.pilot-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.pilot-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  width: 100%;
  border: 1px solid #d7d0c5;
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--card);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}
.pilot-form textarea {
  resize: vertical;
}
.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: transparent;
}
.pilot-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}
@media (min-width: 640px) {
  .pilot-proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Blog-specific */
.article-meta { font-size: 14px; color: var(--muted); margin: 8px 0 32px; }
.article-content h2 { font-size: 22px; margin-top: 36px; }
.article-content h3 { font-size: 18px; margin-top: 28px; }
.article-content p, .article-content li { font-size: 16px; line-height: 1.7; }
.article-content ul, .article-content ol { padding-left: 24px; }
.article-content li { margin: 6px 0; }
.article-content a { color: var(--accent); }

/* CTA box (end of blog posts) */
.cta-box {
  margin: 48px 0 32px; padding: 28px; border-radius: 12px;
  background: linear-gradient(135deg, #f8f6f1, #f0efe9); border: 1px solid #e8e2d6; text-align: center;
}
.cta-box h3 { margin: 0 0 8px; }
.cta-box p { margin: 0 0 16px; font-size: 15px; color: var(--muted); }

/* Blog listing */
.blog-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 24px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .blog-grid.blog-grid-wide { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--card); padding: 20px; border-radius: 12px; border: 1px solid #e8e2d6;
  text-decoration: none; color: inherit; transition: border-color 0.15s;
}
.blog-card:hover { border-color: var(--accent); }
.blog-card h3 { margin: 0 0 8px; font-size: 17px; color: var(--ink); }
.blog-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }
.blog-card .date { font-size: 12px; color: var(--muted); margin-top: 12px; }
.blog-card-rich {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.blog-card-meta,
.blog-card-meta-row {
  font-size: 13px;
  color: var(--muted);
}
.blog-card-meta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-takeaway-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.blog-summary-card {
  margin: 24px 0 32px;
  padding: 20px;
  border: 1px solid #e8e2d6;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
}
.blog-summary-card p {
  margin: 12px 0;
}
.blog-summary-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-summary-list {
  margin: 12px 0 0;
  padding-left: 18px;
}
.blog-code-label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* Changelog */
.changelog article { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #e8e2d6; }
.changelog article:last-child { border-bottom: none; }
.changelog h2 { margin-top: 0; font-size: 20px; }
.changelog time { font-size: 14px; color: var(--muted); font-weight: 400; margin-left: 12px; }
.changelog ul { padding-left: 20px; }
.changelog li { margin: 6px 0; font-size: 15px; line-height: 1.6; }
.feed-links { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 28px; }
.feed-links a { color: var(--accent); font-size: 14px; text-decoration: none; }
.feed-links a:hover { text-decoration: underline; }
.update-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.update-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.update-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #d7d0c5;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

/* Quickstart TOC */
.toc { background: var(--card); padding: 16px 20px; border-radius: 12px; border: 1px solid #e8e2d6; margin: 24px 0; }
.toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.toc a { color: var(--accent); text-decoration: none; font-size: 14px; font-weight: 500; }
.toc a:hover { text-decoration: underline; }

/* Generated quickstart */
.quickstart-path { margin: 28px 0 40px; }
.quickstart-path-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}
.quickstart-path-step {
  background: var(--card);
  border: 1px solid #e8e2d6;
  border-radius: 12px;
  padding: 18px;
}
.quickstart-path-step strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 17px;
}
.quickstart-path-step p { margin: 0; }
.quickstart-path-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.quickstart-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.framework-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.framework-tab {
  border: 1px solid #d7d0c5;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.framework-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.quickstart-panels {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.quickstart-panel {
  background: var(--card);
  border: 1px solid #e8e2d6;
  border-radius: 12px;
  padding: 16px;
  min-width: 0;
}
.quickstart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  min-width: 0;
}
.quickstart-panel-header h3 {
  margin: 0;
  font-size: 16px;
}
.copy-btn-static {
  position: static;
  background: transparent;
  border-color: #d7d0c5;
  color: var(--muted);
}
.copy-btn-static:hover {
  background: rgba(27, 108, 74, 0.08);
  color: var(--accent);
}
.quickstart-list,
.quickstart-link-list {
  padding-left: 18px;
}
.quickstart-list li,
.quickstart-link-list li {
  margin: 8px 0;
}
.quickstart-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
}
.quickstart-details[open] summary {
  margin-bottom: 12px;
}
.quickstart-json {
  margin-top: 0;
  font-size: 11px;
}
@media (min-width: 768px) {
  .quickstart-path-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quickstart-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Landing page reset */
.hero {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}
.hero > * {
  min-width: 0;
}
.hero-copy {
  max-width: 640px;
  min-width: 0;
}
.hero-lead {
  max-width: 640px;
  margin: 0;
  font-size: 18px;
}
.hero-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero-list li + li {
  margin-top: 4px;
}
.hero-note {
  margin: 0;
  font-size: 14px;
}
.hero-note code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(27, 108, 74, 0.08);
  color: var(--ink);
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 13px;
}
.hero-note a,
.trust-link-row a {
  color: var(--accent);
  text-decoration: none;
}
.hero-note a:hover,
.trust-link-row a:hover {
  text-decoration: underline;
}
.hero-panel {
  padding: 20px;
}
.hero-mobile-proof,
.comparison-mobile {
  display: none;
}
.hero-mobile-command {
  margin: 14px 0 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #0f1115;
}
.hero-mobile-command code {
  color: #e2e8f0;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 12px;
}
.comparison-mobile {
  margin-top: 18px;
  gap: 14px;
}
.comparison-mobile-item + .comparison-mobile-item {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e8e2d6;
}
.hero-panel h2 {
  margin: 0 0 10px;
  font-size: 24px;
}
.hero-panel p {
  margin: 0;
}
.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.code-wrap-compact {
  margin-top: 16px;
}
.integrations-hero {
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 12px;
}
.section-lead {
  max-width: 720px;
  margin-top: 8px;
}
.consequence-section {
  margin-top: 8px;
}
.consequence-card {
  display: grid;
  gap: 0;
  margin-top: 20px;
  border: 1px solid #e8e2d6;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
}
.consequence-row {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid #e8e2d6;
}
.consequence-row:last-child {
  border-bottom: none;
}
.consequence-row p {
  margin: 0;
}
.consequence-row-accent {
  background: rgba(27, 108, 74, 0.06);
}
.consequence-metric {
  font-size: 18px;
  line-height: 1.3;
}
.proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}
.proof-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}
.proof-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.proof-list li + li {
  margin-top: 8px;
}
.proof-terminal {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
  background: #0f1115;
  color: #d9e2f2;
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 13px;
  line-height: 1.6;
}
.proof-note {
  margin: 16px 0 0;
}
.stack-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}
.stack-card {
  background: var(--card);
  padding: 20px;
  border: 1px solid #e8e2d6;
  border-radius: 12px;
}
.stack-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.check-list {
  margin: 16px 0 20px;
  padding-left: 18px;
  color: var(--muted);
}
.check-list li + li {
  margin-top: 8px;
}
.trust-link-row {
  margin: 16px 0 0;
}
.cta-center {
  justify-content: center;
  margin-bottom: 0;
}
.footer-copy {
  max-width: 520px;
  margin: 0 auto 10px;
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .consequence-row {
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
    align-items: start;
    gap: 18px;
  }
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Homepage redesign */
.landing-home {
  --landing-bg: #121514;
  --landing-bg-soft: #1a1f1d;
  --landing-panel: rgba(18, 22, 21, 0.82);
  --landing-panel-strong: rgba(13, 16, 16, 0.94);
  --landing-stroke: rgba(222, 211, 189, 0.15);
  --landing-stroke-strong: rgba(222, 211, 189, 0.28);
  --landing-ink: #f4ebdb;
  --landing-muted: #bcae99;
  --landing-accent: #d6a35d;
  --landing-accent-soft: rgba(214, 163, 93, 0.14);
  --landing-success: #77c8a2;
  margin: 0;
  color: var(--landing-ink);
  font-family: "Source Serif 4", Georgia, serif;
  background:
    radial-gradient(circle at top left, rgba(214, 163, 93, 0.14), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(119, 200, 162, 0.1), transparent 20%),
    linear-gradient(180deg, #111413 0%, #161a18 50%, #101212 100%);
}

.landing-home::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 80%);
}

.landing-home .wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding: 24px 18px 92px;
}

.landing-home .site-nav {
  gap: 18px;
  margin-bottom: 40px;
  padding: 14px 18px;
  border: 1px solid var(--landing-stroke);
  border-radius: 999px;
  background: rgba(14, 17, 16, 0.68);
  backdrop-filter: blur(12px);
}

.landing-home .site-nav a {
  color: var(--landing-muted);
}

.landing-home .site-nav a:hover,
.landing-home .site-nav .brand {
  color: var(--landing-ink);
}

.landing-home .site-nav .brand {
  font-family: "Sora", "Avenir", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-home .site-nav-menu summary {
  border-color: var(--landing-stroke-strong);
  color: var(--landing-ink);
  background: rgba(255, 255, 255, 0.04);
  font-family: "Sora", "Avenir", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-home .site-nav-menu-panel {
  border-color: var(--landing-stroke);
  background: rgba(14, 17, 16, 0.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.landing-home .site-nav-menu-panel a {
  color: var(--landing-ink);
}

.landing-home h1,
.landing-home h2,
.landing-home h3,
.landing-home strong,
.landing-home .btn,
.landing-home .badge,
.landing-home .eyebrow,
.landing-home .stat .num {
  font-family: "Sora", "Avenir", sans-serif;
}

.landing-home p,
.landing-home li,
.landing-home .label,
.landing-home .muted,
.landing-home summary,
.landing-home input,
.landing-home button {
  font-family: "Source Serif 4", Georgia, serif;
}

.landing-home .muted {
  color: var(--landing-muted);
}

.landing-home h1 {
  margin: 20px 0 18px;
  max-width: 11ch;
  font-size: clamp(3.3rem, 7vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.landing-home h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.landing-home h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
}

.landing-home p {
  font-size: 1.08rem;
  line-height: 1.68;
}

.landing-home .badge {
  border-color: var(--landing-stroke-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-home .hero-stage {
  gap: 28px;
  align-items: stretch;
}

.landing-home .hero-copy {
  max-width: none;
}

.landing-home .hero {
  align-items: center;
}

.landing-home .hero-lead,
.landing-home .section-lead {
  max-width: 58ch;
  font-size: 1.18rem;
}

.landing-home .hero-signal-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.landing-home .hero-signal,
.landing-home .trust-item,
.landing-home .audience-card,
.landing-home .control-card,
.landing-home .product-model-step,
.landing-home .proof-snapshot,
.landing-home .pricing-card-home,
.landing-home .cta-box-home,
.landing-home .email-section,
.landing-home .consequence-card,
.landing-home .hero-command-card,
.landing-home .hero-brief {
  border: 1px solid var(--landing-stroke);
  background: var(--landing-panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.landing-home .hero-signal {
  min-height: 100%;
  padding: 16px 16px 18px;
  border-radius: 20px;
}

.landing-home .signal-label,
.landing-home .control-kicker,
.landing-home .pricing-kicker,
.landing-home .audience-label,
.landing-home .brief-label,
.landing-home .command-status {
  display: inline-flex;
  align-items: center;
  font-family: "Sora", "Avenir", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--landing-accent);
}

.landing-home .hero-signal strong {
  display: block;
  margin-top: 10px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.landing-home .cta {
  align-items: center;
}

.landing-home .btn {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--landing-accent);
  color: #131313;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.landing-home .btn.secondary {
  background: transparent;
  color: var(--landing-ink);
  border-color: var(--landing-stroke-strong);
}

.landing-home .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--landing-ink);
}

.landing-home .hero-note {
  max-width: 62ch;
}

.landing-home .hero-note code {
  background: rgba(255, 255, 255, 0.06);
  color: var(--landing-ink);
}

.landing-home .hero-note a,
.landing-home .trust-link-row a,
.landing-home .footer-links a,
.landing-home .back-link {
  color: var(--landing-ink);
}

.landing-home .integrations-hero {
  margin-top: 26px;
  justify-content: flex-start;
}

.landing-home .integration-badge,
.landing-home .command-status {
  border: 1px solid var(--landing-stroke-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-muted);
}

.landing-home .hero-command {
  display: grid;
  gap: 14px;
}

.landing-home .hero-command-card {
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--landing-panel-strong);
}

.landing-home .command-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.landing-home .command-header h2 {
  margin-top: 6px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.landing-home .command-status {
  padding: 8px 10px;
  border-radius: 999px;
}

.landing-home .hero-command .code {
  background: #0d1011;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #e6ddd0;
}

.landing-home .hero-video-panel {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(214, 163, 93, 0.08), rgba(255, 255, 255, 0.018)),
    var(--landing-panel-strong);
}

.landing-home .demo-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.landing-home .demo-panel-head .eyebrow {
  margin: 0;
}

.landing-home .demo-runtime,
.landing-home .demo-command span,
.landing-home .demo-cue-row span {
  font-family: "IBM Plex Mono", "Consolas", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-home .demo-runtime {
  color: var(--landing-success);
}

.landing-home .hero-video-panel h2 {
  margin-top: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
}

.landing-home .hero-video-panel p {
  margin-top: 12px;
}

.landing-home .demo-video-shell {
  margin-top: 18px;
  padding: 8px;
  border: 1px solid var(--landing-stroke);
  border-radius: 24px;
  background: #0d1011;
}

.landing-home .demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #0d1011;
  object-fit: cover;
}

.landing-home .demo-cue-row {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 14px;
}

.landing-home .demo-cue-row span {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid var(--landing-stroke);
  border-radius: 999px;
  color: var(--landing-muted);
  text-align: center;
  white-space: normal;
}

.landing-home .demo-command {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.landing-home .demo-command span {
  color: var(--landing-accent);
}

.landing-home .demo-command code {
  color: var(--landing-ink);
  font-family: "IBM Plex Mono", "Consolas", monospace;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.landing-home .hero-brief {
  padding: 18px;
  border-radius: 24px;
}

.landing-home .brief-topline,
.landing-home .brief-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.landing-home .brief-time {
  color: var(--landing-muted);
  font-size: 0.92rem;
}

.landing-home .brief-stage {
  margin-top: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--landing-stroke);
  border-bottom: 1px solid var(--landing-stroke);
}

.landing-home .brief-stage strong {
  font-size: 1.22rem;
  line-height: 1.25;
}

.landing-home .brief-stage p {
  margin-top: 10px;
}

.landing-home .brief-rail {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.landing-home .brief-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.landing-home .brief-item span {
  color: var(--landing-muted);
  font-size: 0.92rem;
}

.landing-home .stats-brief {
  justify-content: space-between;
  gap: 18px;
  margin: 40px 0 56px;
  padding: 18px 22px;
  border-color: var(--landing-stroke);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 24px;
}

.landing-home .stat {
  min-width: 116px;
}

.landing-home .stat .num {
  color: var(--landing-ink);
}

.landing-home .stat .label {
  color: var(--landing-muted);
}

.landing-home section {
  margin-top: 88px;
}

.landing-home .section-intro {
  max-width: 780px;
  margin-bottom: 24px;
}

.landing-home .eyebrow {
  color: var(--landing-accent);
}

.landing-home .incident-ledger {
  overflow: hidden;
  border-radius: 28px;
}

.landing-home .ledger-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 24px;
  border-top: 1px solid var(--landing-stroke);
}

.landing-home .ledger-row:first-child {
  border-top: none;
}

.landing-home .ledger-row-emphasis {
  background: rgba(214, 163, 93, 0.08);
}

.landing-home .ledger-step,
.landing-home .proof-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--landing-accent);
  font-family: "Sora", "Avenir", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.landing-home .consequence-metric {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.landing-home .product-model-flow {
  gap: 18px;
  margin-top: 24px;
}

.landing-home .product-model-step {
  border-top: 1px solid var(--landing-stroke-strong);
  border-bottom: none;
  padding: 22px;
  border-radius: 24px;
}

.landing-home .product-model-step strong {
  display: block;
  margin-top: 16px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.landing-home .control-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.landing-home .control-card {
  padding: 20px;
  border-radius: 24px;
}

.landing-home .control-card-large,
.landing-home .control-card-strong {
  background:
    linear-gradient(180deg, rgba(214, 163, 93, 0.08), rgba(255, 255, 255, 0.015)),
    var(--landing-panel);
}

.landing-home .control-card p {
  margin: 10px 0 0;
}

.landing-home .audience-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.landing-home .audience-card {
  padding: 22px;
  border-radius: 24px;
}

.landing-home .audience-card p {
  margin: 14px 0 0;
  color: var(--landing-ink);
}

.landing-home .proof-grid {
  gap: 18px;
}

.landing-home .proof-sequence {
  display: grid;
  gap: 16px;
}

.landing-home .proof-step {
  display: grid;
  gap: 14px;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--landing-stroke);
}

.landing-home .proof-step:first-child {
  border-top: none;
}

.landing-home .proof-snapshot {
  padding: 24px;
  border-radius: 28px;
}

.landing-home .proof-terminal {
  margin-top: 16px;
  border-radius: 18px;
  background: #0d1011;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-home .proof-note {
  margin-top: 16px;
}

.landing-home .trust-grid,
.landing-home .pricing-grid-home {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.landing-home .trust-item {
  padding: 20px;
  border-radius: 24px;
}

.landing-home .trust-item p {
  margin-top: 10px;
}

.landing-home .pricing-card-home {
  padding: 24px;
  border-radius: 28px;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
}

.landing-home .pricing-card-home.highlight {
  border-color: var(--landing-accent);
}

.landing-home .pricing-card-head {
  min-height: 10.5rem;
}

.landing-home .pricing-card-price-block {
  display: grid;
  gap: 8px;
  align-content: start;
}

.landing-home .price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--landing-ink);
  margin: 8px 0 6px;
}

.landing-home .price-note {
  font-size: 1rem;
  font-weight: 400;
}

.landing-home .pricing-trial {
  display: inline-flex;
  margin: 4px 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(119, 200, 162, 0.15);
  color: var(--landing-success);
  font-family: "Sora", "Avenir", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-home .pricing-card-home ul {
  margin-top: 18px;
}

.landing-home .plan-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-home .plan-facts span {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--landing-muted);
  font-size: 0.95rem;
}

.landing-home .plan-facts strong {
  display: block;
  margin-bottom: 2px;
  color: var(--landing-ink);
  font-size: 1rem;
}

.landing-home .comparison-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.landing-home .comparison-table {
  min-width: 720px;
}

.landing-home .comparison-table th,
.landing-home .comparison-table td {
  border-bottom-color: var(--landing-stroke);
}

.landing-home .comparison-table th {
  color: var(--landing-ink);
  background: rgba(255, 255, 255, 0.04);
}

.landing-home .comparison-note {
  margin-top: 12px;
  font-size: 0.9rem;
}

.landing-home .faq {
  margin-top: 18px;
}

.landing-home .faq details {
  background: var(--landing-panel);
  border-color: var(--landing-stroke);
  border-radius: 20px;
}

.landing-home .faq summary {
  color: var(--landing-ink);
}

.landing-home .faq details div {
  color: var(--landing-muted);
}

.landing-home .card,
.landing-home .hero-panel,
.landing-home .stack-card,
.landing-home .proof-card,
.landing-home .pricing-card,
.landing-home .cta-box,
.landing-home .email-section,
.landing-home .consequence-card {
  border: 1px solid var(--landing-stroke);
  background: var(--landing-panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.landing-home .hero-panel,
.landing-home .stack-card,
.landing-home .proof-card,
.landing-home .pricing-card,
.landing-home .cta-box,
.landing-home .email-section,
.landing-home .consequence-card {
  border-radius: 28px;
}

.landing-home .hero-list,
.landing-home .proof-list,
.landing-home .check-list {
  color: var(--landing-muted);
}

.landing-home .hero-note a,
.landing-home .trust-link-row a,
.landing-home .footer-links a,
.landing-home .back-link {
  color: var(--landing-ink);
}

.landing-home .hero-note a:hover,
.landing-home .trust-link-row a:hover,
.landing-home .footer-links a:hover,
.landing-home .back-link:hover {
  text-decoration: underline;
}

.landing-home .stats {
  border-color: var(--landing-stroke);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 24px;
}

.landing-home .hero-panel h2,
.landing-home .stack-card h3,
.landing-home .proof-card h3,
.landing-home .pricing-card h3 {
  color: var(--landing-ink);
}

.landing-home .consequence-row,
.landing-home .changelog article {
  border-bottom-color: var(--landing-stroke);
}

.landing-home .consequence-row-accent {
  background: rgba(214, 163, 93, 0.08);
}

.landing-home .pricing-card.highlight {
  border-color: var(--landing-accent);
}

.landing-home .proof-terminal {
  border-radius: 18px;
  background: #0d1011;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-home .cta-box-home,
.landing-home .email-section {
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(214, 163, 93, 0.08), rgba(255, 255, 255, 0.015)),
    var(--landing-panel);
}

.landing-home .cta-box-home {
  margin-top: 76px;
}

.landing-home .email-section {
  padding: 28px;
}

.landing-home .email-form input[type="email"] {
  border-color: var(--landing-stroke-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--landing-ink);
}

.landing-home footer {
  margin-top: 54px;
}

.landing-home .footer-copy {
  color: var(--landing-muted);
}

@media (min-width: 900px) {
  .landing-home .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 38px;
  }

  .landing-home .hero-stage {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.92fr);
    gap: 34px;
  }

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

  .landing-home .control-card-large {
    grid-row: span 2;
  }

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

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

@media (max-width: 899px) {
  .landing-home .site-nav {
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .landing-home .stats-brief {
    justify-content: flex-start;
  }
}

/* Shared public-page redesign */
.landing-public {
  --landing-bg: #050607;
  --landing-bg-soft: #111315;
  --landing-panel: rgba(16, 17, 19, 0.86);
  --landing-panel-strong: rgba(8, 9, 10, 0.96);
  --landing-stroke: rgba(247, 243, 236, 0.14);
  --landing-stroke-strong: rgba(247, 243, 236, 0.28);
  --landing-ink: #f7f3ec;
  --landing-muted: #a7a09a;
  --landing-accent: #b20f1b;
  --landing-accent-bright: #e23a45;
  --landing-accent-soft: rgba(178, 15, 27, 0.18);
  --landing-steel: #c8c3bb;
  --landing-success: #c8c3bb;
  margin: 0;
  color: var(--landing-ink);
  font-family: "Source Serif 4", Georgia, serif;
  background:
    linear-gradient(180deg, rgba(178, 15, 27, 0.12), transparent 26%),
    linear-gradient(135deg, #050607 0%, #111315 52%, #070808 100%);
}

.landing-public::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 243, 236, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 243, 236, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 85%);
}

.landing-public .wrap,
.landing-public .wrap-narrow {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding: 24px 18px 92px;
}

.landing-public .wrap-narrow {
  max-width: 900px;
}

.landing-public .site-nav {
  gap: 18px;
  margin-bottom: 40px;
  padding: 14px 18px;
  border: 1px solid var(--landing-stroke);
  border-radius: 999px;
  background: rgba(14, 17, 16, 0.68);
  backdrop-filter: blur(12px);
}

.landing-public .site-nav a {
  color: var(--landing-muted);
}

.landing-public .site-nav a:hover,
.landing-public .site-nav .brand {
  color: var(--landing-ink);
}

.landing-public .site-nav .brand,
.landing-public h3,
.landing-public strong,
.landing-public .btn,
.landing-public .badge,
.landing-public .eyebrow,
.landing-public .update-chip,
.landing-public .pricing-kicker,
.landing-public .price {
  font-family: "Sora", "Avenir", sans-serif;
}

.landing-public h1,
.landing-public h2 {
  font-family: "Sora", "Avenir", sans-serif;
  font-weight: 700;
}

.landing-public .site-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-public .brand-mark {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--landing-ink);
  background:
    linear-gradient(90deg, transparent 42%, var(--landing-accent) 42% 58%, transparent 58%),
    linear-gradient(180deg, var(--landing-ink) 0 74%, #050607 74%);
  font-size: 0;
}

.landing-public .site-nav .brand span:last-child {
  color: var(--landing-accent-bright);
}

.landing-public p,
.landing-public li,
.landing-public td,
.landing-public th,
.landing-public .muted,
.landing-public .article-meta {
  color: var(--landing-muted);
}

.landing-public h1,
.landing-public h2,
.landing-public h3 {
  color: var(--landing-ink);
}

.landing-public h1 {
  margin: 0;
  font-size: clamp(2.45rem, 3.8vw, 3.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.landing-public h2 {
  font-size: clamp(1.5rem, 2.05vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.landing-public h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.landing-public a {
  color: var(--landing-accent);
}

.landing-public code {
  color: var(--landing-ink);
}

.landing-public .badge,
.landing-public .update-chip,
.landing-public .pricing-trial {
  border-color: var(--landing-stroke-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-steel);
}

.landing-public .btn {
  border-radius: 999px;
  background: var(--landing-accent);
  color: var(--landing-ink);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.landing-public .btn:hover {
  background: var(--landing-accent-bright);
  opacity: 1;
}

.landing-public .btn.secondary {
  background: transparent;
  border-color: var(--landing-stroke-strong);
  color: var(--landing-ink);
}

.landing-public .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--landing-ink);
}

.landing-public .page-hero {
  margin-bottom: 26px;
}

.landing-public .page-hero-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.landing-public .page-hero-grid > *,
.landing-public .page-hero-copy,
.landing-public .page-hero-card,
.landing-home .hero-copy,
.landing-home .hero-panel,
.landing-home .hero-mobile-proof {
  min-width: 0;
}

.landing-public .page-kicker,
.landing-public .eyebrow,
.landing-public .pricing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.landing-public .page-lead {
  max-width: 50rem;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}

.landing-public .page-note {
  max-width: 44rem;
}

.landing-public .page-actions {
  margin-top: 24px;
  margin-bottom: 0;
}

.landing-public .page-hero-card,
.landing-public .section-surface,
.landing-public .card,
.landing-public .quickstart-path-step,
.landing-public .quickstart-panel,
.landing-public .pricing-card,
.landing-public .blog-card,
.landing-public .blog-summary-card,
.landing-public .email-section,
.landing-public .cta-box,
.landing-public .faq details,
.landing-public .changelog article {
  border: 1px solid var(--landing-stroke);
  background: var(--landing-panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.landing-public .page-hero-card,
.landing-public .section-surface {
  padding: 24px;
  border-radius: 24px;
}

.landing-public .section-surface + .section-surface {
  margin-top: 24px;
}

.landing-public .page-meta-list,
.landing-public .quickstart-list,
.landing-public .quickstart-link-list,
.landing-public .article-content ul,
.landing-public .article-content ol {
  padding-left: 20px;
}

.landing-public .page-meta-list li,
.landing-public .quickstart-list li,
.landing-public .quickstart-link-list li,
.landing-public .article-content li {
  margin: 10px 0;
}

.landing-public .page-section {
  margin-top: 56px;
}

.landing-public .section-intro {
  margin-bottom: 20px;
}

.landing-public .back-link,
.landing-public .feed-links a,
.landing-public .footer-links a {
  color: var(--landing-accent);
}

.landing-public .feed-links {
  gap: 14px;
  margin: 20px 0 0;
}

.landing-public .feed-links a {
  text-decoration: none;
}

.landing-public .feed-links a:hover,
.landing-public .back-link:hover,
.landing-public .footer-links a:hover {
  text-decoration: underline;
}

.landing-public .quickstart-section-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--landing-stroke);
}

.landing-public .grid,
.landing-public .pricing-grid-public,
.landing-public .quickstart-path-grid,
.landing-public .quickstart-panels {
  gap: 18px;
}

.landing-public .card,
.landing-public .quickstart-path-step,
.landing-public .quickstart-panel,
.landing-public .blog-card,
.landing-public .pricing-card,
.landing-public .blog-summary-card,
.landing-public .email-section,
.landing-public .cta-box {
  border-radius: 20px;
}

.landing-public .card,
.landing-public .quickstart-path-step,
.landing-public .quickstart-panel,
.landing-public .blog-card,
.landing-public .pricing-card,
.landing-public .blog-summary-card {
  padding: 20px;
}

.landing-public .quickstart-path-number {
  color: var(--landing-accent);
}

.landing-public .code {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: #0d1011;
}

.landing-public .copy-btn-static {
  border-color: var(--landing-stroke-strong);
  color: var(--landing-accent);
}

.landing-public .copy-btn-static:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--landing-ink);
}

.landing-public .blog-card,
.landing-public .blog-card-rich {
  gap: 14px;
}

.landing-public .blog-card:hover {
  border-color: var(--landing-stroke-strong);
}

.landing-public .blog-card p,
.landing-public .blog-card-meta,
.landing-public .blog-card-meta-row {
  color: var(--landing-muted);
}

.landing-public .blog-summary-card {
  margin-top: 28px;
  margin-bottom: 36px;
}

.landing-public .article-content p,
.landing-public .article-content li {
  color: var(--landing-muted);
}

.landing-public .article-content section {
  margin-top: 34px;
}

.landing-public .changelog article {
  margin-bottom: 18px;
  padding: 24px;
}

.landing-public .changelog article:last-child {
  margin-bottom: 0;
}

.landing-public .changelog h2 {
  margin-top: 0;
}

.landing-public .update-chip-row {
  gap: 10px;
}

.landing-public .email-section {
  padding: 30px;
}

.landing-public .email-form input[type="email"] {
  border-color: var(--landing-stroke-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--landing-ink);
}

.landing-public .pilot-proof-item {
  border-color: var(--landing-stroke);
  background: rgba(255, 255, 255, 0.04);
}

.landing-public .pilot-proof-item span,
.landing-public .pilot-form label {
  color: var(--landing-muted);
}

.landing-public .pilot-proof-item strong {
  color: var(--landing-ink);
}

.landing-public .pilot-form input,
.landing-public .pilot-form select,
.landing-public .pilot-form textarea {
  border-color: var(--landing-stroke-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--landing-ink);
}

.landing-public .pilot-form option {
  color: #181310;
}

.landing-public table {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--landing-stroke);
  background: rgba(255, 255, 255, 0.02);
}

.landing-public th,
.landing-public td {
  border-bottom-color: var(--landing-stroke);
  vertical-align: top;
}

.landing-public th {
  color: var(--landing-ink);
  background: rgba(255, 255, 255, 0.04);
}

.landing-public .comparison-table-wrap {
  overflow-x: auto;
}

.landing-public .pricing-card-public h2 {
  margin-top: 8px;
  margin-bottom: 10px;
}

.landing-public .pricing-card-public {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
}

.landing-public .pricing-card-head {
  min-height: 12rem;
}

.landing-public .pricing-card-head p {
  margin: 0;
}

.landing-public .pricing-card-price-block {
  display: grid;
  gap: 8px;
  align-content: start;
}

.landing-public .pricing-trial {
  justify-self: start;
}

.landing-public .price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 6px;
  color: var(--landing-ink);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.landing-public .price-note {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--landing-muted);
  white-space: nowrap;
}

.landing-public .plan-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-public .plan-facts span {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--landing-muted);
  font-size: 0.95rem;
}

.landing-public .plan-facts strong {
  display: block;
  margin-bottom: 2px;
  color: var(--landing-ink);
  font-size: 1rem;
}

.landing-public .pricing-card.highlight {
  border-color: var(--landing-accent);
}

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

.landing-public .faq details {
  margin-bottom: 12px;
}

.landing-public .faq summary {
  color: var(--landing-ink);
}

.landing-public .faq details div {
  color: var(--landing-muted);
}

.landing-public .cta-box-public {
  margin-top: 76px;
  padding: 30px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(178, 15, 27, 0.14), rgba(255, 255, 255, 0.015)),
    var(--landing-panel);
}

.landing-public footer {
  margin-top: 54px;
  color: var(--landing-muted);
}

@media (min-width: 900px) {
  .landing-public .page-hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  }

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

@media (max-width: 899px) {
  .landing-public .site-nav {
    flex-wrap: wrap;
    border-radius: 24px;
  }
}

@media (max-width: 639px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .wrap,
  .wrap-narrow {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-nav {
    position: relative;
    width: 100%;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
  }

  .site-nav .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 92px);
    margin-bottom: 0;
  }

  .site-nav-links {
    display: none;
  }

  .site-nav-menu {
    display: block;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .site-nav-menu summary {
    padding: 8px 12px;
    font-size: 12px;
  }

  .site-nav-menu-panel {
    min-width: min(180px, calc(100vw - 56px));
    max-width: calc(100vw - 56px);
    right: 0;
    left: auto;
  }

  .code {
    padding: 14px;
    font-size: 11px;
  }

  .quickstart-panel-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .quickstart-panel .code,
  .landing-home .hero-command .code {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .landing-home .comparison-table-wrap {
    overflow: visible;
  }

  .landing-home .wrap {
    max-width: 100vw;
    padding: 18px 16px 72px;
    overflow: hidden;
  }

  .landing-home .site-nav {
    margin-bottom: 24px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .landing-home section {
    margin-top: 52px;
  }

  .landing-home h1 {
    margin: 14px 0 14px;
    font-size: clamp(2.2rem, 10.2vw, 2.75rem);
    line-height: 0.98;
  }

  .landing-home .hero {
    gap: 18px;
    width: 100%;
    max-width: min(100%, 23rem);
  }

  .landing-home .hero-copy,
  .landing-home .hero-video-panel,
  .landing-home .hero-lead,
  .landing-home .hero-note {
    width: 100%;
    max-width: min(100%, 23rem);
  }

  .landing-home .hero-lead,
  .landing-home p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .landing-home .hero-note,
  .landing-home .hero-note code {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .landing-home .hero-note {
    display: none;
  }

  .landing-home .hero-list {
    display: none;
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .landing-home .cta {
    margin: 18px 0 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .landing-home .cta .btn {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }

  .landing-home .hero-panel {
    display: none;
  }

  .landing-home .hero-video-panel {
    display: block;
    padding: 14px;
    border-radius: 22px;
  }

  .landing-home .demo-panel-head {
    margin-bottom: 10px;
  }

  .landing-home .demo-video-shell {
    margin-top: 14px;
    padding: 5px;
    border-radius: 18px;
  }

  .landing-home .demo-video {
    border-radius: 14px;
  }

  .landing-home .demo-cue-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-home .demo-command {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-home .hero-mobile-proof {
    display: block;
    margin-top: 18px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid var(--landing-stroke);
    background: var(--landing-panel);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  }

  .landing-home .hero-mobile-proof strong {
    display: block;
    margin-top: 8px;
    font-size: 1.02rem;
    line-height: 1.3;
  }

  .landing-home .hero-mobile-command code {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .landing-home .integrations-hero {
    display: none;
  }

  .landing-home .stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 22px 0 0;
    padding: 14px;
  }

  .landing-home .stat {
    min-width: 0;
    min-height: auto;
    text-align: left;
    align-items: flex-start;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--landing-stroke);
  }

  .landing-home .stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .landing-home .stat .num {
    font-size: 1.1rem;
  }

  .landing-home .stat .label {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .landing-home .grid,
  .landing-home .pricing-grid-home {
    gap: 12px;
  }

  .landing-home .card,
  .landing-home .consequence-card,
  .landing-home .pricing-card-home,
  .landing-home .cta-box {
    border-radius: 20px;
  }

  .landing-home .card,
  .landing-home .pricing-card-home {
    padding: 16px;
  }

  .landing-home .comparison-mobile {
    display: block;
    border: 1px solid var(--landing-stroke);
    background: var(--landing-panel);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
    border-radius: 22px;
    padding: 18px;
  }

  .landing-home .comparison-table {
    display: none;
  }

  .landing-home .comparison-note {
    margin-top: 10px;
    font-size: 0.82rem;
  }

  .landing-home .pricing-card-head {
    min-height: 0;
  }

  .landing-home .faq summary {
    padding: 14px 16px;
    font-size: 0.98rem;
  }

  .landing-home .faq details div {
    padding: 0 16px 14px;
  }

  .landing-home .cta-box {
    margin-top: 44px;
    padding: 22px 18px;
  }

  .landing-public .wrap,
  .landing-public .wrap-narrow {
    padding-bottom: 72px;
  }

  .landing-public .site-nav {
    margin-bottom: 24px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .landing-public .page-actions,
  .landing-public .cta,
  .landing-public .cta-center,
  .landing-public .email-form {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-public .page-actions .btn,
  .landing-public .cta .btn,
  .landing-public .cta-center .btn,
  .landing-public .email-form input[type="email"],
  .landing-public .email-form button {
    width: 100%;
    min-width: 0;
  }

  .landing-public .page-hero {
    margin-bottom: 18px;
  }

  .landing-public .page-hero-card,
  .landing-public .section-surface,
  .landing-public .card,
  .landing-public .quickstart-path-step,
  .landing-public .quickstart-panel,
  .landing-public .blog-card,
  .landing-public .pricing-card,
  .landing-public .blog-summary-card,
  .landing-public .email-section,
  .landing-public .cta-box {
    border-radius: 22px;
  }

  .landing-public .page-hero-card,
  .landing-public .section-surface,
  .landing-public .card,
  .landing-public .quickstart-path-step,
  .landing-public .quickstart-panel,
  .landing-public .blog-card,
  .landing-public .pricing-card,
  .landing-public .blog-summary-card,
  .landing-public .email-section,
  .landing-public .cta-box {
    padding: 16px;
  }

  .landing-public .plan-facts {
    grid-template-columns: 1fr;
  }

  .landing-public .page-lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .landing-public h1 {
    font-size: clamp(2.05rem, 10.8vw, 2.9rem);
    line-height: 0.98;
  }

  .landing-public .pricing-card-head {
    min-height: 0;
  }

  .landing-home h1 {
    max-width: 9.4ch;
    font-size: clamp(2.3rem, 10.6vw, 2.95rem);
  }

  .landing-home .pricing-card-head {
    min-height: 0;
  }

  .landing-home .plan-facts {
    grid-template-columns: 1fr;
  }
}
