/* ===== TOKENS ===== */
:root {
  --bg: #0d1117;
  --bg-2: #161b22;
  --bg-3: #1c2333;
  --fg: #e6edf3;
  --fg-muted: #8b949e;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --border: rgba(139,148,158,0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ===== BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left { max-width: 540px; }

.eyebrow {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.cta-note {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #0d1117;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Agent Preview */
.agent-preview {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.agent-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.agent-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}

.inbox-sample { display: flex; flex-direction: column; gap: 10px; }

.msg {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.msg-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.msg-lead .msg-tag { background: rgba(34,197,94,0.15); color: #22c55e; }
.msg-qualified .msg-tag { background: rgba(245,158,11,0.15); color: var(--accent); }
.msg-cold .msg-tag { background: rgba(139,148,158,0.12); color: var(--fg-muted); }

.msg-from { font-size: 12px; font-weight: 600; color: var(--fg); }
.msg-sub { font-size: 11px; color: var(--fg-muted); }
.msg-action { font-size: 11px; color: var(--accent); margin-top: 2px; font-style: italic; }

.agent-footer {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.agent-footer span {
  font-size: 10px;
  color: var(--fg-muted);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.manifesto-stat-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  margin-bottom: 60px;
  align-items: start;
}

.m-stat { text-align: center; padding: 0 40px; }
.m-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.m-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.m-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  align-self: center;
}

.manifesto-body {
  font-size: 1.2rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 40px;
}

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

.section-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s;
}

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

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

.feat-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

.feat-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 40px;
  background: var(--bg);
}

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

.pricing-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  margin: 16px 0 16px;
  line-height: 1.2;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 56px;
}

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.pricing-card-top {
  margin-bottom: 32px;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.price-period {
  font-size: 1.1rem;
  color: var(--fg-muted);
}

.price-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--fg);
}

.plan-feature svg {
  flex-shrink: 0;
  color: var(--accent);
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: var(--accent);
  color: #0d1117;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 12px;
}

.pricing-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.pricing-guarantee {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.outcomes-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 24px;
}

.outcomes-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.outcome-list { display: flex; flex-direction: column; gap: 16px; }

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 1px;
}

.outcome-item span:last-child {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.5;
}

/* ===== VISION ===== */
.vision {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

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

.vision-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  display: block;
}

.footer-meta span {
  font-size: 11px;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: -1; }
  .manifesto { padding: 60px 24px; }
  .manifesto-stat-row { grid-template-columns: 1fr; gap: 32px; }
  .m-divider { display: none; }
  .m-stat { padding: 0; text-align: left; }
  .m-number { font-size: 3rem; }
  .features { padding: 60px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 60px 24px; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .vision { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .agent-footer { flex-direction: column; gap: 8px; }
}

/* ===== CONVERSION BAR ===== */
.conversion-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.conversion-bar.visible {
  transform: translateY(0);
}

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

.conversion-bar-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.conversion-bar-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.conversion-bar-copy h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2px;
}

.conversion-bar-copy p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.conversion-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.conversion-bar-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--accent);
  color: #0d1117;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.conversion-bar-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.conversion-bar-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg-muted);
  transition: color 0.2s, border-color 0.2s;
}

.conversion-bar-close:hover {
  color: var(--fg);
  border-color: var(--fg-muted);
}

@media (max-width: 900px) {
  .conversion-bar { padding: 16px 20px; }
  .conversion-bar-inner { flex-direction: column; gap: 14px; text-align: center; }
  .conversion-bar-text { justify-content: center; }
  .conversion-bar-icon { display: none; }
  .bar-form { flex-direction: column; }
  .bar-input { width: 100%; }
}

/* ===== HERO EMAIL FORM ===== */
.hero-form { margin-bottom: 16px; }

.form-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.form-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.form-submit {
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 10px;
}

.form-feedback {
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}
.form-feedback.error { color: #ef4444; }
.form-feedback.success { color: #22c55e; }

.hero-actions-secondary {
  margin-top: 8px;
}

.cta-link-secondary {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.cta-link-secondary:hover {
  color: var(--accent);
}

/* ===== CONVERSION BAR FORM ===== */
.bar-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.bar-input {
  padding: 9px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  width: 200px;
  transition: border-color 0.2s;
}

.bar-input:focus { border-color: var(--accent); }
.bar-input::placeholder { color: var(--fg-muted); opacity: 0.6; }

.conversion-bar-cta {
  border: none;
  cursor: pointer;
}

.bar-feedback {
  font-size: 11px;
  min-height: 16px;
}
.bar-feedback.error { color: #ef4444; }

/* ===== THANK YOU PAGE ===== */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.thankyou-inner {
  max-width: 580px;
  text-align: center;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 32px;
}

.thankyou-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.thankyou-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-bottom: 56px;
}

.thankyou-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #0d1117;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.thankyou-step p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.thankyou-cta-block {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.thankyou-ready {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.thankyou-or {
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-muted);
}

.thankyou-link {
  color: var(--accent);
  text-decoration: none;
}

.thankyou-link:hover {
  text-decoration: underline;
}

/* ===== PRICING ALT CTA ===== */
.pricing-alt {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.pricing-alt-text {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.pricing-alt-form .form-row {
  max-width: 380px;
  margin: 0 auto;
}

.cta-btn-outline {
  display: inline-block;
  padding: 14px 24px;
  background: transparent;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.cta-btn-outline:hover {
  background: var(--accent);
  color: #0d1117;
}

.cta-btn-outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .thankyou { padding: 60px 24px; }
  .form-row { flex-direction: column; }
  .pricing-alt-form .form-row { max-width: 100%; }
}