/* ============================================================
   fooddatascrape — coverage hub  |  external stylesheet
   All styling lives here (no inline style, no <style> tags).
   ============================================================ */

:root {
  --paper: #ffffff;
  --paper-2: #f7f8fa;
  --paper-3: #eef2f4;
  --ink: #0f1419;
  --ink-soft: #5c6770;
  --ember: #20b574;
  --ember-d: #188858;
  --gold: #3dcc8c;
  --line: #e2e8ec;
  --shadow: 0 1px 2px rgba(15, 20, 25, 0.04), 0 8px 24px rgba(15, 20, 25, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 20, 25, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1360px;
  --font: "Poppins", sans-serif !important;
}

.new-fds-ai-intelligence-him {
  body {
    margin: 0;
    font-family: var(--font);
    font-weight: 400;
    color: var(--ink);
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  em.accent {
    color: var(--ember-d);
    font-style: normal;
    font-weight: 600;
  }

  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 35px;
  }

  .eyebrow {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ember-d);
    font-weight: 600;
    margin: 0 0 14px;
  }

  h1 {
    font-size: 45px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
  }

  h2 {
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 38px !important;
    line-height: normal !important;

    color: #062b47;
    text-transform: initial !important;
    /* letter-spacing: .5px !important; */
    line-height: 1.15 !important;
  }

  h3 {
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    line-height: normal !important;
    margin-bottom: 0px !important;
  }

  h4 {
    font-size: 20px !important;
    font-weight: 600 !important;
  }

  p {
    font-size: 18px !important;
    line-height: normal !important;
    text-align: left !important;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition:
      transform 0.15s ease,
      box-shadow 0.15s ease,
      background 0.15s ease;
  }

  .btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }

  .btn-primary {
    background: var(--ember);
    color: #fff;
    width: fit-content !important;
  }

  .btn-primary:hover {
    background: var(--ember-d);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
  }

  .btn-ghost {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--line);
    width: fit-content !important;
  }

  .btn-ghost:hover {
    border-color: var(--ember);
    color: var(--ember-d);
    transform: translateY(-1px);
  }

  /* ---------- Header ---------- */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .nav-logo img {
    height: 34px;
    width: auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.15s ease;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    color: var(--ink);
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    margin: 4px 0;
  }

  /* ---------- Hero ---------- */
  .hero {
    background:
      radial-gradient(
        60% 90% at 88% -10%,
        rgba(61, 204, 140, 0.16),
        transparent 60%
      ),
      linear-gradient(180deg, var(--paper), var(--paper-2));
    border-bottom: 1px solid var(--line);
    padding: 84px 0 72px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
  }

  .hero p.lead {
    font-size: 1.12rem;
    color: var(--ink-soft);
    margin: 0 0 30px;
    max-width: 36ch;
  }

  .hero-actions {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 15px;
    /* justify-content: center; */
  }

  .cta .hero-actions{
    justify-content: center !important;
  }

  .hero-note {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-top: 22px;
  }

  /* signature: coverage manifest panel */
  .manifest {
    background: var(--ink);
    color: #e8edf0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid #1d262d;
  }

  .manifest-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #161d23;
    border-bottom: 1px solid #232d35;
  }

  .manifest-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #3a464f;
  }

  .manifest-dot.live {
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(61, 204, 140, 0.2);
  }

  .manifest-title {
    font-family: var(--mono);
    font-size: 0.74rem;
    color: #8a98a3;
    margin-left: 8px;
  }

  .manifest-body {
    font-family: var(--mono);
    font-size: 0.82rem;
    line-height: 1.85;
    padding: 18px 18px 22px;
  }

  .manifest-body .k {
    color: #6fd6a6;
  }

  .manifest-body .v {
    color: #e8edf0;
  }

  .manifest-body .c {
    color: #5e6b75;
  }

  .manifest-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* ---------- Trust strip ---------- */
  .tstrip {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 26px 0;
  }

  .tstrip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 40px;
    justify-content: center;
    align-items: center;
  }

  .tstrip-item {
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--ink-soft);
  }

  .tstrip-item b {
    color: var(--ink);
    font-weight: 700;
  }

  /* ---------- Section scaffolding ---------- */
  .band {
    padding: 78px 0;
  }

  .band-2 {
    background: var(--paper-2);
  }

  .section-head {
    max-width: 62ch;
    margin: 0 0 40px;
  }

  .section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
    line-height: 1.15;
  }

  .section-head p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin: 0;
  }

  /* ---------- Region filter tabs ---------- */
  .region-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 34px;
  }

  .region-tab {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .region-tab:hover {
    border-color: var(--ember);
    color: var(--ember-d);
  }

  .region-tab.active {
    background: var(--ember);
    border-color: var(--ember);
    color: #fff;
  }

  .region-tab:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }

  /* ---------- Country grid ---------- */
  .cov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .cov-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow);
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease;
  }

  .cov-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }

  .cov-card.is-hidden {
    display: none;
  }

  .cov-top {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .cov-flag {
    font-size: 1.7rem;
    line-height: 1;
  }

  .cov-name {
    font-size: 1.12rem;
    font-weight: 700;
    margin: 0;
  }

  .cov-region {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  .cov-meta {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--ink-soft);
    line-height: 1.7;
  }

  .cov-meta .num {
    color: var(--ember-d);
    font-weight: 700;
  }

  .cov-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .cov-chip {
    font-family: var(--mono);
    font-size: 0.7rem;
    padding: 3px 9px;
    border-radius: 6px;
    background: var(--paper-3);
    color: var(--ink-soft);
  }

  .cov-link {
    margin-top: auto;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ember-d);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .cov-card:hover .cov-link {
    gap: 10px;
  }

  /* ---------- Stats band ---------- */
  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .stat {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
  }

  .stat .n {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
  }

  .stat .n em {
    color: var(--ember-d);
    font-style: normal;
  }

  .stat .l {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-top: 6px;
  }

  /* ---------- FAQ ---------- */
  .faq {
    /* max-width: 820px; */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    overflow: hidden;
  }

  .faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ink);
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .faq-q:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: -3px;
  }

  .faq-q .ico {
    font-family: var(--mono);
    color: var(--ember-d);
    transition: transform 0.2s ease;
    flex: none;
  }

  .faq-q[aria-expanded="true"] .ico {
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    color: var(--ink-soft);
  }

  .faq-a p {
    margin: 0;
    padding: 0 22px 20px;
  }

  /* ---------- CTA ---------- */
  .cta {
    background: linear-gradient(135deg, var(--ember-d), var(--ember));
    color: #fff;
    border-radius: var(--radius);
    padding: 54px 44px;
    text-align: center;
    box-shadow: var(--shadow-lg);
  }

  .cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 12px;
    color: white !important;
  }

  .cta p {
    font-size: 1.05rem;
    opacity: 0.94;
    margin: 0 0 26px;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
    color: white !important;
    text-align: center !important;
  }

  .cta .btn-primary {
    background: #fff;
    color: var(--ember-d);
  }

  .cta .btn-primary:hover {
    background: var(--paper-2);
  }

  .cta .btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
  }

  .cta .btn-ghost:hover {
    border-color: #fff;
    color: #fff;
  }

  /* ---------- Footer ---------- */
  .site-footer {
    background: var(--ink);
    color: #aeb9c2;
    padding: 56px 0 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
  }

  .footer-brand img {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
  }

  .footer-brand p {
    font-size: 0.9rem;
    margin: 16px 0 0;
    max-width: 32ch;
  }

  .footer-col h4 {
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
    font-family: var(--mono);
  }

  .footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col a {
    font-size: 0.9rem;
    color: #aeb9c2;
    transition: color 0.15s ease;
  }

  .footer-col a:hover {
    color: var(--gold);
  }

  .footer-bottom {
    border-top: 1px solid #232d35;
    margin-top: 40px;
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #7d8a94;
    font-family: var(--mono);
  }

  /* ---------- Reveal animation ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }

  .reveal.in {
    opacity: 1;
    transform: none;
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 960px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .cov-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .stats {
      grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 640px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 72px;
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 0;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      padding: 8px 24px 16px;
    }

    .nav-links.open {
      display: flex;
    }

    .nav-links a {
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
    }

    .nav-toggle {
      display: block;
    }

    .cov-grid {
      grid-template-columns: 1fr;
    }

    .stats {
      grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr;
    }

    .cta {
      padding: 40px 24px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
      scroll-behavior: auto !important;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }
  }

  /* ============================================================
   AI SERVICE PAGES — additional components
   ============================================================ */

  /* breadcrumb */
  .crumbs {
    font-family: var(--mono);
    font-size: 0.76rem;
    color: var(--ink-soft);
    margin: 0 0 18px;
  }

  .crumbs a {
    color: var(--ink-soft);
  }

  .crumbs a:hover {
    color: var(--ember-d);
  }

  .crumbs .sep {
    margin: 0 8px;
    color: var(--line);
  }

  /* badges */
  .badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    vertical-align: middle;
    margin-left: 10px;
  }

  .badge-hot {
    background: #ffede6;
    color: #c2410c;
  }

  .badge-ai {
    background: var(--ink);
    color: #fff;
  }

  .badge-new {
    background: var(--ember);
    color: #fff;
  }

  /* hero icon */
  .svc-ico {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 14px;
    width: 40px;
    height: 40px;
  }

  /* feature grid */
  .feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .feat-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease;
  }

  .feat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }

  .feat-ico {
    font-size: 1.5rem;
    margin-bottom: 10px;
    width: 35px;
    height: 35px;
  }

  .feat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
  }

  .feat-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin: 0;
  }

  /* use-case cards */
  .uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .uc-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
  }

  .uc-persona {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ember-d);
    font-weight: 600;
  }

  .uc-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
  }

  .uc-card p {
    color: var(--ink-soft);
    font-size: 0.93rem;
    margin: 0;
  }

  .uc-out {
    margin-top: auto;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--ink);
    background: var(--paper-3);
    border-radius: 8px;
    padding: 10px 12px;
  }

  .uc-out b {
    color: var(--ember-d);
  }

  /* checklist points */
  .svc-points {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }

  .svc-points li {
    position: relative;
    padding-left: 28px;
    color: var(--ink-soft);
    font-size: 0.96rem;
  }

  .svc-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ember-d);
    font-weight: 800;
    font-family: var(--mono);
  }

  /* sample data table */
  .ai-table-wrap {
    overflow: auto;
  }

  .sample-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--paper);
  }

  .sample-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--paper-3);
    border-bottom: 1px solid var(--line);
  }

  .sample-head .manifest-title {
    margin-left: 0;
    color: var(--ink-soft);
  }

  .dtable {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--mono);
    font-size: 0.8rem;
  }

  .dtable th {
    text-align: left;
    background: var(--paper-2);
    color: var(--ink-soft);
    font-weight: 600;
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
  }

  .dtable td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .dtable tr:last-child td {
    border-bottom: none;
  }

  .dtable td .pos {
    color: var(--ember-d);
    font-weight: 700;
  }

  .dtable-scroll {
    overflow-x: auto;
    white-space: nowrap;
  }

  @media (max-width: 960px) {
    .uc-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 640px) {
    .feat-grid {
      grid-template-columns: 1fr;
    }

    .svc-points {
      grid-template-columns: 1fr;
    }
  }

  /* ============================================================
   TRENDING DATASETS HUB — conversion components
   ============================================================ */

  /* trending leaderboard (hero signature) */
  .trend-board {
    background: var(--ink);
    color: #e8edf0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid #1d262d;
  }

  .trend-board-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    background: #161d23;
    border-bottom: 1px solid #232d35;
  }

  .trend-board-title {
    font-family: var(--mono);
    font-size: 0.74rem;
    color: #8a98a3;
    margin-left: 6px;
  }

  .trend-board-live {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 0.66rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .trend-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-bottom: 1px solid #232d35;
  }

  .trend-row:last-child {
    border-bottom: none;
  }

  .trend-rank {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: #5e6b75;
    width: 20px;
    flex: none;
  }

  .trend-name {
    font-weight: 600;
    font-size: 0.92rem;
    flex: none;
    width: 118px;
  }

  .trend-meter {
    flex: 1;
    height: 7px;
    border-radius: 99px;
    background: #232d35;
    overflow: hidden;
  }

  .trend-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--ember-d), var(--gold));
  }

  .trend-up {
    font-family: var(--mono);
    font-size: 0.74rem;
    color: var(--gold);
    flex: none;
    width: 54px;
    text-align: right;
  }

  /* trending dataset cards */
  .trend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .tcard {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease;
  }

  .tcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }

  .tcard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .tcard h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
  }

  .tcard-vert {
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  .tcard p {
    color: var(--ink-soft);
    font-size: 0.93rem;
    margin: 0;
  }

  .tcard-spec {
    font-family: var(--mono);
    font-size: 0.76rem;
    color: var(--ink);
    background: var(--paper-3);
    border-radius: 8px;
    padding: 9px 11px;
  }

  .tcard-spec b {
    color: var(--ember-d);
  }

  .demand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--ink-soft);
  }

  .meter {
    flex: 1;
    height: 6px;
    border-radius: 99px;
    background: var(--paper-3);
    overflow: hidden;
  }

  .meter-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--ember), var(--gold));
  }

  .tcard-link {
    margin-top: auto;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ember-d);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .tcard:hover .tcard-link {
    gap: 10px;
  }

  .tflag {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    flex: none;
  }

  .tflag-hot {
    background: #ffede6;
    color: #c2410c;
  }

  .tflag-trend {
    background: #e6f7ef;
    color: var(--ember-d);
  }

  .tflag-new {
    background: var(--ember);
    color: #fff;
  }

  /* comparison table */
  .cmp-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--paper);
  }

  .cmp {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
    min-width: 560px;
  }

  .cmp th,
  .cmp td {
    padding: 15px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .cmp thead th {
    font-family: var(--mono);
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: var(--paper-2);
  }

  .cmp thead th.us {
    color: #fff;
    background: var(--ember-d);
  }

  .cmp td.us {
    background: rgba(32, 181, 116, 0.07);
    font-weight: 600;
  }

  .cmp tbody tr:last-child td {
    border-bottom: none;
  }

  .cmp .yes {
    color: var(--ember-d);
    font-weight: 800;
  }

  .cmp .no {
    color: var(--ink-soft);
    opacity: 0.6;
  }

  .cmp .feature {
    font-weight: 600;
    color: var(--ink);
  }

  /* 3-step process */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    counter-reset: step;
  }

  .step {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    position: relative;
  }

  .step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-family: var(--mono);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ember-d);
    display: block;
    margin-bottom: 12px;
  }

  .step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
  }

  .step p {
    color: var(--ink-soft);
    font-size: 0.93rem;
    margin: 0;
  }

  @media (max-width: 960px) {
    .trend-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .steps {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 640px) {
    .trend-grid {
      grid-template-columns: 1fr;
    }

    .trend-name {
      width: 92px;
    }
  }

  /* width helper classes for demand/trend meters (no inline style) */
  .trend-w95 {
    width: 95%;
  }

  .trend-w88 {
    width: 88%;
  }

  .trend-w82 {
    width: 82%;
  }

  .trend-w80 {
    width: 80%;
  }

  .trend-w78 {
    width: 78%;
  }

  .trend-w76 {
    width: 76%;
  }

  .trend-w72 {
    width: 72%;
  }

  .trend-w70 {
    width: 70%;
  }

  .trend-w68 {
    width: 68%;
  }

  /* extra meter widths + AI badge for AI-services hub */
  .trend-w90 {
    width: 90%;
  }

  .trend-w85 {
    width: 85%;
  }

  .trend-w74 {
    width: 74%;
  }

  .tflag-ai {
    background: var(--ink);
    color: #fff;
  }

  /* ============================================================
   AI-SEO / ICP EXPANSION — extra sections
   ============================================================ */
  .byline {
    font-family: var(--mono);
    font-size: 0.76rem;
    color: var(--ink-soft);
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
  }

  .byline .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--line);
  }

  .byline b {
    color: var(--ink);
    font-weight: 600;
  }

  .prose {
    max-width: 70ch;
  }

  .prose p {
    color: var(--ink-soft);
    font-size: 1.02rem;
    margin: 0 0 16px;
  }

  .prose p:last-child {
    margin-bottom: 0;
  }

  .prose strong {
    color: var(--ink);
  }

  .def-callout {
    background: var(--paper-3);
    border-left: 3px solid var(--ember);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    margin: 0 0 8px;
  }

  .def-callout p {
    margin: 0;
    color: var(--ink);
    font-size: 1.05rem;
  }

  /* included data-points (3-col chips) */
  .dp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .dp-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .dp-item::before {
    content: "▸";
    color: var(--ember-d);
    font-weight: 700;
  }

  /* delivery / integration cards */
  .deliver-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .deliver-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
  }

  .deliver-card .ico {
    font-size: 1.4rem;
    margin-bottom: 10px;
    height: 35px;
    width: 35px;
  }

  .deliver-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 6px;
  }

  .deliver-card p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin: 0;
  }

  /* related services */
  .rel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .rel-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease;
  }

  .rel-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }

  .rel-card .ico {
    font-size: 1.4rem;
    width: 35px;
    height: 35px;
  }

  .rel-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
  }

  .rel-card p {
    color: var(--ink-soft);
    font-size: 0.88rem;
    margin: 0;
  }

  .rel-card .go {
    margin-top: auto;
    color: var(--ember-d);
    font-weight: 600;
    font-size: 0.85rem;
  }

  @media (max-width: 960px) {
    .dp-grid,
    .deliver-grid,
    .rel-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 640px) {
    .dp-grid,
    .deliver-grid,
    .rel-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 640px) {
    h1 {
      font-size: 24px !important;
    }

    h2 {
      font-size: 20px !important;
    }

    h3 {
      font-size: 18px !important;
    }

    p {
      font-size: 14px !important;
    }

    .hero-actions {
      flex-direction: column !important;
    }

    .btn-ghost {
      margin-top: 0px !important;
    }

    .btn {
      font-size: 14px !important;
    }

    .btn-primary {
      margin-top: 0px !important;
    }

    .band {
      padding: 10px 0px !important;
    }

    .hero {
      padding: 20px 0 72px !important;
    }
  }
}
