/* ============================================================
   Maromi Systems — Homepage v7
   Cool paper direction with embedded product UI
   ============================================================ */

:root {
  --paper: #FFFFFF;
  --paper-2: #F6F8FC;
  --paper-cream: #FBFAF5;
  --paper-stone: #F1EFEA;
  --ink: #0B0B0C;
  --body: #1A1A1A;
  --mute: #6B7280;
  --mute-2: #9BA1AC;
  --accent: #D3E3FD;       /* sky */
  --accent-deep: #9BBCF2;
  --accent-ink: #2A4F8E;
  --rule: rgba(0,0,0,0.12);
  --rule-strong: rgba(0,0,0,0.30);
  --tan: #B08A4A;
  --tan-soft: #E7D8B8;

  /* Type scale */
  --fs-display-xl: clamp(48px, 8vw, 120px);
  --fs-display-l:  clamp(40px, 6vw, 80px);
  --fs-display-m:  clamp(32px, 4.2vw, 56px);
  --fs-headline:   clamp(24px, 2.8vw, 34px);
  --fs-lead:       clamp(19px, 1.5vw, 24px);
  --fs-body:       clamp(17px, 1.1vw, 19px);
  --fs-caption:    14px;
  --fs-mono:       13px;

  --wrap: 1180px;
  --gutter: 56px;
  --section-y: 120px;
}

/* Tweak: density */
:root.density-compact {
  --section-y: 80px;
  --gutter: 40px;
}

/* Tweak: accent */
:root.accent-tan {
  --accent: #E7D8B8;
  --accent-deep: #B08A4A;
  --accent-ink: #5C4413;
}
:root.accent-ink {
  --accent: #ECECEE;
  --accent-deep: #C9CACF;
  --accent-ink: #2A2A2D;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--body); }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p { margin: 0; }

/* Typography utilities */
.display { font-family: 'Cormorant Garamond', serif; font-weight: 300; letter-spacing: -0.025em; line-height: 1.0; color: var(--ink); }
.display em, .ital { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: var(--fs-mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.mono-ink { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; color: var(--ink); }
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink); font-weight: 400; }
p.lead { max-width: 56ch; }

/* Hand-drawn sky underline (matches v6) */
.underline-sky {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 8 C 60 2, 120 12, 198 6' stroke='%23D3E3FD' stroke-width='3.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: 0 100%;
  background-size: 100% 0.4em;
  padding-bottom: 0.05em;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
@media (min-width: 800px) { .wrap { padding: 0 var(--gutter); } }
section { padding: var(--section-y) 0; }
section.tight { padding: 56px 0; }
section.cream { background: var(--paper-cream); }
section.stone { background: var(--paper-stone); }
section.vellum { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
section.ink { background: var(--ink); color: var(--paper); }
section.ink .display { color: var(--paper); }
section.ink .lead { color: rgba(255,255,255,0.82); }
section.ink .mono { color: rgba(255,255,255,0.6); }

/* Eyebrow */
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--ink); }
.eyebrow.ink::before { background: rgba(255,255,255,0.6); }
.eyebrow .mono { color: var(--ink); }
.eyebrow.ink .mono { color: rgba(255,255,255,0.7); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; min-height: 52px;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 16px;
  text-decoration: none; cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .12s ease, box-shadow .25s ease;
}
.btn:hover { box-shadow: 0 8px 20px -10px rgba(0,0,0,0.32); transform: translateY(-1px); background: var(--paper); color: var(--ink); }
.btn:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.18); }
.btn .arrow { font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-sky { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-sky:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--ink); }
.btn-paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-paper:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-link { background: transparent; color: var(--ink); border: none; padding: 16px 4px; min-height: 52px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--rule); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-logo { display: block; height: 72px; width: auto; margin: -16px 0; }
.nav-links { display: none; gap: 32px; }
.nav-links a { text-decoration: none; font-size: 15px; position: relative; padding-bottom: 2px; }
.nav-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (min-width: 800px) { .nav-links { display: flex; } }
.nav-cta { padding: 10px 18px; min-height: 44px; font-size: 14px; }

/* ============================================================ */
/* HERO                                                          */
/* ============================================================ */
.hero { padding: 64px 0 80px; position: relative; overflow: hidden; }
@media (min-width: 800px) { .hero { padding: 88px 0 96px; } }
.hero .wrap { position: relative; z-index: 2; }

