/* =========================================================
   ForgeDailyAI — Design System
   Palette: iron / coal / ash / ember→molten heat / steel
   Type: Big Shoulders (display) · Archivo (body) · Chivo Mono (specs)
   ========================================================= */

:root {
  --iron: #1b1917;
  --coal: #26221e;
  --coal-2: #2f2a25;
  --seam: #3b342d;
  --ash: #ede6dc;
  --ash-dim: #b8aea2;
  --steel: #7a8b99;
  --ember: #ff7a1a;
  --ember-deep: #e05a00;
  --molten: #ffc24d;
  --heat: linear-gradient(90deg, #e05a00 0%, #ff7a1a 45%, #ffc24d 100%);
  --radius: 6px;
  --font-display: "Big Shoulders", sans-serif;
  --font-body: "Archivo", sans-serif;
  --font-mono: "Chivo Mono", monospace;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--iron);
  color: var(--ash);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

:focus-visible { outline: 2px solid var(--molten); outline-offset: 3px; border-radius: 2px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(27, 25, 23, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--seam);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}
.wordmark em { font-style: normal; color: var(--ember); }
.wordmark::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  background: var(--heat); border-radius: 2px;
}
.site-nav { display: flex; gap: 26px; align-items: center; }
.site-nav a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--ash-dim); letter-spacing: 0.02em;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ash); }
.site-nav a.nav-cta {
  color: var(--iron); background: var(--ember);
  padding: 9px 16px; border-radius: var(--radius); font-weight: 700;
}
.site-nav a.nav-cta:hover { background: var(--molten); color: var(--iron); }

.nav-toggle { display: none; background: none; border: 1px solid var(--seam); color: var(--ash); border-radius: var(--radius); padding: 8px 12px; font-family: var(--font-mono); font-size: 13px; cursor: pointer; }

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--coal); border-bottom: 1px solid var(--seam);
    flex-direction: column; align-items: stretch; padding: 16px 24px; gap: 14px;
  }
  .site-nav.open { display: flex; }
}

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  line-height: 1.02;
}
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--steel);
}
.mono { font-family: var(--font-mono); }

/* ---------- Hero: Today's Forge ---------- */
.hero { padding: 56px 0 72px; }
.hero-top { margin-bottom: 40px; max-width: 760px; }
.hero-top h1 { font-size: clamp(42px, 7vw, 84px); }
.hero-top h1 .lit { 
  background: var(--heat);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-top p { margin-top: 16px; font-size: 18px; color: var(--ash-dim); max-width: 560px; }

.totd {
  position: relative;
  background: var(--coal);
  border: 1px solid var(--seam);
  border-radius: 10px;
  padding: 34px 36px 30px;
  overflow: hidden;
}
.totd::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: var(--heat);
}
.totd::after { /* ember glow breathing along the hot edge */
  content: ""; position: absolute; left: -40px; top: 0; bottom: 0; width: 140px;
  background: radial-gradient(ellipse at left center, rgba(255, 122, 26, 0.22), transparent 70%);
  animation: breathe 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.totd-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.totd-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); }
.totd-date { font-family: var(--font-mono); font-size: 12px; color: var(--steel); }
.totd h2 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 8px; }
.totd .totd-tagline { font-size: 18px; color: var(--ash); max-width: 640px; }
.totd .totd-desc { margin-top: 14px; color: var(--ash-dim); max-width: 680px; }
.totd-meta { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }
.totd-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  border-radius: var(--radius); padding: 12px 22px; border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-hot { background: var(--ember); color: var(--iron); }
.btn-hot:hover { background: var(--molten); }
.btn-line { border-color: var(--seam); color: var(--ash); background: transparent; }
.btn-line:hover { border-color: var(--ember); color: var(--molten); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---------- Tags / chips ---------- */
.tag {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--steel);
  border: 1px solid var(--seam); border-radius: 999px; padding: 4px 11px;
  white-space: nowrap;
}
.tag-hot { color: var(--ember); border-color: rgba(255, 122, 26, 0.4); }

