:root {
  --ivory: #f6f1e8;
  --paper: #fbf8f2;
  --navy: #10263f;
  --navy-soft: #29435d;
  --gold: #b08a4a;
  --gold-soft: #d9c295;
  --slate: #5b6570;
  --gold-text: #7b6033;
  --border: #e1d4be;
  --white: #fffdf8;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgb(16 38 63 / 10%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 8%, rgb(176 138 74 / 5%), transparent 24rem),
    var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: .26;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.10'/%3E%3C/svg%3E");
}
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 14px clamp(22px, 6vw, 96px);
  border-bottom: 1px solid rgb(176 138 74 / 48%);
  background: rgb(246 241 232 / 92%);
  backdrop-filter: blur(16px);
}
.wordmark {
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1;
}
.wordmark span { font-weight: 700; }
.site-nav { display: flex; gap: clamp(22px, 3vw, 50px); }
.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: .98rem;
  font-weight: 600;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease-out;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-button { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  column-gap: clamp(36px, 5vw, 88px);
  align-items: center;
  padding: clamp(62px, 8vw, 120px) clamp(22px, 6vw, 96px) 48px;
  min-height: calc(100vh - 86px);
  overflow: hidden;
}
.hero-copy { max-width: 740px; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--gold-text);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 500; line-height: 1.03; }
h1 { margin-bottom: 28px; font-size: clamp(3.4rem, 6.2vw, 6.8rem); letter-spacing: -.045em; }
h2 { margin-bottom: 18px; font-size: clamp(2.45rem, 4.4vw, 4.6rem); letter-spacing: -.035em; }
h3 { margin-bottom: 15px; font-size: clamp(1.55rem, 2.3vw, 2.25rem); letter-spacing: -.025em; }
p { margin-top: 0; }
.hero-intro { max-width: 650px; margin-bottom: 32px; color: var(--navy-soft); font-size: clamp(1.12rem, 1.55vw, 1.35rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 15px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 23px;
  border: 1px solid var(--navy);
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 750;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 10px 30px rgb(16 38 63 / 16%); }
.button-primary:hover { background: #183653; box-shadow: 0 15px 34px rgb(16 38 63 / 22%); }
.button-secondary { color: var(--gold); border-color: var(--gold); background: transparent; }
.button-secondary:hover { background: rgb(176 138 74 / 9%); }
.button-light { color: var(--navy); border-color: var(--white); background: var(--white); }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 0;
  margin: 35px 0 0;
  color: var(--slate);
  list-style: none;
}
.trust-list li { display: flex; align-items: center; gap: 12px; }
.trust-list li::before { width: 7px; height: 7px; border-radius: 50%; content: ""; background: var(--gold); }
.trust-list li:first-child::before { width: 20px; height: 20px; border: 1px solid var(--gold); background: transparent; transform: rotate(45deg); }

.hero-art { position: relative; min-height: 610px; }
.arch-frame {
  position: absolute;
  inset: 20px 7% 0 0;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  border-radius: 48% 48% 4px 4px / 32% 32% 4px 4px;
  background: #e9e1d2;
  box-shadow: var(--shadow);
}
.arch-frame::after { position: absolute; inset: 0; content: ""; box-shadow: inset 0 0 90px rgb(16 38 63 / 13%); }
.arch-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.86) contrast(1.03); }
.orbit { position: absolute; border: 1px solid var(--gold); border-radius: 50%; opacity: .8; }
.orbit-one { top: -9px; right: -2%; width: 190px; height: 190px; border-style: dashed; }
.orbit-two { top: 86px; right: 0; width: 124px; height: 124px; }
.growth-line { position: absolute; right: -4px; bottom: 5%; width: 120px; height: 240px; border-right: 1px solid var(--gold); border-top: 1px solid transparent; }
.growth-line::before, .growth-line::after { position: absolute; right: -2px; width: 60px; height: 84px; border: 1px solid var(--gold); border-radius: 100% 0 100% 0; content: ""; transform: rotate(-30deg); }
.growth-line::before { top: 48px; right: 0; }
.growth-line::after { top: 118px; right: 35px; transform: scaleX(-1) rotate(-28deg); }
.featured-guide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  padding: 22px 30px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  background: rgb(255 253 248 / 48%);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}
.featured-guide:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.featured-guide small { display: block; margin-bottom: 2px; color: var(--gold); font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.featured-guide strong { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 500; }
.guide-icon { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 1.8rem; }
.featured-guide .arrow, .text-link span { transition: transform 180ms ease-out; }
.featured-guide:hover .arrow, .text-link:hover span { transform: translateX(5px); }
.featured-guide .arrow { color: var(--gold); font-size: 2rem; }

.section-shell { padding: clamp(92px, 11vw, 155px) clamp(22px, 6vw, 96px); }
.learning-section { background: var(--paper); border-top: 1px solid var(--border); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 60px; align-items: end; max-width: 1360px; margin: 0 auto 62px; }
.section-heading > p { max-width: 560px; margin-bottom: 8px; color: var(--slate); font-size: 1.08rem; }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1360px; margin: 0 auto; }
.topic-card { position: relative; min-height: 540px; padding: clamp(28px, 3vw, 45px); overflow: hidden; border: 1px solid var(--border); background: var(--ivory); }
.topic-card::after { position: absolute; right: -40px; bottom: -70px; width: 180px; height: 180px; border: 1px solid var(--gold-soft); border-radius: 50%; content: ""; }
.card-number { margin-bottom: 55px; color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.card-kicker { margin-bottom: 8px; color: var(--slate); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.topic-card > p:not(.card-kicker) { color: var(--slate); }
.topic-card ul { padding: 22px 0 18px; border-top: 1px solid var(--border); list-style: none; }
.topic-card li { display: flex; gap: 12px; padding: 7px 0; }
.topic-card li::before { color: var(--gold); content: "—"; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 800; text-underline-offset: 5px; }

.resource-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr) minmax(300px, .95fr); gap: 55px; align-items: center; max-width: 1360px; margin: 90px auto 0; padding: clamp(32px, 5vw, 62px); color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.resource-band h3 { font-size: clamp(2rem, 3vw, 3.3rem); }
.resource-band .resource-copy > p:last-child { margin-bottom: 0; color: #c5cfda; }
.checklist-preview { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; }
.checklist-preview span { color: var(--gold-soft); font-family: var(--serif); }
.checklist-preview p { margin: 0; padding-bottom: 10px; border-bottom: 1px solid rgb(255 255 255 / 15%); }

.hidden-field { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.guide-gate-intro { margin-bottom: 14px; color: #c5cfda; font-size: .92rem; }
.guide-gate-fields { display: flex; flex-wrap: wrap; gap: 10px; }
.guide-gate-fields input { min-width: 150px; flex: 1 1 150px; min-height: 54px; padding: 13px 16px; border: 1px solid rgb(255 255 255 / 20%); border-radius: 7px; color: var(--navy); background: var(--white); }
.guide-gate-fields .button { flex: 0 0 auto; }
.guide-gate .form-status { min-height: 22px; margin: 10px 0 0; color: #c5cfda; font-size: .88rem; }

.insights-section { background: var(--ivory); }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; max-width: 1360px; margin: -20px auto 35px; }
.filter-chip { min-height: 44px; padding: 8px 17px; border: 1px solid var(--border); border-radius: 999px; color: var(--navy); background: transparent; cursor: pointer; font-weight: 700; }
.filter-chip:hover, .filter-chip.active { color: var(--white); border-color: var(--navy); background: var(--navy); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1360px; margin: 0 auto; }
.article-card { border: 1px solid var(--border); background: var(--paper); transition: opacity 180ms ease-out, transform 180ms ease-out; }
.article-card[hidden] { display: none; }
.article-art { position: relative; height: 230px; overflow: hidden; border-bottom: 1px solid var(--border); background: #e8dfcf; }
.article-art::before, .article-art::after, .article-art span { position: absolute; content: ""; border: 1px solid var(--gold); }
.art-shield::before { inset: 35px 31%; 28px; border-radius: 48% 48% 58% 58%; border-width: 2px; }
.art-shield::after { inset: 61px 38% 54px; border-radius: 50%; }
.art-shield span { inset: 0; border: 0; background: radial-gradient(circle at 50% 52%, rgb(176 138 74 / 20%) 0 5%, transparent 6%), repeating-radial-gradient(circle at 50% 50%, transparent 0 23px, rgb(16 38 63 / 7%) 24px 25px); }
.art-steps::before { right: 18%; bottom: 0; width: 62%; height: 70%; border: 0; background: linear-gradient(135deg, transparent 0 49%, var(--gold) 50% 50.5%, transparent 51%); }
.art-steps::after { right: 21%; bottom: 25px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); }
.art-steps span { inset: 30px; border-color: rgb(16 38 63 / 14%); border-radius: 50%; }
.art-horizon::before { right: -5%; bottom: -95px; left: -5%; height: 220px; border-radius: 50%; }
.art-horizon::after { right: 13%; bottom: -88px; left: 13%; height: 180px; border-color: var(--navy); border-radius: 50%; }
.art-horizon span { top: 48px; left: 50%; width: 13px; height: 13px; border: 0; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 18px rgb(176 138 74 / 10%); }
.article-body { padding: 30px; }
.article-meta { margin-bottom: 20px; color: var(--gold-text); font-size: .76rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.article-body h3 { font-size: clamp(1.55rem, 2vw, 2.05rem); }
.article-body > p:not(.article-meta) { color: var(--slate); }
.demo-note { max-width: 1360px; margin: 22px auto 0; padding: 18px 20px; border-left: 3px solid var(--gold); color: var(--slate); background: rgb(255 253 248 / 62%); }
.closing-panel { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .45fr); gap: 80px; align-items: center; max-width: 1360px; margin: 120px auto 0; padding: clamp(42px, 7vw, 90px); color: var(--white); background: var(--navy); }
.closing-panel h2 { max-width: 850px; }
.closing-panel p:not(.eyebrow) { max-width: 760px; color: #c5cfda; }
.closing-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.text-link-light { color: var(--white); }
.newsletter { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); gap: 70px; max-width: 1360px; margin: 0 auto; padding: 62px; border: 1px solid var(--border); border-top: 0; background: var(--paper); }
.newsletter h3 { font-size: clamp(2rem, 3vw, 3rem); }
.newsletter label { display: block; margin-bottom: 9px; font-weight: 750; }
.input-row { display: flex; gap: 10px; }
.input-row input { min-width: 0; flex: 1; min-height: 54px; padding: 13px 16px; border: 1px solid var(--border); border-radius: 7px; color: var(--navy); background: var(--white); }
.form-status { min-height: 25px; margin: 10px 0 0; color: var(--slate); font-size: .9rem; }

.site-footer { display: grid; grid-template-columns: 1.05fr .45fr 1fr; gap: 60px; padding: 80px clamp(22px, 6vw, 96px) 35px; color: #dce4eb; background: #091a2c; }
.wordmark-light { color: var(--white); }
.site-footer a:not(.wordmark) { display: block; margin: 7px 0; color: #dce4eb; text-underline-offset: 4px; }
.footer-brand p { max-width: 420px; margin-top: 22px; color: #9eafbe; }
.footer-label { color: var(--gold-soft); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-small { max-width: 670px; color: #9eafbe; font-size: .83rem; }
.copyright { grid-column: 1 / -1; padding-top: 32px; margin: 15px 0 0; border-top: 1px solid rgb(255 255 255 / 12%); color: #8295a6; font-size: .78rem; }

.toast { position: fixed; right: 20px; bottom: 20px; z-index: 40; max-width: 380px; padding: 16px 20px; border-radius: 8px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity 180ms ease-out, transform 180ms ease-out; }
.toast.show { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease-out, transform 650ms ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 90ms; }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-art { min-height: 510px; }
  .topic-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .topic-card:last-child, .article-card:last-child { grid-column: 1 / -1; }
  .resource-band { grid-template-columns: 1fr 1fr; }
  .resource-band .guide-gate { grid-column: 1 / -1; }
  .newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .site-header { min-height: 72px; }
  .menu-button { display: grid; width: 46px; height: 46px; padding: 11px; place-content: center; gap: 5px; border: 1px solid var(--border); border-radius: 50%; background: transparent; }
  .menu-button span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--navy); }
  .site-nav { position: absolute; top: 72px; right: 0; left: 0; display: none; padding: 18px 22px 26px; border-bottom: 1px solid var(--border); background: var(--ivory); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; gap: 5px; }
  .site-nav a { padding: 11px 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 65px; }
  .hero-art { min-height: 560px; margin-top: 30px; }
  .featured-guide { grid-column: 1; padding: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .topic-grid, .article-grid { grid-template-columns: 1fr; }
  .topic-card:last-child, .article-card:last-child { grid-column: auto; }
  .topic-card { min-height: auto; }
  .card-number { margin-bottom: 35px; }
  .resource-band, .closing-panel { grid-template-columns: 1fr; gap: 30px; }
  .resource-band .guide-gate { grid-column: auto; }
  .newsletter { padding: 36px 24px; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; }
  .copyright { grid-column: auto; }
}

@media (max-width: 520px) {
  .wordmark { max-width: 245px; font-size: 1.15rem; }
  .hero { padding-right: 18px; padding-left: 18px; }
  h1 { font-size: clamp(3.1rem, 16vw, 4.6rem); }
  .button-row, .button-row .button { width: 100%; }
  .trust-list { display: grid; gap: 9px; }
  .hero-art { min-height: 430px; }
  .featured-guide { grid-template-columns: auto 1fr; }
  .featured-guide .arrow { display: none; }
  .section-shell { padding-right: 18px; padding-left: 18px; }
  .resource-band, .closing-panel { margin-right: -18px; margin-left: -18px; }
  .filter-row { flex-wrap: nowrap; padding-bottom: 8px; overflow-x: auto; }
  .filter-chip { flex: 0 0 auto; }
  .input-row { display: grid; }
  .site-footer { padding-right: 18px; padding-left: 18px; }
}

/* ---- Shared sub-page components (resources, 7-day-reset, ebook, thank-you) ---- */
.page-hero { padding: clamp(56px, 8vw, 96px) clamp(22px, 6vw, 96px) clamp(40px, 6vw, 70px); max-width: 1000px; }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.page-hero .hero-intro { max-width: 700px; }
.breadcrumb { display: block; margin-bottom: 18px; color: var(--slate); font-size: .88rem; font-weight: 700; text-decoration: none; }
.breadcrumb:hover { color: var(--navy); }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1360px; margin: 0 auto; padding: 0 clamp(22px, 6vw, 96px) clamp(80px, 10vw, 130px); }
.resource-card { display: flex; flex-direction: column; padding: clamp(28px, 3vw, 38px); border: 1px solid var(--border); background: var(--ivory); }
.resource-card .card-kicker { margin-bottom: 6px; }
.resource-card p:not(.card-kicker) { flex: 1; color: var(--slate); }
.resource-card .button { align-self: flex-start; margin-top: 18px; }
.resource-tag { display: inline-block; margin-bottom: 14px; padding: 5px 12px; border-radius: 999px; color: var(--white); background: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.resource-tag.tag-gold { color: var(--navy); background: var(--gold-soft); }

.lead-gate { max-width: 560px; padding: clamp(30px, 4vw, 50px); margin: 0 clamp(22px, 6vw, 96px) clamp(90px, 10vw, 130px); color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.lead-gate .guide-gate-intro { margin-bottom: 16px; }

.price-card { max-width: 460px; padding: clamp(34px, 4vw, 50px); margin: 0 auto clamp(70px, 8vw, 110px); border: 1px solid var(--border); background: var(--paper); box-shadow: var(--shadow); text-align: center; }
.price-figure { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin: 6px 0 18px; }
.price-figure .currency { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.price-figure .amount { font-family: var(--serif); font-size: clamp(3rem, 6vw, 4rem); font-weight: 500; color: var(--navy); }
.price-card ul { padding: 0; margin: 22px 0; list-style: none; text-align: left; }
.price-card li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--navy-soft); }
.price-card li::before { color: var(--gold); content: "—"; }
.price-card .button { width: 100%; }
.price-note { margin-top: 14px; color: var(--slate); font-size: .84rem; }

.ebook-outline { max-width: 1360px; margin: 0 auto; padding: 0 clamp(22px, 6vw, 96px) clamp(80px, 10vw, 120px); }
.ebook-outline ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px; max-width: 900px; padding: 0; margin: 0; list-style: none; counter-reset: chapter; }
.ebook-outline li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); counter-increment: chapter; }
.ebook-outline li::before { content: counter(chapter, decimal-leading-zero); color: var(--gold); font-family: var(--serif); }

.faq-list { max-width: 900px; margin: 0 auto; padding: 0 clamp(22px, 6vw, 96px) clamp(90px, 10vw, 130px); }
.faq-item { padding: 22px 0; border-bottom: 1px solid var(--border); }
.faq-item h3 { margin-bottom: 8px; font-size: 1.25rem; }
.faq-item p { margin: 0; color: var(--slate); }

.thankyou-panel { max-width: 720px; margin: clamp(70px, 10vw, 130px) auto; padding: clamp(40px, 6vw, 70px); border: 1px solid var(--border); background: var(--ivory); text-align: center; }
.thankyou-panel .guide-icon { margin: 0 auto 20px; }
.thankyou-panel .button-row { justify-content: center; }

@media (max-width: 1040px) {
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid > *:last-child { grid-column: 1 / -1; }
  .ebook-outline ol { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .resource-grid { grid-template-columns: 1fr; padding-left: 18px; padding-right: 18px; }
  .resource-grid > *:last-child { grid-column: auto; }
  .lead-gate { margin-left: 18px; margin-right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Footer social links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgb(217 194 149 / 30%);
  background: rgb(255 255 255 / 4%);
  color: #dce4eb;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  margin: 0;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ---- Modernization pass: richer interaction states ---- */
.topic-card, .resource-card, .article-card {
  transition: transform 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
}
.topic-card:hover, .resource-card:hover, .article-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: 0 20px 46px rgb(16 38 63 / 12%);
}
.article-card h3 { transition: color 180ms ease-out; }
.article-card:hover h3 { color: var(--navy-soft); }
.filter-chip { transition: background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out; }
.filter-chip:active { transform: scale(.97); }

/* Smoother mobile nav open/close (scoped to the mobile breakpoint only) */
@media (max-width: 780px) {
  .site-nav {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 160ms ease-out, transform 160ms ease-out;
  }
  .site-nav.open { opacity: 1; transform: translateY(0); }
}

/* ---- New article-header art motifs (extends the existing shield/steps/horizon system) ---- */
.art-scale::before { inset: 20px 22% auto; height: 190px; border-radius: 50%; border-width: 1.5px; }
.art-scale::after { inset: 58px 34% auto; height: 114px; border-radius: 50%; border-color: var(--navy); }
.art-scale span { top: 110px; left: 50%; width: 10px; height: 10px; border: 0; border-radius: 50%; background: var(--gold); transform: translateX(-50%); box-shadow: 0 0 0 16px rgb(176 138 74 / 10%); }

.art-checklist span { top: 46px; left: 34%; width: 32%; height: 1px; border: 0; background: rgb(16 38 63 / 16%); box-shadow: 0 34px 0 rgb(16 38 63 / 16%), 0 68px 0 rgb(16 38 63 / 16%), 0 102px 0 rgb(16 38 63 / 16%); }
.art-checklist::before { top: 40px; left: 24%; width: 13px; height: 13px; border-radius: 50%; }
.art-checklist::after { top: 40px; left: 24%; width: 13px; height: 13px; border-radius: 50%; box-shadow: 0 34px 0 var(--gold), 0 68px 0 rgb(16 38 63 / 22%), 0 102px 0 var(--gold); background: var(--gold); border: 0; }

.art-anchor::before { top: 30px; left: 50%; width: 13px; height: 13px; border-radius: 50%; transform: translateX(-50%); }
.art-anchor::after { top: 43px; left: 50%; width: 1px; height: 150px; background: var(--gold); border: 0; transform: translateX(-50%); }
.art-anchor span { right: 24%; bottom: 20px; left: 24%; height: 62px; border-top: 0; border-radius: 0 0 90px 90px; }

.art-compass::before { inset: 44px 34%; border-radius: 50%; border-width: 1.5px; }
.art-compass::after { top: 50%; left: 50%; width: 1px; height: 96px; background: var(--gold); border: 0; transform: translate(-50%, -50%) rotate(35deg); }
.art-compass span { top: 50%; left: 50%; width: 6px; height: 6px; border: 0; border-radius: 50%; background: var(--navy); transform: translate(-50%, -50%); box-shadow: 0 0 0 6px rgb(16 38 63 / 8%); }

.art-columns::before { right: 28%; bottom: 0; width: 14%; height: 65%; border-width: 1.5px; border-bottom: 0; }
.art-columns::after { right: 44%; bottom: 0; width: 14%; height: 95%; border-width: 1.5px; border-bottom: 0; }
.art-columns span { right: 60%; bottom: 0; left: 20%; height: 40%; border: 1.5px solid var(--navy); border-bottom: 0; background: transparent; }

.art-arc::before { top: -60%; right: -20%; left: -20%; height: 220%; border-radius: 50%; border-width: 1.5px; }
.art-arc::after { top: -30%; right: 10%; left: 10%; height: 220%; border-radius: 50%; border-color: var(--navy); }
.art-arc span { top: 56px; left: 50%; width: 9px; height: 9px; border: 0; border-radius: 50%; background: var(--gold); transform: translateX(-50%); box-shadow: 0 0 0 14px rgb(176 138 74 / 10%); }

/* ---- Article page ---- */
.article-page-hero { max-width: 900px; }
.article-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 22px; }
.article-page-meta { color: var(--slate); font-size: .88rem; font-weight: 600; }
.article-content { max-width: 760px; padding: 0 clamp(22px, 6vw, 96px) clamp(70px, 8vw, 110px); margin: 0 auto; }
.prose h2 { margin-top: 52px; font-size: clamp(1.55rem, 2.6vw, 2.1rem); }
.prose h3 { margin-top: 36px; font-size: clamp(1.25rem, 2vw, 1.55rem); }
.prose p { margin-bottom: 20px; color: var(--navy-soft); font-size: 1.08rem; }
.prose ul, .prose ol { margin: 0 0 24px; padding-left: 22px; color: var(--navy-soft); font-size: 1.08rem; }
.prose li { padding: 5px 0; }
.prose strong { color: var(--navy); }
.article-disclaimer { padding: 22px 26px; margin-top: 48px; border-left: 3px solid var(--gold); background: var(--paper); }
.article-disclaimer p { margin: 0; color: var(--slate); font-size: .92rem; }
.article-disclaimer strong { color: var(--navy); }

@media (max-width: 780px) {
  .article-content { padding-right: 18px; padding-left: 18px; }
}
