/* FutterRadar Theme */
:root {
  --bg: #FAFAF5;
  --bg-alt: #F4EFE6;
  --fg: #1A1A18;
  --ink: #1A1A18;
  --ink-light: #4a5568;
  --accent: #D4520A;
  --accent-dark: #B34408;
  --green: #1A3A2A;
  --green-light: #243D2F;
  --muted: #6B6B60;
  --border: #E0DDD4;
  --card-bg: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-mark {
  font-size: 20px;
  color: var(--accent);
}
.logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 80px 24px 80px;
  background: var(--bg);
}
.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #5CE878;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  max-width: 100px;
  line-height: 1.4;
  margin-top: 3px;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  margin: 0 28px 0 0;
}

/* Radar Widget */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.radar-widget {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  background: var(--green);
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto;
}
.radar-sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg at 50% 50%,
    transparent 0deg,
    rgba(212, 82, 10, 0.15) 30deg,
    transparent 60deg);
  animation: sweep 3s linear infinite;
}
@keyframes sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.radar-blips {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blip {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.blip-1 { top: 22%; right: 18%; }
.blip-2 { bottom: 30%; left: 15%; }
.blip-3 { top: 38%; left: 22%; }
.blip-hot {
  background: rgba(212, 82, 10, 0.25);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(212, 82, 10, 0.3);
}
.blip-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.blip-retailer {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blip-badge {
  font-size: 9px;
  color: var(--accent);
  font-weight: 600;
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 2px;
}
.radar-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.radar-icon {
  font-size: 40px;
  color: var(--accent);
}
.radar-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* Alert Card */
.hero-alert-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.alert-text {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
}

/* How It Works */
.how-it-works {
  padding: 96px 24px;
  background: var(--green);
}
.hiw-inner {
  max-width: 960px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 56px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: rgba(212, 82, 10, 0.5);
  line-height: 1;
  letter-spacing: -2px;
}
.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.step-connector {
  padding: 40px 24px 0;
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 96px 24px;
  background: var(--bg);
}
.features-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-card-main {
  background: var(--fg);
  border-color: var(--fg);
}
.feature-card-main h3,
.feature-card-main p { color: #fff; }
.feature-card-main .feature-icon svg path,
.feature-card-main .feature-icon svg circle { stroke: var(--accent); }
.feature-card-main em { color: rgba(255,255,255,0.7); font-style: normal; }
.feature-card-wide {
  grid-column: 1 / -1;
  background: var(--card-bg);
}
.feature-icon { flex-shrink: 0; }
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  padding: 96px 24px;
  background: #F4EFE6;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 120px;
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
  opacity: 0.5;
}
blockquote {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 16px;
}
.quote-bold {
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  margin-top: 24px;
}
.manifesto-data {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.data-point {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.data-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--fg);
  letter-spacing: -1.5px;
}
.data-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 96px 24px;
  background: var(--green);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 40px;
}
.closing-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #5CE878;
  border-radius: 50%;
}

/* Footer */
.footer {
  padding: 40px 24px;
  background: var(--fg);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
  line-height: 1.5;
}
.footer-meta {
  text-align: right;
}
.footer-note, .footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.footer-note { margin-bottom: 4px; }

/* Section sub-headline helper */
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}

/* Deal Grid */
.deal-grid {
  padding: 96px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.dg-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.deal-grid .section-headline {
  color: var(--fg);
}
.deal-grid .section-label {
  color: var(--accent);
}
.dg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.deal-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.deal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  width: fit-content;
}
.deal-badge--good { background: #E8F5E2; color: #1A6634; }
.deal-badge--best { background: var(--accent); color: #fff; }
.deal-badge--wait { background: #FFF3E0; color: #8B5E0A; }
.deal-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.deal-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}
.deal-product {
  font-size: 13px;
  color: var(--muted);
}
.deal-prices {
  display: flex;
  gap: 16px;
}
.deal-price-now, .deal-price-low {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  font-weight: 500;
}
.price-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}
.price-low { color: var(--accent); }
.price-unit {
  font-size: 11px;
  color: var(--muted);
}
.deal-retailer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.retailer-label { color: var(--muted); }
.retailer-name {
  font-weight: 600;
  color: var(--green);
}
.dg-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding-top: 8px;
}