/* ---------- Sections ---------- */
.section { padding: 64px 0; border-top: 1px solid var(--seam); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { color: var(--ash-dim); max-width: 520px; }
.section-link { font-family: var(--font-mono); font-size: 13px; color: var(--ember); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; }
.section-link:hover { color: var(--molten); }

/* ---------- Tool grid ---------- */
.tool-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px;
}
.tool-card {
  background: var(--coal); border: 1px solid var(--seam); border-radius: 10px;
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.15s ease, transform 0.15s ease;
  position: relative;
}
.tool-card:hover { border-color: rgba(255, 122, 26, 0.55); transform: translateY(-2px); }
.tool-card h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; font-size: 22px; }
.tool-card h3 a { text-decoration: none; }
.tool-card h3 a::after { content: ""; position: absolute; inset: 0; }
.tool-card p { font-size: 14.5px; color: var(--ash-dim); flex: 1; }
.tool-card .card-meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.tool-card .add-btn { position: relative; z-index: 2; align-self: flex-start; }

/* ---------- Directory controls ---------- */
.controls { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 26px; }
.controls input[type="search"] {
  flex: 1; min-width: 220px;
  background: var(--coal); border: 1px solid var(--seam); border-radius: var(--radius);
  color: var(--ash); padding: 12px 16px; font-family: var(--font-body); font-size: 15px;
}
.controls input[type="search"]::placeholder { color: var(--steel); }
.controls select {
  background: var(--coal); border: 1px solid var(--seam); border-radius: var(--radius);
  color: var(--ash); padding: 12px 14px; font-family: var(--font-mono); font-size: 13px;
}
.result-count { font-family: var(--font-mono); font-size: 12px; color: var(--steel); margin-bottom: 16px; }

/* ---------- Forge (stack builder) ---------- */
.forge-intro { max-width: 640px; margin-bottom: 34px; }
.forge-intro p { color: var(--ash-dim); margin-top: 10px; }

.slot-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin-bottom: 40px; }
.slot {
  border: 1px dashed var(--seam); border-radius: 10px; padding: 16px;
  min-height: 128px; background: rgba(38, 34, 30, 0.5);
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.2s ease, box-shadow 0.3s ease;
}
.slot.filled {
  border-style: solid; border-color: rgba(255, 122, 26, 0.5);
  box-shadow: inset 0 0 24px rgba(255, 122, 26, 0.07);
}
.slot.just-lit { animation: quench 1.2s ease-out; }
@keyframes quench {
  0% { box-shadow: inset 0 0 40px rgba(255, 194, 77, 0.45); border-color: var(--molten); }
  100% { box-shadow: inset 0 0 24px rgba(255, 122, 26, 0.07); border-color: rgba(255, 122, 26, 0.5); }
}
.slot .slot-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 17px; letter-spacing: 0.04em; }
.slot .slot-hint { font-family: var(--font-mono); font-size: 11px; color: var(--steel); }
.slot .slot-tool { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.slot .slot-tool span { font-weight: 600; font-size: 14.5px; color: var(--molten); }
.slot .slot-tool button {
  background: none; border: 1px solid var(--seam); color: var(--steel); border-radius: 4px;
  font-family: var(--font-mono); font-size: 11px; padding: 3px 8px; cursor: pointer;
}
.slot .slot-tool button:hover { color: var(--ash); border-color: var(--ember); }
.slot .slot-empty { margin-top: auto; font-size: 13px; color: var(--steel); }

.forge-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 46px; align-items: center; }
.share-note { font-family: var(--font-mono); font-size: 12px; color: var(--steel); }

/* ---------- Detail page ---------- */
.detail { padding: 56px 0 80px; max-width: 780px; }
.detail .crumbs { font-family: var(--font-mono); font-size: 12px; color: var(--steel); margin-bottom: 26px; }
.detail .crumbs a { color: var(--steel); }
.detail .crumbs a:hover { color: var(--ember); }
.detail h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 12px; }
.detail .totd-tagline { font-size: 19px; }
.detail .detail-body { margin-top: 20px; color: var(--ash-dim); font-size: 16.5px; }
.detail .disclosure { margin-top: 30px; font-family: var(--font-mono); font-size: 11.5px; color: var(--steel); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.step { background: var(--coal); border: 1px solid var(--seam); border-radius: 10px; padding: 24px; }
.step .step-glyph { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--ember); margin-bottom: 10px; }
.step h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 20px; letter-spacing: 0.03em; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ash-dim); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--coal); border: 1px solid var(--seam); border-radius: 12px; padding: 40px; text-align: center; position: relative; overflow: hidden; }
.newsletter::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--heat); }
.newsletter h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 10px; }
.newsletter p { color: var(--ash-dim); max-width: 480px; margin: 0 auto 22px; }
.newsletter form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter input[type="email"] {
  flex: 1; min-width: 220px; background: var(--iron); border: 1px solid var(--seam);
  border-radius: var(--radius); color: var(--ash); padding: 12px 16px; font-size: 15px; font-family: var(--font-body);
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--seam); padding: 40px 0 48px; margin-top: 40px; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.site-footer p { font-family: var(--font-mono); font-size: 12px; color: var(--steel); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-family: var(--font-mono); font-size: 12px; color: var(--steel); text-decoration: none; }
.footer-links a:hover { color: var(--ember); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--coal-2); border: 1px solid var(--ember); color: var(--ash);
  border-radius: var(--radius); padding: 12px 20px; font-size: 14px;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   PHASE 1 — Discoverability: filters, task strip,
   category pages, related tools
   ========================================================= */

