:root {
  --ink: #242337;
  --ink-soft: #464358;
  --muted: #6f6c7d;
  --line: rgba(36, 35, 55, .12);
  --paper: #fffdfc;
  --white: #fff;
  --pink: #ff6f91;
  --coral: #ff8b72;
  --lavender: #7f78ef;
  --purple: #6157cf;
  --mint: #35bca3;
  --green: #2c9c75;
  --blue: #4e9fda;
  --cream: #fff3ce;
  --orange: #e89212;
  --navy: #35425f;
  --shadow-sm: 0 12px 32px rgba(55, 43, 74, .08);
  --shadow-lg: 0 24px 70px rgba(68, 51, 91, .14);
  --radius-sm: 15px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --max: 1220px;
  --header-h: 76px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}
body {
  margin: 0;
  min-width: 280px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open,
body.drawer-open,
body.detail-open { overflow: hidden; }
button,
input,
select { font: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-underline-offset: .2em; }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

:focus-visible {
  outline: 3px solid rgba(255, 111, 145, .55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 700;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 252, .9);
  backdrop-filter: blur(18px);
  transition: min-height .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-scrolled {
  min-height: 64px;
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(40, 34, 58, .05);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: inherit;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}
.brand-mark i {
  position: absolute;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.brand-mark i:nth-child(1) { left: 0; top: 2px; background: rgba(255, 111, 145, .78); }
.brand-mark i:nth-child(2) { right: 0; top: 2px; background: rgba(71, 201, 176, .72); }
.brand-mark i:nth-child(3) { left: 6px; bottom: 0; background: rgba(127, 120, 239, .7); }
.brand-text { display: grid; line-height: 1.2; }
.brand-text strong { font-size: 20px; letter-spacing: -.02em; }
.brand-text small { margin-top: 3px; color: var(--muted); font-size: 11px; letter-spacing: .04em; }
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}
.desktop-nav a {
  position: relative;
  padding: 15px 10px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 3px;
  border-radius: 99px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform .2s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after,
.desktop-nav a[aria-current="location"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button,
.menu-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  cursor: pointer;
}
.icon-button { display: inline-grid; place-items: center; font-size: 22px; }
.menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.menu-lines { display: grid; gap: 3px; width: 17px; }
.menu-lines i { height: 2px; border-radius: 2px; background: var(--ink); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(27, 24, 42, .28);
  backdrop-filter: blur(4px);
}
.mobile-menu {
  position: fixed;
  z-index: 130;
  inset: 0 0 0 auto;
  width: min(88vw, 390px);
  padding: max(18px, env(safe-area-inset-top)) 22px max(24px, env(safe-area-inset-bottom));
  background: rgba(255, 253, 252, .98);
  box-shadow: -24px 0 70px rgba(35, 30, 53, .22);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform .28s var(--ease), visibility .28s;
}
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-menu-head strong { font-size: 22px; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(255, 232, 239, .86) 0%, rgba(255, 252, 246, .96) 43%, rgba(231, 246, 255, .82) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image: radial-gradient(rgba(39, 35, 58, .18) .6px, transparent .6px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to right, #000, transparent 70%);
}
.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: clamp(44px, 7vw, 96px);
  padding: clamp(58px, 7vw, 100px) 0 clamp(54px, 7vw, 88px);
}
.hero-copy { max-width: 760px; }
.issue-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.issue-pill {
  padding: 7px 13px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
}
.hero-eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5.1vw, 68px);
  line-height: 1.16;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 em {
  color: var(--pink);
  font-style: normal;
  background: linear-gradient(90deg, var(--pink), var(--coral));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-summary {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.9;
}
.hero-guide {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--pink);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, .64);
  color: var(--ink-soft);
  font-size: 14px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--ink); box-shadow: 0 12px 26px rgba(36, 35, 55, .18); }
