@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --ink:        #0f0e0c;
  --ink-soft:   #2d2b27;
  --ink-muted:  #5a5750;
  --cream:      #f5f1ea;
  --cream-dark: #ede8de;
  --cream-mid:  #e4ddd0;
  --red:        #c0392b;
  --red-dark:   #9b2c20;
  --red-light:  #f4ece9;
  --steel:      #2e5a8e;
  --steel-dark: #1e3f66;
  --steel-light:#dce8f5;
  --green:      #1e7a4a;

  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;
  --ff-mono:   'IBM Plex Mono', 'Courier New', monospace;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --rad-sm: 2px;
  --rad-md: 4px;
  --rad-lg: 8px;

  --shadow-sm: 0 1px 3px rgba(15,14,12,.08), 0 1px 2px rgba(15,14,12,.06);
  --shadow-md: 0 4px 12px rgba(15,14,12,.10), 0 2px 4px rgba(15,14,12,.06);
  --shadow-lg: 0 12px 32px rgba(15,14,12,.12), 0 4px 8px rgba(15,14,12,.06);

  --border: 1px solid #d4cec4;
  --border-dark: 1px solid #b5ae9f;

  --transition: 180ms ease;
}

/* ─── BASE ───────────────────────────────────────────────── */
html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  min-height: 100vh;
}

/* ─── CONTAINER ──────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 5vw, 3rem);
  padding-right: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-serif);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.9rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 700; }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 600; font-family: var(--ff-sans); }
h5, h6 { font-size: 1rem; font-weight: 600; font-family: var(--ff-sans); }

p { color: var(--ink-soft); max-width: 68ch; }
p + p { margin-top: var(--sp-4); }

strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

a { transition: color var(--transition); }
a:hover { color: var(--red); }

.txt-mono {
  font-family: var(--ff-mono);
  font-size: 0.875em;
  letter-spacing: 0.02em;
}
.txt-label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.txt-center { text-align: center; }
.txt-red { color: var(--red); }
.txt-steel { color: var(--steel); }

/* ─── RULE / DIVIDER ─────────────────────────────────────── */
.rule { border: none; border-top: var(--border); margin: var(--sp-8) 0; }
.rule--thick { border-top: 3px solid var(--ink); }
.rule--red { border-top: 2px solid var(--red); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7em 1.6em;
  border-radius: var(--rad-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--steel);
  border-color: var(--steel);
}
.btn--ghost:hover {
  background: var(--steel);
  color: #fff;
}

.btn--sm {
  font-size: 0.75rem;
  padding: 0.5em 1.1em;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* ─── EYEBROW ────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid rgba(192,57,43,.2);
  padding: 0.3em 0.8em;
  border-radius: var(--rad-sm);
  margin-bottom: var(--sp-4);
}

