:root {
  --bg: #100f0e;
  --bg-soft: #171513;
  --panel: #201d19;
  --paper: #f4efe5;
  --paper-2: #e8ddc9;
  --ink: #fffaf1;
  --ink-dark: #171513;
  --muted: rgba(255, 250, 241, 0.72);
  --muted-dark: rgba(23, 21, 19, 0.68);
  --gold: #dca83a;
  --gold-soft: #f7d78a;
  --teal: #21c7bd;
  --green: #08ad55;
  --red: #e93a3a;
  --line: rgba(255, 250, 241, 0.14);
  --max: 1160px;
  --radius: 8px;
  --shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  letter-spacing: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(12, 11, 10, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}
.brand img { width: 44px; height: 44px; border-radius: 8px; }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 2px solid transparent;
  color: rgba(255, 250, 241, 0.78);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-soft);
  border-color: var(--gold);
}
.mobile-nav { display: none; position: relative; }
.mobile-nav summary {
  list-style: none;
  min-width: 54px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav nav {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(280px, calc(100vw - 32px));
  display: grid;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #171513;
  box-shadow: var(--shadow);
}

.home-hero,
.page-hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 96px max(22px, calc((100vw - var(--max)) / 2)) 88px;
  background-image:
    linear-gradient(90deg, rgba(12, 11, 10, 0.82), rgba(12, 11, 10, 0.42) 48%, rgba(12, 11, 10, 0.78)),
    linear-gradient(180deg, rgba(12, 11, 10, 0.16), rgba(12, 11, 10, 0.94)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}
.home-hero {
  min-height: 680px;
}
.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 215, 138, 0.6), transparent);
}
.hero-content,
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}
.page-hero { min-height: 470px; }
.page-hero.compact { min-height: 390px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 900;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
h1,
.hero-content h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 76px;
  font-weight: 950;
  line-height: 1.04;
}
.page-hero h1 {
  max-width: 940px;
  font-size: 58px;
  line-height: 1.1;
}
.hero-lead,
.page-hero p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: 19px;
  line-height: 1.82;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button,
.hero-actions a,
.aside-line,
.price-card a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.button-phone {
  border: 3px solid var(--red);
  background: rgba(233, 58, 58, 0.2);
}
.button-line {
  border: 3px solid var(--green);
  background: rgba(8, 173, 85, 0.2);
}
.aside-line,
.price-card a { background: var(--green); }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-facts span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.08);
  color: rgba(255, 250, 241, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 54px max(20px, calc((100vw - 1320px) / 2));
  background: var(--paper);
  color: var(--ink-dark);
}
.metric-card {
  min-width: 0;
  padding: 0 20px;
  text-align: center;
  border-left: 1px solid rgba(23, 21, 19, 0.15);
}
.metric-card:first-child { border-left: 0; }
.metric-card strong {
  display: block;
  font-size: 54px;
  font-weight: 950;
  line-height: 1;
}
.metric-card span {
  display: block;
  margin-top: 14px;
  font-size: 22px;
  font-weight: 950;
}
.metric-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted-dark);
  font-size: 15px;
  font-weight: 800;
}

.section {
  padding: 78px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--bg);
}
.section-paper {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
  color: var(--ink-dark);
}
.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}
.section-head h2,
.split-copy h2,
.content-section h2,
.aside-box h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 950;
  line-height: 1.15;
}
.section-head p:not(.eyebrow),
.split-copy > p,
.content-section p,
.aside-box p,
.page-card p,
.price-card p,
.price-context p {
  color: var(--muted);
  line-height: 1.82;
}
.section-paper .section-head p:not(.eyebrow),
.section-paper .page-card p,
.price-context p {
  color: var(--muted-dark);
}
.topic-grid,
.card-grid,
.price-grid,
.price-context {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.topic-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.topic-card,
.page-card,
.price-card,
.price-context article,
.aside-box,
.content-section {
  border: 1px solid rgba(255, 250, 241, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.06);
}
.section-paper .topic-card,
.section-paper .page-card,
.price-context article {
  border-color: rgba(23, 21, 19, 0.12);
  background: rgba(255, 255, 255, 0.54);
}
.topic-card,
.page-card {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.topic-card {
  min-height: 180px;
  padding: 22px 18px;
}
.topic-card strong,
.page-card strong {
  display: block;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.35;
}
.topic-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted-dark);
  line-height: 1.7;
}
.page-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
}
.page-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.page-card span,
.price-label,
.price-context span,
.home-price-card span,
.filter-row span {
  color: #8a6220;
  font-size: 13px;
  font-weight: 900;
}
.page-card span,
.page-card strong,
.page-card p {
  margin-right: 18px;
  margin-left: 18px;
}
.page-card span { display: block; margin-top: 18px; }
.page-card p { margin-bottom: 20px; }