.button-ghost { border: 1px solid var(--line); background: rgba(255, 255, 255, .72); }
.button-dark { color: #fff; background: var(--ink); }
.hero-digest {
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .58);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.digest-label { margin: 0 0 12px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.digest-item {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 15px 38px 15px 16px;
  border-radius: 17px;
  text-decoration: none;
  transition: transform .2s var(--ease), background .2s;
}
.digest-item + .digest-item { margin-top: 8px; }
.digest-item::after { content: "→"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); transition: transform .2s; }
.digest-item:hover { transform: translateX(4px); }
.digest-item:hover::after { transform: translate(4px, -50%); }
.digest-item span { font-size: 11px; font-weight: 800; }
.digest-item strong { font-size: 15px; line-height: 1.45; }
.digest-item small { color: var(--muted); font-size: 11px; }
.digest-item.regulatory { background: #eef1f5; }
.digest-item.research { background: #eef0ff; }
.digest-item.products { background: #fff0f4; }

.section,
.section-compact,
.keyword-section,
.search-invite,
.about-section { padding: clamp(70px, 8vw, 112px) 0; }
.section-compact { padding-top: 50px; padding-bottom: 54px; }
.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.section-heading > p,
.compact-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.compact-heading { align-items: center; }
.compact-heading h2 { font-size: clamp(25px, 3vw, 36px); }
.section-lead { max-width: 760px; margin: -12px 0 28px; color: var(--muted); }

.role-entry { background: #fff; border-bottom: 1px solid var(--line); }
.role-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.role-card {
  min-width: 0;
  min-height: 150px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.role-card:hover { transform: translateY(-4px); border-color: rgba(255, 111, 145, .42); box-shadow: var(--shadow-sm); }
.role-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-weight: 900;
}
.role-icon.planning { background: #fff0f4; color: #d94069; }
.role-icon.research { background: #eef0ff; color: #575fd1; }
.role-icon.legal { background: #edf1f5; color: var(--navy); }
.role-icon.marketing { background: #fff4d6; color: #bc7210; }
.role-icon.sales { background: #e7f9f5; color: #1f8c78; }
.role-icon.management { background: #eaf6ef; color: #267a5d; }
.role-card > span:last-child { display: grid; gap: 4px; min-width: 0; }
.role-card strong { font-size: 15px; }
.role-card small { color: var(--muted); font-size: 12px; line-height: 1.55; }
.role-card em { margin-top: 3px; color: var(--pink); font-size: 11px; font-style: normal; font-weight: 800; }

.featured-section { overflow: hidden; background: #fff8fa; }
.carousel-tools { display: flex; align-items: center; gap: 9px; }
.carousel-tools button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.carousel-tools span { min-width: 48px; color: var(--muted); font-size: 13px; text-align: center; }
.featured-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 111, 145, .45) transparent;
  padding: 3px 2px 28px;
}
.featured-card {
  position: relative;
  flex: 0 0 min(560px, 77vw);
  min-width: 0;
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.featured-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.featured-visual,
.featured-product-image {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.featured-visual { padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; }
.featured-visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -30px;
  top: -30px;
  border: 28px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
}
.featured-visual span,
.featured-visual strong,
.featured-visual small { position: relative; z-index: 1; }
.featured-visual span { font-size: 13px; font-weight: 800; }
.featured-visual strong { margin: 4px 0; max-width: 400px; font-size: clamp(27px, 4vw, 43px); line-height: 1.18; letter-spacing: -.04em; }
.featured-visual small { font-size: 12px; }
.visual-regulatory { color: #fff; background: linear-gradient(135deg, #31415f, #77839c); }
.visual-research { color: #fff; background: linear-gradient(135deg, #6157cf, #8ca6ff); }
.visual-marketing { color: #55380a; background: linear-gradient(135deg, #ffdf7a, #ffb974); }
.featured-product-image { background: #fff4f0; }
.featured-product-image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .35s var(--ease); }
.featured-card:hover .featured-product-image img { transform: scale(1.025); }
.image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 4px;
  text-align: center;
  background: linear-gradient(135deg, #fff1f5, #f0edff);
  transition: opacity .18s ease, visibility .18s ease;
}
.product-media.image-loaded .image-fallback,
.featured-product-image.image-loaded .image-fallback {
  opacity: 0;
  visibility: hidden;
}
.image-fallback span { color: var(--muted); font-size: 12px; letter-spacing: .12em; }
.image-fallback strong { font-size: 32px; }
.featured-body { padding: 25px; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 12px; }
.category-label { color: var(--category, var(--ink)); font-weight: 900; }
.featured-card.category-regulatory { --category: var(--navy); }
.featured-card.category-research { --category: var(--purple); }
.featured-card.category-products { --category: var(--pink); }
.featured-card.category-marketing { --category: var(--orange); }
.featured-body h3 { margin: 14px 0 9px; font-size: clamp(22px, 3vw, 31px); line-height: 1.42; letter-spacing: -.025em; }
.featured-body > p { margin: 0; color: var(--ink-soft); }
.why-box { margin: 18px 0; padding: 14px 15px; border-radius: 15px; background: #f8f7f6; }
.why-box span { display: block; margin-bottom: 3px; color: var(--muted); font-size: 11px; font-weight: 800; }
.why-box strong { display: block; font-size: 13px; line-height: 1.6; }
.card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-footer > span { color: var(--muted); font-size: 12px; }
.card-footer button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.card-footer button i { color: var(--pink); font-style: normal; }

.keyword-section { padding-block: 58px; background: var(--ink); color: #fff; }
.keyword-section .section-kicker { color: #ffb9c9; }
.keyword-section .section-heading > p { color: rgba(255, 255, 255, .66); }
.keyword-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 2px 0 10px;
  scrollbar-width: none;
}
.keyword-scroll::-webkit-scrollbar { display: none; }
.keyword-scroll button {
  flex: 0 0 min(270px, 75vw);
  min-height: 105px;
  padding: 19px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 19px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform .2s, background .2s;
}
.keyword-scroll button:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .12); }
.keyword-scroll strong { font-size: 17px; }
.keyword-scroll span { color: rgba(255, 255, 255, .7); font-size: 12px; line-height: 1.6; }

.weekly-change { background: #fff; }
.briefing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.briefing-card {
  --category: var(--pink);
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.briefing-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--category);
}
.briefing-card.category-regulatory { --category: var(--navy); }
.briefing-card.category-research { --category: var(--purple); }
.briefing-card.category-products { --category: var(--pink); }
.briefing-label { color: var(--category); font-size: 11px; font-weight: 900; }
.briefing-card h3 { margin: 10px 0 18px; font-size: 22px; line-height: 1.45; }
.briefing-card dl { margin: 0; display: grid; gap: 13px; }
.briefing-card dl div { padding-top: 12px; border-top: 1px solid var(--line); }
.briefing-card dt { color: var(--muted); font-size: 11px; font-weight: 800; }
.briefing-card dd { margin: 3px 0 0; font-size: 13px; line-height: 1.65; }
.briefing-card a { display: inline-flex; gap: 8px; margin-top: 18px; color: var(--category); font-size: 13px; font-weight: 800; text-decoration: none; }

.latest-section { background: #f8f7f6; }
.search-toolbar {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 2fr) repeat(3, minmax(130px, .8fr)) auto;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.search-toolbar label { display: grid; gap: 5px; min-width: 0; }
.search-toolbar label > span { color: var(--muted); font-size: 11px; font-weight: 800; }
.search-toolbar input,
.search-toolbar select {
  width: 100%;
  height: 48px;
  min-width: 0;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
}
.search-toolbar .button { align-self: end; }
.result-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.result-bar p { margin: 0; color: var(--muted); font-size: 13px; }
.result-bar p strong { color: var(--ink); }
.result-bar button { border: 0; background: none; color: var(--pink); font-size: 13px; font-weight: 800; cursor: pointer; }
.latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
  gap: 18px;
}
.latest-lead,
.news-card,
.news-list-item {
  --category: var(--pink);
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
}
.latest-lead { min-height: 420px; padding: 30px; border-radius: 30px; overflow: hidden; }
.latest-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .09;
  background: linear-gradient(135deg, var(--category), transparent 65%);
}
.latest-lead > * { position: relative; }
.latest-lead h3 { max-width: 750px; margin: 50px 0 12px; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.25; letter-spacing: -.04em; }
.latest-lead > p { max-width: 720px; color: var(--ink-soft); font-size: 17px; }
.latest-lead .why-box { max-width: 700px; }
.latest-side { display: grid; gap: 12px; }
.news-card { padding: 20px; border-radius: 22px; transition: transform .2s, box-shadow .2s; }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.news-card h3 { margin: 10px 0 7px; font-size: 20px; line-height: 1.45; }
.news-card p { margin: 0; color: var(--muted); font-size: 13px; }
.latest-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 4px; }
.news-list-item { padding: 17px 18px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; border-radius: 18px; }
.news-list-item h3 { margin: 0; font-size: 15px; line-height: 1.5; }
.news-list-item time { color: var(--muted); font-size: 11px; }
.news-list-item button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; }
.research-card [data-detail-id],
.market-feature [data-detail-id],
.market-stack [data-detail-id],
.marketing-card [data-detail-id],
.salon-card [data-detail-id],
.global-card [data-detail-id] {
  min-height: 42px;
  margin-top: 15px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.research-card [data-detail-id]:hover,
.market-feature [data-detail-id]:hover,
.market-stack [data-detail-id]:hover,
.marketing-card [data-detail-id]:hover,
.salon-card [data-detail-id]:hover,
.global-card [data-detail-id]:hover { border-color: currentColor; }
.static-fallback-feed { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.static-fallback-feed article { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.static-fallback-feed span { color: var(--pink); font-size: 11px; font-weight: 900; }
.static-fallback-feed h3 { margin: 8px 0; font-size: 19px; line-height: 1.5; }
.static-fallback-feed p { color: var(--muted); font-size: 13px; }
.static-fallback-feed a { color: var(--pink); font-size: 13px; font-weight: 800; }
html.js-app-ready .static-fallback-feed { display: none; }
.empty-state,
.load-error { margin-top: 20px; padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #fff; text-align: center; }
.empty-state strong,
.load-error strong { font-size: 22px; }
.empty-state a { margin-left: 14px; color: var(--pink); font-weight: 700; }

.category-section { position: relative; }
.research-section { background: linear-gradient(180deg, #f4f5ff, #fff); }
.research-section .section-kicker { color: var(--purple); }
.research-board { display: grid; grid-template-columns: .7fr 1.3fr; gap: 20px; align-items: start; }
.research-primer {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: 28px;
  border-radius: 27px;
  color: #fff;
  background: linear-gradient(145deg, #45409c, #7f78ef);
  box-shadow: var(--shadow-lg);
}
.research-primer > span { font-size: 11px; font-weight: 800; opacity: .72; }
.research-primer h3 { margin: 10px 0 16px; font-size: 30px; line-height: 1.3; }
.process-line { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 14px; border-radius: 16px; background: rgba(255, 255, 255, .12); font-size: 12px; }
.process-line i { font-style: normal; opacity: .55; }
.research-primer p { margin: 18px 0 0; color: rgba(255, 255, 255, .76); font-size: 13px; }
#researchCards { display: grid; gap: 12px; }
.research-card {
  padding: 23px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  border: 1px solid rgba(97, 87, 207, .15);
  border-radius: 23px;
  background: rgba(255, 255, 255, .88);
}
.research-stage { align-self: stretch; padding: 16px; display: grid; align-content: center; gap: 5px; border-radius: 18px; background: #eef0ff; color: var(--purple); }
.research-stage span { font-size: 11px; font-weight: 800; }
.research-stage strong { font-size: 19px; line-height: 1.35; }
.research-card h3 { margin: 7px 0; font-size: 22px; line-height: 1.45; }
.research-card p { margin: 0; color: var(--muted); font-size: 13px; }
.research-facts { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 7px; }
.research-facts span { padding: 5px 9px; border-radius: 999px; background: #f1f0fa; font-size: 11px; }

.regulatory-section { background: #f2f4f7; }
.regulatory-section .section-kicker { color: var(--navy); }
.regulatory-list { display: grid; gap: 12px; }
.regulatory-item {
  padding: 22px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 210px auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(53, 66, 95, .14);
  border-radius: 21px;
  background: #fff;
}
.urgency {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eef1f5;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}
.urgency.urgent { color: #a92847; background: #fff0f4; }
.regulatory-item h3 { margin: 3px 0; font-size: 19px; line-height: 1.45; }
.regulatory-item p { margin: 0; color: var(--muted); font-size: 12px; }
.regulatory-deadline { padding-left: 18px; border-left: 1px solid var(--line); }
.regulatory-deadline span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; }
.regulatory-deadline strong { display: block; margin-top: 3px; font-size: 12px; line-height: 1.5; }
.source-link { min-width: 44px; min-height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; text-decoration: none; }

.product-section { background: #fff8fa; }
.product-section .section-kicker { color: var(--pink); }
.product-catalog { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 111, 145, .18);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #fff3f6, #f2efff);
}
.product-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .3s; }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-media .image-fallback strong { font-size: 24px; }
.product-media .image-fallback small { color: var(--muted); font-size: 11px; }
.product-media figcaption {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 8px;
  padding: 4px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  color: var(--muted);
  font-size: 9px;
}
.product-info { padding: 19px; }
.product-info .brand-name { color: var(--pink); font-size: 11px; font-weight: 900; letter-spacing: .04em; }
.product-info h3 { margin: 6px 0 8px; font-size: 19px; line-height: 1.45; }
.product-specs { margin: 12px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.product-specs div { padding: 8px; border-radius: 11px; background: #faf8f8; }
.product-specs dt { color: var(--muted); font-size: 9px; font-weight: 800; }
.product-specs dd { margin: 1px 0 0; font-size: 11px; line-height: 1.45; }
.product-impact { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }
.product-actions { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-actions a { color: var(--pink); font-size: 12px; font-weight: 800; text-decoration: none; }
.share-mini { display: flex; gap: 4px; }
.share-mini button { min-width: 38px; min-height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 11px; font-weight: 800; }

.market-section { background: #f4fbf7; }
.market-section .section-kicker { color: var(--green); }
.market-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; }
.market-feature,
.market-stack article { border: 1px solid rgba(44, 156, 117, .16); background: #fff; }
.market-feature { padding: 30px; border-radius: 28px; }
.market-feature .metric { color: var(--green); font-size: clamp(42px, 7vw, 76px); font-weight: 900; line-height: 1; letter-spacing: -.07em; }
.market-feature .metric small { font-size: 16px; letter-spacing: 0; }
.market-feature h3 { margin: 18px 0 8px; font-size: 28px; }
.market-feature p { color: var(--muted); }
.market-comparison { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px; }
.market-comparison div { padding: 12px; border-radius: 13px; background: #eff8f3; }
.market-comparison span { display: block; color: var(--muted); font-size: 10px; }
.market-comparison strong { font-size: 12px; }
.market-stack { display: grid; gap: 12px; }
.market-stack article { padding: 22px; border-radius: 22px; }
.market-stack h3 { margin: 8px 0; font-size: 20px; }
.market-stack p { margin: 0; color: var(--muted); font-size: 13px; }

.marketing-section { background: #fffaf0; }
.marketing-section .section-kicker { color: var(--orange); }
.marketing-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.marketing-card { padding: 28px; border: 1px solid rgba(232, 146, 18, .18); border-radius: 27px; background: #fff; }
.marketing-card .channel { display: inline-flex; padding: 5px 10px; border-radius: 999px; background: #fff2cd; color: #9b5a06; font-size: 10px; font-weight: 900; }
.marketing-card h3 { margin: 14px 0 9px; font-size: 25px; line-height: 1.45; }
.marketing-card > p { color: var(--muted); }
.marketing-apply { margin-top: 18px; padding: 16px; border-radius: 16px; background: #fff8e5; }
.marketing-apply span { color: #9b5a06; font-size: 10px; font-weight: 900; }
.marketing-apply strong { display: block; margin-top: 4px; font-size: 13px; line-height: 1.6; }

.salon-section { background: #f1fbf8; }
.salon-section .section-kicker { color: var(--mint); }
.salon-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.salon-card { padding: 27px; border: 1px solid rgba(53, 188, 163, .18); border-radius: 26px; background: #fff; }
.salon-card h3 { margin: 6px 0 16px; font-size: 25px; }
.salon-impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.salon-impact-grid div { padding: 12px; border-radius: 14px; background: #ebf8f5; }
.salon-impact-grid span { color: var(--muted); font-size: 10px; font-weight: 800; }
.salon-impact-grid strong { display: block; margin-top: 3px; font-size: 11px; line-height: 1.5; }
.salon-card > p { color: var(--muted); font-size: 13px; }

.global-section { overflow: hidden; background: #f3f9fe; }
.global-section .section-kicker { color: var(--blue); }
.global-magazine { display: grid; gap: 15px; }
.global-card { min-height: 260px; display: grid; grid-template-columns: 240px 1fr; overflow: hidden; border: 1px solid rgba(78, 159, 218, .18); border-radius: 28px; background: #fff; }
.global-location { padding: 26px; display: grid; align-content: end; color: #fff; background: linear-gradient(145deg, #397fb2, #75bde8); }
.global-location span { font-size: 12px; font-weight: 800; opacity: .76; }
.global-location strong { font-size: 35px; }
.global-body { padding: 28px; }
.global-body h3 { margin: 6px 0 10px; font-size: 27px; line-height: 1.4; }
.global-body > p { color: var(--muted); }
.global-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.global-points div { padding: 12px; border-radius: 14px; background: #eef7fd; }
.global-points span { color: var(--blue); font-size: 10px; font-weight: 900; }
.global-points strong { display: block; margin-top: 3px; font-size: 11px; line-height: 1.5; }

.archive-section { background: var(--ink); color: #fff; }
.archive-section .section-kicker { color: #ffb6c7; }
.archive-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.archive-inner h2 { margin: 0; font-size: clamp(32px, 5vw, 53px); line-height: 1.25; }
.archive-inner p { color: rgba(255, 255, 255, .67); }
.archive-list { display: grid; gap: 10px; }
.archive-list a { min-height: 75px; padding: 17px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 17px; text-decoration: none; }
.archive-list a:hover,
.archive-list a[aria-current="page"] { background: rgba(255, 255, 255, .1); }
.archive-list span { color: rgba(255, 255, 255, .58); font-size: 12px; }

.search-invite { background: linear-gradient(120deg, #fff0f5, #eff8ff); }
.search-invite-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.search-invite h2 { margin: 0; font-size: clamp(32px, 4.5vw, 52px); line-height: 1.3; }
.search-invite p { color: var(--muted); }
.bottom-search { padding: 24px; border: 1px solid rgba(255, 255, 255, .88); border-radius: 25px; background: rgba(255, 255, 255, .68); box-shadow: var(--shadow-sm); }
.bottom-search > label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.bottom-search > div { display: grid; grid-template-columns: 1fr auto; }
.bottom-search input { min-width: 0; height: 54px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px 0 0 14px; background: #fff; }
.bottom-search button { padding: 0 20px; border: 0; border-radius: 0 14px 14px 0; background: var(--pink); color: #fff; font-weight: 800; cursor: pointer; }
.bottom-search small { display: block; margin-top: 8px; color: var(--muted); }

.about-section { background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.about-inner h2 { margin: 0; font-size: clamp(33px, 5vw, 55px); line-height: 1.3; }
.about-inner p { margin: 0 0 14px; color: var(--ink-soft); }

.site-footer { padding: 56px 0 max(35px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; }
.footer-inner { width: min(var(--max), calc(100% - 40px)); margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.footer-brand strong { display: block; font-size: 24px; }
.footer-brand span { color: var(--muted); font-size: 12px; }
.footer-brand p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }
.site-footer nav a { font-size: 13px; font-weight: 700; text-decoration: none; }
.site-footer small { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.search-dialog {
  width: min(660px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: 29px;
  box-shadow: 0 35px 100px rgba(31, 25, 48, .28);
}
.search-dialog::backdrop { background: rgba(31, 25, 48, .38); backdrop-filter: blur(7px); }
.dialog-head { padding: 24px 24px 13px; display: flex; align-items: start; justify-content: space-between; }
.dialog-head small { color: var(--pink); font-weight: 900; letter-spacing: .08em; }
.dialog-head h2 { margin: 3px 0 0; font-size: 31px; }
.dialog-head button,
.detail-close { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 22px; }
.search-dialog form { padding: 0 24px 20px; }
.search-dialog form > label { display: block; margin-bottom: 5px; font-size: 12px; font-weight: 800; }
.dialog-search-row { display: grid; grid-template-columns: 1fr auto; }
.dialog-search-row input { min-width: 0; height: 54px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px 0 0 14px; }
.dialog-search-row button { padding: 0 22px; border: 0; border-radius: 0 14px 14px 0; background: var(--ink); color: #fff; font-weight: 800; }
.dialog-suggestions { padding: 18px 24px 25px; background: #faf8f8; }
.dialog-suggestions p { margin: 0 0 9px; color: var(--muted); font-size: 12px; }
.dialog-suggestions div { display: flex; flex-wrap: wrap; gap: 7px; }
.dialog-suggestions button { min-height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; }

.detail-drawer { position: fixed; inset: 0; z-index: 160; visibility: hidden; pointer-events: none; }
.detail-drawer.is-open { visibility: visible; pointer-events: auto; }
.detail-overlay { position: absolute; inset: 0; opacity: 0; background: rgba(28, 24, 42, .34); backdrop-filter: blur(5px); transition: opacity .25s; }
.detail-drawer.is-open .detail-overlay { opacity: 1; }
.detail-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(620px, 100%);
  overflow-y: auto;
  padding: max(24px, env(safe-area-inset-top)) 30px max(35px, env(safe-area-inset-bottom));
  background: #fffdfc;
  box-shadow: -24px 0 80px rgba(34, 29, 50, .22);
  transform: translateX(105%);
  transition: transform .3s var(--ease);
}
.detail-drawer.is-open .detail-panel { transform: none; }
.detail-close { position: sticky; z-index: 2; top: 0; float: right; }
.detail-kicker { color: var(--pink); font-size: 12px; font-weight: 900; }
.detail-panel h2 { clear: both; margin: 25px 0 12px; font-size: clamp(27px, 5vw, 39px); line-height: 1.4; }
.detail-summary { color: var(--ink-soft); font-size: 17px; }
.detail-block { margin-top: 22px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.detail-block span { color: var(--muted); font-size: 11px; font-weight: 800; }
.detail-block strong,
.detail-block p { display: block; margin: 5px 0 0; line-height: 1.75; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.detail-tags span { padding: 6px 10px; border-radius: 999px; background: #f2eff7; font-size: 11px; }
.detail-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.detail-actions a,
.detail-actions button { min-height: 44px; padding: 0 14px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: #fff; text-decoration: none; font-size: 12px; font-weight: 800; cursor: pointer; }
.detail-actions a { color: #fff; border-color: var(--ink); background: var(--ink); }
.detail-source { margin-top: 20px; color: var(--muted); font-size: 11px; line-height: 1.7; }

.toast {
  position: fixed;
  z-index: 220;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity .2s, transform .2s;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.screen-reader-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.reading-progress { position: fixed; z-index: 180; inset: 0 0 auto; height: 3px; pointer-events: none; }
.reading-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--pink), var(--coral), var(--lavender)); }
.noscript-note { position: relative; z-index: 90; padding: 13px 20px; background: var(--cream); color: var(--ink); font-weight: 700; text-align: center; }

[data-reveal] { opacity: 1; transform: none; }
html.motion-enabled [data-reveal][data-reveal-state="pending"] { opacity: 0; transform: translateY(18px); }
html.motion-enabled [data-reveal][data-reveal-state="visible"] { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }

@media (hover: none) {
  .featured-card:hover,
  .product-card:hover,
  .role-card:hover,
  .news-card:hover,
  .button:hover { transform: none; }
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr .62fr; gap: 35px; }
  .role-grid { grid-template-columns: repeat(3, 1fr); }
  .product-catalog { grid-template-columns: repeat(2, 1fr); }
  .search-toolbar { grid-template-columns: 2fr 1fr 1fr; }
  .search-toolbar label:nth-of-type(4) { grid-column: 1 / 2; }
  .search-toolbar .button { grid-column: 2 / 4; }
  .regulatory-item { grid-template-columns: 130px 1fr auto; }
  .regulatory-deadline { grid-column: 2 / 3; padding: 8px 0 0; border-left: 0; }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .header-inner,
  .section-shell,
  .hero-inner,
  .footer-inner { width: min(100% - 32px, var(--max)); }
  .brand { min-width: 0; }
  .brand-text strong { font-size: 18px; }
  .brand-text small { display: none; }
  .menu-button > span:last-child { display: none; }
  .menu-button { width: 44px; padding: 0 12px; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 50px; }
  .hero-copy { max-width: none; }
  .hero h1 { max-width: 680px; }
  .hero-digest { padding: 16px; }
  .digest-item { padding-block: 13px; }
  .section-heading { align-items: start; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { flex-basis: min(520px, 86vw); }
  .briefing-grid { grid-template-columns: 1fr; }
  .search-toolbar { grid-template-columns: 1fr 1fr; }
  .search-field { grid-column: 1 / -1; }
  .search-toolbar label:nth-of-type(4) { grid-column: auto; }
  .search-toolbar .button { grid-column: 1 / -1; }
  .latest-layout { grid-template-columns: 1fr; }
  .latest-lead { min-height: 0; }
  .latest-lead h3 { margin-top: 34px; }
  .latest-list { grid-template-columns: 1fr; }
  .static-fallback-feed { grid-template-columns: repeat(2, 1fr); }
  .research-board { grid-template-columns: 1fr; }
  .research-primer { position: relative; top: auto; }
  .regulatory-item { grid-template-columns: 120px 1fr auto; }
  .product-catalog { grid-template-columns: repeat(2, 1fr); }
  .market-layout { grid-template-columns: 1fr; }
  .marketing-notes,
  .salon-grid { grid-template-columns: 1fr; }
  .global-card { grid-template-columns: 180px 1fr; }
  .archive-inner,
  .search-invite-inner,
  .about-inner { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; line-height: 1.82; }
  .header-inner,
  .section-shell,
  .hero-inner,
  .footer-inner { width: min(100% - 28px, var(--max)); }
  .site-header { min-height: 64px; }
  .brand-mark { width: 29px; height: 29px; }
  .brand-mark i { width: 19px; height: 19px; }
  .brand-text strong { font-size: 17px; }
  .hero-inner { gap: 24px; padding-block: 28px 32px; }
  .issue-line { margin-bottom: 15px; gap: 7px 11px; font-size: 11px; }
  .hero-eyebrow { font-size: 12px; }
  .hero h1 { font-size: clamp(32px, 9.8vw, 42px); line-height: 1.24; letter-spacing: -.05em; }
  .hero-summary { margin-top: 17px; font-size: 15px; line-height: 1.78; }
  .hero-guide { margin-top: 14px; padding: 12px 14px; font-size: 12px; line-height: 1.7; }
  .hero-actions { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-actions .button { width: 100%; min-height: 46px; padding-inline: 11px; font-size: 12px; }
  .hero-digest {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(238px, 1fr));
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    padding: 42px 13px 13px;
    border-radius: 23px;
  }
  .digest-label { position: absolute; top: 12px; left: 15px; margin: 0; }
  .digest-item { min-height: 112px; align-content: center; scroll-snap-align: start; }
  .digest-item + .digest-item { margin-top: 0; }
  .section,
  .section-compact,
  .keyword-section,
  .search-invite,
  .about-section { padding-block: 68px; }
  .section-compact { padding-block: 45px; }
  .section-heading { display: grid; gap: 10px; margin-bottom: 22px; }
  .section-heading h2 { font-size: 30px; line-height: 1.35; }
  .section-heading > p,
  .compact-heading > p { font-size: 13px; }
  .role-grid {
    margin-right: -14px;
    padding: 2px 14px 12px 1px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }
  .role-card { flex: 0 0 245px; min-height: 118px; flex-direction: row; padding: 15px; scroll-snap-align: start; }
  .role-card > span:last-child { padding-right: 4px; }
  .carousel-tools { justify-content: flex-end; }
  .featured-track { margin-right: -14px; padding-right: 14px; }
  .featured-card { flex-basis: calc(100vw - 42px); grid-template-rows: 175px 1fr; border-radius: 24px; }
  .featured-visual,
  .featured-product-image { min-height: 175px; }
  .featured-visual { padding: 22px; }
  .featured-visual strong { font-size: 29px; }
  .featured-body { padding: 20px; }
  .featured-body h3 { font-size: 22px; }
  .why-box { margin: 14px 0; }
  .keyword-scroll { margin-right: -14px; padding-right: 14px; }
  .keyword-scroll button { flex-basis: 240px; }
  .briefing-card { padding: 22px; }
  .briefing-card h3 { font-size: 20px; }
  .search-toolbar { grid-template-columns: 1fr; padding: 14px; }
  .search-field,
  .search-toolbar label:nth-of-type(4),
  .search-toolbar .button { grid-column: auto; }
  .latest-lead { padding: 22px; border-radius: 23px; }
  .latest-lead h3 { margin-top: 26px; font-size: 30px; }
  .latest-lead > p { font-size: 15px; }
  .news-list-item { grid-template-columns: 1fr auto; }
  .news-list-item time { grid-column: 1; grid-row: 1; }
  .news-list-item h3 { grid-column: 1; grid-row: 2; }
  .news-list-item button { grid-column: 2; grid-row: 1 / 3; }
  .static-fallback-feed { grid-template-columns: 1fr; }
  .research-primer { padding: 23px; }
  .process-line { gap: 4px; padding-inline: 9px; font-size: 10px; }
  .research-card { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .research-stage { min-height: 88px; }
  .regulatory-item { grid-template-columns: 1fr auto; gap: 12px; padding: 18px; }
  .urgency { grid-column: 1 / -1; justify-self: start; min-height: 35px; padding-inline: 12px; }
  .regulatory-copy { grid-column: 1 / -1; }
  .regulatory-deadline { grid-column: 1 / 2; }
  .product-catalog { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: minmax(120px, .8fr) 1.2fr; border-radius: 21px; }
  .product-media { aspect-ratio: auto; min-height: 240px; }
  .product-info { padding: 17px; }
  .product-info h3 { font-size: 18px; }
  .product-specs { grid-template-columns: 1fr; }
  .market-feature { padding: 23px; }
  .marketing-card,
  .salon-card { padding: 22px; }
  .salon-impact-grid { grid-template-columns: 1fr; }
  .global-card { grid-template-columns: 1fr; }
  .global-location { min-height: 120px; align-content: center; }
  .global-body { padding: 22px; }
  .global-body h3 { font-size: 23px; }
  .global-points { grid-template-columns: 1fr; }
  .archive-list a { min-height: 66px; padding: 14px 16px; }
  .bottom-search { padding: 17px; }
  .bottom-search > div { grid-template-columns: 1fr; gap: 8px; }
  .bottom-search input,
  .bottom-search button { border-radius: 13px; }
  .bottom-search button { min-height: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .site-footer small { grid-column: auto; }
  .detail-panel { padding-inline: 20px; }
}

@media (max-width: 360px) {
  .header-inner,
  .section-shell,
  .hero-inner,
  .footer-inner { width: calc(100% - 24px); }
  .brand-text strong { font-size: 16px; }
  .header-actions { gap: 4px; }
  .hero h1 { font-size: 32px; }
  .issue-line span:last-child { width: 100%; }
  .section-heading h2 { font-size: 28px; }
  .featured-card { flex-basis: calc(100vw - 32px); }
  .card-footer { align-items: flex-end; }
  .card-footer > span { max-width: 50%; }
  .product-card { grid-template-columns: 1fr; }
  .product-media { min-height: 210px; }
  .dialog-head h2 { font-size: 27px; }
}

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