:root {
  color-scheme: light;
  --bg: #f7f8f4;
  --paper: #ffffff;
  --ink: #17211f;
  --muted: #5f6c66;
  --line: #d9e0da;
  --teal: #0d766f;
  --teal-dark: #07544f;
  --amber: #c7791f;
  --blue: #2e5f98;
  --shadow: 0 16px 40px rgba(23, 33, 31, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  align-items: center;
  background: rgba(247, 248, 244, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--teal);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.28;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav a:hover {
  color: var(--teal);
}

.hero {
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 56px) 48px;
}

.hero-copy {
  align-self: center;
  max-width: 700px;
}

.eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-fast-path {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 118, 111, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(23, 33, 31, 0.08);
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
}

.hero-fast-path strong {
  color: var(--ink);
  font-size: 15px;
}

.hero-fast-path-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-fast-path-links a {
  background: #f7fbf8;
  border: 1px solid #cfe2da;
  border-radius: 8px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  min-height: 40px;
  padding: 9px 12px;
}

.hero-fast-path-links a:hover {
  background: #e7f3ef;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  min-height: 46px;
  padding: 10px 18px;
}

.button.primary {
  background: var(--teal);
  color: #fff;
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
}

.hero-media {
  align-self: center;
  min-height: 360px;
}

.hero-media img {
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.notice {
  align-items: flex-start;
  background: #fff8eb;
  border-block: 1px solid #ecd7b9;
  display: flex;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 56px);
}

.notice strong {
  color: #875010;
  flex: 0 0 auto;
}

.notice span {
  color: #624f36;
}

.section {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.section-head {
  margin-bottom: 24px;
  max-width: 760px;
}

.with-control {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  max-width: none;
}

.category-grid,
.article-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.article-card {
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 0;
}

.article-card::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.72) 0 16px, transparent 17px),
    linear-gradient(135deg, rgba(13, 118, 111, 0.16), rgba(45, 95, 147, 0.08));
  border-bottom: 1px solid var(--line);
  content: "";
  display: block;
  height: 92px;
}

.article-card[data-category="accounting"]::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 110'%3E%3Crect x='28' y='24' width='58' height='66' rx='12' fill='none' stroke='%230d766f' stroke-width='8'/%3E%3Cpath d='M43 45h28M43 61h28M43 77h16M112 42h92M112 64h70M112 86h48' fill='none' stroke='%231f4d49' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E") center / 78% 82% no-repeat,
    linear-gradient(135deg, #eaf7f3, #f8fcfa);
}

.article-card[data-category="ai"]::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 110'%3E%3Crect x='82' y='26' width='76' height='56' rx='18' fill='none' stroke='%232d5f93' stroke-width='8'/%3E%3Cpath d='M101 51h38M106 68h28M120 10v16M120 82v16M62 54h20M158 54h20M95 35h1M144 35h1' fill='none' stroke='%232d5f93' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E") center / 76% 82% no-repeat,
    linear-gradient(135deg, #edf5ff, #f8fbff);
}

.article-card[data-category="company"]::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 110'%3E%3Cpath d='M60 88V28l40-16 40 16v60M82 42h8M111 42h8M82 60h8M111 60h8M82 78h8M111 78h8M42 88h116M166 48h36M166 68h28' fill='none' stroke='%235a4a8f' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 78% 82% no-repeat,
    linear-gradient(135deg, #f3efff, #fbf9ff);
}

.article-card[data-category="store"]::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 110'%3E%3Cpath d='M54 46h112v42H54V46ZM66 18h88l18 28H48l18-28Z' fill='none' stroke='%239a5a15' stroke-width='8' stroke-linejoin='round'/%3E%3Cpath d='M79 88V65h28v23M126 66h24M70 46c0 11 13 15 26 7 11 8 27 8 38 0 13 8 26 4 26-7' fill='none' stroke='%239a5a15' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 82% 82% no-repeat,
    linear-gradient(135deg, #fff2df, #fffaf2);
}

.article-card > * {
  margin-left: 20px;
  margin-right: 20px;
}

