:root {
  color-scheme: light;
  --bg: #f3f5f4;
  --surface: #ffffff;
  --surface-soft: #e8edef;
  --ink: #0a1118;
  --muted: #58616b;
  --quiet: #7d858d;
  --line: #d8dde0;
  --line-dark: #b8c0c5;
  --coral: #d86c36;
  --coral-soft: #fff0e7;
  --blue: #0faaa6;
  --blue-soft: #d9f6f3;
  --mint: #8be0c3;
  --yellow: #f5cf65;
  --green: #13a36f;
  --red: #df304f;
  --shadow: 0 24px 70px rgba(24, 31, 36, .12);
  --shadow-soft: 0 12px 38px rgba(24, 31, 36, .07);
  --radius-xl: 34px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1220px;
  --header-height: 84px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.65 "Manrope", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, 100%); margin-inline: auto; }

.topline {
  color: #fff;
  background: linear-gradient(90deg, #22130f, #0d1720 48%, #073037);
  font-size: .75rem;
  font-weight: 680;
  letter-spacing: .015em;
}
.topline-inner {
  width: min(var(--container), calc(100% - 40px));
  min-height: 34px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.topline-status { display: inline-flex; align-items: center; gap: 8px; color: #7ce7e0; }
.topline-status i, .status-line i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #50dfa9;
  box-shadow: 0 0 0 4px rgba(80, 223, 169, .14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(184, 192, 197, .7);
  background: rgba(247, 249, 249, .92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand-logo { width: 52px; height: 52px; flex: 0 0 auto; border-radius: 50%; box-shadow: 0 10px 28px rgba(11, 18, 26, .26), 0 0 0 1px rgba(15, 170, 166, .14); }
.brand-name { color: inherit; font-size: 1.08rem; font-weight: 650; letter-spacing: -.025em; word-spacing: .18em; line-height: 1; }
.brand-name strong { font-weight: 900; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 42px);
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  position: relative;
  display: block;
  padding: 15px 0;
  color: #15181a;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 760;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 9px;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--blue));
  transition: right .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }

.editorial-hero {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, .7fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  margin-block: 24px 0;
  padding: clamp(38px, 5vw, 60px);
  overflow: hidden;
  border: 1px solid #d5dbde;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 18%, rgba(15, 170, 166, .08), transparent 31%),
    linear-gradient(120deg, #fff9f5 0%, #fffdfb 57%, #f3faf8 100%);
}
.eyebrow, .kicker, .article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #4d565d;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .095em;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before, .article-kicker::before {
  content: "";
  width: 20px;
  height: 3px;
  background: var(--coral);
}
.editorial-hero .eyebrow {
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: .68rem;
  letter-spacing: .07em;
}
.editorial-hero .eyebrow::before { display: none; }
.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.65rem);
  line-height: 1.01;
  letter-spacing: -.052em;
}
.hero-copy > p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #4c565e;
  font-size: clamp(.96rem, 1.35vw, 1.08rem);
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .89rem;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--ink); box-shadow: 0 12px 28px rgba(11, 13, 16, .18); }
.button-primary:hover { background: #25292d; }
.editorial-hero .button {
  min-height: 46px;
  padding-inline: 17px;
  font-size: .76rem;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.editorial-hero .button-primary {
  background: linear-gradient(135deg, #e77b3d, #d75f31);
  box-shadow: 0 12px 26px rgba(216, 108, 54, .24);
}
.editorial-hero .button-primary:hover { background: linear-gradient(135deg, #ef8645, #cf5529); }
.button-secondary { color: var(--ink); border-color: var(--line-dark); background: rgba(255, 255, 255, .75); }
.button-secondary:hover { background: #fff; box-shadow: var(--shadow-soft); }
.button-youtube { color: #fff; background: #ec2d3b; box-shadow: 0 12px 28px rgba(236, 45, 59, .2); }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 22px; color: #626b72; font-size: .8rem; font-weight: 760; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row span::before { content: "✓"; color: var(--green); font-weight: 950; }
.editorial-hero .trust-row {
  color: #087f7b;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.editorial-hero .trust-row span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-stage { position: relative; min-height: 0; display: grid; place-items: center; }
.hero-image-wrap {
  width: min(100%, 350px);
  aspect-ratio: 1;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(18, 31, 38, .2));
}
.hero-story-card {
  position: absolute;
  left: -7%;
  bottom: 7%;
  width: min(290px, 78%);
  display: flex;
  flex-direction: column;
  padding: 19px 20px;
  border: 1px solid rgba(11, 13, 16, .1);
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: rotate(-2deg);
  transition: transform .2s ease;
}
.hero-story-card:hover { transform: rotate(-2deg) translateY(-4px); }
.hero-story-card span { color: var(--coral); font-size: .67rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hero-story-card strong { margin-top: 4px; font-size: 1.3rem; line-height: 1.25; }
.hero-story-card small { margin-top: 5px; color: var(--muted); font-size: .78rem; }

.category-rail { border-block: 1px solid var(--line); background: #fff; }
.category-rail-inner { min-height: 66px; display: flex; align-items: center; gap: 10px 26px; overflow-x: auto; scrollbar-width: none; }
.category-rail-inner::-webkit-scrollbar { display: none; }
.category-rail-inner span { color: var(--coral); font-size: .69rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.category-rail-inner a { color: #293036; text-decoration: none; font-size: .83rem; font-weight: 780; white-space: nowrap; }
.category-rail-inner a:hover { color: var(--coral); }

.section { padding-block: clamp(68px, 8vw, 106px); }
.section + .section { border-top: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.section-heading > div { max-width: 780px; }
.section-heading.center { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading h2, .faq-intro h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.section-heading p, .faq-intro p { margin: 13px 0 0; color: var(--muted); font-size: 1rem; }
.text-link { color: var(--ink); text-decoration: none; font-size: .83rem; font-weight: 900; white-space: nowrap; }
.text-link:hover { color: var(--coral); }

.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 28px; }
.news-feed { display: grid; gap: 15px; }
.content-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  grid-template-areas: "icon meta" "icon title" "icon copy" "icon link";
  column-gap: 20px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.content-card:hover { transform: translateY(-3px); border-color: var(--line-dark); box-shadow: var(--shadow); }
.news-feed > .content-card:first-of-type {
  padding: clamp(28px, 4vw, 42px);
  border-top: 5px solid var(--coral);
  background: linear-gradient(135deg, #fff 30%, #fff0f3 100%);
}
.news-feed > .content-card:first-of-type h3 { font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1.08; }
.card-icon {
  grid-area: icon;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #c6ccd0;
  border-radius: 17px;
  color: #fff;
  background: var(--ink);
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: -.03em;
}
.card-meta, .tags { grid-area: meta; display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 11px; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 9px;
  border: 1px solid #d4d9dc;
  border-radius: 999px;
  color: #566068;
  background: #f7f8f8;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .025em;
}
.content-card h3 { grid-area: title; margin: 0; font-size: 1.28rem; line-height: 1.25; letter-spacing: -.025em; }
.content-card p { grid-area: copy; margin: 8px 0 17px; color: var(--muted); font-size: .93rem; }
.content-card .card-link { grid-area: link; justify-self: start; color: var(--ink); text-decoration: none; font-size: .82rem; font-weight: 900; }
.content-card .card-link:hover { color: var(--coral); }
.content-card.has-visual {
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  grid-template-areas: "media meta" "media title" "media copy" "media link";
  align-items: start;
}
.card-media {
  grid-area: media;
  align-self: stretch;
  min-height: 172px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #d5dce0;
  background: #e8eef1;
}
.card-media img { width: 100%; height: 100%; min-height: 172px; object-fit: cover; object-position: center; }

.blog-sidebar { position: sticky; top: calc(var(--header-height) + 20px); display: grid; gap: 14px; }
.sidebar-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.sidebar-label { display: block; margin-bottom: 11px; color: var(--coral); font-size: .68rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.sidebar-card > strong { display: block; font-size: 1.25rem; line-height: 1.25; letter-spacing: -.025em; }
.sidebar-card > p { margin: 9px 0 0; color: var(--muted); font-size: .86rem; }
.schedule-card { color: #fff; border-color: #0b0d10; background: var(--ink); }
.schedule-card .sidebar-label { color: #ff8ca1; }
.schedule-card > p { color: #b9c0c5; }
.status-line { display: inline-flex; align-items: center; gap: 9px; margin-top: 17px; color: #dfe3e6; font-size: .72rem; font-weight: 800; }
.category-list { margin: 0; padding: 0; list-style: none; }
.category-list li + li { border-top: 1px solid var(--line); }
.category-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; text-decoration: none; font-size: .84rem; font-weight: 780; }
.category-list b { color: var(--coral); }
.category-list a:hover span { text-decoration: underline; text-decoration-color: var(--coral); text-underline-offset: 3px; }
.check-list { counter-reset: checks; display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { counter-increment: checks; display: grid; grid-template-columns: 24px 1fr; gap: 9px; color: #4f5860; font-size: .82rem; }
.check-list li::before { content: counter(checks); width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: .65rem; font-weight: 900; }
.youtube-card { border-color: #f4a8b3; background: var(--coral-soft); }
.youtube-card .sidebar-link { display: block; margin-top: 15px; font-size: .81rem; font-weight: 900; }
.youtube-card:hover .sidebar-link { color: var(--red); }

.topic-section { color: #fff; background: var(--ink); }
.topic-section .section-heading p, .topic-section .eyebrow { color: #aeb6bb; }
.topic-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.topic-card { min-height: 310px; display: flex; flex-direction: column; padding: 25px; border-radius: var(--radius-lg); color: var(--ink); text-decoration: none; transition: transform .2s ease; }
.topic-card:hover { transform: translateY(-5px); }
.topic-card.coral { background: #ee9464; }
.topic-card.blue { background: #63d3cd; }
.topic-card.mint { background: var(--mint); }
.topic-card.yellow { background: var(--yellow); }
.topic-card > span { align-self: flex-start; padding: 4px 8px; border: 1px solid rgba(11, 13, 16, .28); border-radius: 999px; font-size: .66rem; font-weight: 900; }
.topic-card h3 { margin: auto 0 8px; font-size: 1.45rem; line-height: 1.12; letter-spacing: -.035em; }
.topic-card p { margin: 0 0 18px; color: rgba(11, 13, 16, .72); font-size: .86rem; }
.topic-card b { font-size: .78rem; }

.editorial-note-section { background: #dfe5e8; }
.editorial-note { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(34px, 8vw, 100px); align-items: start; }
.editorial-note h2 { max-width: 560px; margin: 0; font-size: clamp(2.3rem, 4.6vw, 4.4rem); line-height: 1.02; letter-spacing: -.058em; }
.editorial-note-copy p { margin: 0 0 16px; color: #505a61; font-size: 1.05rem; }
.editorial-note-copy .text-link { display: inline-block; margin-top: 8px; }

.faq-layout { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); align-items: start; gap: clamp(34px, 7vw, 88px); }
.faq-intro { position: sticky; top: calc(var(--header-height) + 22px); }
.faq-list { display: grid; gap: 10px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.faq-list summary { display: flex; justify-content: space-between; gap: 18px; padding: 19px 20px; cursor: pointer; font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--coral); font-size: 1.35rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.archive-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: end;
  gap: clamp(30px, 7vw, 100px);
  padding-block: clamp(70px, 10vw, 130px);
}
.archive-hero h1, .page-hero h1, .article-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
  line-height: .97;
  letter-spacing: -.068em;
}
.archive-hero > p { margin: 0 0 8px; color: var(--muted); font-size: clamp(1.02rem, 1.8vw, 1.2rem); }
.archive-section { background: #e7ecee; }

.content-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.content-grid .content-card {
  grid-column: span 4;
  min-height: 285px;
  display: flex;
  flex-direction: column;
}
.content-grid .content-card .card-meta { margin-bottom: 14px; }
.content-grid .content-card h3 { margin: 20px 0 0; }
.content-grid .content-card p { margin: 9px 0 20px; }
.content-grid .content-card .card-link { align-self: flex-start; margin-top: auto; }
.content-grid .content-card.has-visual {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  grid-template-areas: "media meta" "media title" "media copy" "media link";
  min-height: 230px;
}
.featured-guide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(310px, .92fr) minmax(0, 1.08fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}
.featured-media { min-height: 320px; overflow: hidden; background: #10151a; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(30px, 5vw, 58px); }
.featured-body h3 { margin: 18px 0 7px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.05em; }
.featured-body p { margin: 0 0 22px; color: var(--muted); }
.featured-body .tags { grid-area: auto; }
.archive-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 28px; }
.archive-cards .content-card { grid-column: 1 / -1; }
.archive-aside { padding: 27px; border: 1px solid #cbd2d6; border-radius: var(--radius-lg); background: #fff; }
.archive-aside h3 { margin: 0; font-size: 1.5rem; line-height: 1.2; letter-spacing: -.035em; }
.archive-aside p { color: var(--muted); font-size: .89rem; }
.plain-checks { display: grid; gap: 9px; margin: 19px 0 0; padding: 0; list-style: none; color: #4f585f; font-size: .82rem; }
.plain-checks li { display: flex; gap: 9px; }
.plain-checks li::before { content: "✓"; color: var(--green); font-weight: 950; }
.guide-card-grid .content-card { grid-column: span 3; }

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(34px, 6vw, 68px);
  border-radius: var(--radius-xl);
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.cta-panel .eyebrow { color: #bac1c6; }
.cta-panel h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.05; letter-spacing: -.05em; }
.cta-panel p { margin: 10px 0 0; color: #aeb6bb; }
.cta-panel .button-secondary { color: #fff; border-color: #555d63; background: #25292d; }

.page-hero { padding-block: clamp(72px, 10vw, 130px) clamp(55px, 8vw, 95px); text-align: center; }
.page-hero p { max-width: 770px; margin: 20px auto 0; color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.2rem); }
.gradient-text { color: var(--ink); background: none; }
.video-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 22px; margin-bottom: 30px; }
.video-toolbar h2 { margin: 0; font-size: clamp(2.3rem, 4.5vw, 4.1rem); line-height: 1.04; letter-spacing: -.055em; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.video-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow); }
.playlist-card { grid-column: 1 / -1; width: min(100%, 1050px); justify-self: center; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #080a0c; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-info { padding: 23px; }
.video-info h3 { margin: 0; font-size: 1.2rem; }
.video-info p { margin: 8px 0 0; color: var(--muted); font-size: .9rem; }
.video-meta { display: flex; justify-content: space-between; gap: 14px; margin-top: 16px; color: var(--quiet); font-size: .78rem; }
.video-meta a { color: var(--red); text-decoration: none; font-weight: 850; }
.status-panel { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--muted); background: #fff; text-align: center; }
.status-panel[hidden], .load-more[hidden] { display: none; }
.load-row { display: flex; justify-content: center; margin-top: 28px; }
.load-more { border: 0; cursor: pointer; font: inherit; }

.article-main { padding-block: clamp(42px, 7vw, 84px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: var(--quiet); font-size: .8rem; }
.breadcrumbs a { color: var(--ink); text-decoration: none; font-weight: 780; }
.breadcrumbs a:hover { color: var(--coral); }
.article-hero {
  padding: clamp(34px, 6vw, 70px);
  overflow: hidden;
  border: 1px solid #c9d2d7;
  border-radius: var(--radius-xl);
  background: linear-gradient(130deg, #fff 0%, #dce7ec 100%);
  box-shadow: var(--shadow);
}
.article-hero h1 { max-width: 1000px; font-size: clamp(2.5rem, 5vw, 4.55rem); }
.article-summary { max-width: 900px; margin: 22px 0 0; color: #4e5961; font-size: clamp(1.02rem, 1.8vw, 1.16rem); }
.fact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 30px; }
.fact-box { padding: 15px; border: 1px solid #ccd3d7; border-radius: var(--radius-md); background: rgba(255, 255, 255, .66); }
.fact-box span { display: block; color: var(--quiet); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.fact-box strong { display: block; margin-top: 4px; overflow-wrap: anywhere; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; align-items: start; gap: 26px; margin-top: 28px; }
.article-content, .article-sidebar { border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.article-content { padding: clamp(27px, 5vw, 52px); }
.article-content h2 { margin: 2.45rem 0 .8rem; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.12; letter-spacing: -.04em; }
.article-content h2:first-child { margin-top: 0; }
.article-content p, .article-content li { color: #4f5961; }
.article-content ul, .article-content ol { padding-left: 1.35rem; }
.article-content li + li { margin-top: .58rem; }
.article-content code { padding: 2px 6px; border: 1px solid var(--line); border-radius: 7px; background: #f2f4f5; color: #263039; overflow-wrap: anywhere; }
.article-sidebar { position: sticky; top: calc(var(--header-height) + 20px); padding: 22px; color: #fff; border-color: var(--ink); background: var(--ink); }
.article-sidebar h2 { margin: 0 0 8px; font-size: 1.1rem; }
.article-sidebar p { margin: 0; color: #b7bec3; font-size: .86rem; }
.article-sidebar .button { width: 100%; margin-top: 17px; color: var(--ink); background: #fff; }
.source-note { margin-top: 13px !important; color: #8f989f !important; font-size: .75rem !important; }
.article-disclaimer { margin-top: 24px; padding: 17px; border: 1px solid #e8c75e; border-radius: var(--radius-md); color: #67551d; background: #fff8dc; font-size: .88rem; }
.article-alert { margin: 22px 0 4px; padding: 18px; border: 1px solid #f2b8a8; border-radius: var(--radius-md); color: #7c2d12; background: #fff2ed; font-size: .9rem; line-height: 1.55; }
.feature-list { display: grid; gap: 10px; margin-top: 20px; padding: 0 !important; list-style: none; }
.feature-list li { position: relative; padding: 14px 16px 14px 42px; border: 1px solid #dbe3e7; border-radius: 15px; background: #f7fafb; }
.feature-list li::before { content: "✓"; position: absolute; left: 15px; top: 14px; color: #0f766e; font-weight: 950; }
.source-link-list { display: grid; gap: 8px; margin-top: 17px; }
.source-link-row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 12px; border: 1px solid #34424c; border-radius: 12px; color: #fff; background: #202d36; font-size: .78rem; font-weight: 800; text-decoration: none; }
.source-link-row:hover { border-color: #647783; background: #2a3943; }
.article-footnote { margin-top: 25px; color: var(--quiet) !important; font-size: .77rem; }
.article-visual {
  margin: 28px 0 0;
  padding: clamp(18px, 4vw, 44px);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-xl);
  text-align: center;
  background: radial-gradient(circle at top, #eef5f8 0%, #dfe8ed 58%, #d3dde2 100%);
  box-shadow: var(--shadow);
}
.article-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 760px;
  margin-inline: auto;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 22px;
  object-fit: contain;
  background: #111827;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .2);
}
.article-visual figcaption { max-width: 850px; margin: 14px auto 0; color: #59656d; font-size: .78rem; text-align: center; }
.article-visual figcaption a { color: #334155; font-weight: 850; }
.tweak-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 18px 0 8px;
}
.tweak-shot {
  display: grid;
  align-content: start;
  gap: 11px;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid #d7dee2;
  border-radius: 20px;
  background: #eef3f5;
}
.tweak-shot img {
  width: 100%;
  height: 520px;
  border-radius: 14px;
  object-fit: contain;
  background: #101827;
}
.tweak-shot figcaption { color: #68737a; font-size: .76rem; line-height: 1.45; }
.source-media-required {
  margin-top: 28px;
  padding: 28px;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-xl);
  text-align: center;
  background: #f8fafc;
}
.source-media-required p { margin: 7px 0 0; color: var(--muted); }

.roundup-hero { position: relative; overflow: hidden; padding: clamp(34px, 6vw, 72px); border-radius: var(--radius-xl); color: #fff; background: linear-gradient(135deg, #21130f, #0d1720 54%, #07565a); }
.roundup-hero::after { content: ""; position: absolute; width: 380px; height: 380px; right: -120px; top: -160px; border-radius: 50%; background: rgba(103, 232, 249, .22); }
.roundup-hero .article-kicker, .roundup-hero .article-summary { color: #dbeafe; }
.roundup-hero h1 { max-width: 1000px; margin: 0; font-size: clamp(2.8rem, 6.8vw, 6.2rem); line-height: .98; letter-spacing: -.055em; }
.roundup-intro { max-width: 860px; margin: 32px auto; color: #475569; font-size: 1.08rem; }
.roundup-list { display: grid; gap: 20px; margin: 0; padding: 0; counter-reset: roundup; list-style: none; }
.roundup-item { counter-increment: roundup; display: grid; grid-template-columns: 88px minmax(0, 1fr) 230px; gap: 24px; align-items: start; padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.roundup-item::before { content: counter(roundup, decimal-leading-zero); width: 70px; height: 70px; display: grid; place-items: center; border-radius: 22px; color: #fff; background: linear-gradient(135deg, #d86c36, #0faaa6); font-size: 1.35rem; font-weight: 900; }
.roundup-item h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.12; letter-spacing: -.035em; }
.roundup-item p { margin: 9px 0 0; color: var(--muted); }
.roundup-facts { display: grid; gap: 8px; padding: 16px; border-radius: 16px; background: #f1f5f9; }
.roundup-facts span { color: #64748b; font-size: .72rem; font-weight: 760; }
.roundup-facts strong { display: block; color: #0f172a; font-size: .85rem; }
.roundup-facts a { margin-top: 5px; color: #0b807d; font-size: .8rem; font-weight: 850; text-decoration: none; }
.roundup-media { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 14px; border: 1px solid #d8e0e5; border-radius: 20px; background: #eef3f5; }
.roundup-media img { width: 100%; height: 390px; border-radius: 14px; object-fit: contain; background: #111827; }
.roundup-media figcaption { grid-column: 1 / -1; color: #66737b; font-size: .76rem; text-align: center; }
.method-note { margin-top: 28px; padding: 22px; border: 1px solid #bfdbfe; border-radius: var(--radius-lg); color: #1e3a8a; background: #eff6ff; }

.site-footer { color: #fff; background: radial-gradient(circle at 12% 0, rgba(216,108,54,.14), transparent 32%), radial-gradient(circle at 92% 100%, rgba(15,170,166,.14), transparent 34%), var(--ink); }
.footer-shell {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  padding: 66px 0 54px;
  display: grid;
  grid-template-columns: minmax(280px, 1.8fr) repeat(3, minmax(110px, .55fr));
  gap: 36px;
}
.site-footer .brand { color: #fff; }
.footer-brand p { max-width: 480px; margin: 17px 0 0; color: #9fa8ae; font-size: .87rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column > strong { margin-bottom: 6px; color: #fff; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-column a { color: #aeb6bb; text-decoration: none; font-size: .82rem; }
.footer-column a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #303438; color: #7f898f; font-size: .7rem; letter-spacing: .035em; text-transform: uppercase; }
.footer-bottom .container { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.footer-links a { color: #aeb6bb; text-decoration: none; font-size: .82rem; }

@media (max-width: 1020px) {
  .editorial-hero { grid-template-columns: minmax(0, 1fr) 300px; padding-inline: 44px; }
  .hero-copy h1 { font-size: clamp(3rem, 6vw, 4.2rem); }
  .blog-layout, .archive-layout { grid-template-columns: minmax(0, 1fr) 290px; }
  .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topic-card { min-height: 265px; }
  .guide-card-grid .content-card { grid-column: span 6; }
  .footer-shell { grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(100px, .5fr)); }
}

@media (max-width: 820px) {
  :root { --header-height: 120px; }
  .topline-inner > span:first-child { display: none; }
  .topline-inner { justify-content: center; }
  .nav-shell { min-height: var(--header-height); flex-direction: column; align-items: stretch; justify-content: center; gap: 5px; padding-block: 10px; }
  .brand { align-self: flex-start; }
  .brand-logo { width: 45px; height: 45px; border-radius: 50%; }
  .nav-links { width: 100%; gap: 25px; }
  .nav-links a { padding-block: 9px; }
  .nav-links a::after { bottom: 4px; }
  .editorial-hero { grid-template-columns: 1fr; min-height: 0; gap: 32px; padding: 44px 34px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-stage { min-height: 0; }
  .hero-image-wrap { width: min(60vw, 280px); }
  .blog-layout, .archive-layout, .faq-layout, .editorial-note { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-intro { position: static; }
  .archive-hero { grid-template-columns: 1fr; padding-block: 75px; }
  .archive-hero > p { max-width: 680px; }
  .featured-guide { grid-template-columns: 1fr; }
  .featured-media { min-height: 280px; max-height: 430px; }
  .content-grid .content-card { grid-column: span 6; }
  .archive-cards .content-card { grid-column: 1 / -1; }
  .cta-panel { grid-template-columns: 1fr; text-align: center; }
  .cta-panel .eyebrow { justify-content: center; }
  .cta-panel .button { justify-self: center; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .roundup-item { grid-template-columns: 70px minmax(0, 1fr); }
  .roundup-facts { grid-column: 2; }
  .roundup-media { grid-column: 2; }
  .footer-shell { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container, .topline-inner, .nav-shell, .footer-shell { width: min(100% - 24px, var(--container)); }
  .topline { font-size: .63rem; }
  .topline-status { text-align: center; }
  .brand-name { font-size: 1rem; }
  .nav-links { gap: 19px; }
  .nav-links a { font-size: .73rem; }
  .editorial-hero { width: 100%; margin-top: 0; padding: 45px 18px 36px; border-inline: 0; border-radius: 0; }
  .hero-copy h1 { font-size: clamp(2.75rem, 15vw, 4.25rem); }
  .hero-actions .button { width: 100%; }
  .trust-row { flex-direction: column; align-items: center; }
  .hero-stage { min-height: 0; }
  .hero-image-wrap { width: min(64vw, 230px); }
  .category-rail-inner { gap: 18px; }
  .section { padding-block: 65px; }
  .section-heading, .video-toolbar { align-items: flex-start; flex-direction: column; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .content-card { grid-template-columns: 46px minmax(0, 1fr); column-gap: 14px; padding: 20px; }
  .content-card.has-visual, .content-grid .content-card.has-visual {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "meta" "title" "copy" "link";
  }
  .card-media, .card-media img { min-height: 0; aspect-ratio: 16 / 9; }
  .card-icon { width: 44px; height: 44px; border-radius: 13px; font-size: .82rem; }
  .news-feed > .content-card:first-of-type { padding: 21px; }
  .news-feed > .content-card:first-of-type h3 { font-size: 1.55rem; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 250px; }
  .content-grid .content-card, .guide-card-grid .content-card { grid-column: 1 / -1; }
  .featured-media { min-height: 215px; }
  .featured-body { padding: 26px 22px 30px; }
  .archive-hero h1, .page-hero h1, .article-hero h1 { font-size: clamp(2.65rem, 14vw, 4.25rem); }
  .fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-meta { flex-direction: column; }
  .article-hero { padding: 27px 21px; border-radius: 24px; }
  .article-content { padding-inline: 21px; }
  .tweak-shot img { height: 430px; }
  .roundup-item { grid-template-columns: 1fr; gap: 17px; }
  .roundup-item::before { width: 58px; height: 58px; border-radius: 17px; }
  .roundup-facts { grid-column: auto; }
  .roundup-media { grid-column: auto; grid-template-columns: 1fr; }
  .roundup-media img { height: 430px; }
  .roundup-media figcaption { grid-column: auto; }
  .footer-shell { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 16px; }
}

@media (max-width: 390px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: .68rem; }
  .fact-grid { grid-template-columns: 1fr; }
}

@media (hover: none) {
  .button:hover, .content-card:hover, .topic-card:hover, .hero-story-card:hover { transform: none; }
}

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