*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(31, 143, 96, 0.18) 0, transparent 34%),
    radial-gradient(circle at 100% 8%, rgba(247, 215, 120, 0.26) 0, transparent 24%),
    radial-gradient(circle at 76% 42%, rgba(31, 143, 96, 0.08) 0, transparent 24%),
    linear-gradient(180deg, #f9fcf6 0%, #eef7f1 44%, #f8fcf8 100%);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

main {
  overflow: clip;
}

.container {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0 24px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(249, 252, 246, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(9, 33, 24, 0.05);
}

.site-nav-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.site-nav-menu {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--heading);
  font-size: 15px;
  letter-spacing: 0;
}

.brand span {
  color: var(--accent);
}

.brand em {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links li {
  display: flex;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}

.nav-links a:hover {
  color: var(--heading);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.nav-links a.nav-cloud-link {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border: 1px solid var(--accent-strong);
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(24, 88, 60, 0.18);
}

.nav-links a.nav-cloud-link:hover {
  color: #fff;
  filter: brightness(0.95);
}

.nav-links a.nav-cloud-link.active {
  background: var(--heading);
  border-color: var(--heading);
}

.hero {
  padding: 24px 0 40px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(152, 190, 168, 0.5);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(237, 247, 240, 0.82) 100%);
  box-shadow: 0 20px 52px rgba(8, 36, 26, 0.1);
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-stage::before {
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(31, 143, 96, 0.2) 0, rgba(31, 143, 96, 0) 72%);
}

.hero-stage::after {
  bottom: -140px;
  left: -90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 210, 114, 0.16) 0, rgba(245, 210, 114, 0) 74%);
}

.page-cloud .hero-stage {
  background: linear-gradient(145deg, #0e2018 0%, #09160f 100%);
  border-color: rgba(31, 143, 96, 0.22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(31, 143, 96, 0.1) inset;
}

.page-cloud .hero-stage::before {
  background: radial-gradient(circle, rgba(31, 143, 96, 0.36) 0, rgba(31, 143, 96, 0) 72%);
}

.page-cloud .hero-stage::after {
  background: radial-gradient(circle, rgba(30, 190, 115, 0.12) 0, rgba(30, 190, 115, 0) 74%);
}

.page-cloud .hero h1 {
  color: rgba(255, 255, 255, 0.95);
}

.page-cloud .hero p {
  color: rgba(255, 255, 255, 0.56);
}

.page-cloud .eyebrow {
  color: rgb(100, 200, 148);
  background: rgba(31, 143, 96, 0.14);
  border-color: rgba(31, 143, 96, 0.42);
}

.page-cloud .eyebrow::before {
  background: rgb(80, 190, 130);
}

.page-cloud .engine-tags span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(31, 143, 96, 0.32);
  color: rgba(255, 255, 255, 0.68);
}

.page-cloud .hero .btn-secondary {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.page-cloud .hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.26);
}

/* ── Waitlist panel — dark ────────────────────────────────── */
.page-cloud .waitlist-panel {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(31, 143, 96, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(31, 143, 96, 0.08) inset;
}

.page-cloud .waitlist-panel .section-label {
  color: rgb(100, 200, 148);
}

.page-cloud .waitlist-panel h2 {
  color: rgba(255, 255, 255, 0.95);
}

.page-cloud .waitlist-panel .panel-intro {
  color: rgba(255, 255, 255, 0.52);
}

.page-cloud .waitlist-panel label {
  color: rgba(255, 255, 255, 0.5);
}

.page-cloud .waitlist-panel input,
.page-cloud .waitlist-panel textarea {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(31, 143, 96, 0.28);
  color: rgba(255, 255, 255, 0.88);
}

.page-cloud .waitlist-panel input::placeholder,
.page-cloud .waitlist-panel textarea::placeholder {
  color: rgba(255, 255, 255, 0.26);
}

.page-cloud .waitlist-panel input:focus,
.page-cloud .waitlist-panel textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(31, 143, 96, 0.65);
  box-shadow: 0 0 0 4px rgba(31, 143, 96, 0.16);
}

.page-cloud .waitlist-panel .form-legal {
  color: rgba(255, 255, 255, 0.35);
}

.page-cloud .waitlist-panel .form-legal a {
  color: rgba(255, 255, 255, 0.52);
}

.page-cloud .waitlist-panel .status.error {
  color: rgb(255, 105, 105);
}

.page-cloud .waitlist-success-icon {
  background: rgba(31, 143, 96, 0.2);
  color: rgb(80, 200, 140);
}

.page-cloud .waitlist-success h2 {
  color: rgba(255, 255, 255, 0.95);
}

.page-cloud .waitlist-success .panel-intro {
  color: rgba(255, 255, 255, 0.52);
}

/* ── Page-cloud: dark tiles ───────────────────────────────── */

/* Stats bar items */
.page-cloud .stats-bar-item {
  background: #1a3528;
  border-color: rgba(31, 143, 96, 0.38);
  color: rgba(255, 255, 255, 0.6);
}

