/* ============================================================
   MORGAN REED BOOKS — site design system
   Palette: cream base, orange dominant accent, navy contrast,
   gold highlight. Sampled from the real book cover art.
   Display type: Anton (heavy condensed, matches cover lettering)
   Body type: Inter
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --cream:     #FBF3E7;   /* page base */
  --cream-dk:  #F4E7D4;   /* alt band */
  --white:     #FFFFFF;
  --orange:    #EA3000;   /* dominant accent */
  --orange-dk: #C42800;
  --orange-lt: #FDEAE4;   /* tint band */
  --gold:      #F4C303;   /* highlight */
  --navy:      #011829;   /* contrast sections */
  --navy-lt:   #0C2C42;
  --ink:       #1A1A1A;   /* body copy */
  --muted:     #5F6B72;
  --hair:      #E4D6C2;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPE ── */
h1, h2, h3, .display {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.15rem; letter-spacing: 0.01em; }
p  { font-size: 1rem; }
a  { color: inherit; }

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.eyebrow-gold { color: var(--gold); }
.lead { font-size: 1.08rem; color: var(--muted); text-wrap: balance; }
.hl { color: var(--orange); }
.hl-gold { color: var(--gold); }

/* Slab underline accent used under section headings */
.rule-accent { display: block; width: 62px; height: 5px; background: var(--orange); margin: 0.9rem 0 0; border-radius: 2px; }
.rule-center { margin: 0.9rem auto 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dk); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-on-dark { background: var(--gold); color: var(--navy); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: var(--white); color: var(--navy); }
.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.74rem; }

/* ── LAYOUT ── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.sec { padding: 5rem 0; }
.sec-sm { padding: 3.5rem 0; }
.band-cream-dk { background: var(--cream-dk); }
.band-orange-lt { background: var(--orange-lt); }
.band-navy { background: var(--navy); color: rgba(255,255,255,0.82); }
.band-navy h1, .band-navy h2, .band-navy h3 { color: var(--white); }
.band-white { background: var(--white); }
.sec-head { text-align: center; margin-bottom: 3rem; }
.sec-head p { max-width: 560px; margin: 1rem auto 0; color: var(--muted); text-wrap: balance; }
.band-navy .sec-head p { color: rgba(255,255,255,0.7); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--hair);
}
.nav-in {
  max-width: 1140px; margin: 0 auto; padding: 0.9rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { text-decoration: none; line-height: 1; flex-shrink: 0; }
.brand b {
  display: block; font-family: 'Anton', sans-serif; font-size: 1.28rem;
  font-weight: 400; /* Anton ships one weight; <b> defaults to 700 and triggers faux bold */
  letter-spacing: 0.01em; color: var(--navy); text-transform: uppercase;
}
.brand span {
  display: block; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.36em;
  color: var(--orange); text-transform: uppercase; margin-top: 2px;
}
.nav-menu { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-menu > li > a {
  text-decoration: none; color: var(--navy);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.4rem 0; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav-menu > li > a:hover, .nav-menu > li > a.on { color: var(--orange); border-bottom-color: var(--orange); }
.nav-cta { padding: 0.6rem 1.15rem; font-size: 0.71rem; }
@media (max-width: 1040px) {
  .nav-in { flex-wrap: wrap; justify-content: center; }
  .nav-menu { flex-wrap: wrap; justify-content: center; gap: 0.9rem 1.2rem; }
}

/* ── HERO ── */
.hero { background: var(--cream); padding: 4.5rem 0 4rem; position: relative; overflow: hidden; }
.hero::after {
  content: ''; position: absolute; top: -120px; right: -160px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,48,0,0.09), transparent 68%);
  pointer-events: none;
}
.hero-in { max-width: 1140px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 0.92fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1.25rem; }
.hero .lead { margin-bottom: 1.75rem; max-width: 30rem; }
.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-note { display: flex; align-items: center; gap: 0.55rem; font-size: 0.86rem; color: var(--muted); }
.hero-note svg { flex-shrink: 0; }

