/* DuckDive — Dark premium styles */
/* Color palette: dark navy bg, amber gold accent, electric teal, near-white text */

:root {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1c2128;
  --bg-card-hover: #21262d;
  --accent-gold: #f5a623;
  --accent-gold-dark: #d4881a;
  --accent-teal: #00d4ff;
  --text-primary: #e8e8e8;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;
  --border: #30363d;
  --border-accent: #f5a62340;
  --success: #3fb950;
  --danger: #f85149;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

a { color: var(--accent-gold); text-decoration: none; }
a:hover { color: var(--accent-gold-dark); }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.nav-logo .duck-icon {
  font-size: 1.6rem;
}

.nav-logo .logo-duck {
  color: var(--accent-gold);
}

.nav-cta {
  display: inline-block;
  background: var(--accent-gold);
  color: #0d1117;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.1s;
}

.nav-cta:hover {
  background: var(--accent-gold-dark);
  color: #0d1117;
  transform: translateY(-1px);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent-gold);
  color: #0d1117;
}

.btn-primary:hover {
  background: var(--accent-gold-dark);
  color: #0d1117;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: #0d1117;
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--accent-teal);
  color: #0d1117;
}

.btn-teal:hover {
  background: #00b8dc;
  color: #0d1117;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.25);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ── Hero ── */
#hero {
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-height: 75vh;
  overflow: visible;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-overlay {
  display: none;
}

.hero-content {
  padding: 60px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.hero-quack {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--accent-gold);
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-credibility {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ── Problem Section ── */
#problem {
  background: var(--bg-secondary);
}

.problem-quote {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-gold);
  padding: 24px 28px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.problem-quote footer {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: normal;
}

.problem-image {
  margin: 48px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.problem-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.problem-image-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 12px;
}

.research-list {
  list-style: none;
  margin: 28px 0;
}

.research-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.research-list li:last-child {
  border-bottom: none;
}

.research-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 700;
}

.stat-callout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.stat-box .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
}

.stat-box .stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 4px;
}

/* ── Solution Section ── */
#solution {
  background: var(--bg-primary);
}

.section-label {
  display: inline-block;
  color: var(--accent-teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.solution-image {
  margin: 48px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
}

.solution-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Engine Funnel */
.engine-funnel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  margin: 48px 0;
}

.engine-funnel h3 {
  text-align: center;
  margin-bottom: 36px;
  color: var(--accent-gold);
}

.funnel-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.funnel-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.funnel-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  width: 2px;
  height: calc(100% - 16px);
  background: linear-gradient(to bottom, var(--accent-gold), var(--accent-teal));
  opacity: 0.4;
}

.funnel-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  z-index: 1;
}

.funnel-step-content {
  padding: 8px 0 32px;
}

.funnel-step-content h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.funnel-step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.funnel-output {
  background: linear-gradient(135deg, var(--bg-secondary), #1a2035);
  border: 1px solid var(--accent-gold);
  border-radius: 10px;
  padding: 24px;
  margin-top: 8px;
  text-align: center;
}

.funnel-output h4 {
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.funnel-output p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ── Meet the Team ── */
.meet-team {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 40px;
  margin-top: 48px;
}

.meet-team-title {
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.meet-team-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  font-style: italic;
}

.agent-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.agent-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  text-align: center;
  transition: border-color 0.2s;
}

.agent-card:hover {
  border-color: var(--accent-gold);
}

.agent-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.agent-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agent-quote {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
}

.meet-team-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .agent-cards {
    grid-template-columns: 1fr;
  }
  .meet-team {
    padding: 24px 20px;
  }
}

/* ── Waitlist Section ── */
#waitlist {
  background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 50%, #0d1117 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}

#waitlist h2 {
  margin-bottom: 0;
}

#waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

#waitlist-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

#waitlist-form input[type="email"]:focus {
  border-color: var(--accent-teal);
}

#waitlist-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

#waitlist-form button {
  padding: 14px 24px;
  background: var(--accent-teal);
  color: #0d1117;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

#waitlist-form button:hover {
  background: #00b8dc;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  #waitlist-form {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── Email Capture ── */
#email-capture {
  background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 50%, #0d1117 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
}

#email-capture h2 {
  margin-bottom: 12px;
}

#email-capture p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

#notify-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

#notify-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

#notify-form input[type="email"]:focus {
  border-color: var(--accent-gold);
}

#notify-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

#notify-form button {
  padding: 14px 24px;
  background: var(--accent-gold);
  color: #0d1117;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

#notify-form button:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 16px 24px;
  border-radius: 8px;
  margin-top: 16px;
  font-weight: 600;
}

/* ── Pricing Section ── */
#pricing {
  background: var(--bg-secondary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child {
  color: var(--text-muted);
  width: 35%;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
  color: var(--text-secondary);
  text-align: center;
}

.comparison-table th:last-child {
  color: var(--accent-gold);
  text-align: center;
  background: rgba(245, 166, 35, 0.08);
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.comparison-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  text-align: center;
}

.comparison-table td:last-child {
  text-align: center;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(245, 166, 35, 0.04);
}

.comparison-table tr:last-child td {
  border-bottom: none;
  font-size: 1.05rem;
  font-weight: 800;
}

.comparison-table tr:last-child td:first-child {
  color: var(--text-primary);
}

.comparison-table tr:last-child td:last-child {
  color: var(--accent-gold);
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid var(--accent-gold);
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.05) 100%);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: #0d1117;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-tier-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.pricing-tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-tier-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-includes-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 12px;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 0.8rem;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.guarantee {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.guarantee strong {
  color: var(--text-primary);
}

