:root {
  --ov-bg: #0d0d12;
  --ov-surface: #16161f;
  --ov-border: #2a2a3a;
  --ov-accent: #8b6cf7;
  --ov-accent-dim: #5e4ab0;
  --ov-text: #e8e8f0;
  --ov-text-muted: #8888a8;
  --ov-gold: #c9a96e;
}

body.ov-body { background: var(--ov-bg); color: var(--ov-text); font-family: 'Georgia', serif; min-height: 100vh; display: flex; flex-direction: column; }

.ov-navbar { background: rgba(13,13,18,0.95); border-bottom: 1px solid var(--ov-border); backdrop-filter: blur(8px); }
.ov-brand { color: var(--ov-gold) !important; font-size: 1.4rem; letter-spacing: 0.1em; }
.nav-link { color: var(--ov-text-muted) !important; }
.nav-link:hover { color: var(--ov-text) !important; }
.ov-btn-primary { background: var(--ov-accent); color: #fff !important; border-radius: 4px; padding: 6px 18px !important; }
.ov-btn-primary:hover { background: var(--ov-accent-dim); }
.ov-btn-ghost { border: 1px solid var(--ov-border); border-radius: 4px; padding: 6px 16px !important; }

/* Hero */
.ov-hero { padding: 120px 0 80px; text-align: center; }
.ov-hero-title { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--ov-text); letter-spacing: 0.02em; margin-bottom: 1.5rem; }
.ov-hero-sub { font-size: 1.2rem; color: var(--ov-text-muted); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; }
.ov-hero-cta { background: var(--ov-accent); color: #fff; border: none; padding: 14px 42px; font-size: 1.1rem; border-radius: 4px; text-decoration: none; display: inline-block; }
.ov-hero-cta:hover { background: var(--ov-accent-dim); color: #fff; }

/* Cards */
.ov-card { background: var(--ov-surface); border: 1px solid var(--ov-border); border-radius: 8px; padding: 2rem; }
.ov-card-title { color: var(--ov-gold); font-size: 1.1rem; margin-bottom: 0.75rem; }

/* Section */
.ov-section { padding: 80px 0; }
.ov-section-title { font-size: 2rem; margin-bottom: 1rem; color: var(--ov-text); }
.ov-section-sub { color: var(--ov-text-muted); margin-bottom: 3rem; }

/* Session */
.ov-session-response { background: var(--ov-surface); border: 1px solid var(--ov-border); border-radius: 8px; padding: 2.5rem; }
.ov-section-label { font-size: 0.75rem; letter-spacing: 0.15em; color: var(--ov-accent); text-transform: uppercase; margin-bottom: 0.5rem; }
.ov-divider { border-color: var(--ov-border); margin: 2rem 0; }
.ov-key-insight { border-left: 3px solid var(--ov-gold); padding-left: 1.25rem; color: var(--ov-text); font-style: italic; font-size: 1.05rem; }

/* Pricing */
.ov-price { font-size: 2.5rem; color: var(--ov-gold); }
.ov-price-period { font-size: 0.9rem; color: var(--ov-text-muted); }
.ov-featured { border-color: var(--ov-accent); }
.ov-badge { background: var(--ov-accent); color: #fff; font-size: 0.75rem; padding: 2px 10px; border-radius: 20px; }

/* Forms */
.ov-input { background: var(--ov-surface); border: 1px solid var(--ov-border); color: var(--ov-text); border-radius: 4px; padding: 12px 16px; width: 100%; font-size: 1rem; }
.ov-input:focus { border-color: var(--ov-accent); outline: none; box-shadow: 0 0 0 2px rgba(139,108,247,0.2); }
.ov-textarea { min-height: 120px; resize: vertical; }

/* Footer */
.ov-footer { background: var(--ov-surface); border-top: 1px solid var(--ov-border); }
.ov-footer-text { font-size: 0.8rem; color: var(--ov-text-muted); }
.ov-footer-links a { color: var(--ov-text-muted); font-size: 0.85rem; text-decoration: none; margin: 0 6px; }
.ov-footer-links a:hover { color: var(--ov-text); }

/* Alert */
.ov-alert { padding: 12px 16px; border-radius: 4px; margin-bottom: 1rem; border: 1px solid; }
.ov-alert-error { background: rgba(220,53,69,0.1); border-color: rgba(220,53,69,0.3); color: #f8a0aa; }

/* Oracle cards */
.ov-oracle-card { transition: border-color 0.2s, transform 0.2s; }
.ov-oracle-card:hover { border-color: var(--ov-accent); transform: translateY(-2px); }
.ov-oracle-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 2px solid var(--ov-border); }
.ov-oracle-card:hover .ov-oracle-img { border-color: var(--ov-gold); }
.ov-oracle-tone { color: var(--ov-accent); font-size: 0.8rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