/* Pricing */
.pricing {
  padding: 96px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}
.pricing .section-headline { color: var(--fg); }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 82, 10, 0.1);
}
.pricing-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-top: 8px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-amount .amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--fg);
  letter-spacing: -1px;
}
.pricing-amount .period {
  font-size: 16px;
  color: var(--muted);
}
.pricing-crossed {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  min-height: 20px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}
.pricing-features li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--fg);
  transition: background 0.15s;
  margin-top: auto;
}
.pricing-cta--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pricing-cta--primary:hover { background: var(--accent-dark); }
.pricing-cta:not(.pricing-cta--primary):hover { background: var(--bg-alt); }
.pricing-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}
.pricing-fine-print {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* Waitlist */
.waitlist {
  padding: 96px 24px;
  background: var(--green);
}
.waitlist-inner {
  max-width: 680px;
  margin: 0 auto;
}
.waitlist .section-label { color: var(--accent); }
.waitlist .section-headline {
  color: #fff;
  margin-bottom: 16px;
}
.waitlist-sub {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.waitlist-sub strong { color: #fff; }
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-field .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  font-family: 'Figtree', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}
.form-field select option { color: var(--fg); background: #fff; }
.form-field input::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus,
.form-field select:focus { border-color: var(--accent); }
.waitlist-btn {
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.waitlist-btn:hover:not(:disabled) { background: var(--accent-dark); }
.waitlist-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.form-gdpr {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.form-gdpr a { color: rgba(255,255,255,0.6); }
.waitlist-success {
  text-align: center;
  padding: 48px 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}
.success-icon {
  width: 56px;
  height: 56px;
  background: #5CE878;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}
.waitlist-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}
.waitlist-success p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}
.success-founding {
  color: #fff;
  background: rgba(212, 82, 10, 0.25);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
}
.success-founding strong { color: #fff; }
.waitlist-error {
  padding: 12px 16px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 8px;
}
.waitlist-error p { color: #fca5a5; font-size: 14px; }

/* Footer links + cookie bar */
.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 999;
}
.cookie-bar p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}
.cookie-bar a { color: rgba(255,255,255,0.8); }
.cookie-ok {
  flex-shrink: 0;
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
}

/* Founding-member counter (hero) */
.founding-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 82, 10, 0.12);
  border: 1px solid rgba(212, 82, 10, 0.25);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}
.founding-counter-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Pay-intent step (waitlist step 2) */
.intent-step {
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.intent-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.intent-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.intent-check {
  width: 40px;
  height: 40px;
  background: #5CE878;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.intent-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.intent-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.intent-offer {
  background: rgba(212, 82, 10, 0.15);
  border: 1px solid rgba(212, 82, 10, 0.3);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.intent-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.intent-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  letter-spacing: -1px;
}
.intent-period {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}
.intent-vs {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}
.intent-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}
.intent-desc strong { color: #fff; }
.intent-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.intent-btn-primary {
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.intent-btn-primary:hover:not(:disabled) { background: var(--accent-dark); }
.intent-btn-primary:disabled { opacity: 0.7; cursor: not-allowed; }
.intent-btn-secondary {
  padding: 14px 24px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: none;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Figtree', sans-serif;
  cursor: pointer;
  width: 100%;
  transition: color 0.15s;
}
.intent-btn-secondary:hover:not(:disabled) { color: rgba(255,255,255,0.8); }
.intent-btn-secondary:disabled { cursor: not-allowed; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right {
    order: -1;
  }
  .radar-widget { max-width: 280px; }
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .steps {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: auto; }
  .dg-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px; }
  .hero-headline { font-size: 36px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { height: 24px; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .dg-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-bar { flex-direction: column; align-items: flex-start; }
}
