/* Infinity product site — nobbs brand tokens
   Target: infinity.nobbs.at (Cloudflare Pages) */

:root {
  --bg-dark: #182c39;
  --bg-mid: #385164;
  --blue: #0090d2;
  --blue-bright: #42c6ff;
  --gold: #bb7916;
  --gold-bright: #f0b429;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --white: #ffffff;
  --radius: 12px;
  --nav-h: 64px;
  --max: 1100px;
  --font: "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "DM Mono", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

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

a {
  color: var(--blue-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Layout ───────────────────────────────────────── */

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  scroll-margin-top: calc(var(--nav-h) + 0.75rem);
}

.section-tight {
  padding: 3.5rem 0;
}

.section-fade-top {
  background: linear-gradient(to bottom, var(--bg-dark) 0%, var(--bg-mid) 100%);
}

.section-fade-bot {
  background: linear-gradient(to bottom, var(--bg-mid) 0%, var(--bg-dark) 100%);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 144, 210, 0.3), transparent);
  border: 0;
  margin: 0;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0;
}

.muted {
  color: var(--text-muted);
}

.dim {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #0090d2 0%, #42c6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #bb7916 0%, #f0b429 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── Nav ──────────────────────────────────────────── */

.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(24, 44, 57, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 144, 210, 0.12);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.brand-sub {
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-float {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  height: 0;
  pointer-events: none;
}

.lang-float-inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 2rem, var(--max));
  display: flex;
  justify-content: flex-end;
  padding-top: 0.4rem;
}

.lang-toggle {
  background: rgba(56, 81, 100, 0.6);
  border: 1px solid rgba(0, 144, 210, 0.25);
  border-radius: 20px;
  padding: 2px;
  display: flex;
  gap: 2px;
  pointer-events: auto;
}

.lang-btn {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 16px;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 144, 210, 0.4);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(0, 144, 210, 0.25);
  background: rgba(56, 81, 100, 0.5);
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 88vw);
  height: 100vh;
  background: var(--bg-dark);
  border-left: 1px solid rgba(0, 144, 210, 0.2);
  z-index: 60;
  transition: right 0.3s ease;
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #0090d2 0%, #006fa1 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 144, 210, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 144, 210, 0.45);
  background: linear-gradient(135deg, #00a8f0 0%, #0090d2 50%, #007bb5 100%);
  color: var(--white);
}

.btn-ghost {
  background: rgba(56, 81, 100, 0.5);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(56, 81, 100, 0.85);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, #bb7916 0%, #8a580e 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(187, 121, 22, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(187, 121, 22, 0.45);
  color: var(--bg-dark);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: none;
}