/* ─── SECTION SPACING ────────────────────────────────────── */
.section {
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}
.section--cream { background: var(--cream); }
.section--white { background: #fff; border-top: var(--border); border-bottom: var(--border); }
.section--ink {
  background: var(--ink);
  color: var(--cream);
}
.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 { color: var(--cream); }
.section--ink p { color: #c8c2b4; }
.section--ruled {
  border-top: 3px solid var(--ink);
}
.section--stripe { background: var(--cream-dark); }

/* ─── SECTION HEADER ─────────────────────────────────────── */
.sec-head {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.sec-head--center {
  text-align: center;
}
.sec-head--center p { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin-top: var(--sp-2); }
.sec-head p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-top: var(--sp-4);
  color: var(--ink-muted);
}

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}

.header-top {
  background: var(--ink);
  color: var(--cream);
  padding: var(--sp-2) 0;
  border-bottom: 2px solid var(--red);
}
.header-top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.header-top__tagline {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b0a89a;
}
.header-top__tagline span { color: var(--red); }
.header-top__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.header-top__actions a {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0a89a;
  transition: color var(--transition);
}
.header-top__actions a:hover { color: var(--cream); }
.header-top__actions a + a { border-left: 1px solid #3a3833; padding-left: var(--sp-4); }

.header-main {
  padding: var(--sp-3) 0;
}
.header-main .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.site-logo {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__wordmark {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.site-logo__wordmark em {
  font-style: italic;
  color: var(--red);
}
.site-logo__version {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-nav__item { position: relative; }
.site-nav__link {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--transition);
  white-space: nowrap;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: var(--sp-4);
  right: var(--sp-4);
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.site-nav__link:hover { color: var(--ink); }
.site-nav__link:hover::after { transform: scaleX(1); }
.site-nav__link--active { color: var(--red); }
.site-nav__link--active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: var(--sp-4);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  width: 36px;
  height: 36px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding-top: clamp(4rem, 9vw, 8rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
  background: var(--cream);
  border-bottom: var(--border-dark);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-mid) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 {
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-5);
  font-style: italic;
}
.hero-copy h1 em { font-style: normal; color: var(--red); }
.hero-copy .lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: var(--sp-8);
  max-width: 50ch;
}
.hero-copy .lead strong { color: var(--ink); }

.hero-img-slot {
  position: relative;
  z-index: 1;
}
.hero-img-slot img {
  width: 100%;
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-lg);
  border: var(--border-dark);
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--ink);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-lg);
  border: var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 22px,
    rgba(255,255,255,.04) 22px,
    rgba(255,255,255,.04) 23px
  );
}
.hero-terminal {
  font-family: var(--ff-mono);
  font-size: clamp(0.65rem, 1.1vw, 0.8rem);
  color: #a8e6c4;
  padding: var(--sp-6);
  line-height: 1.9;
  text-align: left;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-terminal .t-dim { color: #5a6e5e; }
.hero-terminal .t-red { color: #e06c75; }
.hero-terminal .t-yellow { color: #e5c07b; }
.hero-terminal .t-blue { color: #61afef; }
.hero-terminal .t-prompt { color: #56b6c2; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.card {
  background: #fff;
  border: var(--border);
  border-radius: var(--rad-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cream-mid);
  transition: background var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--cream-mid);
}
.card:hover::before { background: var(--red); }

.card__icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border: 1px solid rgba(192,57,43,.18);
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--red);
  font-size: 1.25rem;
}
.card__icon--steel {
  background: var(--steel-light);
  border-color: rgba(46,90,142,.18);
  color: var(--steel);
}
.card__title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}
.card__text {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.card__text p { color: var(--ink-muted); font-size: 0.9rem; max-width: 100%; }
.card__tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  background: var(--steel-light);
  padding: 0.2em 0.6em;
  border-radius: 2px;
  margin-bottom: var(--sp-4);
}

/* ─── STATS ROW ──────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: var(--border-dark);
  border-radius: var(--rad-lg);
  overflow: hidden;
  background: #fff;
}
.stat-item {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem);
  border-right: var(--border);
  text-align: center;
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 400ms ease;
  transform-origin: left;
}
.stat-item:hover::after { transform: scaleX(1); }
.stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-num em { font-style: normal; color: var(--red); }
.stat-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'TEXKIT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--ff-serif);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  color: rgba(255,255,255,.03);
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.cta-band__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: var(--cream);
  margin-bottom: var(--sp-4);
}
.cta-band p {
  color: #a09890;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin: 0 auto var(--sp-8);
  max-width: 52ch;
}
.cta-band .rule--red { margin: 0 auto var(--sp-8); max-width: 80px; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: var(--border);
}
.faq-item:first-child { border-top: var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--sp-5) 0;
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--red); }
.faq-q__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item.open .faq-q__icon { transform: rotate(45deg); }
.faq-a {
  padding-bottom: var(--sp-5);
  font-size: 0.95rem;
  color: var(--ink-muted);
  max-width: 70ch;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ─── CONTENT PROSE ──────────────────────────────────────── */
.prose h2 { margin-bottom: var(--sp-4); margin-top: var(--sp-10); }
.prose h3 { margin-bottom: var(--sp-3); margin-top: var(--sp-8); }
.prose p { margin-bottom: var(--sp-4); color: var(--ink-soft); }
.prose ul { margin-bottom: var(--sp-4); padding-left: var(--sp-6); list-style: disc; }
.prose li { color: var(--ink-soft); margin-bottom: var(--sp-2); }
.prose code {
  font-family: var(--ff-mono);
  font-size: 0.85em;
  background: var(--cream-dark);
  border: var(--border);
  padding: 0.15em 0.45em;
  border-radius: 3px;
  color: var(--red);
}
.prose pre {
  background: var(--ink);
  color: #c8c2b4;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  padding: var(--sp-6);
  border-radius: var(--rad-lg);
  overflow-x: auto;
  margin: var(--sp-6) 0;
  line-height: 1.7;
}

/* ─── LEAD PARAGRAPH ─────────────────────────────────────── */
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ─── DECORATIVE COLUMN RULE ─────────────────────────────── */
.col-rule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.col-rule > *:first-child {
  border-right: var(--border-dark);
  padding-right: clamp(2rem, 6vw, 5rem);
}

/* ─── INLINE CODE BADGE ──────────────────────────────────── */
.code-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--ink);
  color: #a8e6c4;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  padding: 0.35em 0.9em;
  border-radius: var(--rad-sm);
  letter-spacing: 0.04em;
}
.code-badge .cb-dim { color: #5a6e5e; }

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--sp-2);
}
.form-input, .form-textarea {
  width: 100%;
  background: #fff;
  border: var(--border-dark);
  border-radius: var(--rad-md);
  padding: 0.65em 0.9em;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(46,90,142,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ─── PRICING CARD ───────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}
.price-card {
  background: #fff;
  border: var(--border-dark);
  border-radius: var(--rad-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
}
.price-card--featured {
  border-color: var(--red);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.price-card__badge {
  position: absolute;
  top: -1px; right: var(--sp-6);
  background: var(--red);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.7em;
  border-radius: 0 0 var(--rad-sm) var(--rad-sm);
}
.price-card__plan {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--sp-3);
}
.price-card__amount {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.price-card__amount sup { font-size: 1.2rem; vertical-align: super; }
.price-card__period {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: var(--sp-6);
}
.price-card__features { margin-bottom: var(--sp-6); }
.price-card__feature {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-2) 0;
  border-bottom: var(--border);
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.price-card__feature:last-child { border-bottom: none; }
.price-card__feature::before {
  content: '→';
  color: var(--red);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.1em;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  border-top: 3px solid var(--red);
}
.footer-main {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}
.footer-brand__wordmark {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}
.footer-brand__wordmark em { font-style: italic; color: var(--red); }
.footer-brand__desc {
  font-size: 0.875rem;
  color: #7a7268;
  line-height: 1.65;
  max-width: 32ch;
  margin-bottom: var(--sp-6);
}
.footer-brand__desc p { color: #7a7268; max-width: 100%; }
.footer-social {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #2d2b27;
  border-radius: var(--rad-md);
  color: #7a7268;
  font-size: 0.85rem;
  font-family: var(--ff-mono);
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover {
  border-color: var(--red);
  color: var(--cream);
  background: rgba(192,57,43,.15);
}

.footer-col__heading {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a5750;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid #1e1d1a;
}
.footer-col__links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col__links a {
  font-size: 0.875rem;
  color: #7a7268;
  transition: color var(--transition);
}
.footer-col__links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid #1e1d1a;
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-5);
}
.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom__copy {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #3a3833;
}
.footer-bottom__links {
  display: flex;
  gap: var(--sp-6);
}
.footer-bottom__links a {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #3a3833;
  transition: color var(--transition);
}
.footer-bottom__links a:hover { color: #7a7268; }

/* ─── UTILITY BADGE / TAG ────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.65em;
  border-radius: 2px;
  border: 1px solid currentColor;
}
.tag--red { color: var(--red); background: var(--red-light); }
.tag--steel { color: var(--steel); background: var(--steel-light); }
.tag--ink { color: var(--cream); background: var(--ink); border-color: var(--ink); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-img-slot { order: -1; }
  .hero-img-placeholder { aspect-ratio: 16/7; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .col-rule { grid-template-columns: 1fr; }
  .col-rule > *:first-child { border-right: none; padding-right: 0; border-bottom: var(--border-dark); padding-bottom: clamp(2rem, 4vw, 3rem); }
}

@media (max-width: 680px) {
  .header-top__actions { display: none; }
  .site-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--ink);
    padding: var(--sp-4) 0;
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open .site-nav__list { flex-direction: column; width: 100%; }
  .site-nav.open .site-nav__link { padding: var(--sp-3) var(--sp-6); }
  .site-nav.open .nav-cta { display: block; padding: var(--sp-4) var(--sp-6); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: var(--border); }
}

@media (max-width: 420px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .price-grid { grid-template-columns: 1fr; }
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--cream-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-muted); }
body{margin:0}
img,svg,video{max-width:100%;height:auto}
html{-webkit-text-size-adjust:100%}
*{box-sizing:border-box}
