:root {
  --bg: #060b15;
  --bg-surface: #0b1320;
  --bg-card: #0f1928;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text-primary: #f0f4f8;
  --text-secondary: #8fa3bf;
  --text-muted: #4a6278;
  --border: rgba(240, 244, 248, 0.06);
  --green: #34d399;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Legal pages */
.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 20px;
}
.legal-content { }
.legal-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}
.legal-date {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--text-primary); }
.legal-footer-nav {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: center;
}
.legal-footer-nav a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
}
.legal-footer-nav a:hover { text-decoration: underline; }
.legal-footer-nav span { color: var(--text-muted); font-size: 14px; }

/* Navigation */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.nav-logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-trial-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -24px;
  margin-bottom: 32px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 28px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.6) saturate(1.2);
}
.briefing-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(245, 166, 35, 0.04);
}
.briefing-header {
  background: var(--bg-surface);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.briefing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(245, 166, 35, 0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.briefing-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.briefing-items { padding: 0; }
.briefing-item {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.briefing-item:last-child { border-bottom: none; }
.briefing-item-done { background: rgba(52, 211, 153, 0.04); }
.bi-icon {
  font-size: 10px;
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.briefing-item-done .bi-icon { color: var(--green); }
.bi-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.bi-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* How it works */
.how { background: var(--bg-surface); }
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}
.section-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.how-header { margin-bottom: 48px; }
.how-header h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 440px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step {}
.step-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.step h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* Capabilities */
.capabilities { padding: 72px 32px; }
.cap-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.capabilities .section-label { margin-bottom: 40px; }
.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.cap {
  background: var(--bg-surface);
  padding: 28px 28px;
}
.cap-icon {
  font-size: 10px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.cap h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cap p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* Briefing sample */
.briefing-sample { background: var(--bg-surface); padding: 72px 32px; }
.bs-inner { max-width: 1100px; margin: 0 auto; }
.briefing-sample .section-label { margin-bottom: 20px; }
.sample-email {
  max-width: 640px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.email-header {
  background: var(--bg);
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}
.email-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.email-subject {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.email-body { padding: 24px 28px; }
.email-greeting {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.email-section { margin-bottom: 20px; }
.email-section:last-child { margin-bottom: 0; }
.es-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-family: 'Inter', system-ui, sans-serif;
}
.email-section p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }
.email-section p strong { color: var(--text-primary); font-weight: 600; }
.email-section a { color: var(--accent); text-decoration: none; }
.email-section-calm .es-label { color: var(--green); }

/* Closing */
.closing { padding: 96px 32px; text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--accent);
  color: #060b15;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #f8b830;
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--text-secondary);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.btn-secondary:hover { color: var(--text-primary); }

/* Pricing */
.pricing {
  padding: 88px 32px;
  background: var(--bg);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 16px 0 16px;
}
.pricing-sub { font-size: 16px; color: var(--text-secondary); max-width: 480px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 40px;
}
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}
.pricing-card-featured {
  border-color: rgba(245, 166, 35, 0.3);
  background: var(--bg-card);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #060b15;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pc-top { margin-bottom: 24px; }
.pc-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.pc-price { margin-bottom: 8px; }
.pc-amount {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pc-period { font-size: 18px; color: var(--text-muted); margin-left: 4px; }
.pc-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.pc-features { list-style: none; margin-bottom: 28px; }
.pcf {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.pcf:last-child { border-bottom: none; }
.pcf-icon { color: var(--green); flex-shrink: 0; margin-top: 1px; font-size: 12px; }
.pc-muted { color: var(--text-muted); }
.pc-muted .pcf-icon { color: var(--text-muted); }
.pc-cta {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: var(--accent);
  color: #060b15;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.pc-cta:hover { background: #f8b830; }
.pricing-card-featured .pc-cta {
  background: var(--accent);
}
.pricing-note { text-align: center; font-size: 13px; color: var(--text-muted); }

/* Social proof */
.social-proof { background: var(--bg-surface); padding: 80px 32px; }
.sp-inner { max-width: 1100px; margin: 0 auto; }
.sp-header { margin-bottom: 48px; }
.sp-header h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.sp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.sp-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.sp-author { display: flex; align-items: center; gap: 12px; }
.sp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.sp-name { font-family: 'Inter', system-ui, sans-serif; font-size: 13px; font-weight: 600; color: var(--text-primary); }
.sp-role { font-size: 11px; color: var(--text-muted); }
.sp-trust { text-align: center; }
.sp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-muted);
}
.sp-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.5);
  animation: pulse 2.5s ease-in-out infinite;
}

/* Waitlist form */
.waitlist-form { max-width: 480px; margin: 32px auto 0; }
.wf-row { display: flex; gap: 10px; }
.wf-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid rgba(240, 244, 248, 0.12);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.wf-input::placeholder { color: var(--text-muted); }
.wf-input:focus { border-color: rgba(245, 166, 35, 0.4); }
.wf-btn {
  padding: 12px 24px;
  background: var(--accent);
  color: #060b15;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.wf-btn:hover:not(:disabled) { background: #f8b830; }
.wf-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.wf-msg { margin-top: 12px; font-size: 13px; text-align: center; padding: 10px 16px; border-radius: 6px; }
.wf-success { background: rgba(52, 211, 153, 0.1); color: var(--green); }
.wf-error { background: rgba(239, 68, 68, 0.1); color: #f87171; }
.wf-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}
.footer-desc {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-links { font-size: 12px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 48px; }
  .hero-visual { order: -1; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .caps { grid-template-columns: 1fr 1fr; }
  .briefing-card { max-width: 400px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .sp-grid { grid-template-columns: 1fr 1fr; }
  .wf-row { flex-direction: column; }
}
@media (max-width: 768px) {
  /* Core mobile layout fixes */
  .nav-inner { padding: 0 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 48px 20px 40px; }
  .hero-headline { font-size: 28px; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; justify-content: center; }
  .briefing-card { max-width: 100%; width: 100%; box-sizing: border-box; }
  .how-inner,
  .capabilities,
  .briefing-sample { padding: 56px 20px; }
  .pricing { padding: 72px 20px; }
  .social-proof { padding: 64px 20px; }
  .closing { padding: 72px 20px; }
  .footer { padding: 20px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .caps { grid-template-columns: 1fr; }
  .sp-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px 20px; }
  .pc-amount { font-size: 36px; }
  .pc-features { font-size: 13px; }
  .pricing-header h2 { font-size: 26px; }
  .closing h2 { font-size: 26px; }
  .steps .step { padding: 0; }
  .step-num { font-size: 32px; }
}