/* ── Sample Reports ── */
#samples {
  background: var(--bg-primary);
}

.samples-grid {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.sample-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.sample-card::before {
  content: 'Discovered via DuckDive Deep Dive';
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.6;
}

.sample-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.sample-card-header h3 {
  font-size: 1.05rem;
  color: var(--text-primary);
  flex: 1;
}

.confidence-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(63, 185, 80, 0.12);
  border: 1px solid rgba(63, 185, 80, 0.3);
  color: var(--success);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.sample-field {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 14px 16px;
}

.sample-field-label {
  font-size: 0.7rem;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.sample-field-value {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.sample-field-value strong {
  color: var(--text-primary);
}

.sample-complexity {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.sample-risk {
  background: var(--bg-secondary);
  border-left: 3px solid var(--accent-gold);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  margin-top: 16px;
  margin-bottom: 32px;
}

.sample-risk-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.sample-risk p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ── OpenClaw / AiCIV Punchline ── */
#openclaw {
  background: var(--bg-secondary);
}

.openclaw-image {
  margin: 48px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
}

.openclaw-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.openclaw-meta-box {
  background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 100%);
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  padding: 36px 40px;
  margin: 48px 0;
  text-align: center;
}

.openclaw-meta-box blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0;
}

.openclaw-meta-box blockquote strong {
  color: var(--accent-gold);
  font-style: normal;
}

/* ── FAQ ── */
#faq {
  background: var(--bg-primary);
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-icon {
  color: var(--accent-gold);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── Final CTA ── */
#final-cta {
  background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 50%, #0d1117 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.final-cta-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 48px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-option {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.cta-option:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.cta-option.featured-cta {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.07) 100%);
}

.cta-option-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.cta-option-description {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cta-option-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.trust-item .checkmark {
  color: var(--success);
  font-weight: 700;
}

/* ── Footer ── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

footer p {
  margin-bottom: 8px;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

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

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

/* ── Utilities ── */
.text-gold { color: var(--accent-gold); }
.text-teal { color: var(--accent-teal); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ── Mobile Menu ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  section { padding: 60px 0; }

  .hero-image-container { height: 55vh; }

  .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }

  .sample-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }

  .engine-funnel {
    padding: 24px 20px;
  }

  .openclaw-meta-box {
    padding: 24px 20px;
  }

  .final-cta-buttons {
    grid-template-columns: 1fr;
  }

  .trust-signals {
    flex-direction: column;
    align-items: center;
  }

  #notify-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 380px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-container { height: 45vh; }

  .comparison-table th:nth-child(2),
  .comparison-table td:nth-child(2) {
    display: none;
  }
}

/* ── Mobile Menu Open State ── */
@media (max-width: 768px) {
  nav.mobile-open .nav-cta {
    display: block;
    text-align: center;
    margin-top: 12px;
  }
  nav.mobile-open .nav-inner {
    flex-wrap: wrap;
  }
  nav.mobile-open .nav-inner::after {
    content: '';
    flex-basis: 100%;
    height: 0;
  }
}

/* ── Hero Trust Signals ── */
.hero-trust-signals {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.hero-trust-signals span {
  color: var(--success);
  font-size: 0.85rem;
}

/* ── Testimonials ── */
#social-proof {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-quote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.testimonial-quote::before { content: '"'; color: var(--accent-gold); font-size: 2rem; line-height: 0; vertical-align: -0.6em; margin-right: 4px; }
.testimonial-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.testimonials-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Pricing Trust Signals ── */
.pricing-trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--success);
}

/* ── Who Is This For? Section ── */
#who-is-this-for {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.audience-callout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-callout-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent-gold);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audience-callout-icon {
  font-size: 2rem;
}
.audience-callout-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.audience-callout-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.audience-callout-footer {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  padding: 20px 24px;
}
.audience-callout-footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.audience-callout-footer strong {
  color: var(--accent-gold);
}
@media (max-width: 768px) {
  .audience-callout-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Live Engine Results ── */
.live-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .live-results-grid {
    grid-template-columns: 1fr;
  }
}

.live-niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}

.live-niche-card:hover {
  border-color: var(--accent-gold);
}

.live-niche-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.live-niche-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  flex: 1;
}

.niche-score-badge {
  background: var(--accent-gold);
  color: #0d1117;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.niche-silo-tag {
  display: inline-block;
  color: var(--accent-teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.niche-audience {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.niche-insight {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  border-left: 3px solid var(--accent-gold);
  padding-left: 12px;
}

.niche-cta-link {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
  padding-top: 4px;
}

.niche-cta-link:hover {
  text-decoration: underline;
  color: var(--accent-gold-dark);
}

.live-results-cta-row {
  margin-top: 40px;
  text-align: center;
}
