:root {
  --bg: #0b1420;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.1);
  --text: #eef4f4;
  --text-dim: #9fb3b3;
  --teal: #2dd4bf;
  --gold: #f5c542;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal);
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Nav ---- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 20, 32, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--panel-border);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.site-nav nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.site-nav nav a {
  color: var(--text-dim);
  text-decoration: none;
}

.site-nav nav a:hover {
  color: var(--text);
}

/* ---- Hero panels (the polished marketing graphics) ---- */
.hero-panel {
  width: 100%;
  border-bottom: 1px solid var(--panel-border);
}

.hero-panel img {
  width: 100%;
  height: auto;
}

/* ---- Sections ---- */
section {
  padding: 64px 0;
}

section h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

section .lede {
  color: var(--text-dim);
  max-width: 60ch;
  margin-bottom: 36px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

/* ---- Pricing ---- */
#pricing {
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.06), transparent);
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0 6px;
}

.price-line .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
}

.price-line .period {
  color: var(--text-dim);
  font-size: 1.1rem;
}

.trial-note {
  color: var(--text-dim);
  margin-bottom: 28px;
}

.cta-button {
  display: inline-block;
  background: var(--teal);
  color: #04241f;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.cta-button:hover {
  filter: brightness(1.08);
}

.fine-print {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--panel-border);
  padding: 32px 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

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

footer nav {
  display: flex;
  gap: 18px;
}

footer nav a {
  color: var(--text-dim);
  text-decoration: none;
}

footer nav a:hover {
  color: var(--text);
}

/* ---- Legal pages ---- */
.legal {
  padding: 64px 0 96px;
  max-width: 72ch;
}

.legal h1 {
  margin-bottom: 6px;
}

.legal .updated {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal h2 {
  margin-top: 32px;
  font-size: 1.2rem;
}

.legal p, .legal li {
  color: var(--text-dim);
}