/* stacked book + workbook */
.covers { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.covers img { border-radius: 3px; display: block; }
.covers .c-book {
  width: 60%; box-shadow: 18px 22px 48px rgba(1,24,41,0.28);
  transform: rotate(-4deg); position: relative; z-index: 2;
}
.covers .c-wb {
  width: 55%; margin-left: -10%; box-shadow: 14px 18px 40px rgba(1,24,41,0.22);
  transform: rotate(4deg); position: relative; z-index: 1;
}

/* ── THE SYSTEM (6 steps: Find Source Price List Fulfill Grow) ── */
.system-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.step { text-align: center; position: relative; padding: 0 0.4rem; }
.step-badge {
  width: 74px; height: 74px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; background: var(--white);
  border: 2px solid var(--orange); position: relative;
}
.band-navy .step-badge { background: rgba(255,255,255,0.06); border-color: var(--gold); }
.step-num {
  position: absolute; top: -7px; right: -7px;
  width: 25px; height: 25px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 0.68rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.band-navy .step-num { background: var(--gold); color: var(--navy); }
.step h3 { font-size: 1.18rem; margin-bottom: 0.45rem; letter-spacing: 0.02em; }
.step p { font-size: 0.85rem; color: var(--muted); }
.band-navy .step p { color: rgba(255,255,255,0.66); }
@media (max-width: 900px) { .system-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; } }
@media (max-width: 560px) { .system-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── GUIDE CARDS ── */
.head-row { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.head-row h2 { margin: 0; }
.head-row .rule-accent { margin-top: 0.75rem; }
.link-more { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); text-decoration: none; white-space: nowrap; }
.link-more:hover { text-decoration: underline; }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; }
.guide {
  display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  background: var(--white); border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(1,24,41,0.07);
  transition: transform 0.18s, box-shadow 0.18s;
}
.guide:hover { transform: translateY(-4px); box-shadow: 0 12px 34px rgba(1,24,41,0.14); }
.guide-img { aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--cream-dk); }
.guide-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.guide-tag {
  position: absolute; top: 0.7rem; left: 0.7rem;
  background: var(--navy); color: var(--white);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 2px;
}
.guide-body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.guide-body h3 {
  font-family: 'Inter', sans-serif; font-weight: 700; text-transform: none;
  font-size: 0.98rem; line-height: 1.35; letter-spacing: 0; color: var(--navy);
  margin-bottom: 0.5rem;
}
.guide-body .meta { margin-top: auto; padding-top: 0.7rem; font-size: 0.72rem; color: #97A2A9; font-weight: 600; letter-spacing: 0.04em; }

/* ── RESOURCE CARDS ── */
.res-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.4rem; }
.res {
  background: var(--white); border-radius: 6px; padding: 1.6rem 1.4rem;
  border-top: 4px solid var(--orange); text-align: left;
  box-shadow: 0 4px 18px rgba(1,24,41,0.06);
}
.res-ico {
  width: 46px; height: 46px; border-radius: 6px; background: var(--orange-lt);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem;
}
.res .type { display: block; font-size: 0.63rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.35rem; }
.res h3 { font-family: 'Inter', sans-serif; font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 1rem; color: var(--navy); margin-bottom: 0.45rem; }
.res p { font-size: 0.85rem; color: var(--muted); }

/* ── PRODUCT (book/workbook) ── */
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.prod {
  background: var(--white); border-radius: 8px; padding: 2rem 1.9rem; text-align: center;
  box-shadow: 0 6px 26px rgba(1,24,41,0.08); display: flex; flex-direction: column;
}
.prod img { width: 150px; margin: 0 auto 1.25rem; border-radius: 3px; box-shadow: 10px 14px 30px rgba(1,24,41,0.22); display: block; }
.prod .kicker { font-size: 0.64rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.4rem; }
.prod h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.prod p { font-size: 0.89rem; color: var(--muted); margin-bottom: 1.4rem; }
.prod .btn { margin-top: auto; align-self: center; }
.badge-soon { display: inline-block; background: var(--cream-dk); color: var(--muted); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: 20px; margin-bottom: 0.7rem; }
.badge-live { display: inline-block; background: rgba(234,48,0,0.1); color: var(--orange); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: 20px; margin-bottom: 0.7rem; }
@media (max-width: 700px) { .prod-grid { grid-template-columns: 1fr; } }