.hero-mark {
  position: absolute;
  top: -8%; right: -6%;
  width: clamp(380px, 56vw, 760px);
  aspect-ratio: 1 / 1;
  background-image: url('../assets/maromi-m-2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}

.hero-headline { font-size: var(--fs-display-xl); line-height: 0.98; max-width: 14ch; margin-top: 24px; }
.hero-lead { margin-top: 28px; max-width: 38ch; font-size: clamp(19px, 1.6vw, 24px); line-height: 1.5; color: var(--ink); }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-cue { margin-top: 44px; display: flex; align-items: center; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.hero-cue-arrow { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--ink); }

/* Hero preview (UI-forward variant) */
.hero-preview {
  position: relative;
  min-width: 0;
  max-width: 100%;
}
.hero-preview-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 32px 70px -36px rgba(0,0,0,0.32), 0 2px 0 rgba(0,0,0,0.04);
  position: relative;
}
.hero-preview-card::before {
  content: ""; position: absolute; top: 0; right: 0; width: 30px; height: 30px;
  background: linear-gradient(225deg, transparent 50%, rgba(0,0,0,0.05) 50%);
  border-left: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08);
  pointer-events: none;
}

/* Still-life-forward variant */
.hero-stilllife {
  aspect-ratio: 5/4;
  background: var(--paper-cream);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.hero-stilllife-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 16px, rgba(0,0,0,0.025) 16px 17px);
}
.sl-laptop { position: absolute; left: 12%; bottom: 18%; width: 58%; height: 38%; background: #d2d6dc; border-radius: 8px 8px 2px 2px; box-shadow: inset 0 -8px 0 #b6bbc2, 0 8px 0 #b6bbc2, 0 12px 24px -10px rgba(0,0,0,0.18); display: flex; align-items: center; justify-content: center; }
.sl-laptop-m { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 72px; color: rgba(255,255,255,0.78); margin-bottom: 12px; }
.sl-mug { position: absolute; left: 4%; bottom: 14%; width: 13%; height: 22%; background: var(--paper); border-radius: 6px 6px 14px 14px; border: 1px solid var(--rule); box-shadow: 0 6px 16px -8px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 24px; color: var(--accent-ink); }
.sl-mug::before { content: ""; position: absolute; right: -14%; top: 28%; width: 28%; height: 44%; border: 3px solid var(--paper); border-left: none; border-radius: 0 999px 999px 0; }
.sl-card-back { position: absolute; right: 22%; top: 10%; width: 22%; aspect-ratio: 3/4; background: var(--paper); border: 1px solid var(--rule); box-shadow: 0 10px 20px -10px rgba(0,0,0,0.2); transform: rotate(-3deg); display: flex; align-items: center; justify-content: center; }
.sl-card-back .m { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 36px; color: var(--accent-ink); }
.sl-card-front { position: absolute; right: 6%; top: 6%; width: 16%; aspect-ratio: 2/3; background: var(--paper); border: 1px solid var(--rule); box-shadow: 0 10px 18px -10px rgba(0,0,0,0.2); transform: rotate(4deg); }
.sl-label { position: absolute; left: 16px; bottom: 14px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); background: var(--paper); padding: 6px 10px; }

/* ============================================================ */
/* SECTIONS: Manifesto                                           */
/* ============================================================ */
.section-head { max-width: 38ch; margin-bottom: 56px; }
.section-head h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: var(--fs-display-l); line-height: 1.0; letter-spacing: -0.025em; color: var(--ink); }
.section-head h2 em { font-style: italic; font-weight: 400; }
.section-head p { margin-top: 24px; max-width: 56ch; }

/* ============================================================ */
/* 100 RULES — rule chips floating, validating a listing         */
/* ============================================================ */
.rules { position: relative; }
.rules-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.rules-grid > * { min-width: 0; }
@media (min-width: 900px) { .rules-grid { grid-template-columns: 1fr 1.05fr; gap: 80px; } }