/* ---------- Task strip (homepage: jump in by job) ---------- */
.tasks { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.task-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--coal); border: 1px solid var(--seam); border-radius: 10px;
  padding: 16px 18px; text-decoration: none; color: var(--ash);
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.task-chip:hover { border-color: rgba(255,122,26,0.55); transform: translateY(-2px); background: var(--coal-2); }
.task-chip .task-glyph { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--ember); line-height: 1; }
.task-chip .task-label { font-weight: 600; font-size: 15px; }
.task-chip .task-sub { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--steel); margin-top: 2px; letter-spacing: 0.04em; }

/* ---------- Directory filter bar (multi-filter + sort) ---------- */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 28px 0 10px; }
.filter-bar input[type="search"] {
  flex: 1 1 260px; min-width: 200px;
  background: var(--coal); border: 1px solid var(--seam); border-radius: var(--radius);
  color: var(--ash); padding: 12px 16px; font-family: var(--font-body); font-size: 15px;
}
.filter-bar input[type="search"]::placeholder { color: var(--steel); }
.filter-bar select {
  background: var(--coal); border: 1px solid var(--seam); border-radius: var(--radius);
  color: var(--ash); padding: 12px 14px; font-family: var(--font-mono); font-size: 13px; cursor: pointer;
}
.filter-bar .sort-wrap { margin-left: auto; }
.dir-meta { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.dir-clear {
  background: none; border: none; color: var(--ember); cursor: pointer;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; padding: 0;
}
.dir-clear:hover { color: var(--molten); text-decoration: underline; }
.dir-clear[hidden] { display: none; }

/* ---------- Category directory pages ---------- */
.cat-header { padding: 52px 0 8px; }
.cat-header .cat-intro { margin-top: 14px; font-size: 17px; color: var(--ash-dim); max-width: 680px; }
.cat-links { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Related tools (tool detail) ---------- */
.related { margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--seam); }
.related h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.03em; font-size: 24px; margin-bottom: 20px; }

/* =========================================================
   PHASE 2 — AI Stack Architect
   ========================================================= */