/* ── LEARN IT / BUILD IT / REPEAT IT ── */
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1rem; align-items: center; max-width: 900px; margin: 0 auto; }
.flow-node { text-align: center; padding: 1.6rem 1.1rem; border-radius: 8px; background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.14); }
.flow-node .k { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.55rem; }
.flow-node h3 { font-size: 1.32rem; margin-bottom: 0.35rem; }
.flow-node p { font-size: 0.83rem; color: rgba(255,255,255,0.62); }
.flow-arrow { color: var(--gold); font-size: 1.5rem; line-height: 1; }
@media (max-width: 760px) {
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); margin: -0.4rem auto; }
}

/* ── EMAIL PANEL ── */
.mail-panel { background: var(--orange); color: var(--white); padding: 3.5rem 2rem; text-align: center; }
.mail-panel h2 { color: var(--white); max-width: 20ch; margin: 0 auto 0.9rem; }
.mail-panel > p { max-width: 480px; margin: 0 auto 1.75rem; color: rgba(255,255,255,0.92); font-size: 0.97rem; }
.mail-form { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
.mail-form input[type=email] {
  flex: 1 1 260px; padding: 0.9rem 1.1rem; border: none; border-radius: 3px;
  font-family: inherit; font-size: 0.95rem; color: var(--ink);
}
.mail-form input[type=submit] {
  padding: 0.9rem 1.7rem; border: none; border-radius: 3px; cursor: pointer;
  background: var(--navy); color: var(--white);
  font-family: inherit; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase;
  transition: background 0.2s;
}
.mail-form input[type=submit]:hover { background: #000; }
.mail-fine { font-size: 0.76rem; color: rgba(255,255,255,0.72); margin-top: 1rem; }
.mail-fine a { color: rgba(255,255,255,0.95); }

/* ── ARTICLE ── */
.crumb { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 1.1rem; text-transform: uppercase; }
.crumb a { color: var(--orange); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }
.art { max-width: 720px; margin: 0 auto; padding: 3rem 2rem 4.5rem; }
.art h1 { margin-bottom: 1rem; }
.art-meta { font-size: 0.82rem; color: var(--muted); font-weight: 600; padding-bottom: 1.75rem; margin-bottom: 2rem; border-bottom: 2px solid var(--hair); }
.art h2 { font-size: 1.55rem; margin: 2.5rem 0 1rem; }
.art h3 { font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin: 1.75rem 0 0.7rem; }
.art p { margin-bottom: 1.15rem; color: #33393D; }
.art ul, .art ol { margin: 0 0 1.15rem 1.35rem; color: #33393D; }
.art li { margin-bottom: 0.45rem; }
.art strong { color: var(--navy); }
.toc { background: var(--white); border-left: 4px solid var(--orange); border-radius: 4px; padding: 1.4rem 1.6rem; margin-bottom: 2rem; }
.toc h3 { margin: 0 0 0.7rem; font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--orange); font-family: 'Inter', sans-serif; font-weight: 800; }
.toc ol { margin: 0 0 0 1.1rem; }
.toc li { margin-bottom: 0.3rem; font-size: 0.92rem; }
.toc a { color: var(--navy); text-decoration: none; }
.toc a:hover { color: var(--orange); text-decoration: underline; }
.inline-cta {
  background: var(--navy); color: var(--white); border-radius: 8px;
  padding: 1.75rem 1.9rem; margin: 2.5rem 0; text-align: center;
}
.inline-cta h3 { color: var(--white); font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: 0.01em; font-size: 1.3rem; line-height: 1.15; margin: 0 0 0.6rem; }
.inline-cta p { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 1.2rem; }
.art-tbl { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.art-tbl th, .art-tbl td { text-align: left; padding: 0.75rem 0.9rem; border-bottom: 1px solid var(--hair); font-size: 0.92rem; }
.art-tbl th { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--navy); background: var(--cream-dk); }

/* ── PAGE HERO (interior pages) ── */
.phero { background: var(--navy); color: rgba(255,255,255,0.78); padding: 3.5rem 0 3.25rem; text-align: center; }
.phero h1 { color: var(--white); margin-bottom: 0.9rem; }
.phero p { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,0.72); font-size: 1.03rem; text-wrap: balance; }
.phero .crumb { color: rgba(255,255,255,0.5); }
.phero .crumb a { color: var(--gold); }

/* ── CATEGORY TILES ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.1rem; }
.cat {
  display: block; text-decoration: none; text-align: center;
  background: var(--white); border-radius: 6px; padding: 1.5rem 1rem;
  border-bottom: 4px solid var(--orange); transition: transform 0.16s, box-shadow 0.16s;
  box-shadow: 0 3px 14px rgba(1,24,41,0.06);
}
.cat:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(1,24,41,0.12); }
.cat .ico { font-size: 0; margin-bottom: 0.7rem; display: flex; justify-content: center; }
.cat h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.25rem; }
.cat span { font-size: 0.76rem; color: var(--muted); }

/* ── STEP PATH ── */
.path { max-width: 780px; margin: 0 auto; display: grid; gap: 1rem; }
.path-item {
  display: grid; grid-template-columns: 62px 1fr; gap: 1.3rem; align-items: start;
  background: var(--white); border-radius: 6px; padding: 1.5rem 1.7rem;
  box-shadow: 0 3px 16px rgba(1,24,41,0.06);
}
.path-n {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold);
  font-family: 'Anton', sans-serif; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.path-item h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.path-item p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.6rem; }
.path-item a.tiny { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--orange); text-decoration: none; }
.path-item a.tiny:hover { text-decoration: underline; }