.rules-chips { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.rule-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.04em; color: var(--ink);
  white-space: nowrap;
}
.rule-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-deep); }
.rule-chip.ok { background: var(--accent); border-color: var(--accent); }
.rule-chip.ok .dot { background: var(--ink); }
.rule-chip.warn { background: #FFF5E6; border-color: #E6A85B; color: #6F4A0F; }
.rule-chip.warn .dot { background: #E6A85B; }
.rule-chip.platform { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.rule-chip.platform .dot { background: var(--accent); }

.rules-count {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(80px, 11vw, 160px);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.rules-caption { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-top: 12px; display: block; }

/* ============================================================ */
/* PRODUCT UI mockups (Editor)                                   */
/* ============================================================ */
.app {
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 32px 70px -36px rgba(0,0,0,0.32), 0 2px 0 rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.app-corner::before {
  content: ""; position: absolute; top: 0; right: 0; width: 30px; height: 30px;
  background: linear-gradient(225deg, transparent 50%, rgba(0,0,0,0.05) 50%);
  border-left: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08);
  pointer-events: none; z-index: 2;
}

.app-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute);
  background: var(--paper);
}
.app-topbar .left { display: flex; align-items: center; gap: 14px; }
.app-topbar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-deep); }
.app-topbar .crumb { color: var(--ink); }
.app-topbar .crumb-sep { opacity: 0.4; padding: 0 6px; }
.app-topbar .right { display: flex; gap: 14px; align-items: center; }
.app-topbar .langbar { display: flex; gap: 0; border: 1px solid var(--rule-strong); }
.app-topbar .lang { padding: 6px 10px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--mute); cursor: default; border-right: 1px solid var(--rule); }
.app-topbar .lang:last-child { border-right: none; }
.app-topbar .lang.active { background: var(--ink); color: var(--paper); }

/* Editor: 3-col layout (rules sidebar | main editor | live preview) */
.editor-grid {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  min-height: 600px;
}
.editor-grid > * { min-width: 0; }
@media (max-width: 1000px) { .editor-grid { grid-template-columns: 1fr; } }

.editor-side {
  border-right: 1px solid var(--rule);
  padding: 22px 18px;
  background: #FAFBFD;
}
.editor-side h5 { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-bottom: 14px; }
.editor-rule-row { display: flex; align-items: baseline; gap: 8px; padding: 8px 0; font-size: 12.5px; line-height: 1.4; border-bottom: 1px dashed rgba(0,0,0,0.06); }
.editor-rule-row:last-child { border-bottom: none; }
.editor-rule-row .tick { width: 14px; flex-shrink: 0; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink); }
.editor-rule-row.ok .tick::before { content: "✓"; color: var(--accent-ink); }
.editor-rule-row.warn .tick::before { content: "!"; color: #C97D17; }
.editor-rule-row .label { color: var(--body); }
.editor-rule-row .platform { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: 0.14em; color: var(--mute); margin-left: auto; text-transform: uppercase; }

.editor-main { padding: 30px 32px; display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.editor-field { display: flex; flex-direction: column; gap: 8px; }
.editor-field-head { display: flex; align-items: baseline; justify-content: space-between; }
.editor-field-head .lab { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.editor-field-head .meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--mute); }
.editor-input {
  font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.5; color: var(--ink);
  border: 1px solid var(--rule-strong); padding: 12px 14px; background: var(--paper);
  min-height: 50px;
}
.editor-title-input {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; font-size: 24px; line-height: 1.3; color: var(--ink);
  border: 1px solid var(--rule-strong); padding: 14px 16px;
}
.editor-textarea {
  font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.65; color: var(--body);
  border: 1px solid var(--rule-strong); padding: 14px 16px; min-height: 120px;
  white-space: pre-wrap;
}
.editor-keywords { display: flex; flex-wrap: wrap; gap: 6px; }
.editor-keyword {
  background: var(--accent); color: var(--accent-ink);
  padding: 5px 10px; font-family: 'JetBrains Mono', monospace; font-size: 11px;
}
.editor-keyword.score { background: var(--ink); color: var(--paper); }
.editor-keyword.low { background: var(--paper-2); border: 1px solid var(--rule); color: var(--mute); }

.editor-preview {
  border-left: 1px solid var(--rule);
  padding: 22px 22px;
  background: var(--paper-2);
}
.editor-preview h5 { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-bottom: 14px; }
.editor-preview-thumb {
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, #e9ecf2 0 8px, #dfe3eb 8px 16px);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--mute); text-transform: uppercase;
  margin-bottom: 16px;
}
.editor-preview-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; line-height: 1.3; color: var(--ink); margin-bottom: 10px; }
.editor-preview-bullets { list-style: none; padding: 0; margin: 0; }
.editor-preview-bullets li { font-size: 12px; line-height: 1.5; padding-left: 14px; position: relative; margin-bottom: 6px; color: var(--body); }
.editor-preview-bullets li::before { content: "—"; position: absolute; left: 0; color: var(--mute); }

