/* RomanAI Labs — static hosting bundle (no build step) */
:root {
  --bg: #0a0a0a;
  --bg2: #0f172a;
  --cyan: #00f0ff;
  --cyan-dim: rgba(0, 240, 255, 0.15);
  --text: #f8fafc;
  --muted: #94a3b8;
  --dim: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --red: #f87171;
  --font: "Inter", system-ui, sans-serif;
  --display: "Space Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
main {
  position: relative;
  z-index: 1;
}
footer {
  position: relative;
  z-index: 1;
}
.h3-sub {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.82em;
}

a {
  color: var(--cyan);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.logo {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
}
.logo span {
  color: var(--cyan);
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-desktop a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
}
.nav-desktop a:hover {
  color: var(--cyan);
  text-decoration: none;
}
.header-actions {
  display: none;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}
.menu-btn {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
}
@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}
.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem;
  background: rgba(3, 7, 18, 0.98);
}
.nav-mobile.open {
  display: block;
}
.nav-mobile a {
  display: block;
  padding: 0.5rem 0;
  color: #cbd5e1;
  text-decoration: none;
}
.nav-mobile a:hover {
  color: var(--cyan);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s, transform 0.1s;
}
.btn:hover {
  filter: brightness(1.08);
  text-decoration: none;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: linear-gradient(90deg, #00f0ff, #38bdf8);
  color: #0f172a;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}
.btn-outline {
  background: rgba(15, 23, 42, 0.5);
  color: #a5f3fc;
  border: 1px solid rgba(0, 240, 255, 0.3);
}
.btn-outline:hover {
  border-color: rgba(0, 240, 255, 0.5);
  text-decoration: none;
}
.btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
}
.btn-ghost {
  background: transparent;
  color: #a5f3fc;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}
.btn-block {
  width: 100%;
}

/* Sections */
section {
  scroll-margin-top: 5rem;
}
#scaling-graph {
  scroll-margin-top: 5.5rem;
}
.section-label {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.9;
}
.section-label.red {
  color: var(--red);
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
}
h2 {
  font-size: 1.875rem;
  margin: 0.75rem 0 0;
}
@media (min-width: 640px) {
  h2 {
    font-size: 2.25rem;
  }
}
.lead {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted);
}
.core-promise-lead strong {
  display: block;
  color: #f1f5f9;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .core-promise-lead strong {
    font-size: 1.125rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 1rem 4rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:     linear-gradient(
      to bottom,
      transparent 0%,
      rgba(10, 10, 10, 0.94) 100%
    ),
    linear-gradient(rgba(0, 240, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  left: 50%;
  top: 25%;
  width: 24rem;
  height: 24rem;
  transform: translate(-50%, -50%);
  background: rgba(0, 240, 255, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-lattice {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-lattice .node {
  position: absolute;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  animation: lattice-pulse 4.5s ease-in-out infinite;
}
@keyframes lattice-pulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.18);
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
}
.hero-inner--evidence {
  max-width: 56rem;
  text-align: left;
}
@media (min-width: 640px) {
  .hero-inner--evidence {
    text-align: center;
  }
  .hero-inner--evidence .hero-evo-bullets,
  .hero-inner--evidence .hero-evo-cost,
  .hero-inner--evidence .hero-evo-disclaimer {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-evo-brand {
  margin: 0 0 0.75rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}
.hero-evo-sub {
  margin: 1.25rem 0 0;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.55;
  color: #cbd5e1;
  max-width: 44rem;
  text-align: inherit;
}
.hero-evo-bullets {
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  text-align: left;
  max-width: 36rem;
  color: #e2e8f0;
  font-size: 0.9375rem;
  line-height: 1.65;
}
.hero-evo-bullets li {
  margin-bottom: 0.4rem;
}
.hero-evo-mono {
  font-family: var(--mono);
  font-size: 0.9em;
  font-weight: 500;
  color: #a5f3fc;
}
.hero-evo-cost {
  margin: 1.5rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(0, 240, 255, 0.45);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0.375rem 0.375rem 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #e2e8f0;
  max-width: 44rem;
  text-align: left;
}
.hero-evo-disclaimer {
  margin: 1rem 0 0;
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--dim);
  max-width: 40rem;
  text-align: left;
}
.hero-cta--evidence {
  margin-top: 2rem;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-cta--evidence {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(0, 240, 255, 0.22);
  background: rgba(0, 240, 255, 0.08);
  color: #a5f3fc;
  margin-bottom: 1.5rem;
}
.tagline-top {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.82);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 2.25rem;
  margin: 0;
}
@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}
.hero h1.hero-evo-title {
  font-size: clamp(1.2rem, 3.5vw, 2.125rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
  text-align: inherit;
}
.hero-headline-metric {
  font-size: clamp(1.35rem, 4.2vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-anchor-line {
  font-family: var(--display);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.45);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-proof-metrics {
  list-style: none;
  margin: 1.25rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  max-width: 36rem;
}
.hero-proof-metrics li {
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #a5f3fc;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 0.375rem;
  background: rgba(0, 0, 0, 0.25);
}
.gradient-text {
  background: linear-gradient(90deg, #00f0ff, #38bdf8, #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}
.trust-bar {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--dim);
}
.trust-bar a {
  color: rgba(0, 240, 255, 0.92);
  text-decoration: none;
}
.trust-bar a:hover {
  color: #a5f3fc;
  text-decoration: none;
}

/* Cards & grids */
.section-pad {
  padding: 7rem 1rem;
}
.grid-2 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-3 {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-4 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
  background: rgba(15, 23, 42, 0.5);
  padding: 1.5rem;
  box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.05), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.card:hover {
  border-color: rgba(0, 240, 255, 0.2);
}
.card.red:hover {
  border-color: rgba(248, 113, 113, 0.25);
}
.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.card-icon.cyan {
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: rgba(0, 240, 255, 0.05);
}
.card-icon.red {
  border: 1px solid rgba(248, 113, 113, 0.2);
  background: rgba(127, 29, 29, 0.2);
  color: #fecaca;
}
.card-icon.red svg,
.card-icon.cyan svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}
.card.red {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.card.red:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(248, 113, 113, 0.12),
    0 20px 40px -12px rgba(0, 0, 0, 0.55);
}
.card:not(.red) {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.card:not(.red):hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(0, 240, 255, 0.12),
    0 20px 40px -12px rgba(0, 0, 0, 0.55);
}
.card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: #fff;
}
.card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cyan);
  text-decoration: none;
}
.card-link:hover {
  color: #a5f3fc;
  text-decoration: none;
}

/* Terminal */
.terminal {
  border-radius: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.terminal-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}
.terminal-badge {
  margin-left: auto;
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  color: var(--dim);
}
.terminal pre {
  margin: 0;
  padding: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(207, 250, 254, 0.9);
  overflow: auto;
  max-height: 20rem;
}
@media (min-width: 640px) {
  .terminal pre {
    font-size: 0.8125rem;
  }
}
.c-dim {
  color: var(--dim);
}
.c-ok {
  color: #4ade80;
}
.c-cyan {
  color: var(--cyan);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
  background: rgba(15, 23, 42, 0.4);
}
table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}
th,
td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
th {
  font-family: var(--display);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
}
th.roman {
  color: #67e8f9;
}
tr:last-child td {
  border-bottom: none;
}
td.muted {
  color: var(--dim);
}
.check {
  text-align: center;
  color: var(--cyan);
  font-weight: 700;
}

/* Pricing */
.advisory-card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: linear-gradient(135deg, rgba(6, 78, 94, 0.25), rgba(15, 23, 42, 0.65));
  padding: 1.5rem 1.5rem 1.25rem;
}
.advisory-card-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .advisory-card-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.advisory-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(0, 240, 255, 0.2);
  color: #a5f3fc;
}
.advisory-price {
  flex-shrink: 0;
  text-align: left;
}
@media (min-width: 640px) {
  .advisory-price {
    text-align: right;
  }
}
.table-wrap.table-wide table {
  min-width: 52rem;
}
.table-wrap.table-wide th:not(:first-child),
.table-wrap.table-wide td:not(:first-child) {
  text-align: center;
}
.table-wrap.table-wide th:first-child,
.table-wrap.table-wide td:first-child {
  text-align: left;
}