/* ── FOOTER ── */
.foot { background: var(--navy); color: rgba(255,255,255,0.55); padding: 3.5rem 0 2rem; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.foot h4 { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 0.9rem; }
.foot ul { list-style: none; }
.foot li { margin-bottom: 0.5rem; }
.foot a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.86rem; }
.foot a:hover { color: var(--gold); }
.foot-brand b { display: block; font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.35rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.01em; }
.foot-brand span { display: block; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.34em; color: var(--orange); text-transform: uppercase; margin: 3px 0 0.9rem; }
.foot-brand p { font-size: 0.86rem; max-width: 24rem; }
.foot-bot { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; }
.foot-social { display: flex; gap: 0.65rem; margin-top: 1rem; }
.foot-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center; transition: background 0.18s, border-color 0.18s;
}
.foot-social a:hover { background: var(--orange); border-color: var(--orange); }
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; gap: 2.75rem; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-btns, .hero-note { justify-content: center; }
  .covers { max-width: 380px; margin: 0 auto; }
}
@media (max-width: 620px) {
  .sec { padding: 3.5rem 0; }
  .wrap, .wrap-narrow { padding: 0 1.25rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-btns .btn { width: 100%; }
  .art { padding: 2rem 1.25rem 3rem; }
  .foot-bot { flex-direction: column; }
}

/* ── Anton is a single-weight (400) family. Any inherited 600/700/800 makes the
      browser synthesize fake bold, which reads as blurry. Pin it everywhere. ── */
h1, h2, h3, .display, .brand b, .foot-brand b, .inline-cta h3,
.step h3, .prod h3, .flow-node h3, .cat h3, .path-item h3, .books-mini-card h3 {
  font-weight: 400;
}

/* ── Inline signup inside the Free Resources section (no jump to another section) ── */
.res-signup {
  max-width: 560px; margin: 2.75rem auto 0; text-align: center;
  background: var(--white); border-radius: 10px; padding: 2rem 1.9rem;
  border-top: 4px solid var(--orange); box-shadow: 0 6px 26px rgba(1,24,41,0.08);
}
.res-signup h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.res-signup > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.4rem; }
.res-signup .mail-form input[type=email] { border: 1px solid var(--hair); }
.res-signup .mail-form input[type=submit] { background: var(--orange); }
.res-signup .mail-form input[type=submit]:hover { background: var(--orange-dk); }
.res-fine { font-size: 0.75rem; color: #8A949B; margin-top: 0.9rem; }
.res-fine a { color: var(--orange); }

/* Sticky nav would otherwise cover the top of any anchored section on jump */
:target, section[id], #resources, #signup { scroll-margin-top: 90px; }
@media (max-width: 1040px) { :target, section[id], #resources, #signup { scroll-margin-top: 150px; } }