.quiz { background: var(--coal); border: 1px solid var(--seam); border-radius: 12px; padding: 34px 32px; max-width: 760px; }
.quiz-step { margin-bottom: 26px; }
.quiz-step:last-of-type { margin-bottom: 0; }
.quiz-q { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; font-size: 18px; margin-bottom: 12px; }
.quiz-q .quiz-num { color: var(--ember); margin-right: 8px; }
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.opt {
  background: var(--iron); border: 1px solid var(--seam); border-radius: 999px;
  color: var(--ash-dim); font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 9px 16px; cursor: pointer; transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.opt:hover { border-color: rgba(255,122,26,0.5); color: var(--ash); }
.opt.sel { border-color: var(--ember); color: var(--molten); background: rgba(255,122,26,0.08); }
.quiz-notes { width: 100%; background: var(--iron); border: 1px solid var(--seam); border-radius: var(--radius); color: var(--ash); padding: 12px 14px; font-family: var(--font-body); font-size: 15px; }
.quiz-notes::placeholder { color: var(--steel); }
.architect-cta { margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.architect-note { font-family: var(--font-mono); font-size: 12px; color: var(--steel); }

/* loading */
.arch-loading { text-align: center; padding: 60px 0; }
.arch-loading .anvil { font-family: var(--font-display); font-weight: 800; font-size: 40px; background: var(--heat); -webkit-background-clip: text; background-clip: text; color: transparent; animation: breathe 1.6s ease-in-out infinite; }
.arch-loading p { margin-top: 14px; font-family: var(--font-mono); font-size: 13px; color: var(--ash-dim); letter-spacing: 0.04em; }

/* result */
.arch-result { margin-top: 8px; }
.arch-summary { background: var(--coal); border: 1px solid var(--seam); border-left: 4px solid var(--ember); border-radius: 10px; padding: 22px 24px; font-size: 17px; color: var(--ash); margin-bottom: 28px; }
.arch-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.arch-slot { background: var(--coal); border: 1px solid var(--seam); border-radius: 10px; padding: 20px 22px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.arch-slot .arch-step-n { position: absolute; top: 16px; right: 18px; font-family: var(--font-mono); font-size: 11px; color: var(--steel); letter-spacing: 0.06em; }
.arch-slot .arch-slot-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); }
.arch-slot .arch-tool { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; font-size: 22px; }
.arch-slot .arch-tool a { text-decoration: none; color: var(--ash); }
.arch-slot .arch-tool a:hover { color: var(--molten); }
.arch-slot .arch-why { font-size: 14.5px; color: var(--ash-dim); flex: 1; }
.arch-slot .arch-alt { font-family: var(--font-mono); font-size: 11.5px; color: var(--steel); }
.arch-slot .arch-alt a { color: var(--steel); }
.arch-slot .arch-alt a:hover { color: var(--ember); }
.arch-callouts { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 26px; }
.arch-callout { background: rgba(38,34,30,0.5); border: 1px dashed var(--seam); border-radius: 10px; padding: 20px; }
.arch-callout .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); }
.arch-callout .v { margin-top: 6px; font-size: 15.5px; color: var(--ash); }
.arch-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.arch-pro-note { margin-top: 22px; font-family: var(--font-mono); font-size: 12px; color: var(--steel); border-top: 1px solid var(--seam); padding-top: 18px; }
.arch-pro-note strong { color: var(--molten); font-weight: 500; }
.arch-error { background: var(--coal); border: 1px solid var(--ember); border-radius: 10px; padding: 20px 22px; color: var(--ash); margin-top: 8px; }

/* =========================================================
   PHASE 2B — Paid PDF playbook (Pro CTA + playbook page)
   ========================================================= */
.arch-pro {
  margin-top: 28px; border-top: 1px solid var(--seam); padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.arch-pro-copy { flex: 1 1 340px; }
.arch-pro-h { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; font-size: 20px; color: var(--molten); }
.arch-pro-d { margin-top: 8px; font-size: 14.5px; color: var(--ash-dim); max-width: 520px; }
.arch-pro .btn { white-space: nowrap; }

/* playbook / success page */
.playbook-wrap { max-width: 780px; padding: 56px 0 80px; }
.pb-status { text-align: center; padding: 40px 0; }
.pb-status .anvil { font-family: var(--font-display); font-weight: 800; font-size: 40px; background: var(--heat); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pb-status p { margin-top: 14px; font-family: var(--font-mono); font-size: 13px; color: var(--ash-dim); }
.pb-card { background: var(--coal); border: 1px solid var(--seam); border-radius: 12px; padding: 40px; text-align: center; position: relative; overflow: hidden; }
.pb-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--heat); }
.pb-card .pb-check { font-size: 34px; color: var(--molten); }
.pb-card h1 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-size: clamp(30px,5vw,46px); margin: 12px 0 10px; }
.pb-card p { color: var(--ash-dim); max-width: 520px; margin: 0 auto 8px; }
.pb-actions { margin-top: 26px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pb-note { margin-top: 24px; font-family: var(--font-mono); font-size: 12px; color: var(--steel); }
.pb-error { border-color: var(--ember); }

/* =========================================================
   GROWTH — Architect email capture
   ========================================================= */
.arch-capture {
  margin-top: 28px; background: var(--coal); border: 1px solid var(--seam);
  border-left: 4px solid var(--ember); border-radius: 10px; padding: 24px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.arch-cap-copy { flex: 1 1 320px; }
.arch-cap-h { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; font-size: 19px; }
.arch-cap-d { margin-top: 6px; font-size: 14px; color: var(--ash-dim); max-width: 480px; }
.arch-cap-form { display: flex; gap: 10px; flex: 0 1 auto; flex-wrap: wrap; }
.arch-cap-form input[type="email"] {
  background: var(--iron); border: 1px solid var(--seam); border-radius: var(--radius);
  color: var(--ash); padding: 12px 16px; font-family: var(--font-body); font-size: 15px; min-width: 220px;
}
.arch-cap-form input[type="email"]::placeholder { color: var(--steel); }
