/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0D0D0F;
  --bg-alt: #111116;
  --fg: #F5F5F0;
  --fg-muted: #888;
  --accent: #00D4AA;
  --accent-dim: rgba(0,212,170,0.12);
  --border: #1E1E26;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.navbar-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.navbar-tag {
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  padding: 8rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 46ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-badge {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}
.trust-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* Dashboard frame */
.hero-visual {
  display: flex;
  justify-content: center;
}
.dashboard-frame {
  background: #161620;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,170,0.06);
}
.dashboard-topbar {
  background: #0F0F15;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.db-dots {
  display: flex;
  gap: 6px;
}
.db-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.db-dots span:first-child { background: #FF5F57; }
.db-dots span:nth-child(2) { background: #FEBC2E; }
.db-dots span:last-child { background: #28C840; }
.db-title {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: var(--font-body);
}
.dashboard-body {
  padding: 1.5rem;
}
.wf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.wf-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}
.wf-status {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 500;
}
.wf-status.green { background: rgba(0,212,170,0.15); color: var(--accent); }
.wf-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.wf-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.wf-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #00A888);
  border-radius: 4px;
  transition: width 1s ease;
}
.wf-pct {
  font-size: 0.7rem;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  width: 32px;
  text-align: right;
}
.wf-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
.wf-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--fg-muted);
  border-left: 1px solid var(--border);
  margin-left: 5px;
  padding-left: 16px;
  position: relative;
}
.wf-step.done { color: var(--fg); }
.wf-step.active { color: var(--accent); }
.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  position: absolute;
  left: -4.5px;
  top: 14px;
}
.wf-step.done .step-dot { background: var(--accent); }
.wf-step.active .step-dot { background: var(--accent); }
.step-dot.pulse { animation: pulse 1.5s infinite; }
.wf-step span:first-of-type { flex: 1; }
.step-time { font-size: 0.7rem; color: var(--fg-muted); }
.wf-step.active .step-time { color: var(--accent); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,170,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(0,212,170,0); }
}
.wf-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.wf-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ===== FLOW SECTION ===== */
.flow {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.flow-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--fg-muted);
  font-size: 1rem;
}
.flow-grid {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.flow-card {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}
.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  flex-shrink: 0;
}
.flow-num {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.flow-icon { margin-bottom: 1rem; }
.flow-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.flow-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.flow-tags span {
  font-size: 0.68rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.flow-bottom {
  text-align: center;
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.flow-bottom strong { color: var(--accent); }

/* ===== OUTCOMES ===== */
.outcomes {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-headline { margin-bottom: 3rem; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.outcome-card {
  padding: 2.5rem;
  background: #161620;
}
.outcome-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.outcome-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.outcomes-quote {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 2.5rem;
}
.outcomes-quote p {
  font-style: italic;
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.outcomes-quote span {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ===== CLOSING ===== */
.closing { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.closing-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.closing-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-text p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.closing-cta { display: inline-block; }

/* ===== NAVBAR CTA ===== */
.navbar-cta {
  margin-left: auto;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.navbar-cta:hover { opacity: 0.85; }

/* ===== SIGNUP SECTION ===== */
.signup-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}
.signup-container {
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.signup-container h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.signup-container > p {
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.signup-form { text-align: left; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--fg);
}
.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}
.form-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 8px;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}
.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.price-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-left: auto;
}
.btn-primary {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.form-error {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: 8px;
  color: #ff8080;
  font-size: 0.85rem;
  text-align: center;
}
.signup-footer {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ===== CHECKOUT SUCCESS ===== */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}
.success-container { max-width: 480px; width: 100%; text-align: center; }
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
}
.success-container h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.success-container p {
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.success-email {
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 2rem;
}
.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--fg-muted); color: var(--fg); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-meta span {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding-top: 7rem;
  }
  .hero-visual { order: -1; }
  .dashboard-frame { max-width: 360px; }
  .flow-grid { flex-direction: column; gap: 1rem; }
  .flow-arrow { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-img { max-height: 260px; object-fit: cover; }
}
@media (max-width: 480px) {
  .hero { padding: 6rem 1.5rem 4rem; }
  .flow, .outcomes-inner, .closing { padding-left: 1.5rem; padding-right: 1.5rem; }
  .outcome-card { padding: 1.75rem; }
  .outcome-num { font-size: 2rem; }
}