:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --text: #1c1c1a;
  --text-muted: #6e6e6a;
  --text-faint: #a3a39e;
  --border: #eaeae6;
  --gold: #b8943f;
  --gold-soft: #f5f0e4;
  --gold-glow: rgba(184, 148, 63, 0.14);
  --green: #346538;
  --green-soft: #edf3ec;
  --red-soft: #fdebec;
  --red-text: #9f2f2d;
  --font: "DM Sans", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: "JetBrains Mono", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.025;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.triad-card.reveal { transition-delay: calc(var(--i, 0) * 0.1s); }
.guide-item.reveal { transition-delay: calc(var(--i, 0) * 0.08s); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 20px 24px;
  display: flex;
  justify-content: center;
}

.nav-island {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  margin-right: 12px;
}

.nav-logo img { border-radius: 6px; }

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

.nav-btn {
  padding: 8px 18px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  margin-left: 8px;
  transition: background 0.2s, transform 0.2s var(--ease);
}

.nav-btn:hover { background: #333; }
.nav-btn:active { transform: scale(0.97); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Hero */
.hero {
  padding: 140px 24px 80px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.hero-inner { max-width: 680px; margin: 0 auto 64px; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--text-muted);
}

.hero-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 auto 32px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--text);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.btn-gold:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn-gold:active { transform: scale(0.98); }
.btn-gold.full { width: 100%; }

.btn-text {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.btn-text:hover { color: var(--text); }

/* Hero visual */
.hero-visual {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-a {
  width: 400px;
  height: 400px;
  background: var(--gold-glow);
  top: -60px;
  left: 10%;
}

.glow-b {
  width: 300px;
  height: 300px;
  background: rgba(184, 148, 63, 0.08);
  bottom: -40px;
  right: 5%;
}

.mockup-shell {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 24px 64px rgba(0, 0, 0, 0.06);
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #f5f5f3;
}

.mockup-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dddcd8;
}

.mockup-url {
  margin-left: 12px;
  font-size: 11px;
  color: var(--text-faint);
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex: 1;
  max-width: 200px;
}

.mockup-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  min-height: 280px;
}

.mockup-article {
  padding: 32px;
}

.mock-before {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

.mock-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

.mock-divider::before,
.mock-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.mock-after {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

.br-bold { font-weight: 700; color: var(--text); }

.mock-popup {
  border-left: 1px solid var(--border);
  padding: 16px;
  background: #fafaf8;
}

.popup-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.popup-badge {
  margin-left: auto;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 2px 7px;
  border-radius: 999px;
}

.popup-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

.mini-toggle {
  width: 36px;
  height: 20px;
  background: #e4e3df;
  border-radius: 999px;
  position: relative;
}

.mini-toggle.on { background: var(--gold); }

.mini-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mini-toggle.on::after { left: 18px; }

.popup-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
  display: block;
  margin-bottom: 8px;
}

.popup-levels {
  display: flex;
  gap: 4px;
}

.popup-levels span {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  padding: 6px 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-faint);
}

.popup-levels .active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto 100px;
  padding: 0 24px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.stat {
  background: var(--surface);
  padding: 28px 24px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.stat span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 100px;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Triad */
.triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.triad-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.triad-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.triad-featured {
  border-color: rgba(184, 148, 63, 0.25);
  background: linear-gradient(180deg, #fff 0%, #fdfbf6 100%);
}

.triad-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.triad-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.triad-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA band */
.cta-band {
  position: relative;
  margin: 0 24px 100px;
  max-width: calc(var(--max) - 48px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

.cta-band-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, var(--gold-glow), transparent),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(184, 148, 63, 0.06), transparent);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  text-align: center;
  padding: 72px 40px;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.cta-band strong { color: var(--text); }

/* Feature rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto 100px;
  padding: 0 24px;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-copy h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.feature-copy p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 42ch;
}

/* UI mockups */
.ui-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
}

.ui-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.ui-row.header { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); }
.ui-accent { color: var(--gold); text-transform: none; letter-spacing: 0; font-weight: 600; }

.ui-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}