.btn-nav {
  padding: 0.4rem 1.05rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  z-index: 1;
  min-height: 85vh;
  padding: calc(var(--nav-h) + 4.75rem) 0 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(0, 144, 210, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 5% 80%, rgba(187, 121, 22, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(56, 81, 100, 0.6) 0%, transparent 70%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 44rem;
  margin-inline: auto;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.75;
  margin: 0 0 1.35rem;
}

.hero-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.35rem;
}

.hero-copy h1 {
  display: block;
  width: 100%;
  font-size: clamp(1.7rem, 4.6vw, 3.55rem);
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  max-width: 100%;
  overflow-wrap: break-word;
}

@media (min-width: 720px) {
  .hero-copy h1 span {
    white-space: nowrap;
  }
}

.hero-sub {
  font-size: clamp(1.15rem, 2.1vw, 1.4rem);
  color: var(--gold);
  line-height: 1.45;
  margin: 0 auto 1rem;
  max-width: 38rem;
}

.hero-copy .lead {
  margin-inline: auto;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1rem;
  margin-top: 2rem;
}

.hero-or {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.hero-note {
  margin-top: 1.35rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(187, 121, 22, 0.12);
  border: 1px solid rgba(187, 121, 22, 0.28);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
}

/* Mock canvas preview */

.preview-frame {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(56, 81, 100, 0.75) 0%, rgba(24, 44, 57, 0.95) 100%);
  border: 1px solid rgba(0, 144, 210, 0.25);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(0, 144, 210, 0.08);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.preview-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 144, 210, 0.5) 0%, rgba(187, 121, 22, 0.25) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.preview-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.preview-dot:nth-child(1) { background: #ff5f57; }
.preview-dot:nth-child(2) { background: #febc2e; }
.preview-dot:nth-child(3) { background: #28c840; }

.preview-title {
  margin-left: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: var(--mono);
}

.preview-canvas {
  position: relative;
  height: calc(100% - 36px);
  background:
    linear-gradient(rgba(0, 144, 210, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 144, 210, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  background-color: #1a3040;
}

.note-card {
  position: absolute;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 0.72rem;
  line-height: 1.35;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.note-card.yellow {
  background: #f5e6a8;
  color: #2a2410;
  width: 38%;
  top: 12%;
  left: 8%;
  transform: rotate(-2deg);
}

.note-card.doc {
  background: #f0efeb;
  color: #1f1f22;
  width: 42%;
  top: 28%;
  right: 8%;
  min-height: 38%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.note-card.img {
  background: linear-gradient(135deg, #2b5f7a, #1a3a4a);
  color: var(--text);
  width: 28%;
  bottom: 14%;
  left: 18%;
  height: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(66, 198, 255, 0.25);
}

.note-card .small {
  font-size: 0.65rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.export-chip {
  position: absolute;
  bottom: 10%;
  right: 10%;
  background: linear-gradient(135deg, #0090d2, #006fa1);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 144, 210, 0.4);
  font-family: var(--mono);
}

/* ── Stats ────────────────────────────────────────── */

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1.25rem 1rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0090d2, #42c6ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Cards / features ─────────────────────────────── */

.card {
  background: linear-gradient(145deg, rgba(56, 81, 100, 0.8) 0%, rgba(24, 44, 57, 0.95) 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 144, 210, 0.35) 0%, rgba(187, 121, 22, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 144, 210, 0.15), 0 0 30px rgba(187, 121, 22, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  background: rgba(0, 144, 210, 0.15);
  border: 1px solid rgba(0, 144, 210, 0.2);
}

.feature-icon.gold {
  background: rgba(187, 121, 22, 0.15);
  border-color: rgba(187, 121, 22, 0.25);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Problem / compare ────────────────────────────── */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.compare-col {
  border-radius: var(--radius);
  padding: 1.5rem;
}

.compare-col.them {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-col.us {
  background: linear-gradient(145deg, rgba(0, 144, 210, 0.12) 0%, rgba(24, 44, 57, 0.9) 100%);
  border: 1px solid rgba(0, 144, 210, 0.3);
}

.compare-col ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.compare-col li {
  margin-bottom: 0.45rem;
}

.compare-col li strong {
  color: var(--text);
}

/* ── Pricing ──────────────────────────────────────── */

.price-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
}

.price-card {
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background: linear-gradient(145deg, rgba(56, 81, 100, 0.75) 0%, rgba(24, 44, 57, 0.95) 100%);
  border: 1px solid rgba(0, 144, 210, 0.4);
  box-shadow: 0 0 40px rgba(0, 144, 210, 0.1);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0090d2, #42c6ff);
}

.price-card.pro {
  background: linear-gradient(145deg, rgba(187, 121, 22, 0.1) 0%, rgba(24, 44, 57, 0.9) 100%);
  border: 1px solid rgba(187, 121, 22, 0.25);
}

.price-tag {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.5rem;
}

.price-card.pro .price-tag {
  color: var(--gold-bright);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.25rem 0 0.5rem;
}

.price-amount span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
}

.price-list li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-list li::before {
  content: "→ ";
  color: var(--blue-bright);
  font-weight: 700;
}

.price-card.pro .price-list li::before {
  color: var(--gold-bright);
}

.price-footnote {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ── CTA band ─────────────────────────────────────── */

.cta-band {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0, 144, 210, 0.18), transparent 70%),
    linear-gradient(145deg, rgba(56, 81, 100, 0.6), rgba(24, 44, 57, 0.95));
  border: 1px solid rgba(0, 144, 210, 0.2);
}

.cta-band .lead {
  margin-inline: auto;
}

.cta-band .btn-row {
  justify-content: center;
}

/* ── FAQ ──────────────────────────────────────────── */

.faq {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 144, 210, 0.12);
  border-radius: 10px;
  padding: 1rem 1.15rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--blue-bright);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Footer ───────────────────────────────────────── */

.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(0, 144, 210, 0.12);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ── Reveal ───────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Legal pages ──────────────────────────────────── */

.legal-page {
  padding: calc(var(--nav-h) + 2.5rem) 0 4rem;
  position: relative;
  z-index: 1;
}

.legal-page article {
  max-width: 42rem;
}

.legal-page h1 {
  font-size: 2rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
}

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

.placeholder-banner {
  margin: 1rem 0 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(187, 121, 22, 0.12);
  border: 1px solid rgba(187, 121, 22, 0.3);
  color: var(--gold-bright);
  font-size: 0.9rem;
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 900px) {
  .feature-grid,
  .compare,
  .price-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 3.25rem);
  }

  .hero-mark {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }

  .preview-frame {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .nav-actions .btn {
    display: none;
  }

  .lang-float-inner {
    left: auto;
    right: 0.75rem;
    transform: none;
    width: auto;
  }

  .hero-copy h1 {
    font-size: 1.65rem;
  }

  .hero-eyebrow {
    letter-spacing: 0.16em;
    font-size: 0.68rem;
  }

  .btn-row,
  .hero-cta {
    flex-direction: column;
  }

  .btn-row .btn,
  .hero-cta .btn {
    width: 100%;
  }
}

/* i18n hide inactive language nodes */
[data-i18n-lang] {
  /* containers keep structure; text nodes swapped via JS */
}