.page-cloud .stats-bar-item strong {
  color: rgba(255, 255, 255, 0.9);
}

.page-cloud .stats-bar-item svg {
  color: rgb(80, 200, 140);
}

/* Feature & use-case cards */
.page-cloud .card {
  background: linear-gradient(145deg, #1e3d2e, #162b20);
  border-color: rgba(31, 143, 96, 0.35);
}

.page-cloud .card:hover {
  background: linear-gradient(145deg, #22452f, #1a3225);
  border-color: rgba(31, 143, 96, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.page-cloud .card h3 {
  color: rgba(255, 255, 255, 0.92);
}

.page-cloud .card p {
  color: rgba(255, 255, 255, 0.5);
}

.page-cloud .card-icon {
  background: rgba(31, 143, 96, 0.14);
  border-color: rgba(31, 143, 96, 0.28);
  color: rgb(80, 200, 140);
}

/* Compare cards */
.page-cloud .compare-card {
  background: linear-gradient(145deg, #1e3d2e, #162b20);
  border-color: rgba(31, 143, 96, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.page-cloud .compare-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.page-cloud .compare-card.compare-cloud {
  background: linear-gradient(145deg, #1e4535, #162b22);
  border-color: rgba(31, 143, 96, 0.55);
}

.page-cloud .compare-header h3 {
  color: rgba(255, 255, 255, 0.93);
}

.page-cloud .compare-price {
  color: rgba(255, 255, 255, 0.45);
}

.page-cloud .badge-oss {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.14);
}

.page-cloud .feature-checklist li {
  color: rgba(255, 255, 255, 0.72);
}

.page-cloud .feature-checklist li::before {
  background: rgba(31, 143, 96, 0.2);
  color: rgb(80, 200, 140);
}

.page-cloud .compare-card .btn-secondary {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.page-cloud .compare-card .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.26);
}

/* FAQ cards (inline styles in HTML are overridden here) */
.page-cloud .faq-card {
  background: linear-gradient(145deg, #1e3d2e, #162b20);
  border-color: rgba(31, 143, 96, 0.35);
}

.page-cloud .faq-card:hover {
  background: linear-gradient(145deg, #22452f, #1a3225);
  border-color: rgba(31, 143, 96, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.page-cloud .faq-card h3 {
  color: rgba(255, 255, 255, 0.92);
}

.page-cloud .faq-card p {
  color: rgba(255, 255, 255, 0.5);
}

.page-cloud .faq-card a {
  color: rgb(100, 200, 148);
}

/* Hide hero CTA buttons on desktop — form is right there */
@media (min-width: 901px) {
  .page-cloud .hero-actions {
    display: none;
  }
}

.hero-grid {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 24px;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: stretch;
}

.hero-grid-equal {
  grid-template-columns: 1fr 1fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(152, 190, 168, 0.7);
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 12px 28px rgba(10, 39, 29, 0.06);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  line-height: 1.2;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

h1 {
  max-width: 20ch;
  font-size: clamp(22px, 2.4vw, 34px);
}

h2 {
  max-width: 28ch;
  font-size: clamp(24px, 2.6vw, 38px);
}

.hero p {
  margin: 16px 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.68;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 11px 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 26px rgba(24, 88, 60, 0.16);
}

.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--heading);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.84);
}

.btn-secondary:hover {
  background: var(--surface-2);
  transform: translateY(-1px);
}

.panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(152, 190, 168, 0.55);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.hero-panel h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.hero-panel p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.hero-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero-panel li + li {
  margin-top: 6px;
}

.hero-panel .hero-actions {
  margin-top: auto;
}

.waitlist-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 24px);
}

.waitlist-panel::before {
  content: "";
  position: absolute;
  top: -56px;
  right: -34px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 143, 96, 0.12) 0, rgba(31, 143, 96, 0) 72%);
  pointer-events: none;
}

.waitlist-panel h2 {
  position: relative;
  font-size: clamp(20px, 1.9vw, 30px);
  margin-bottom: 8px;
  max-width: 100%;
}

.waitlist-panel .section-label {
  margin-bottom: 4px;
}

.panel-intro {
  position: relative;
  margin: 0 0 14px;
  max-width: 32ch;
  color: var(--muted);
  font-size: 15px !important;
  line-height: 1.55;
}

.waitlist-panel .muted-text {
  margin-top: 0;
  margin-bottom: 8px;
}

.stat-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-card {
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--heading);
  font-size: 13px;
}

.stat-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.gh-stars {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 1px 7px;
  margin-left: 3px;
  vertical-align: middle;
}

.gh-stars:empty {
  display: none;
}

.engine-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.engine-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(152, 190, 168, 0.8);
  border-radius: 999px;
  padding: 6px 10px;
  box-shadow: 0 10px 24px rgba(10, 39, 29, 0.05);
}

.hero-trust {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.72;
  letter-spacing: 0.01em;
}

.hero-highlights {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
  align-items: stretch;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px;
  border: 1px solid rgba(152, 190, 168, 0.56);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(10, 39, 29, 0.06);
  backdrop-filter: blur(8px);
}

.highlight-value {
  display: block;
  margin-bottom: 6px;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

section {
  padding: 76px 0;
}

.section-header {
  margin-bottom: 22px;
}

.section-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.section-header p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.grid-3 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 22px;
  border: 1px solid rgba(152, 190, 168, 0.48);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 250, 246, 0.88));
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(8, 36, 26, 0.12);
  border-color: var(--border-strong);
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.card-link h3 {
  color: var(--heading);
  transition: color 0.15s ease;
}

.card-link:hover {
  background: linear-gradient(180deg, rgba(31, 143, 96, 0.14), rgba(31, 143, 96, 0.07));
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(8, 36, 26, 0.16);
}

.card-link:hover h3 {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.card-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.code-box {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  background: rgba(241, 248, 243, 0.88);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
}

.code-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  background: var(--surface);
}

code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--heading);
  overflow-wrap: anywhere;
}