.ui-lvl {
  padding: 8px 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  cursor: default;
}

.ui-lvl.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.ui-preview {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 16px;
  background: var(--bg);
  border-radius: 10px;
}

.ui-page {
  display: grid;
  grid-template-columns: 1fr 80px;
  grid-template-rows: auto 1fr;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  min-height: 220px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
}

.ui-nav {
  grid-column: 1 / -1;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-faint);
  transition: opacity 0.4s var(--ease);
}

.ui-content {
  padding: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

.ui-sidebar {
  padding: 10px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 10px;
  color: var(--text-faint);
  writing-mode: vertical-rl;
  text-align: center;
  transition: opacity 0.4s var(--ease);
}

.faded { opacity: 0.3; }

.ui-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
}

.ui-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.ui-table-row:last-child { border-bottom: none; }

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

.pill {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.pill.green { background: var(--green-soft); color: var(--green); }
.pill.gray { background: var(--bg); color: var(--text-muted); }
.pill.red { background: var(--red-soft); color: var(--red-text); }

/* Quote */
.quote-section {
  padding: 100px 24px;
  text-align: center;
}

.quote-inner { max-width: 560px; margin: 0 auto; }

.quote-logo {
  margin-bottom: 32px;
  opacity: 0.9;
}

.quote-inner blockquote p {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.quote-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Guide */
.guide-list {
  max-width: 640px;
  margin: 0 auto;
}

.guide-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.guide-item:last-child { border-bottom: none; }

.guide-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  padding-top: 2px;
}

.guide-item h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.guide-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  align-items: center;
}

.pricing-left h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 12px 0;
}

.pricing-left p {
  font-size: 14px;
  color: var(--text-muted);
}

.price-num {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.price-label {
  display: block;
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
}

.price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0 6px 18px;
  position: relative;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1.5px solid var(--gold);
}

.price-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 12px;
}

/* Schulte section */
.schulte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.schulte-demo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.schulte-cells {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.schulte-cells .center-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin: auto;
  align-self: center;
}

.schulte-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.schulte-benefits li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.schulte-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1.5px solid var(--gold);
}

/* Pricing tiers */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(184, 148, 63, 0.12);
}

.tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
}

.tier-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tier-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.tier-prices {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.tier-amount {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.tier-period {
  font-size: 13px;
  color: var(--text-faint);
}

.tier-or {
  font-size: 12px;
  color: var(--text-faint);
}

.tier-note {
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 16px;
  min-height: 16px;
}

.tier-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.tier-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0 5px 16px;
  position: relative;
}

.tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
}

.tier-actions {
  display: flex;
  gap: 8px;
}

.tier-actions .btn-outline,
.tier-actions .btn-gold {
  flex: 1;
  text-align: center;
  font-size: 13px;
  padding: 10px 12px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
}

.pricing-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 24px;
}

.section-lead {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-top: 12px;
}

/* FAQ */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: var(--text-faint);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item summary:hover { color: var(--gold); }

.faq-item p {
  padding: 0 0 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Install */
.install-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.install-card h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

.install-steps {
  padding-left: 20px;
}

.install-steps li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  line-height: 1.6;
}

.install-steps code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--bg);
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid var(--border);
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 100px 24px;
  background: var(--text);
  color: #fff;
  margin-top: 40px;
}

.final-logo {
  margin-bottom: 28px;
  filter: brightness(1.2);
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 32px;
}

.final-cta .btn-gold {
  background: #fff;
  color: var(--text);
}

.final-cta .btn-gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-faint);
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.footer-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 8px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .triad { grid-template-columns: 1fr; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .schulte-grid { grid-template-columns: 1fr; }
  .mockup-body { grid-template-columns: 1fr; }
  .mock-popup { border-left: none; border-top: 1px solid var(--border); }
}

@media (max-width: 600px) {
  .hero { padding-top: 120px; }
  .stats-bar { grid-template-columns: 1fr; }
  .cta-band-inner { padding: 48px 24px; }
  .site-footer { flex-direction: column; gap: 12px; }
}