/* Annotation callouts */
.annot { position: relative; }
.annot-pin { position: absolute; display: flex; align-items: center; gap: 10px; }
.annot-pin .label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); background: var(--paper); border: 1px solid var(--ink); padding: 7px 11px; white-space: nowrap; }
.annot-pin .line { width: 60px; height: 1px; background: var(--ink); position: relative; }
.annot-pin .line::after { content: ""; position: absolute; right: -3px; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.annot-pin.left { flex-direction: row-reverse; }
.annot-pin.left .line::after { right: auto; left: -3px; }

/* ============================================================ */
/* LANGUAGES                                                     */
/* ============================================================ */
.lang-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
@media (min-width: 800px) { .lang-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1100px) { .lang-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.lang-card { background: var(--paper); border: 1px solid var(--ink); padding: 24px 22px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.lang-card .flag { display: flex; align-items: center; gap: 10px; }
.lang-card .flag-code { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; color: var(--mute); }
.lang-card .flag-name { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 24px; color: var(--ink); }
.lang-card .title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; line-height: 1.3; color: var(--ink); border-top: 1px solid var(--rule); padding-top: 14px; }
.lang-card .bullets { font-size: 13px; color: var(--body); line-height: 1.55; }

/* ============================================================ */
/* LEARNING / DIFF                                               */
/* ============================================================ */
.learn-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 56px; }
@media (min-width: 900px) { .learn-grid { grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: stretch; } }
.learn-arrow { display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 48px; color: var(--ink); }
.learn-card { background: var(--paper); border: 1px solid var(--rule-strong); padding: 28px 28px; }
.learn-card.after { border-color: var(--ink); border-width: 1.5px; box-shadow: 0 28px 60px -36px rgba(0,0,0,0.24); }
.learn-card .ttl { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-bottom: 18px; }
.learn-card.after .ttl { color: var(--accent-ink); }
.learn-card .body { font-size: 15px; line-height: 1.6; color: var(--body); }
.learn-card .body del { color: var(--mute); text-decoration: line-through; }
.learn-card .body ins { background: var(--accent); color: var(--ink); text-decoration: none; padding: 0 3px; }
.learn-card.after .body strong { background: var(--accent); padding: 0 4px; font-weight: 500; }

.learn-meta { display: flex; gap: 16px; align-items: baseline; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--rule); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--mute); text-transform: uppercase; }
.learn-meta strong { color: var(--ink); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; font-weight: 400; letter-spacing: 0; text-transform: none; }

/* ============================================================ */
/* DASHBOARD                                                     */
/* ============================================================ */
.dash {
  background: var(--paper); border: 1px solid var(--ink);
  box-shadow: 0 32px 70px -36px rgba(0,0,0,0.32), 0 2px 0 rgba(0,0,0,0.04);
  overflow: hidden; position: relative;
}
.dash-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.dash-bar .greet { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--ink); }
.dash-bar .greet em { font-weight: 400; }
.dash-bar .right { display: flex; align-items: center; gap: 14px; }
.dash-bar .search { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--mute); border: 1px solid var(--rule-strong); padding: 8px 12px; min-width: 240px; }
.dash-bar .search::before { content: "⌕  "; opacity: 0.6; }

.dash-filters { display: flex; gap: 0; padding: 14px 24px; border-bottom: 1px solid var(--rule); flex-wrap: wrap; }
.dash-filter { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; padding: 8px 14px; color: var(--mute); cursor: default; border-right: 1px solid var(--rule); }
.dash-filter.active { color: var(--ink); background: var(--accent); }
.dash-filter:last-child { border-right: none; }

.dash-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--rule);
}
@media (min-width: 700px) { .dash-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .dash-grid { grid-template-columns: repeat(3, 1fr); } }