.price-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.5);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-card.featured {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.12);
}
.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #00f0ff, #38bdf8);
  color: #0f172a;
}
.price-name {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.price-desc {
  font-size: 0.875rem;
  color: var(--dim);
  margin: 0.25rem 0 1rem;
}
.price-amt {
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 700;
}
.price-period {
  color: var(--dim);
  font-size: 1rem;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  flex: 1;
}
.price-features li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.price-features li::before {
  content: "✓";
  color: rgba(6, 182, 212, 0.8);
  font-weight: 700;
}

/* Form */
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  font-size: 0.875rem;
}
input::placeholder {
  color: var(--dim);
}
input:focus {
  outline: 2px solid rgba(0, 240, 255, 0.4);
  outline-offset: 0;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  padding: 3.5rem 1rem;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-copy {
  max-width: 36rem;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.75rem;
  color: var(--dim);
}

.badge-threat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid rgba(248, 113, 113, 0.3);
  background: rgba(127, 29, 29, 0.3);
  color: #fecaca;
  margin-bottom: 1rem;
}

.exec-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .exec-grid {
    grid-template-columns: 3fr 2fr;
  }
}
.side-box {
  border-radius: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
  background: rgba(15, 23, 42, 0.4);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.side-item {
  display: flex;
  gap: 1rem;
}
.side-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: rgba(0, 240, 255, 0.05);
  font-size: 1.125rem;
}
.side-item h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}
.side-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--dim);
}

