/* ReelPen Business v2 — shared theme */
:root {
  --bg: #F7F6F2;
  --paper: #FFFFFF;
  --ink: #0E1B2C;
  --ink-2: #1F2D40;
  --muted: #5C6A7E;
  --line: #E2E1DA;
  --line-2: #D4D2C8;
  --gold: #9B7B3A;
  --gold-soft: #C7A769;
  --green: #355E3B;
  --red: #B0432B;
  --serif: 'Source Serif 4', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* utility */
.utility { background: var(--ink); color: rgba(255,255,255,0.75); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; }
.utility-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.utility a:hover { color: #fff; }
.utility-links { display: flex; gap: 24px; }
.utility .pulse { display: inline-flex; align-items: center; gap: 8px; }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: #6BAA75; box-shadow: 0 0 0 0 rgba(107,170,117,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(107,170,117,0.7); } 70% { box-shadow: 0 0 0 8px rgba(107,170,117,0); } 100% { box-shadow: 0 0 0 0 rgba(107,170,117,0); } }

/* nav */
.nav { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.nav-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; padding: 18px 0; gap: 48px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 22px; letter-spacing: 0.02em; color: var(--ink); font-weight: 500; }
.brand-mark { width: 32px; height: 32px; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 16px; font-style: italic; }
.brand small { font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase; display: block; margin-top: 1px; font-weight: 500; }
.nav-links { display: flex; gap: 32px; font-size: 13px; font-weight: 500; color: var(--ink-2); }
.nav-links a { padding: 6px 0; }
.nav-links a:hover { color: var(--gold); }
.nav-links .has-caret::after { content: '▾'; margin-left: 5px; font-size: 9px; color: var(--muted); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; font-size: 13px; font-weight: 600; letter-spacing: 0.01em; border: 1px solid transparent; border-radius: 2px; transition: all .18s ease; background: none; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-2); }
.btn-ghost { color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-link { color: var(--ink); padding: 11px 0; }
.btn-link:hover { color: var(--gold); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #856631; }

/* steps bar (workflow) */
.steps-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.steps-row { display: flex; gap: 8px; padding: 14px 0; overflow-x: auto; }
.step-pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); background: var(--bg); border: 1px solid var(--line); white-space: nowrap; font-weight: 500; }
.step-pill .num { font-weight: 700; color: var(--muted); }
.step-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.step-pill.active .num { color: var(--gold-soft); }
.step-pill.done { background: var(--paper); color: var(--green); border-color: var(--green); }
.step-pill.done .num { color: var(--green); }
.step-pill.done::before { content: '✓'; margin-right: -2px; }

/* page header */
.page-header { background: var(--paper); border-bottom: 1px solid var(--line); padding: 56px 0 48px; }
.page-header .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 18px; }
.page-header .eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--gold); }
.page-header h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 16px; color: var(--ink); }
.page-header h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-header .lede { font-size: 16px; line-height: 1.65; color: var(--muted); max-width: 640px; margin: 0; }
