:root {
  --ink: #f0faf6;
  --muted: #7aaa9a;
  --line: rgba(0,200,150,0.12);
  --surface: #060d0b;
  --soft: rgba(255,255,255,0.025);
  --brand: #00c896;
  --brand-dark: #00a87e;
  --accent: #f59e0b;
  --navy: #0a1a14;
  --shadow: 0 24px 70px rgba(0,0,0,0.4);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #060d0b; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #060d0b;
  line-height: 1.6;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(0,200,150,0.7); outline-offset: 3px; }

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-padding { padding: 96px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(6,13,11,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,200,150,0.1);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.03em; color: #f0faf6; }
.brand-logo { flex-shrink: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #00c896, #00a87e);
  box-shadow: 0 8px 20px rgba(0,200,150,0.3);
}
.site-nav { display: flex; align-items: center; gap: 24px; font-size: 0.94rem; font-weight: 700; color: #c8e8df; }
.site-nav a { color: #c8e8df; transition: color 0.2s; }
.site-nav a:hover { color: var(--brand); }
.nav-cta { padding: 10px 20px; border-radius: 999px; color: #fff !important; background: var(--brand); box-shadow: 0 8px 20px rgba(0,200,150,0.25); transition: background 0.2s, transform 0.2s !important; }
.nav-cta:hover { background: var(--brand-dark) !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: #c8e8df; border-radius: 2px; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 80px 0 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(0,200,150,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--brand); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 0.94; letter-spacing: -0.07em; color: #f0faf6; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02; letter-spacing: -0.055em; color: #f0faf6; }
h3 { margin-bottom: 10px; font-size: 1.15rem; letter-spacing: -0.025em; color: #e0f5ee; }
.hero-lede { max-width: 680px; color: #7aaa9a; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 16px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.primary { color: #fff; background: var(--brand); box-shadow: 0 16px 32px rgba(0,200,150,0.25); }
.primary:hover { background: var(--brand-dark); box-shadow: 0 20px 40px rgba(0,200,150,0.3); }
.secondary { color: #e0f5ee; background: rgba(255,255,255,0.06); border-color: rgba(0,200,150,0.25); }
.secondary:hover { background: rgba(255,255,255,0.1); }
.full { width: 100%; }
.integration-note { color: var(--muted); font-size: 0.92rem; }

/* HERO PANEL */
.hero-panel { padding: 28px; border-radius: 28px; background: rgba(10,26,20,0.95); color: #fff; box-shadow: var(--shadow); border: 1px solid rgba(0,200,150,0.15); }
.panel-top { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: #a7f3d0; font-weight: 800; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 8px rgba(52,211,153,0.15); }
.call-card { display: flex; justify-content: space-between; gap: 18px; padding: 20px; border-radius: 20px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); }
.call-card p { margin: 4px 0 0; color: #a7c4bc; }
.call-card span { align-self: flex-start; padding: 6px 10px; border-radius: 999px; color: #06291f; background: #a7f3d0; font-size: 0.76rem; font-weight: 800; }
.timeline { display: grid; gap: 14px; margin-top: 20px; }
.timeline div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.timeline span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 12px; color: #082f49; background: var(--accent); font-weight: 900; }
.timeline p { margin: 4px 0 0; color: #a7c4bc; }

/* SECTIONS */
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading.narrow { margin-left: auto; margin-right: auto; text-align: center; }
.steps-grid, .feature-grid, .pricing-grid, .quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.steps-grid article, .feature-card, .price-card, blockquote, .use-grid article {
  padding: 28px;
  border: 1px solid rgba(0,200,150,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.steps-grid article:hover, .feature-card:hover, .price-card:hover, .use-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,200,150,0.08);
  border-color: rgba(0,200,150,0.2);
}
.steps-grid span, .icon { display: inline-grid; place-items: center; margin-bottom: 22px; width: 48px; height: 48px; border-radius: 16px; color: #fff; background: var(--brand); font-weight: 900; }
.steps-grid p, .feature-card p, .use-grid p, .price-card p { color: var(--muted); }
.feature-band, .pricing, .faq { background: rgba(255,255,255,0.02); border-top: 1px solid rgba(0,200,150,0.07); border-bottom: 1px solid rgba(0,200,150,0.07); }
.icon { background: rgba(0,200,150,0.12); color: var(--brand); }
.benefit-list { display: grid; gap: 18px; }
.benefit-list div { padding-left: 20px; border-left: 4px solid var(--accent); }
.benefit-list p { margin: 4px 0 0; color: var(--muted); }
.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* PRICING */
.price-card.featured { border: 2px solid var(--brand); transform: translateY(-10px); box-shadow: 0 24px 60px rgba(0,200,150,0.15); }
.price-card.featured:hover { transform: translateY(-14px); }
.price { color: #f0faf6 !important; font-size: 2.3rem; font-weight: 900; letter-spacing: -0.05em; }
.badge { display: inline-block; margin-bottom: 14px; padding: 6px 10px; border-radius: 999px; color: #063a35; background: #a7f3d0; font-size: 0.78rem; font-weight: 900; }
blockquote { margin: 0; font-size: 1rem; color: var(--muted); }
cite { display: block; margin-top: 16px; color: #c8e8df; font-style: normal; font-weight: 800; }

/* FAQ */
.faq-list { display: grid; gap: 14px; }
details { padding: 22px; border: 1px solid rgba(0,200,150,0.1); border-radius: 18px; background: rgba(255,255,255,0.03); transition: border-color 0.2s; }
details:hover { border-color: rgba(0,200,150,0.22); }
details[open] { border-color: rgba(0,200,150,0.25); background: rgba(0,200,150,0.04); }
summary { cursor: pointer; font-weight: 800; color: #e0f5ee; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: '+'; color: var(--brand); font-size: 1.3rem; font-weight: 400; }
details[open] summary::after { content: '−'; }
details p { margin: 14px 0 0; color: var(--muted); }

/* CTA / FORM SECTION */
.cta-section { background: linear-gradient(135deg, #040a08 0%, #071a12 50%, #040a08 100%); border-top: 1px solid rgba(0,200,150,0.1); }
.cta-section .eyebrow { color: var(--brand); }
.cta-section p { color: #7aaa9a; }
.form-note { padding: 14px 16px; border: 1px solid rgba(0,200,150,0.2); border-radius: 18px; background: rgba(0,200,150,0.06); font-weight: 700; color: #a7f3d0; }
.demo-form { padding: 28px; border-radius: 28px; background: rgba(10,26,20,0.9); border: 1px solid rgba(0,200,150,0.15); box-shadow: var(--shadow); color: #e0f5ee; }
.ready-banner { margin-bottom: 18px; padding: 12px 14px; border-radius: 14px; color: #a7f3d0; background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.2); font-weight: 800; }
.hidden-field { display: none; }
.demo-form label { display: grid; gap: 8px; margin-bottom: 14px; color: #c8e8df; font-weight: 800; }
.demo-form input, .demo-form textarea { width: 100%; border: 1px solid rgba(0,200,150,0.2); border-radius: 14px; padding: 13px 14px; color: #e0f5ee; background: rgba(255,255,255,0.05); transition: border-color 0.2s; }
.demo-form input::placeholder, .demo-form textarea::placeholder { color: rgba(200,232,223,0.35); }
.demo-form input:focus, .demo-form textarea:focus { border-color: var(--brand); outline: 3px solid rgba(0,200,150,0.15); background: rgba(255,255,255,0.07); }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--brand) !important; font-weight: 800; }
.form-status[data-state="error"] { color: #f87171 !important; }
.form-status[data-state="success"] { color: var(--brand) !important; }
.form-status[data-state="loading"] { color: var(--accent) !important; }
.thank-you-card { padding: 28px; border-radius: 28px; background: rgba(10,26,20,0.9); border: 1px solid rgba(0,200,150,0.2); box-shadow: var(--shadow); }
.thank-you-card .eyebrow { color: var(--brand); }
.thank-you-card p { color: var(--muted); }

/* BOOKING */
.booking-section { background: rgba(255,255,255,0.015); border-top: 1px solid rgba(0,200,150,0.07); }
.booking-section .form-note.light { color: var(--muted); background: rgba(255,255,255,0.04); border-color: rgba(0,200,150,0.12); }
.calendly-card { overflow: hidden; border: 1px solid rgba(0,200,150,0.12); border-radius: 28px; background: rgba(10,26,20,0.8); box-shadow: var(--shadow); }
.calendly-inline-widget { min-width: 320px; height: 720px; }
.calendly-fallback { margin: 0; padding: 16px 20px 20px; color: var(--muted); font-weight: 700; text-align: center; }
.calendly-fallback a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* STATS BAND */
.stats-band { background: rgba(0,200,150,0.04); border-top: 1px solid rgba(0,200,150,0.1); border-bottom: 1px solid rgba(0,200,150,0.1); padding: 2.5rem 1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item strong { display: block; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--brand); line-height: 1; }
.stat-item span { font-size: 0.85rem; color: var(--muted); margin-top: 0.35rem; display: block; }

/* FOUNDERS */
.founders { background: rgba(255,255,255,0.015); border-top: 1px solid rgba(0,200,150,0.07); }
.founders-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2.5rem; justify-items: center; }
.founder-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(0,200,150,0.12); border-radius: 1.25rem; padding: 2rem; text-align: center; max-width: 320px; width: 100%; transition: transform 0.2s, box-shadow 0.2s; }
.founder-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,200,150,0.1); }
.founder-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid var(--brand); margin-bottom: 1.25rem; }
.founder-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; color: #f0faf6; }
.founder-role { color: var(--brand); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.founder-bio { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

/* FOOTER */
.site-footer { padding: 40px 0; color: #4a7a6a; background: #040a08; border-top: 1px solid rgba(0,200,150,0.08); }
.footer-grid { display: grid; gap: 1.5rem; }
.site-footer .brand { color: #f0faf6; }
.site-footer p { margin: 8px 0 0; }
.footer-contact { font-size: 0.875rem; margin-top: 0.5rem; color: var(--muted); }
.footer-contact a { color: var(--brand); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-location { font-size: 0.875rem; margin-top: 0.4rem; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin: 1rem 0; }
.footer-links a { font-size: 0.85rem; color: #4a7a6a; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand); }
.footer-copy { font-size: 0.8rem; color: #4a7a6a; margin-top: 1rem; }

/* CHOICE CARDS */
.choice-cards { display: grid; gap: 12px; margin-top: 22px; }
.choice-card { display: grid; gap: 4px; padding: 16px; border: 1px solid rgba(0,200,150,0.18); border-radius: 18px; background: rgba(0,200,150,0.05); transition: background 0.2s; }
.choice-card strong { color: #e0f5ee; }
.choice-card span { color: #7aaa9a; font-size: 0.92rem; }
.choice-card:hover { background: rgba(0,200,150,0.1); }

/* SPLIT / CTA GRIDS */
.split-grid, .cta-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

/* ORBS */
.orb { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: -2; animation: orbFloat 14s ease-in-out infinite; }
.orb-1 { width: 650px; height: 650px; background: radial-gradient(circle, rgba(0,200,150,0.13) 0%, transparent 70%); top: -200px; right: -150px; animation-delay: 0s; }
.orb-2 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(0,120,220,0.09) 0%, transparent 70%); top: 30%; left: -150px; animation-delay: -5s; }
.orb-3 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(100,0,200,0.08) 0%, transparent 70%); top: 65%; right: -100px; animation-delay: -9s; }
.orb-4 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,180,150,0.09) 0%, transparent 70%); bottom: 5%; left: 20%; animation-delay: -3s; }
@keyframes orbFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-35px); } }

/* GRID OVERLAY */
body::before { content: ''; position: fixed; inset: 0; background-image: linear-gradient(rgba(0,200,150,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,200,150,0.03) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; z-index: -1; }

/* PRICE CARD LIST */
.price-card ul { display: grid; gap: 10px; margin: 18px 0 22px; padding-left: 20px; color: var(--muted); }
.price-card li::marker { color: var(--brand); }

/* BOT TRAP */
.bot-trap { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* TABLET */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; inset: 68px 16px auto 16px; display: none; flex-direction: column; align-items: stretch; padding: 16px; border: 1px solid rgba(0,200,150,0.15); border-radius: 20px; background: rgba(6,13,11,0.97); backdrop-filter: blur(20px); box-shadow: var(--shadow); z-index: 99; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; border-radius: 10px; }
  .site-nav a:hover { background: rgba(0,200,150,0.08); }
  .nav-cta { text-align: center; }
  .hero-grid, .split-grid, .cta-grid { grid-template-columns: 1fr; gap: 34px; }
  .steps-grid, .feature-grid, .pricing-grid, .quote-grid, .use-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE */
@media (max-width: 620px) {
  .container { width: calc(100% - 28px); }
  .section-padding { padding: 56px 0; }
  h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero { padding: 48px 0 36px; }
  .hero-lede { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-panel { padding: 20px; border-radius: 22px; }
  .call-card { flex-direction: column; }
  .steps-grid, .feature-grid, .pricing-grid, .quote-grid, .use-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item strong { font-size: 1.6rem; }
  .demo-form { padding: 20px; border-radius: 22px; }
  .footer-grid { flex-direction: column; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { max-width: 100%; }
  .founder-photo { width: 110px; height: 110px; }
  .calendly-card { border-radius: 22px; }
  .calendly-inline-widget { min-width: 100%; height: 700px; }
  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 250px; height: 250px; }
  .orb-3, .orb-4 { width: 200px; height: 200px; }
}

@media (max-width: 380px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section-padding { padding: 40px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