.pricing-section {
  background: #15130f;
}
.price-context {
  margin-bottom: 20px;
}
.price-context article {
  padding: 18px;
  color: var(--ink-dark);
}
.pricing-section .price-context article {
  border-color: rgba(247, 215, 138, 0.2);
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.08), rgba(255, 250, 241, 0.04));
  color: var(--ink);
}
.price-context strong {
  display: block;
  margin-top: 6px;
  font-size: 25px;
  font-weight: 950;
}
.pricing-section .price-context strong {
  color: var(--gold-soft);
}
.pricing-section .price-context p {
  color: var(--muted);
}
.price-card {
  position: relative;
  padding: 24px 22px 20px;
  background: linear-gradient(180deg, #24211d, #15130f);
  box-shadow: var(--shadow);
}
.price-card.is-featured {
  border-color: rgba(247, 215, 138, 0.75);
}
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink-dark);
  font-size: 13px;
  font-weight: 950;
}
.price-card h3 {
  margin: 8px 0 0;
  font-size: 25px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 20px;
  color: var(--gold-soft);
}
.price strong {
  font-size: 60px;
  line-height: 0.95;
}
.price span,
.price em {
  font-style: normal;
  font-weight: 900;
}
.price-card ul,
.content-section ul,
.aside-box ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}
.price-card li,
.content-section li,
.aside-box li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}
.price-card li::before,
.content-section li::before,
.aside-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.split-section,
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
}
.split-media img,
.article-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.split-media img { aspect-ratio: 4 / 5; }
.timeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.timeline article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
}
.timeline span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink-dark);
  font-weight: 950;
}
.timeline strong {
  display: block;
  font-size: 20px;
}
.timeline p { margin: 6px 0 0; color: var(--muted); line-height: 1.72; }

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.05);
}
.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 950;
}
.faq-list p { margin: 0; padding: 0 18px 18px; color: var(--muted); line-height: 1.8; }

.article-shell {
  align-items: start;
  padding: 58px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--bg);
  grid-template-columns: 310px minmax(0, 1fr);
}
.article-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}
.aside-box {
  padding: 20px;
  background: #1b1815;
}
.aside-box h2 {
  font-size: 22px;
}
.aside-line {
  width: 100%;
  margin-top: 10px;
}
.article-body {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.content-section {
  padding: 28px;
  background: #171513;
  min-width: 0;
}
.content-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
.article-media { margin: 22px 0 0; }
.article-media img { max-height: 520px; }
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.filter-row span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(23, 21, 19, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.site-footer {
  padding: 54px max(20px, calc((100vw - var(--max)) / 2)) 42px;
  border-top: 1px solid var(--line);
  background: #0b0a09;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
}
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.site-footer a { color: var(--ink); }
.mobile-cta { display: none; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  h1,
  .hero-content h1,
  .page-hero h1 { font-size: 54px; }
  .page-hero h1 { font-size: 44px; }
  .metric-strip,
  .topic-grid,
  .card-grid,
  .price-grid,
  .price-context {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split-section,
  .article-shell {
    grid-template-columns: 1fr;
  }
  .article-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }
  .brand img { width: 38px; height: 38px; }
  .home-hero,
  .page-hero {
    padding: 80px 18px 64px;
    background-position: center top;
  }
  .home-hero { min-height: 640px; }
  .page-hero { min-height: 430px; }
  h1,
  .hero-content h1,
  .page-hero h1 { font-size: 42px; }
  .page-hero h1 { font-size: 36px; line-height: 1.12; }
  .hero-lead,
  .page-hero p { font-size: 16px; line-height: 1.72; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .button,
  .hero-actions a { min-width: 0; padding: 0 16px; }
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 32px 14px;
  }
  .metric-card {
    padding: 20px 8px;
    border-left: 0;
    border-top: 1px solid rgba(23, 21, 19, 0.15);
  }
  .metric-card:nth-child(-n+2) { border-top: 0; }
  .metric-card:nth-child(odd) { border-right: 1px solid rgba(23, 21, 19, 0.15); }
  .metric-card:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .metric-card strong { font-size: 38px; }
  .metric-card span { font-size: 18px; }
  .section,
  .article-shell {
    padding: 46px 16px;
  }
  .section-head h2,
  .split-copy h2 { font-size: 30px; }
  .content-section h2 { font-size: 26px; }
  .topic-grid,
  .card-grid,
  .price-grid,
  .price-context,
  .article-aside {
    grid-template-columns: 1fr;
  }
  .topic-card { min-height: 0; }
  .content-section { padding: 22px 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 96px; }
  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(12, 11, 10, 0.96);
  }
  .mobile-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 250, 241, 0.14);
    border-radius: 8px;
    background: #2a2723;
    color: #fff;
    font-weight: 950;
    text-decoration: none;
  }
  .mobile-cta a:nth-child(2) { background: var(--green); }
}


