/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f0f14;
  --bg-alt: #16161d;
  --fg: #f4f4f5;
  --fg-muted: #a1a1aa;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Typography ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-top: 0.75rem;
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(15, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  bottom: 0;
  left: 10%;
  opacity: 0.15;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.75rem;
  max-width: 800px;
}

.hero-accent {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {}

.hero-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.hero-stat-div {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ---- Proof ---- */
.proof {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.proof-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.proof-tags span {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.proof-sub {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- How ---- */
.how {
  padding: 7rem 2rem;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.how-step {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.how-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.15);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.how-step p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- Features ---- */
.features {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.625rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- Outcomes ---- */
.outcomes {
  padding: 7rem 2rem;
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.outcomes .section-title {
  margin-bottom: 3.5rem;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.outcome {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}

.outcome-val {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.outcome-label {
  display: block;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.outcomes-note {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
}

/* ---- Closing ---- */
.closing {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.closing-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}

.closing-body {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* ---- Footer ---- */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(161, 161, 170, 0.5);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero { padding: 6rem 1.5rem 4rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-div { display: none; }
  .hero-stat-val { font-size: 1.75rem; }
  .hero-sub { margin-bottom: 2.5rem; }
  .how { padding: 5rem 1.5rem; }
  .features { padding: 5rem 1.5rem; }
  .outcomes { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .nav-tagline { display: none; }
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0f0f14;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: #e8920a; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s ease;
  cursor: pointer;
}
.btn-outline:hover { border-color: rgba(245,158,11,0.5); }

.btn-full { width: 100%; text-align: center; }

.btn-beta {
  background: var(--accent);
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

/* ---- Nav right side ---- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-cta {
  background: var(--accent);
  color: #0f0f14;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: #e8920a; }

/* ---- Hero body copy ---- */
.hero-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.hero-cta { margin-top: 0; }

/* ---- Beta Section ---- */
.beta {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.beta-inner { max-width: 640px; margin: 0 auto; }
.beta-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.beta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.beta-copy {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.beta-price-block { margin-bottom: 2rem; }
.beta-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.beta-price-note {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 0.375rem;
}
.beta-includes {
  list-style: none;
  text-align: left;
  max-width: 360px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.beta-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.5;
}
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--accent-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 0.1rem;
}
.beta-disclaimer {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

/* ---- Pricing Section ---- */
.pricing {
  padding: 7rem 2rem;
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing .section-sub { margin-bottom: 3rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card-pro {
  border-color: rgba(245,158,11,0.3);
  position: relative;
}
.pricing-card-header { margin-bottom: 2rem; }
.pricing-tier-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.pricing-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pricing-includes .check-icon {
  background: rgba(245,158,11,0.1);
}
.pricing-includes-parent {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}
.pricing-card .btn-outline,
.pricing-card .btn-primary { align-self: flex-start; }

/* ---- FAQ Section ---- */
.faq {
  padding: 7rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.15s ease;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.2s ease;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.75;
  padding-bottom: 1.5rem;
}

/* ---- Footer CTA / Demo Form ---- */
.footer-cta {
  padding: 7rem 2rem 5rem;
}
.footer-cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.footer-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.footer-cta-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.demo-form-wrap { text-align: left; }
.demo-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg-muted);
  font-family: var(--font-display);
}
.form-group input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  color: var(--fg);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  transition: border-color 0.15s ease;
  width: 100%;
}
.form-group input::placeholder { color: rgba(161,161,170,0.5); }
.form-group input:focus { outline: none; border-color: var(--accent); }
.form-success {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #4ade80;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 1rem 0;
  font-family: var(--font-display);
}

/* ---- Mobile overrides ---- */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cta { padding: 5rem 1.5rem 3rem; }
  .demo-form { padding: 1.5rem; }
  .faq { padding: 5rem 1.5rem; }
  .pricing { padding: 5rem 1.5rem; }
  .beta { padding: 5rem 1.5rem; }
  .beta-price { font-size: 2rem; }
  .pricing-card .btn-outline,
  .pricing-card .btn-primary { width: 100%; text-align: center; }
}