.studio-card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.15);
  background: linear-gradient(135deg, rgba(8, 51, 68, 0.25), transparent);
  padding: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
.studio-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.studio-head h3 {
  margin: 0;
  font-size: 1.25rem;
}

blockquote {
  margin: 0;
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
}
.quote-icon {
  font-size: 2.5rem;
  color: rgba(0, 240, 255, 0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.text-center {
  text-align: center;
}
.max-w-xl {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}

/* Benchmark section */
.section-benchmark {
  background: linear-gradient(180deg, transparent 0%, rgba(6, 78, 94, 0.12) 50%, transparent 100%);
}

.benchmark-demo {
  scroll-margin-top: 5.5rem;
  margin-top: 2.75rem;
  padding: 1.75rem 1.5rem 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 240, 255, 0.18);
  background: linear-gradient(145deg, rgba(6, 78, 94, 0.22), rgba(15, 23, 42, 0.72));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
@media (min-width: 960px) {
  .benchmark-demo {
    padding: 2rem 2.25rem 2.25rem;
  }
}
.benchmark-demo-title {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: #f1f5f9;
}
.benchmark-demo-lead {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 48rem;
}
.benchmark-demo-lead--after {
  margin-top: 1.25rem;
}
.benchmark-demo-host {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--dim);
  line-height: 1.65;
  max-width: 36rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border-left: 3px solid rgba(0, 240, 255, 0.45);
  background: rgba(0, 0, 0, 0.2);
}
.benchmark-demo-host strong {
  color: #a5f3fc;
  font-weight: 600;
}
.benchmark-demo-actions {
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.video-embed-shell {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.video-embed-shell--feature {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.video-embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-yt-mount {
  position: absolute;
  inset: 0;
  background: #020617;
}
.video-yt-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  text-align: center;
}
.video-yt-placeholder-label {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  font-family: var(--mono);
}
.video-yt-load-btn {
  min-width: 10rem;
}
.video-yt-direct {
  font-size: 0.75rem;
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.video-yt-direct:hover {
  color: #a5f3fc;
}

.benchmark-stats {
  scroll-margin-top: 5.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .benchmark-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benchmark-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.benchmark-stat {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 240, 255, 0.12);
  background: rgba(15, 23, 42, 0.55);
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.benchmark-stat-accent {
  border-color: rgba(0, 240, 255, 0.22);
  background: linear-gradient(135deg, rgba(6, 78, 94, 0.2), rgba(15, 23, 42, 0.55));
}
.benchmark-stat-value {
  font-family: var(--mono);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.benchmark-stat-accent .benchmark-stat-value {
  color: #67e8f9;
}
.benchmark-stat-label {
  font-size: 0.8125rem;
  color: var(--dim);
  line-height: 1.45;
}
.benchmark-subhead {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #e2e8f0;
}
.benchmark-sublead {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 48rem;
}
.benchmark-table-wrap {
  border-color: rgba(0, 240, 255, 0.14);
}
.benchmark-table {
  min-width: 20rem;
}
.benchmark-table th,
.benchmark-table td {
  padding: 0.875rem 1.25rem;
  vertical-align: top;
}
.benchmark-table th:not(:first-child),
.benchmark-table td:not(:first-child) {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-family: var(--mono);
  font-size: 0.8125rem;
}
.benchmark-table td:first-child {
  font-family: var(--mono);
  font-size: 0.8125rem;
}
.benchmark-table th:first-child,
.benchmark-table td:first-child {
  text-align: left;
}
.benchmark-warn {
  color: #fbbf24;
  font-weight: 600;
}
.benchmark-muted {
  font-weight: 400;
  color: var(--dim);
  font-size: 0.8125rem;
}
.benchmark-na {
  text-align: right !important;
}
.benchmark-notes {
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  max-width: 48rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}
.benchmark-notes li {
  margin-bottom: 0.65rem;
}
.benchmark-notes li:last-child {
  margin-bottom: 0;
}
.benchmark-code {
  font-size: 0.8125em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.12rem 0.4rem;
  border-radius: 0.25rem;
  color: #a5f3fc;
}

/* Why RQ4D — top section (below hero) */
.section-rq4d-top {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid rgba(0, 240, 255, 0.12);
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
  background: linear-gradient(180deg, rgba(6, 78, 94, 0.14) 0%, rgba(10, 10, 10, 0.4) 100%);
}
.rq4d-top-lead strong {
  color: #e2e8f0;
  font-weight: 600;
}
.willow-teaser-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .willow-teaser-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}
.willow-teaser-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.65);
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.willow-teaser-primary {
  border-color: rgba(0, 240, 255, 0.28);
  background: linear-gradient(145deg, rgba(6, 78, 94, 0.35), rgba(15, 23, 42, 0.75));
  box-shadow: 0 0 32px rgba(0, 240, 255, 0.08);
}
.willow-teaser-ratio {
  border-color: rgba(251, 191, 36, 0.2);
}
.willow-teaser-kicker {
  font-family: var(--display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(103, 232, 249, 0.85);
}
.willow-teaser-ratio .willow-teaser-kicker {
  color: rgba(251, 191, 36, 0.9);
}
.willow-teaser-value {
  font-family: var(--mono);
  font-size: 1.65rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.willow-teaser-primary .willow-teaser-value {
  color: #67e8f9;
}
.willow-teaser-ratio .willow-teaser-value {
  color: #fbbf24;
}
.willow-teaser-detail {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.willow-teaser-meta {
  font-size: 0.75rem;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 0.25rem;
}
.willow-teaser-disclaimer {
  color: rgba(248, 113, 113, 0.85);
}
.rq4d-top-why {
  margin: 2rem 0 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 48rem;
}
.rq4d-top-why strong {
  color: #cbd5e1;
}
.rq4d-top-linkwrap {
  margin: 1.25rem 0 0;
}
.rq4d-top-linkwrap-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.scaling-chart-panel {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
}
.scaling-chart-frame {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 240, 255, 0.14);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
}
.scaling-chart-frame svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 20rem;
}
.scaling-chart-caption {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 40rem;
}

.benchmark-realness {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #a5f3fc;
  font-family: var(--mono);
  max-width: 48rem;
}
.video-embed-fallback {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--dim);
  line-height: 1.55;
  max-width: 42rem;
}
.comparison-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--dim);
  line-height: 1.5;
  max-width: 42rem;
}

/* Willow table in benchmark section */
.benchmark-willow {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.benchmark-table-willow th:nth-child(2),
.benchmark-table-willow td:nth-child(2),
.benchmark-table-willow th:nth-child(3),
.benchmark-table-willow td:nth-child(3) {
  text-align: left;
  font-variant-numeric: tabular-nums;
}
.benchmark-disclaimer {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
  background: rgba(120, 53, 15, 0.12);
  font-size: 0.8125rem;
  color: #fcd34d;
  line-height: 1.65;
  max-width: 52rem;
}
.benchmark-disclaimer strong {
  color: #fde68a;
}
.benchmark-sublead-tight {
  max-width: 52rem;
}