.copy-btn {
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--heading);
  font-family: var(--font-mono);
  font-size: 12px;
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
}

.copy-btn:hover {
  border-color: var(--accent);
}

.split {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li + li {
  margin-top: 8px;
}

.list li {
  color: var(--muted);
}

.feature-list {
  margin-top: 16px;
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 14px;
}

.status {
  margin-top: 10px;
  display: none;
  font-size: 14px;
  line-height: 1.5;
}

.status.success {
  color: var(--accent-strong);
  display: block;
}

.status.error {
  color: var(--danger);
  display: block;
}

.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  min-height: 220px;
  gap: 12px;
}

.waitlist-success h2 {
  margin: 0;
}

.waitlist-success .panel-intro {
  margin: 0;
}

.waitlist-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  flex-shrink: 0;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--heading);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 11px 13px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(31, 143, 96, 0.12);
  background: #fff;
}

textarea {
  min-height: 34px;
  resize: vertical;
}

.turnstile-box {
  margin-top: 4px;
}

.muted-text {
  color: var(--muted);
  font-size: 13px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 50px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Form legal text ──────────────────────────────────────── */
.form-legal {
  color: var(--muted);
  font-size: 10px !important;
  line-height: 1.35;
  margin: 0;
  max-width: 33ch;
  opacity: 0.72;
}

.btn-full {
  width: 100%;
}

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  padding: 14px 0;
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.stats-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(152, 190, 168, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  color: var(--muted);
}

.stats-bar-item strong {
  color: var(--heading);
  font-weight: 600;
}

.stats-bar-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.stats-bar-sep {
  display: none;
}

/* ── Card icons ───────────────────────────────────────────── */
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(31, 143, 96, 0.16), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(152, 190, 168, 0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Section variants ─────────────────────────────────────── */
.section-tinted {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#oss-today,
#compare {
  background:
    linear-gradient(180deg, rgba(222, 238, 228, 0.78), rgba(209, 229, 217, 0.9));
  border-top: 1px solid rgba(152, 190, 168, 0.72);
  border-bottom: 1px solid rgba(152, 190, 168, 0.72);
}

.section-header.centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
}

.section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* ── Comparison grid ──────────────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.compare-card {
  padding: 22px;
  border: 1px solid rgba(152, 190, 168, 0.5);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.compare-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(8, 36, 26, 0.13);
}

.compare-card > .compare-actions,
.compare-card > .compare-cta {
  margin-top: auto;
}

.compare-card.compare-cloud {
  border-color: rgba(31, 143, 96, 0.52);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 40%, rgba(216, 238, 225, 0.94) 100%);
}

.compare-header {
  margin-bottom: 20px;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.badge-oss {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border: 1px solid var(--border);
}

.badge-cloud {
  background: var(--accent);
  color: #fff;
}

.compare-header h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.compare-price {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}

.feature-checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 19px;
  margin-top: 1px;
}

.compare-cloud .feature-checklist li::before {
  background: rgba(31, 143, 96, 0.18);
}

.compare-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
  padding: 11px 13px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  line-height: 1.5;
}

.compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.compare-cta {
  flex: 1;
  min-width: 120px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid,
  .hero-grid-equal,
  .grid-3,
  .split,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .site-nav-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav-menu {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-nav-menu::-webkit-scrollbar {
    display: none;
  }

  .nav-links {
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
    padding: 5px;
    border: 1px solid rgba(152, 190, 168, 0.62);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
  }
}

@media (max-width: 640px) {
  .nav-hide-mobile {
    display: none;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 18px;
  }

  h1 {
    font-size: 28px;
    max-width: 100%;
  }

  .stats-bar-inner {
    gap: 8px 16px;
  }

  .hero-stage {
    border-radius: 24px;
    padding: 20px 16px;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .waitlist-panel h2 {
    max-width: 100%;
  }

  .code-row {
    flex-direction: column;
  }

  .copy-btn {
    align-self: flex-start;
  }

  .compare-cta {
    flex: 1 1 100%;
  }
}