.dash-card {
  background: var(--paper);
  padding: 22px 22px 18px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.dash-card .thumb {
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(135deg, #f2f4f8 0 10px, #e9ecf2 10px 20px);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--mute); text-transform: uppercase;
}
.dash-card .meta { display: flex; align-items: baseline; justify-content: space-between; }
.dash-card .meta .name { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--ink); }
.dash-card .meta .updated { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--mute); text-transform: uppercase; }
.dash-card .platforms { display: flex; gap: 4px; flex-wrap: wrap; }
.dash-card .plat {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 8px; background: var(--paper-2); border: 1px solid var(--rule);
}
.dash-card .plat.published { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.dash-card .plat.draft { color: var(--mute); }
.dash-card .actions { display: flex; gap: 0; margin: 4px -22px -18px; border-top: 1px solid var(--rule); }
.dash-card .action {
  flex: 1; padding: 12px 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  border-right: 1px solid var(--rule); text-align: center; cursor: default;
}
.dash-card .action:last-child { border-right: none; }
.dash-card .action.primary { background: var(--ink); color: var(--paper); }
.dash-card.new {
  background: var(--paper-cream);
  border: 1.5px dashed var(--rule-strong);
  margin: -1px;
  display: flex; align-items: center; justify-content: center;
  min-height: 260px;
}
.dash-card.new .add { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 24px; color: var(--ink); text-align: center; }
.dash-card.new .add .plus { display: block; font-size: 48px; line-height: 1; margin-bottom: 8px; }
.dash-card.new .add .sub { display: block; font-family: 'JetBrains Mono', monospace; font-style: normal; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-top: 6px; }

/* ============================================================ */
/* STILL LIFE MOMENT                                             */
/* ============================================================ */
.moment { text-align: center; padding: 100px 0; }
.moment .ital-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto;
}
.moment .ital-quote .under {
  display: inline-block; padding-bottom: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 Q 30 3, 58 8 Q 92 12, 124 6 Q 162 2, 198 9' stroke='%239bbcf2' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: 0 100%;
  background-size: 100% 0.35em;
}
.moment-attr { margin-top: 28px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }

/* Still-life composite */
.stilllife-band { padding: 120px 0; background: var(--paper-cream); position: relative; overflow: hidden; }
.stilllife-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.stilllife-grid > * { min-width: 0; }
@media (min-width: 900px) { .stilllife-grid { grid-template-columns: 1fr 1.05fr; gap: 80px; } }

/* ============================================================ */
/* PRICING (small)                                               */
/* ============================================================ */
.price-strip { background: var(--ink); color: var(--paper); padding: 80px 0; }
.price-strip .lead { color: rgba(255,255,255,0.82); max-width: 50ch; }

/* ============================================================ */
/* CLOSING                                                       */
/* ============================================================ */
.closing { background: var(--ink); color: var(--paper); padding: 120px 0; position: relative; overflow: hidden; }
.closing .display { color: var(--paper); }
.closing .display em { color: var(--accent); }
.closing-mark {
  position: absolute; bottom: -22%; right: -8%;
  width: clamp(440px, 64vw, 880px); aspect-ratio: 1/1;
  background: url('../assets/maromi-m-2.png') center/contain no-repeat;
  filter: invert(1); opacity: 0.08;
  pointer-events: none;
}

/* ============================================================ */
/* CLEAN EDITOR — friendlier, less technical (replaces .editor-*) */
/* ============================================================ */
.editor-clean {
  background: var(--paper);
  border: 1px solid var(--ink);
  overflow: hidden;
  position: relative;
}
.editor-clean-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.editor-clean-topbar .left { display: flex; align-items: center; gap: 12px; }
.editor-clean-topbar .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-deep);
}
.editor-clean-topbar .crumb-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.editor-clean-topbar .crumb-title em {
  font-style: italic;
  color: var(--mute);
  font-weight: 300;
  margin-left: 4px;
}
.editor-clean-langs {
  display: inline-flex; align-items: center; gap: 2px;
  background: var(--paper-2);
  padding: 4px;
  border-radius: 999px;
}
.editor-clean-langs .lang {
  padding: 6px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
  border-radius: 999px;
  cursor: default;
}
.editor-clean-langs .lang.active {
  background: var(--ink);
  color: var(--paper);
}

.editor-clean-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  min-height: 480px;
}
.editor-clean-grid > * { min-width: 0; }
@media (max-width: 800px) { .editor-clean-grid { grid-template-columns: 1fr; } }

