:root {
  --ink: #17314c;
  --ink-soft: #385268;
  --paper: #f7f1e6;
  --paper-deep: #eee3d1;
  --white: #fffdf9;
  --coral: #e7664c;
  --coral-dark: #c94f3a;
  --marigold: #d99a32;
  --sage: #78937c;
  --blue: #7e9cb2;
  --line: rgba(23, 49, 76, 0.16);
  --shadow: 0 22px 60px rgba(38, 43, 45, 0.11);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body::after {
  content: "";
  display: block;
  height: 110px;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 49, 76, 0.12);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1380px, calc(100% - 48px));
  height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 34px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 17px 17px 5px 5px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 42px);
  color: var(--ink-soft);
  font-size: 15px;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
  background:
    radial-gradient(
      circle at 9% 12%,
      rgba(217, 154, 50, 0.17),
      transparent 24%
    ),
    radial-gradient(
      circle at 87% 18%,
      rgba(126, 156, 178, 0.2),
      transparent 27%
    ),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.paper-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(90deg, rgba(23, 49, 76, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(23, 49, 76, 0.015) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: clamp(40px, 5vw, 88px);
}

.hero-copy {
  padding-bottom: 52px;
}

.eyebrow,
.section-label {
  margin: 0 0 17px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  display: inline-block;
  width: 27px;
  height: 2px;
  margin-right: 10px;
  background: currentColor;
  vertical-align: middle;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.15vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.54;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  padding: 0 22px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 10px 26px rgba(201, 79, 58, 0.22);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 14px 32px rgba(201, 79, 58, 0.29);
}

.button-link {
  min-height: auto;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 8px 0;
}

.trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--ink-soft);
  font-size: 13px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.hero-figure {
  position: relative;
  align-self: end;
  margin: 0;
}

.hero-figure::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(23, 49, 76, 0.18);
  border-radius: 170px 170px 20px 20px;
}

.hero-figure picture {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 170px 170px 16px 16px;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.hero-figure img {
  width: 100%;
  min-height: 520px;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
}

.hero-figure figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 13px 15px;
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.91);
  backdrop-filter: blur(12px);
  font-size: 13px;
  line-height: 1.45;
}

.hero-cards {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 64px));
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-card {
  min-height: 188px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 12px 14px;
  padding: 25px 27px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.78);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.hero-card:last-child {
  border-right: 0;
}

.hero-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.card-number {
  grid-row: 1 / 3;
  color: var(--marigold);
  font-family: var(--display);
  font-size: 18px;
}

.card-kicker {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card strong {
  align-self: end;
  max-width: 330px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.18;
}

.hero-card svg {
  align-self: end;
  color: var(--coral);
}

.article-shell {
  width: min(1170px, calc(100% - 48px));
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: 230px minmax(0, 790px);
  justify-content: space-between;
  gap: 72px;
}

.article-aside {
  min-width: 0;
}

.aside-sticky {
  position: sticky;
  top: 112px;
}

.aside-label {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aside-sticky nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.aside-sticky nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.aside-sticky nav a:hover {
  color: var(--coral-dark);
}

.aside-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 3px solid var(--marigold);
  background: var(--paper);
}

.aside-note span {
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aside-note p {
  margin: 9px 0 0;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.45;
}

.article-content {
  min-width: 0;
  color: #263f53;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: #637687;
  font-size: 13px;
}

.article-meta span:first-child {
  color: var(--coral-dark);
  font-weight: 800;
}

.article-content > p,
.article-content section > p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.82;
}

.article-intro {
  color: var(--ink);
  font-family: var(--display);
  font-size: 27px !important;
  line-height: 1.48 !important;
}

.article-content section {
  scroll-margin-top: 106px;
  margin-top: 82px;
}

.article-content h2 {
  margin: 0 0 25px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 51px);
  line-height: 1.09;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.article-content h3 {
  color: var(--ink);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.step-card {
  min-height: 285px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.step-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-size: 18px;
}

.step-card h3 {
  margin: 28px 0 10px;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.editorial-callout {
  position: relative;
  margin-top: 28px;
  padding: 30px 34px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper);
}

.editorial-callout::after {
  content: "?";
  position: absolute;
  right: 18px;
  bottom: -45px;
  color: rgba(217, 154, 50, 0.22);
  font-family: var(--display);
  font-size: 170px;
  line-height: 1;
}

.callout-mark {
  position: relative;
  z-index: 1;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
}

.editorial-callout p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

.article-image {
  margin: 74px 0 0;
}

.article-image picture {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper-deep);
  box-shadow: 0 18px 45px rgba(38, 43, 45, 0.08);
}

.article-image img {
  width: 100%;
  height: auto;
}

.article-image figcaption {
  margin-top: 12px;
  color: #6c7b87;
  font-size: 13px;
  line-height: 1.5;
}

.example-board {
  margin: 28px 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f9f5ed;
}

.word-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.word-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(23, 49, 76, 0.2);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--display);
  font-size: 20px;
}