.article-card .tag {
  margin-top: 18px;
}

.article-card > a {
  margin-bottom: 20px;
}

.clickable-card {
  cursor: pointer;
  position: relative;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.clickable-card:hover {
  border-color: #8fc9bb;
  box-shadow: 0 14px 30px rgba(31, 53, 46, 0.1);
  transform: translateY(-2px);
}

.clickable-card:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 129, 112, 0.22);
  outline: 0;
}

.clickable-card a {
  position: relative;
  z-index: 1;
}

.category-card {
  min-height: 250px;
}

.category-card p,
.article-card p {
  color: var(--muted);
}

.category-card a,
.article-card a {
  color: var(--teal);
  font-weight: 800;
}

.priority-section {
  background: #eef6f3;
}

.priority-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.priority-card {
  background: var(--paper);
  border: 1px solid #cfe2da;
  border-radius: 8px;
  color: inherit;
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.priority-card:hover,
.priority-card:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 12px 28px rgba(13, 118, 111, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.priority-card .step {
  align-items: center;
  background: var(--teal);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.priority-card strong {
  font-size: 18px;
  line-height: 1.35;
}

.priority-card p {
  color: var(--muted);
  margin: 0;
}

.icon {
  align-items: center;
  background: #e6f2ef;
  border-radius: 8px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 0;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  width: 44px;
}

.icon::before {
  background: currentColor;
  content: "";
  display: block;
  height: 28px;
  -webkit-mask: var(--icon-mask) center / contain no-repeat;
  mask: var(--icon-mask) center / contain no-repeat;
  width: 28px;
}

.icon-accounting {
  background-color: #dff1ed;
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='17' y='13' width='30' height='40' rx='7' fill='none' stroke='black' stroke-width='5'/%3E%3Cpath d='M24 25h16M24 34h16M24 43h8' fill='none' stroke='black' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  color: var(--teal-dark);
}

.icon-ai {
  background-color: #e5eef8;
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='17' y='17' width='30' height='30' rx='8' fill='none' stroke='black' stroke-width='5'/%3E%3Cpath d='M25 31h14M27 39h10M24 25h1M39 25h1M32 8v8M32 48v8M8 32h8M48 32h8' fill='none' stroke='black' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  color: var(--blue);
}

.icon-company {
  background-color: #ece8f7;
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M17 54V16l15-7 15 7v38' fill='none' stroke='black' stroke-width='5' stroke-linejoin='round'/%3E%3Cpath d='M24 25h3M37 25h3M24 35h3M37 35h3M24 45h3M37 45h3M12 54h40' fill='none' stroke='black' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  color: #4d3b86;
}

.icon-store {
  background-color: #fff0d9;
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M14 29h36v23H14V29ZM18 12h28l6 17H12l6-17Z' fill='none' stroke='black' stroke-width='5' stroke-linejoin='round'/%3E%3Cpath d='M22 52V40h10v12M39 40h7M20 29c0 4 4 6 8 3 3 3 7 3 10 0 4 3 8 1 8-3' fill='none' stroke='black' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  color: #8b4d0f;
}

.icon-invoice {
  background-color: #e5eef8;
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M18 10h23l8 8v36l-5-3-5 3-5-3-5 3-5-3-5 3V10Z' fill='none' stroke='black' stroke-width='5' stroke-linejoin='round'/%3E%3Cpath d='M40 10v10h9M24 29h16M24 38h16M24 47h9' fill='none' stroke='black' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  color: var(--blue);
}

.icon-contract {
  background-color: #ece8f7;
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='15' y='9' width='34' height='46' rx='7' fill='none' stroke='black' stroke-width='5'/%3E%3Cpath d='M23 24h18M23 33h18M23 42h10M35 47l5 5 11-14' fill='none' stroke='black' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  color: #4d3b86;
}

.icon-payment {
  background-color: #fff0d9;
  --icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='10' y='17' width='44' height='30' rx='8' fill='none' stroke='black' stroke-width='5'/%3E%3Cpath d='M11 28h42M20 40h10M40 40h6' fill='none' stroke='black' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  color: #8b4d0f;
}

.icon-diagnosis {
  background: #eef6f3;
  color: var(--teal);
}

.icon-recommend {
  background: #fff6e5;
  color: var(--amber);
}

.split {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
}

.split p {
  color: var(--muted);
}

.table-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: middle;
}

th {
  background: #edf3ef;
  color: #40504b;
  font-size: 13px;
}

tr:last-child td {
  border-bottom: 0;
}

.rank {
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  line-height: 28px;
  width: 28px;
}

.rank.high {
  background: var(--teal);
}

.rank.mid {
  background: var(--amber);
}

.table-action {
  align-items: center;
  background: #f5fbf8;
  border: 1px solid rgba(47, 132, 112, 0.28);
  border-radius: 8px;
  color: var(--teal);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  min-height: 36px;
  padding: 8px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.table-action:hover,
.table-action:focus-visible {
  background: var(--teal);
  color: #fff;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-status {
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  margin: 8px 0 0;
  text-align: right;
  width: 100%;
}

.filter {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  min-height: 38px;
  padding: 7px 14px;
}

.filter.active,
.filter:hover {
  background: var(--ink);
  color: #fff;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  min-height: 210px;
}

.article-card[data-category] {
  padding-top: 58px;
  position: relative;
}

.article-card[data-category]::before {
  align-items: center;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: 22px;
  position: absolute;
  top: 18px;
  width: 44px;
}

.article-card[data-category="accounting"]::before {
  background: var(--teal);
  content: "会";
}

.article-card[data-category="ai"]::before {
  background: var(--blue);
  content: "AI";
}

.article-card[data-category="company"]::before {
  background: #6651a8;
  content: "法";
}

.article-card[data-category="store"]::before {
  background: var(--amber);
  content: "店";
}

.tool-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tool-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.tool-card p {
  color: var(--muted);
  margin: 0;
}

.tool-card .button {
  justify-self: start;
  margin-top: 4px;
}

.tool-checklist {
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 4px 0 2px;
  padding: 0;
}

.tool-checklist li {
  align-items: start;
  color: #40504b;
  display: grid;
  font-size: 15px;
  gap: 8px;
  grid-template-columns: 20px minmax(0, 1fr);
  line-height: 1.6;
}

.tool-checklist li::before {
  align-items: center;
  background: #e6f2ef;
  border-radius: 999px;
  color: var(--teal);
  content: "✓";
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 18px;
  justify-content: center;
  margin-top: 3px;
  width: 18px;
}

.diagnosis-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.diagnosis-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.diagnosis-card.emphasis {
  background: #e6f2ef;
}

.diagnosis-card p {
  color: var(--muted);
  margin: 0;
}

.diagnosis-card .button {
  justify-self: start;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

.tag {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}

.policy {
  background: #eaf0eb;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
}

.policy-list {
  display: grid;
  gap: 12px;
}

.policy-list p {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 16px;
}

.roadmap-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roadmap-list article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.roadmap-list p {
  color: var(--muted);
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 56px);
}

.footer p {
  color: var(--muted);
  margin: 0;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.article-page {
  background: var(--paper);
}

.article-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 280px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 48px clamp(18px, 4vw, 40px) 84px;
}

.article-layout > *,
.article-main,
.sidebar {
  min-width: 0;
}

.article-layout.single {
  display: block;
  max-width: 880px;
}

.article-main h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.article-main h2 {
  border-left: 5px solid var(--teal);
  border-top: 1px solid var(--line);
  line-height: 1.38;
  margin-top: 38px;
  padding-left: 14px;
  padding-top: 30px;
}

.article-main p,
.article-main li {
  color: #384640;
  font-size: 17px;
  line-height: 1.95;
}

.article-main > p,
.article-main > ul,
.article-main > ol {
  max-width: 760px;
}

.article-main .lead {
  font-size: 18px;
  line-height: 1.9;
}

.reading-aid {
  align-items: center;
  background: linear-gradient(135deg, #e9f5f2 0%, #fff6e5 100%);
  border: 1px solid #cfe3dc;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr);
  margin: 24px 0;
  padding: 18px;
}

.reading-aid-icon {
  align-items: center;
  background: var(--teal);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.reading-aid strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.reading-aid p {
  color: var(--muted);
  margin: 0;
}

.quick-cta {
  background: #eef6f3;
  border: 1px solid #cfe2da;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 18px;
}

.quick-cta strong {
  font-size: 18px;
}

.quick-cta p {
  color: var(--muted);
  margin: 0;
}

.quick-cta .button {
  justify-self: start;
}

.conversion-fast-check {
  background: linear-gradient(135deg, #122b28 0%, #1f5c52 100%);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(18, 43, 40, 0.18);
  color: #fff;
  display: grid;
  gap: 16px;
  margin: 20px 0 26px;
  padding: 22px;
}

.conversion-fast-check h2 {
  border: 0;
  color: #fff;
  margin: 0;
  padding: 0;
}

.conversion-fast-check p {
  color: #e1f2ed;
  margin: 0;
}

.fast-check-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fast-check-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 13px;
}

.fast-check-item span {
  color: #aee1d8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.fast-check-item strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.conversion-fast-check .next-step-actions {
  align-items: center;
}

.conversion-fast-check .button.primary {
  background: #fff;
  color: #13302c;
}

.conversion-fast-check .button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.conversion-fast-check .micro-copy {
  color: #bfe4dc;
  font-size: 13px;
}

.choice-cta {
  background: #f7fbf8;
  border: 1px solid #cfe2da;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  margin: 24px 0 30px;
  padding: 20px;
}

.choice-cta h2 {
  border-left: 0;
  border-top: 0;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

.choice-cta p {
  margin: 0;
}

.choice-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.choice-card strong {
  font-size: 18px;
  line-height: 1.35;
}

.choice-card p {
  color: var(--muted);
}

.choice-card .choice-fit {
  background: #f7fbf8;
  border-left: 4px solid var(--teal);
  color: #244441;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  padding: 10px 12px;
}

.choice-card .button {
  justify-self: start;
}

.fast-path-section {
  background: #edf6f3;
}

.fast-path-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fast-path-card {
  background: #fff;
  border: 1px solid #cfe2da;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(23, 33, 31, 0.08);
  display: grid;
  gap: 10px;
  padding: 18px;
}

.fast-path-card .icon {
  background-size: 32px 32px;
  height: 50px;
  margin-bottom: 0;
  width: 50px;
}

.fast-path-card h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.fast-path-card p {
  color: var(--muted);
  margin: 0;
}

.mini-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.fast-path-card .button {
  font-size: 14px;
  justify-self: start;
  min-height: 42px;
  padding-inline: 14px;
}

.text-link {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.compare-hero {
  background: linear-gradient(135deg, #eef6f3 0%, #fff8eb 100%);
  border: 1px solid #cfe2da;
  border-radius: 8px;
  display: grid;
  gap: 18px;
  margin: 24px 0 30px;
  padding: 24px;
}

.compare-hero h2 {
  border-left: 0;
  border-top: 0;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

.compare-hero p {
  margin: 0;
}

.compare-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.compare-card.recommended {
  border-color: #8fc9bb;
  box-shadow: 0 14px 34px rgba(13, 118, 111, 0.1);
}

.compare-label {
  align-items: center;
  background: #e6f2ef;
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-self: start;
  min-height: 30px;
  padding: 5px 12px;
}

.compare-card h3 {
  margin: 0;
}

.compare-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.decision-strip {
  background: #17211f;
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 22px;
}

.decision-strip strong {
  font-size: 20px;
}

.decision-strip p {
  color: #dfe8e4;
  margin: 0;
}

.decision-strip .button.secondary {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.article-main .summary {
  background: #f1f6f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.affiliate-cta {
  background: #fff8eb;
  border: 1px solid #ecd7b9;
  border-radius: 8px;
  margin-top: 24px;
  padding: 22px;
}

.conversion-cta {
  box-shadow: 0 14px 34px rgba(199, 121, 31, 0.12);
}

.affiliate-cta h2 {
  border-left: 0;
  border-top: 0;
  margin-top: 0;
  padding-left: 0;
  padding-top: 0;
}

.affiliate-cta img {
  height: 1px;
  width: 1px;
}

.cta-checklist {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 16px 0 18px;
  padding: 0;
}

.cta-checklist li {
  align-items: flex-start;
  color: #4e3a1d;
  display: grid;
  gap: 8px;
  grid-template-columns: 24px minmax(0, 1fr);
  line-height: 1.7;
}

.cta-checklist li::before {
  align-items: center;
  background: var(--amber);
  border-radius: 999px;
  color: #fff;
  content: "✓";
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  margin-top: 3px;
  width: 22px;
}

.cta-note {
  color: #6d5636;
  font-size: 14px;
  margin: 12px 0 0;
}

.tool-cta {
  background: #fff8eb;
  border: 1px solid #ecd7b9;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(199, 121, 31, 0.1);
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 22px;
}

.tool-cta h2 {
  border-left: 0;
  border-top: 0;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

.tool-cta p {
  margin-bottom: 0;
}

.conversion-proof {
  background: #f7fbf8;
  border: 1px solid #cfe2da;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  margin: 20px 0 32px;
  padding: 20px;
}

.article-page.has-sticky-action {
  padding-bottom: 96px;
}

.sticky-action {
  background: rgba(255, 253, 247, 0.94);
  border-top: 1px solid #d6e4de;
  bottom: 0;
  box-shadow: 0 -14px 34px rgba(23, 33, 31, 0.12);
  left: 0;
  position: fixed;
  right: 0;
  z-index: 40;
}

.sticky-action-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 12px clamp(18px, 4vw, 56px);
}

.sticky-action-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.sticky-action-copy strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.sticky-action-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.sticky-action-links {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.sticky-action .button {
  min-height: 42px;
  padding: 9px 16px;
}

.article-main .conversion-proof h2 {
  border-left: 0;
  border-top: 0;
  font-size: 24px;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

.proof-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.proof-card strong {
  font-size: 16px;
  line-height: 1.45;
}

.proof-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.internal-banner {
  background: linear-gradient(135deg, #eef6f3 0%, #fff9ec 100%);
  border: 1px solid #cfe2da;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin: 30px 0;
  padding: 22px;
}

.article-main .internal-banner h2 {
  border-left: 0;
  border-top: 0;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}

.internal-banner p {
  margin: 0;
}

.internal-banner .button {
  justify-self: start;
  margin-top: 6px;
}

.sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-box {
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.sidebar-box a {
  color: var(--teal);
  display: block;
  font-weight: 800;
  margin-top: 10px;
}

.next-step-box {
  background: #eef6f3;
  border: 1px solid #cfe2da;
  border-radius: 8px;
  margin-top: 36px;
  padding: 22px;
}

.conversion-next {
  background: linear-gradient(135deg, #eef6f3 0%, #fff8eb 100%);
}

.decision-bridge {
  background: #fffdf8;
  border: 1px solid #eadcc3;
  border-radius: 8px;
  margin: 34px 0;
  padding: 22px;
}

.article-main .decision-bridge h2 {
  border-left: 0;
  border-top: 0;
  margin-top: 0;
  padding-left: 0;
  padding-top: 0;
}

.decision-bridge > p {
  color: var(--muted);
  margin: 0 0 16px;
}

.decision-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.decision-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  display: grid;
  gap: 8px;
  padding: 16px;
  text-decoration: none;
}

.decision-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 30px rgba(26, 86, 83, 0.12);
  transform: translateY(-1px);
}

.decision-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.decision-card strong {
  font-size: 17px;
  line-height: 1.4;
}

.decision-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.article-main .next-step-box h2 {
  border-left: 0;
  border-top: 0;
  margin-top: 0;
  padding-left: 0;
  padding-top: 0;
}

.next-step-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.updated {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: 38px;
  padding-top: 18px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .policy,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .category-grid,
  .article-grid,
  .tool-grid,
  .fast-path-grid,
  .diagnosis-grid,
  .decision-grid,
  .roadmap-list,
  .priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .with-control {
    align-items: start;
    flex-direction: column;
  }

  .filters {
    justify-content: flex-start;
  }

  .filter-status {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .site-header,
  .footer,
  .notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 4px;
    scrollbar-width: none;
    width: 100%;
  }

  .site-header {
    gap: 10px;
    min-height: auto;
    padding: 10px 14px 9px;
  }

  .site-header .brand {
    gap: 9px;
    width: 100%;
  }

  .site-header .brand-mark {
    border-radius: 7px;
    flex: 0 0 34px;
    height: 34px;
    width: 34px;
  }

  .site-header .brand strong {
    font-size: 15px;
    line-height: 1.25;
  }

  .site-header .brand small {
    display: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(13, 118, 111, 0.16);
    border-radius: 999px;
    color: var(--ink);
    flex: 0 0 auto;
    font-size: 13px;
    line-height: 1;
    padding: 9px 12px;
  }

  .nav a:hover {
    background: rgba(13, 118, 111, 0.1);
  }

  h1 {
    font-size: 34px;
  }

  .article-layout {
    gap: 28px;
    padding: 34px 16px 64px;
  }

  .article-main h1 {
    font-size: 34px;
  }

  .article-main h2 {
    font-size: 24px;
    padding-left: 12px;
  }

  .article-main p,
  .article-main li {
    font-size: 16px;
    line-height: 1.9;
  }

  .article-main .lead {
    font-size: 17px;
  }

  .reading-aid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .reading-aid-icon {
    height: 44px;
    width: 44px;
  }

  table {
    min-width: 0;
  }

  .table-wrap {
    background: transparent;
    border: 0;
    overflow: visible;
  }

  .table-wrap table,
  .table-wrap thead,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
    width: 100%;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tr {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 33, 31, 0.07);
    margin-bottom: 12px;
    overflow: hidden;
  }

  .table-wrap td {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(96px, 0.38fr) minmax(0, 1fr);
    padding: 13px 14px;
  }

  .table-wrap td::before {
    color: var(--muted);
    content: attr(data-label);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.5;
  }

  .table-wrap td:last-child {
    border-bottom: 0;
  }

  .table-action {
    justify-content: center;
    min-height: 42px;
    width: 100%;
  }

  .button {
    justify-content: center;
    max-width: 100%;
    white-space: normal;
  }

  .affiliate-cta,
  .choice-cta,
  .decision-bridge,
  .internal-banner,
  .next-step-box,
  .tool-cta,
  .sticky-action-inner,
  .conversion-proof,
  .conversion-fast-check,
  .article-main .summary {
    padding: 18px;
  }

  .affiliate-cta,
  .quick-cta,
  .tool-cta,
  .conversion-fast-check,
  .conversion-cta {
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(23, 33, 31, 0.09);
    margin: 28px 0;
  }

  .affiliate-cta .button,
  .quick-cta .button,
  .tool-cta .button,
  .conversion-fast-check .button,
  .conversion-cta .button {
    min-height: 50px;
    width: 100%;
  }

  .affiliate-cta h2,
  .quick-cta h2 {
    font-size: 22px;
    line-height: 1.35;
  }

  .article-page.has-sticky-action {
    padding-bottom: 154px;
  }

  .sticky-action-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .sticky-action-links {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .sticky-action .button {
    min-height: 48px;
    width: 100%;
  }

  .hero-media {
    min-height: 220px;
  }

  .article-card::before {
    height: 78px;
  }

  .article-card > * {
    margin-left: 18px;
    margin-right: 18px;
  }

  .hero-fast-path-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-fast-path-links a {
    justify-content: center;
    min-height: 42px;
    text-align: center;
  }

  .category-grid,
  .article-grid,
  .tool-grid,
  .choice-grid,
  .fast-check-grid,
  .fast-path-grid,
  .proof-grid,
  .compare-cards,
  .decision-grid,
  .diagnosis-grid,
  .roadmap-list,
  .priority-grid {
    grid-template-columns: 1fr;
  }
}