/* Lifestyle product staging */
.product-stage {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 65%, #f3ecdb 0%, #ede4cf 50%, #e2d6b9 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  border-right: 1px solid var(--rule);
  overflow: hidden;
}
@media (max-width: 800px) { .product-stage { border-right: none; border-bottom: 1px solid var(--rule); aspect-ratio: 4/3; } }
.stage-surface {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(180deg, transparent 0 6px, rgba(150,130,90,0.04) 6px 7px),
    linear-gradient(to top, rgba(0,0,0,0.06) 0%, transparent 30%);
  pointer-events: none;
}
.stage-product {
  width: 60%;
  max-width: 280px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 24px rgba(60, 45, 20, 0.12));
}
.stage-prop {
  position: absolute;
  bottom: 8%;
  right: 10%;
  width: 38px;
  height: auto;
  z-index: 3;
  opacity: 0.75;
  transform: rotate(8deg);
}

/* Friendly editor fields */
.editor-clean-main {
  padding: 36px 36px 28px;
  display: flex; flex-direction: column; gap: 26px;
}
.editor-clean-field { display: flex; flex-direction: column; gap: 10px; }
.editor-clean-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mute);
}
.ec-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
  padding: 14px 16px;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
}
.ec-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  padding: 14px 16px;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
}
.ec-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.ec-tags span {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.ec-platforms {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.ec-plat-pill {
  background: var(--paper);
  color: var(--mute);
  padding: 6px 12px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.ec-plat-pill.on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.ec-plat-pill.on::before {
  content: '✓ ';
  color: var(--accent);
  margin-right: 2px;
}

/* Friendly footer */
.editor-clean-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
}
.ready-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.ready-pill .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  background: var(--accent-ink); color: var(--accent);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}
.saved-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
}

/* ============================================================ */
/* Rules reassurance block — replaces stat counter               */
/* ============================================================ */
.rules-reassurance {
  margin-top: 40px;
  padding: 28px 0 4px;
  border-top: 1px solid var(--rule);
  max-width: 44ch;
}
.rules-reassurance-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
  text-wrap: balance;
}
.rules-reassurance-headline em { font-style: italic; font-weight: 400; }
.rules-reassurance-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--body);
}

/* ============================================================ */
/* Optical correction — italic Cormorant <em> inside DM Sans body */
/* Italic Cormorant reads visually softer than upright sans —     */
/* bump weight, size, and pure-black color so it POPS not fades. */
/* ============================================================ */
.hero-lead em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.35em;
  line-height: inherit;
  color: #000;
  letter-spacing: -0.005em;
}

.pitch-detail em,
.body-note em,
.three-step .step p em,
.answer-section .body em,
.qa-section .qa-body em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.22em;
  line-height: inherit;
  color: #000;
}

/* Even more emphasized italic words (.proof / strong) */
.qa-section .qa-body em.proof,
.qa-section .qa-body strong,
.body-note em.proof,
.answer-section .body em.proof,
.pitch-detail em.proof {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.3em;
  line-height: inherit;
  color: #000;
}

/* ============================================================ */
/* Intro story — pain + answer narrative                         */
/* ============================================================ */
.pain-section {
  background: var(--paper-cream);
  padding: var(--section-y) 0;
}
.pain-section .inner,
.answer-section .inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.pain-section .eyebrow,
.answer-section .eyebrow {
  justify-content: center;
  margin-bottom: 28px;
}
.pain-section h2,
.answer-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 auto 32px;
  max-width: 18ch;
  text-wrap: balance;
}
.pain-section h2 em,
.answer-section h2 em { font-style: italic; font-weight: 400; }
.pain-section .lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 38ch;
  margin: 0 auto;
}

.answer-section {
  padding: var(--section-y) 0;
}
.answer-section .lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 34ch;
  margin: 0 auto 56px;
}
.answer-section .body {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
  color: var(--body);
  max-width: 52ch;
  margin: 0 auto 22px;
}

/* 3-step "Upload / Add / Generate" */
.three-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 920px;
  margin: 56px auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
@media (min-width: 800px) { .three-step { grid-template-columns: repeat(3, 1fr); } }
.three-step .step {
  padding: 32px 28px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 800px) {
  .three-step .step { border-bottom: none; border-right: 1px solid var(--rule); }
  .three-step .step:last-child { border-right: none; }
}
.three-step .step:last-child { border-bottom: none; }
.three-step .step .step-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.three-step .step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
}
.three-step .step h4 em { font-style: italic; }
.three-step .step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
}

/* "No X / No Y / No Z" stagger */
.no-stagger {
  margin: 56px auto 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.012em;
  display: flex; flex-direction: column; gap: 4px;
  align-items: center;
  text-wrap: balance;
}
.no-stagger span {
  position: relative;
  display: inline-block;
}
.no-stagger span::before {
  content: '— ';
  opacity: 0.5;
  margin-right: 6px;
}
.no-stagger span::after {
  content: ' —';
  opacity: 0.5;
  margin-left: 6px;
}