.price-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  margin: 22px 0;
  border: 1px solid rgba(247, 215, 138, 0.22);
  border-radius: 8px;
}
.price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.04);
}
.price-table th,
.price-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.12);
  text-align: left;
  line-height: 1.55;
}
.price-table th {
  color: var(--gold-soft);
  font-weight: 950;
}
.price-table td:first-child {
  color: var(--gold-soft);
  font-weight: 950;
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.scenario-grid article,
.content-cta,
.quote-box {
  border: 1px solid rgba(247, 215, 138, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.06);
}
.scenario-grid article {
  padding: 18px;
}
.scenario-grid strong,
.content-cta strong {
  display: block;
  color: var(--gold-soft);
  font-size: 19px;
  font-weight: 950;
}
.scenario-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}
.content-cta {
  margin-top: 24px;
  padding: 20px;
}
.content-cta p {
  margin: 10px 0 16px;
}
.content-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quote-box {
  margin: 18px 0;
  padding: 18px;
  color: var(--ink);
  line-height: 1.85;
  font-weight: 850;
}
.aside-price-focus li:first-child {
  color: var(--gold-soft);
  font-weight: 950;
}
.inline-faq {
  margin-top: 18px;
}
.article-timeline {
  margin-top: 18px;
}
.update-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 250, 241, 0.08);
  border-bottom: 1px solid rgba(255, 250, 241, 0.08);
  background: #171513;
  color: rgba(255, 250, 241, 0.72);
  font-size: 13px;
  font-weight: 800;
}
.update-note span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.04);
}
.resource-index-section {
  border-top: 1px solid rgba(23, 21, 19, 0.1);
}
.resource-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.resource-link-grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(23, 21, 19, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-dark);
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}
.resource-link-grid a:hover {
  border-color: rgba(220, 168, 58, 0.62);
  background: #fffaf1;
}
.seo-depth-block {
  border-color: rgba(247, 215, 138, 0.22);
  background: linear-gradient(135deg, rgba(247, 215, 138, 0.08), rgba(33, 199, 189, 0.05));
}
.seo-system-section {
  border-top: 1px solid rgba(23, 21, 19, 0.1);
}
.semantic-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.55fr);
  gap: 18px;
  align-items: stretch;
}
.answer-panel,
.intent-card,
.seo-system-block,
.hub-pillar-grid a,
.intent-checks article,
.cluster-links {
  border-radius: 8px;
}
.answer-panel {
  padding: 24px;
  border: 1px solid rgba(23, 21, 19, 0.12);
  background: #171513;
  color: var(--ink);
}
.answer-panel > span,
.intent-card span,
.hub-pillar-grid span,
.intent-checks span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 950;
}
.answer-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}
.answer-panel p,
.answer-panel li {
  color: var(--muted);
  line-height: 1.78;
}
.answer-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
}
.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.intent-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(23, 21, 19, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-dark);
  text-decoration: none;
}
.intent-card strong {
  color: var(--ink-dark);
  font-size: 21px;
  line-height: 1.35;
}
.intent-card p {
  margin: 10px 0 0;
  color: var(--muted-dark);
  line-height: 1.68;
}
.intent-card:hover,
.intent-card.is-active {
  border-color: rgba(220, 168, 58, 0.62);
  background: #fffaf1;
}
.seo-system-block {
  border-color: rgba(33, 199, 189, 0.2);
  background: linear-gradient(135deg, rgba(33, 199, 189, 0.08), rgba(247, 215, 138, 0.06));
}
.intent-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.intent-checks article {
  padding: 16px;
  border: 1px solid rgba(255, 250, 241, 0.12);
  background: rgba(255, 250, 241, 0.05);
}
.intent-checks p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.cluster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(247, 215, 138, 0.16);
  background: rgba(16, 15, 14, 0.28);
}
.cluster-links strong {
  color: var(--gold-soft);
}
.cluster-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}
.cluster-links a:hover,
.cluster-links a.is-active {
  border-color: var(--gold);
  color: var(--gold-soft);
}
.seo-hub-band {
  background: #171513;
}
.hub-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.hub-pillar-grid a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(247, 215, 138, 0.18);
  background: rgba(255, 250, 241, 0.05);
  color: var(--ink);
  text-decoration: none;
}
.hub-pillar-grid strong {
  font-size: 22px;
  line-height: 1.35;
}
.hub-pillar-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 760px) {
  .semantic-layout,
  .intent-grid,
  .intent-checks,
  .hub-pillar-grid,
  .resource-link-grid {
    grid-template-columns: 1fr;
  }
  .answer-panel,
  .intent-card,
  .hub-pillar-grid a {
    min-height: 0;
  }
  .scenario-grid {
    grid-template-columns: 1fr;
  }
  .price-table th,
  .price-table td {
    padding: 13px 12px;
  }
}