.example-board ol {
  margin: 25px 0 0;
  padding-left: 22px;
}

.example-board li {
  margin-bottom: 16px;
  padding-left: 8px;
  font-size: 16px;
  line-height: 1.68;
}

.product-bridge {
  padding: 42px;
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(217, 154, 50, 0.2), transparent 34%),
    var(--ink);
}

.product-bridge .section-label {
  color: #f3b45a;
}

.product-bridge h2 {
  color: var(--white);
}

.product-bridge-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.product-bridge .button-primary {
  margin-top: 5px;
}

.product-bridge small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.product-bridge-steps {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.product-bridge-steps div {
  padding: 22px 18px 0 0;
}

.product-bridge-steps span {
  color: #f3b45a;
  font-family: var(--display);
  font-size: 15px;
}

.product-bridge-steps p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
  line-height: 1.55;
}

.routine-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  align-items: stretch;
  gap: 28px;
  margin-top: 30px;
}

.routine-visual {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper-deep);
}

.routine-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.timeline > div {
  position: relative;
  display: grid;
  grid-template-columns: 58px 100px 1fr;
  align-items: start;
  gap: 10px;
  padding: 19px;
  background: var(--white);
}

.timeline time {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
}

.timeline p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.source-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 3px solid var(--sage);
  color: var(--ink-soft);
  background: rgba(120, 147, 124, 0.1);
  font-size: 14px;
  line-height: 1.65;
}

.mistake-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mistake-list > div {
  padding: 24px;
  border-top: 3px solid var(--coral);
  background: var(--paper);
}

.mistake-list > div:last-child {
  grid-column: 1 / -1;
}

.mistake-list span {
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mistake-list h3 {
  margin: 9px 0;
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.25;
}

.mistake-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.checklist-section {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 24px;
}

.checklist > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
}