/* Closing pull-quote inside intro answer */
.answer-section .answer-pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 22ch;
  margin: 56px auto 0;
  padding: 40px 0 12px;
  position: relative;
}
.answer-section .answer-pull em { font-style: italic; font-weight: 500; }
.answer-section .answer-pull::before {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 0;
  width: 56px; height: 1px;
  background: rgba(0,0,0,0.4);
}
.answer-section .under-sky {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 Q 30 3, 58 8 Q 92 12, 124 6 Q 162 2, 198 9' stroke='%239bbcf2' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: 0 100%;
  background-size: 100% 0.35em;
  padding-bottom: 0.05em;
}

/* ============================================================ */
/* Q&A — "Why not just use ChatGPT?"                             */
/* ============================================================ */
.qa-section {
  background: var(--paper-cream);
  padding: var(--section-y) 0;
}
.qa-section .qa-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.qa-section .eyebrow {
  justify-content: center;
  margin-bottom: 28px;
}
.qa-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 auto 28px;
  max-width: 18ch;
  text-wrap: balance;
}
.qa-section h2 em { font-style: italic; font-weight: 400; }
.qa-section .qa-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 36ch;
  margin: 0 auto 12px;
}
.qa-section .qa-pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 16ch;
  margin: 36px auto 40px;
  padding: 40px 0;
  position: relative;
}
.qa-section .qa-pull::before, .qa-section .qa-pull::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 56px; height: 1px;
  background: rgba(0,0,0,0.4);
}
.qa-section .qa-pull::before { top: 0; }
.qa-section .qa-pull::after { bottom: 0; }
.qa-section .under-sky {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 Q 30 3, 58 8 Q 92 12, 124 6 Q 162 2, 198 9' stroke='%239bbcf2' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: 0 100%;
  background-size: 100% 0.35em;
  padding-bottom: 0.05em;
}
.qa-section .qa-body {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--body);
  max-width: 54ch;
  margin: 0 auto 22px;
}
.qa-section .qa-body em.proof,
.qa-section .qa-body strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* Comparison card — ChatGPT alone vs. Maromi Systems */
.comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 32px auto 40px;
  max-width: 720px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 56px -36px rgba(0,0,0,0.24);
  text-align: left;
}
@media (min-width: 700px) { .comparison { grid-template-columns: 1fr 1fr; } }
.comparison .col { padding: 30px 28px; }
.comparison .col + .col { border-top: 1px solid var(--rule); }
@media (min-width: 700px) {
  .comparison .col + .col { border-top: none; border-left: 1px solid var(--rule); }
}
.comparison .col.us { background: var(--paper-cream); }
.comparison .col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 14px;
}
.comparison .col.us h4 { color: var(--accent-ink); }
.comparison .col .name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}
.comparison .col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--body);
}
.comparison .col ul li {
  padding-left: 22px;
  position: relative;
}
.comparison .col ul li::before {
  content: '·';
  position: absolute;
  left: 4px; top: -3px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--mute);
  line-height: 1;
}
.comparison .col.us ul li::before {
  color: var(--accent-deep);
  content: '✓';
  font-style: normal;
  font-size: 14px;
  top: 0; left: 6px;
}

/* ============================================================ */
/* Why I built — signature note                                  */
/* ============================================================ */
.why-built {
  padding: var(--section-y) 0;
  text-align: center;
}
.why-built .inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.why-built .eyebrow { justify-content: center; margin-bottom: 28px; }
.why-built h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 auto 36px;
  max-width: 22ch;
  text-wrap: balance;
}
.why-built h2 em { font-style: italic; font-weight: 400; }
.why-built .lead-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto 36px;
}
.why-built .body-note {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--body);
  max-width: 48ch;
  margin: 0 auto 22px;
}
.why-built .signature {
  margin: 48px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.why-built .signature::before { content: '— '; opacity: 0.7; }
.why-built .sig-role {
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mute);
}

/* ============================================================ */
/* PAPER GRAIN (subtle, full-page)                               */
/* ============================================================ */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch' seed='4'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/></svg>");
  opacity: 0.045;
  mix-blend-mode: multiply;
}
.closing, section.ink, .price-strip { isolation: isolate; }
