/* Base */
:root {
  --bg: #F9F6F1;
  --fg: #1A1A1A;
  --muted: #7A7A72;
  --accent: #E85D2D;
  --green: #1A3A2A;
  --surface: #FFFFFF;
  --border: #E8E4DC;
  --code-bg: #1A3A2A;
  --code-fg: #F9F6F1;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* Navigation */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-eyebrow span:last-child {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--muted);
}
.hero-headline {
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 20px;
  color: var(--fg);
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.meta-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.meta-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Import Card */
.import-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,58,42,0.08), 0 4px 16px rgba(0,0,0,0.04);
}
.import-header {
  background: var(--code-bg);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.import-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.import-dot.red { background: #FF5F57; }
.import-dot.yellow { background: #FFBD2E; }
.import-dot.green { background: #28C840; }
.import-label {
  color: var(--code-fg);
  font-size: 12px;
  margin-left: 8px;
  opacity: 0.7;
}
.import-body {
  padding: 20px;
}
.source-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 6px;
  margin-bottom: 16px;
}
.source-icon { font-size: 16px; }
.source-name {
  font-family: 'DM Sans', monospace;
  font-size: 12px;
  color: var(--muted);
}
.arrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-left: 4px;
}
.arrow-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.arrow-label {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}
.dest-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.dest-item {
  font-size: 13px;
  color: var(--fg);
  padding: 6px 12px;
  background: #F0FAF4;
  border-radius: 4px;
  border-left: 2px solid var(--green);
}
.dest-more {
  color: var(--muted);
  font-style: italic;
  background: transparent;
  border-left: none;
  font-size: 12px;
}
.import-action { }
.action-bar {
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  text-align: center;
}
.social-proof-strip {
  margin-top: 16px;
  text-align: center;
}
.proof-text {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* How section */
.how {
  background: var(--surface);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  max-width: 600px;
  margin-bottom: 60px;
  letter-spacing: -1px;
}
.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.15;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-size: 20px;
  margin-bottom: 10px;
}
.step-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Content Types */
.content-types {
  padding: 100px 40px;
}
.ct-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ct-headline {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.ct-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.type-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.type-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow 0.2s;
}
.type-item:hover {
  box-shadow: 0 4px 16px rgba(26,58,42,0.06);
}
.type-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 36px;
}
.type-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.type-desc {
  font-size: 13px;
  color: var(--muted);
}

/* Pricing */
.pricing {
  background: var(--green);
  padding: 100px 40px;
}
.pricing .section-label { color: rgba(255,255,255,0.5); }
.pricing .section-headline { color: white; }
.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
}
.plan-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-weight: 600;
}
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.plan-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.feature-list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: 24px;
}
.feature-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feature-list li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 600;
}
.card-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* Manifesto */
.manifesto {
  padding: 80px 40px;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 40px;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.manifesto-attribution {
  font-size: 13px;
  color: var(--muted);
}
.manifesto-rule:last-child {
  margin: 40px auto 0;
}

/* Closing */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 40px;
  text-align: center;
}
.closing-headline {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.closing-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.closing-cta {
  display: inline-block;
}
.cta-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.cta-url {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-desc {
  font-size: 12px;
  color: var(--muted);
  margin-left: 12px;
}
.footer-links {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 48px;
  }
  .hero-meta {
    gap: 16px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ct-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .nav-tagline { display: none; }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}