.checklist svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--sage);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 20px;
  color: var(--coral);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 690px;
  margin: -6px 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.sources {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.sources h2 {
  font-size: 36px;
}

.sources ul {
  margin: 0;
  padding-left: 20px;
}

.sources li {
  margin: 10px 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.sources a {
  text-decoration: underline;
  text-decoration-color: rgba(231, 102, 76, 0.5);
  text-underline-offset: 3px;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding: 40px;
  border-radius: 12px;
  color: var(--white);
  background: var(--coral);
}

.closing-cta .section-label {
  color: #ffe0d7;
}

.closing-cta h2 {
  max-width: 540px;
  color: var(--white);
  font-size: 42px;
}

.closing-cta p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.button-light {
  padding: 0 20px;
  color: var(--ink);
  background: var(--white);
  white-space: nowrap;
}

.related-section {
  width: min(1170px, calc(100% - 48px));
  margin: 104px auto;
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.related-heading h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.related-grid > a {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.related-grid > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.related-grid > a:nth-child(2) {
  background: rgba(126, 156, 178, 0.16);
}

.related-grid span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-grid h3 {
  max-width: 430px;
  margin: 40px 0 12px;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.15;
}

.related-grid p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.related-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 30px;
  font-size: 14px;
}

footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  width: min(1170px, calc(100% - 48px));
  min-height: 180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}

.brand-footer {
  font-size: 23px;
}

.footer-inner p {
  max-width: 490px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.footer-inner nav {
  display: flex;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  z-index: 70;
  right: 24px;
  bottom: 22px;
  left: 24px;
  width: min(760px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 12px 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: var(--white);
  background: rgba(23, 49, 76, 0.96);
  box-shadow: 0 18px 55px rgba(23, 49, 76, 0.32);
  backdrop-filter: blur(16px);
}

.sticky-cta > div {
  display: grid;
  gap: 3px;
}

.sticky-cta > div span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.sticky-cta > div strong {
  font-family: var(--display);
  font-size: 17px;
}

.sticky-cta > a {
  min-height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border-radius: 9px;
  color: var(--white);
  background: var(--coral);
  font-size: 14px;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(231, 102, 76, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(46px, 5.3vw, 62px);
  }

  .article-shell {
    grid-template-columns: 200px minmax(0, 740px);
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 44px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 40px));
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(49px, 9.2vw, 72px);
  }

  .hero-figure {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .hero-figure img {
    min-height: 480px;
  }

  .hero-cards {
    width: min(760px, calc(100% - 40px));
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .hero-card {
    min-height: 148px;
    border-right: 0;
  }

  .article-shell {
    width: min(790px, calc(100% - 40px));
    grid-template-columns: 1fr;
    margin-top: 74px;
  }

  .article-aside {
    display: none;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .routine-layout {
    grid-template-columns: 1fr;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .button-light {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  body::after {
    height: 92px;
  }

  .header-inner {
    width: calc(100% - 28px);
    height: 66px;
  }

  .brand {
    font-size: 23px;
  }

  .brand-mark {
    width: 31px;
    height: 34px;
    font-size: 18px;
  }

  .header-cta {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .header-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-inner,
  .hero-cards {
    width: calc(100% - 28px);
  }

  .eyebrow {
    max-width: 290px;
    font-size: 11px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
  }

  .hero-lede {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button-primary {
    width: 100%;
    padding: 0 16px;
  }

  .button-link {
    justify-content: flex-start;
  }

  .trust-row {
    display: grid;
    gap: 9px;
  }

  .hero-figure::before {
    inset: 10px -7px -10px 7px;
    border-radius: 80px 80px 12px 12px;
  }

  .hero-figure picture {
    border-radius: 80px 80px 10px 10px;
  }

  .hero-figure img {
    min-height: 390px;
    max-height: 500px;
  }

  .hero-figure figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 11px;
  }

  .hero-cards {
    margin-top: 30px;
  }

  .hero-card {
    min-height: 136px;
    padding: 20px;
  }

  .hero-card strong {
    font-size: 21px;
  }

  .article-shell,
  .related-section,
  .footer-inner {
    width: calc(100% - 28px);
  }

  .article-shell {
    margin-top: 58px;
  }

  .article-meta {
    gap: 7px 14px;
  }

  .article-content > p,
  .article-content section > p {
    font-size: 17px;
    line-height: 1.75;
  }

  .article-intro {
    font-size: 23px !important;
  }

  .article-content section {
    margin-top: 66px;
  }

  .article-content h2 {
    font-size: 37px;
  }

  .editorial-callout,
  .example-board,
  .product-bridge,
  .checklist-section,
  .closing-cta {
    padding: 26px 22px;
  }

  .product-bridge-steps {
    grid-template-columns: 1fr;
  }

  .product-bridge-steps div {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .timeline > div {
    grid-template-columns: 54px 84px 1fr;
    padding: 16px 14px;
  }

  .mistake-list,
  .checklist,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .mistake-list > div:last-child {
    grid-column: auto;
  }

  .closing-cta h2 {
    font-size: 36px;
  }

  .related-section {
    margin: 80px auto;
  }

  .related-heading {
    display: block;
  }

  .related-heading h2 {
    font-size: 38px;
  }

  .related-grid > a {
    min-height: 270px;
    padding: 24px;
  }

  .footer-inner {
    min-height: 250px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 8px 8px 8px 14px;
    border-radius: 12px;
  }

  .sticky-cta > div span {
    display: none;
  }

  .sticky-cta > div strong {
    max-width: 165px;
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.25;
  }

  .sticky-cta > a {
    min-height: 46px;
    padding: 0 13px;
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 41px;
  }

  .hero-figure img {
    min-height: 360px;
  }

  .timeline > div {
    grid-template-columns: 50px 1fr;
  }

  .timeline p {
    grid-column: 2;
  }

  .sticky-cta > div {
    display: none;
  }

  .sticky-cta > a {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Static prototype additions */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.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;
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.mobile-nav-toggle svg {
  width: 21px;
  height: 21px;
}

@media (max-width: 1120px) {
  .header-inner {
    position: relative;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .desktop-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px 18px 18px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: rgba(255, 253, 249, 0.99);
    box-shadow: 0 18px 38px rgba(23, 49, 76, 0.14);
  }

  .desktop-nav.is-open {
    display: grid;
    gap: 0;
  }

  .desktop-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .desktop-nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 7px;
    font-size: 20px;
  }

  .brand-mark {
    width: 28px;
    height: 31px;
  }

  .mobile-nav-toggle,
  .header-cta {
    width: 40px;
    height: 40px;
  }
}

/* Spanish blog real WordyKid logo */
.brand-logo {
  display: block;
  width: auto;
  height: 64px;
  object-fit: contain;
}

.brand-footer .brand-logo {
  height: 50px;
}

@media (max-width: 760px) {
  .brand-logo {
    height: 54px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    height: 48px;
  }
}


