:root {
  --ink: #020617;
  --paper: #f8fafc;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --border: #e2e8f0;
  --text-muted: #475569;
  --max-width: 1100px;
  
  --font-serif: "Iowan Old Style", "Apple Garamond", "Baskerville", "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", "Monaco", "Inconsolata", "Fira Code", monospace;
}

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  padding: 2.5rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.status-indicator {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

/* Hero */
.hero {
  padding: 8rem 0 6rem;
}

.hero-content {
  max-width: 800px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 2rem;
}

.lede {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  line-height: 1.4;
}

.cta-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.button {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-align: center;
}

.button.primary {
  background: var(--ink);
  color: white;
  font-size: 1.125rem;
}

.button.primary:hover {
  background: var(--accent);
}

.cta-subtext {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Domains */
.domains {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}

.domain-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.domain-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Process */
.process {
  padding: 6rem 0;
}

.process-box {
  background: var(--ink);
  color: white;
  padding: 5rem;
  border-radius: 8px;
}

.process-box h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.step-num {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 1rem;
}

.step h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step p {
  color: #94a3b8;
  font-size: 0.9375rem;
}

/* Final Offer */
.final-offer {
  padding: 8rem 0;
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.offer-content {
  padding: 4rem;
}

.offer-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.offer-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.deliverables {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.deliverables li {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.deliverables li::before {
  content: "→";
  color: var(--accent);
}

.offer-price {
  background: var(--ink);
  color: white;
  padding: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-value {
  font-size: 4rem;
  font-family: var(--font-serif);
  font-weight: 700;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
}

.button.white {
  background: white;
  color: var(--ink);
}

.button.white:hover {
  background: var(--accent);
  color: white;
}

/* Footer */
footer {
  padding: 6rem 0 4rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.monospaced {
  font-family: var(--font-mono);
}

@media (max-width: 900px) {
  .offer-card {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-box {
    padding: 3rem;
  }
  
  .hero {
    padding: 4rem 0 3rem;
  }
}
