/* THE CALL TAKER */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', -apple-system, sans-serif; background: #000; color: #888; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --green: #00dc82;
  --green-dim: rgba(0,220,130,0.12);
  --green-glow: rgba(0,220,130,0.25);
  --border: rgba(255,255,255,0.08);
  --surface: rgba(255,255,255,0.03);
  --surface-hover: rgba(255,255,255,0.06);
  --text-1: #fff;
  --text-2: #a1a1aa;
  --text-3: #71717a;
}

/* ---- SKIP LINK ---- */
.skip-link { position: absolute; top: -100px; left: 16px; z-index: 9999; background: var(--green); color: #000; padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 14px; }
.skip-link:focus { top: 16px; }

/* ---- CONTAINER ---- */
.wrap { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---- NAV ---- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(0,0,0,0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.header.scrolled { background: rgba(0,0,0,0.85); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 52px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.logo-icon { width: 24px; height: 24px; background: var(--green); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 13px; height: 13px; }
.logo span { color: var(--green); }
.nav { display: none; align-items: center; gap: 24px; }
.nav a { font-size: 13px; font-weight: 500; color: var(--text-3); transition: color 0.15s; }
.nav a:hover, .nav a.active { color: #fff; }
@media (min-width: 768px) { .nav { display: flex; } }
.header-cta { display: none; padding: 6px 14px; background: #fff; color: #000; font-size: 13px; font-weight: 600; border-radius: 6px; transition: 0.15s; }
.header-cta:hover { background: #e4e4e7; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

.menu-toggle { display: flex; flex-direction: column; gap: 4px; padding: 8px; }
.menu-toggle span { width: 18px; height: 1.5px; background: #fff; border-radius: 1px; transition: 0.2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
@media (min-width: 768px) { .menu-toggle { display: none; } }

.mobile-nav { position: fixed; top: 52px; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.97); padding: 24px; display: flex; flex-direction: column; gap: 0; transform: translateX(100%); transition: transform 0.3s ease; z-index: 99; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-size: 16px; font-weight: 500; color: var(--text-2); padding: 16px 0; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: #fff; }
.mobile-nav .btn { margin-top: 20px; text-align: center; justify-content: center; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; border-radius: 8px; transition: 0.15s; white-space: nowrap; }
.btn-lg { padding: 12px 24px; font-size: 15px; }
.btn-md { padding: 10px 20px; font-size: 14px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: #e4e4e7; }
.btn-secondary { background: var(--surface); color: #fff; border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--surface-hover); border-color: rgba(255,255,255,0.15); }
.btn-green { background: var(--green); color: #000; }
.btn-green:hover { background: #00f090; }

/* ---- HERO ---- */
.hero { padding: 140px 0 100px; text-align: center; position: relative; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 180px 0 120px; } }

.hero::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(ellipse, var(--green-glow) 0%, transparent 70%); pointer-events: none; opacity: 0.4; }

.hero-label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--green-dim); border: 1px solid rgba(0,220,130,0.15); border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: 0.02em; margin-bottom: 32px; }

.hero h1 { font-size: clamp(40px, 7vw, 72px); font-weight: 700; color: #fff; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 20px; }
.hero h1 .gradient { background: linear-gradient(135deg, var(--green) 0%, #00a8ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: clamp(16px, 1.8vw, 18px); color: var(--text-2); line-height: 1.6; max-width: 480px; margin: 0 auto 36px; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-sub { font-size: 13px; color: var(--text-3); margin-top: 16px; }
.hero-sub a { color: var(--green); font-weight: 500; }

/* Hero glow (unused old class — hide) */
.hero-glow { display: none; }

/* ---- LOGOS / SOCIAL PROOF ---- */
.logos { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.logos p { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 24px; }
.logos-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; opacity: 0.5; }

/* ---- BENTO GRID (features) ---- */
.bento { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bento { grid-template-columns: repeat(3, 1fr); } }

.bento-item { background: #000; padding: 40px 32px; display: flex; flex-direction: column; gap: 12px; }
.bento-item:hover { background: rgba(255,255,255,0.02); }
.bento-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-dim); display: flex; align-items: center; justify-content: center; }
.bento-icon svg { width: 20px; height: 20px; color: var(--green); }
.bento-title { font-size: 15px; font-weight: 600; color: #fff; }
.bento-text { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ---- SECTION ---- */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }

.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
.section-desc { font-size: 16px; color: var(--text-2); line-height: 1.65; max-width: 520px; }

/* ---- STATS ROW ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; max-width: 600px; }
.stat { background: #000; padding: 32px 24px; text-align: center; }
.stat-value { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.stat-label { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* ---- BIG QUOTE / CALLOUT ---- */
.callout { border-left: 2px solid var(--green); padding-left: 24px; max-width: 600px; }
.callout p { font-size: clamp(18px, 2.5vw, 24px); font-weight: 500; color: #fff; line-height: 1.55; letter-spacing: -0.01em; }
.callout cite { display: block; margin-top: 16px; font-size: 14px; color: var(--text-3); font-style: normal; }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card { background: #000; padding: 40px 32px; display: flex; flex-direction: column; }
.pricing-card:hover { background: rgba(255,255,255,0.015); }
.pricing-card.featured { background: rgba(0,220,130,0.03); }

.pricing-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.pricing-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pricing-desc { font-size: 13px; color: var(--text-3); margin-bottom: 20px; }
.pricing-price { font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.pricing-price span { font-size: 14px; font-weight: 400; color: var(--text-3); }
.pricing-setup { font-size: 12px; color: var(--text-3); margin-top: 2px; margin-bottom: 0; }
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
.pricing-feature svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--green); }

/* hide old pricing elements */
.billing-toggle, .billing-annual-text, .billing-annual-badge, .trial-badge { display: none; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; text-align: left; font-size: 14px; font-weight: 600; color: #fff; }
.faq-question:hover { color: var(--green); }
.faq-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-3); transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ---- FOOTER ---- */
.footer { padding: 48px 0 24px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-brand p { color: var(--text-3); font-size: 13px; margin-top: 8px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-3); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 4px; padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-3); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ---- MOBILE BAR ---- */
.sticky-mobile-bar { display: none; }
@media (max-width: 767px) {
  .sticky-mobile-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: #000; border-top: 1px solid var(--border); }
  .sticky-mobile-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px; color: #fff; font-size: 14px; font-weight: 600; }
  .sticky-mobile-bar a:first-child { background: var(--green); color: #000; }
  .footer { padding-bottom: 72px; }
}

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ---- FORM STYLES (demo page) ---- */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; color: #fff; font-size: 14px; font-family: inherit; transition: border-color 0.15s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--green); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2371717a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-select option { background: #111; color: #fff; }

.demo-form-headline { font-size: 14px; font-weight: 600; color: var(--green); text-align: center; margin-bottom: 16px; }
.demo-form-reassurance { text-align: center; font-size: 12px; color: var(--text-3); margin-top: 10px; }

/* old page compat */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-subtitle { font-size: 16px; color: var(--text-2); max-width: 520px; line-height: 1.65; }
.card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.card-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 20px; height: 20px; color: var(--green); }
.card-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.card-text { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
input[type="range"] { -webkit-appearance: none; width: 100%; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.08); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--green); cursor: pointer; }
.urgency-bar, .founding-banner, .no-risk-grid, .addons-grid, .proof-strip, .comparison { display: none; }
.step-icon, .step-num { display: none; }
