/* ── karma.cheap — editorial, hand-set, restrained ─────────── */

:root {
  --ink:        #0A0A0A;
  --paper:      #FAFAF7;
  --ink-soft:   #3C3C38;
  --ink-faint:  #8A8A82;
  --rule:       #DDDCD4;
  --rule-dark:  #26261F;
  --accent:     #1E3A2E;   /* deep ink green */
  --accent-hi:  #2C5442;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", "Songti SC", serif;
  --mono:  "SF Mono", "IBM Plex Mono", Menlo, Consolas, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

::selection { background: var(--accent); color: var(--paper); }

/* ── Header ─────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}

.wordmark, .footer-wordmark {
  font-size: 22px; letter-spacing: -0.01em; color: var(--ink);
  text-decoration: none;
}
.wordmark em, .footer-wordmark em {
  font-style: italic; color: var(--accent);
}

.site-nav { display: flex; gap: 34px; }
.site-nav a {
  font-size: 14px; color: var(--ink-soft); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.site-nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }

.nav-cta {
  font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--paper); background: var(--ink);
  padding: 9px 20px; text-decoration: none;
  transition: background 0.25s ease;
}
.nav-cta:hover { background: var(--accent); }

/* ── Shared typographic furniture ───────────────────── */

.kicker {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.kicker::before { content: "— "; color: var(--ink-faint); }

.section-title {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.015em;
  margin-bottom: 64px;
}

.section-note {
  max-width: 620px; margin-top: 56px;
  color: var(--ink-soft); font-size: 17px; font-style: italic;
}

/* ── Hero ───────────────────────────────────────────── */

.hero { padding: 132px 0 120px; }

.hero h1 {
  font-size: clamp(52px, 8.4vw, 104px);
  font-weight: 400; line-height: 1.04; letter-spacing: -0.022em;
  margin-bottom: 44px;
}

.lede {
  max-width: 640px; font-size: 21px; line-height: 1.7;
  color: var(--ink-soft);
}

.hero-rule {
  width: 100%; height: 1px; background: var(--rule);
  margin: 64px 0 24px;
}

.hero-note {
  font-family: var(--mono); font-size: 12.5px;
  letter-spacing: 0.06em; color: var(--ink-faint);
}

/* ── Statement / Language blocks ────────────────────── */

.statement  { padding: 120px 0; border-top: 1px solid var(--rule); }
.languages  { padding: 120px 0; border-top: 1px solid var(--rule); }

.statement-text {
  max-width: 780px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.5; letter-spacing: -0.008em;
}
.statement-text::first-letter { color: var(--accent); }

/* ── Networks ───────────────────────────────────────── */

.networks { padding: 120px 0; background: var(--ink); color: var(--paper); }
.networks .kicker { color: #7FA98F; }
.networks .kicker::before { color: #4A4A42; }

.network-list { list-style: none; }
.network-list li {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid var(--rule-dark);
  transition: padding-left 0.3s ease;
}
.network-list li:last-child { border-bottom: 1px solid var(--rule-dark); }
.network-list li:hover { padding-left: 14px; }

.net-name { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -0.015em; }
.net-desc {
  font-size: 15px; font-style: italic; color: #9C9C92;
  text-align: right; flex-shrink: 1;
}

.networks .section-note { color: #9C9C92; }

/* ── Method ─────────────────────────────────────────── */

.method { padding: 120px 0; }

.method-steps {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
}
.method-steps li { background: var(--paper); padding: 44px 40px 48px; }

.step-no {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.14em; color: var(--accent);
  display: block; margin-bottom: 22px;
}
.method-steps h3 {
  font-size: 24px; font-weight: 400; letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.method-steps p { font-size: 16px; color: var(--ink-soft); line-height: 1.7; }

/* ── Pricing ────────────────────────────────────────── */

.pricing { padding: 130px 0; border-top: 1px solid var(--rule); }

.price-block {
  display: flex; align-items: baseline; gap: 48px; flex-wrap: wrap;
  padding-bottom: 8px;
}
.price {
  font-size: clamp(88px, 13vw, 160px);
  line-height: 0.9; letter-spacing: -0.03em; white-space: nowrap;
}
.price-currency { font-size: 0.42em; vertical-align: 0.72em; color: var(--accent); margin-right: 0.06em; }
.price-per {
  font-size: 18px; font-style: italic; letter-spacing: 0;
  color: var(--ink-faint); margin-left: 14px; white-space: nowrap;
}
.price-desc {
  max-width: 380px; font-size: 18px; line-height: 1.7;
  color: var(--ink-soft); padding-bottom: 14px;
}

.begin-link {
  display: inline-block; margin-top: 56px;
  font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.begin-link:hover { color: var(--accent); }

/* ── Footer ─────────────────────────────────────────── */

.site-footer {
  background: var(--ink); color: var(--paper);
  padding: 72px 0 56px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 48px; flex-wrap: wrap;
}
.footer-wordmark { font-size: 26px; }
.footer-wordmark em { color: #7FA98F; }
.footer-tag {
  margin-top: 12px; max-width: 380px;
  font-size: 14.5px; font-style: italic; color: #9C9C92; line-height: 1.6;
}
.footer-legal { text-align: right; }
.footer-legal p {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #9C9C92; line-height: 2;
}
.footer-legal p:first-child { color: var(--paper); }

/* ── Reveal (restrained) ────────────────────────────── */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 820px) {
  .site-nav { display: none; }
  .method-steps { grid-template-columns: 1fr; }
  .network-list li { flex-direction: column; gap: 6px; }
  .net-desc { text-align: left; }
  .footer-legal { text-align: left; }
  .hero { padding: 96px 0 88px; }
  .statement, .languages, .networks, .method, .pricing { padding: 88px 0; }
}
