/* ── css/tokens.css ───────────────────────────── */
/* tokens.css — the AgentReady design tokens.
 *
 * Before the migration this :root block was duplicated across ten pages in six
 * apparently-different variants. Diffing them during migration showed the ONLY
 * differences were whitespace and notation:
 *
 *     --bg: #ffffff   vs  --bg: #fff                            (same colour)
 *     linear-gradient(135deg, #6366f1, #8b5cf6)
 *       vs linear-gradient(135deg,#6366f1,#8b5cf6)              (same gradient)
 *     "Plus Jakarta Sans", system-ui, sans-serif
 *       vs "Plus Jakarta Sans",system-ui,sans-serif             (same stack)
 *
 * Plus four tokens that only some pages declared because only those pages used
 * them. Consolidating is therefore visually lossless — there was no real drift.
 */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg2: #f8f9fc;
  --bg3: #f1f3f8;
  --surface: #eef0f6;
  --surface2: #e4e7f0;
  --border: #e2e5ee;
  --border2: #c9cede;

  /* Text */
  --text: #111827;
  --text2: #4b5563;
  --text3: #9ca3af;

  /* Brand */
  --accent: #6366f1;
  --accent2: #4f46e5;
  --accent-g: linear-gradient(135deg, #6366f1, #8b5cf6);

  /* Status. The -dim variants were declared only by index.html, which is the
     only page that renders audit score states. Harmless elsewhere. */
  --green: #059669;
  --green-dim: #d1fae5;
  --teal: #0891b2;
  --teal-dim: #cffafe;
  --amber: #d97706;
  --amber-dim: #fef3c7;
  --red: #dc2626;
  --red-dim: #fee2e2;

  /* Type */
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;

  /* Radii */
  --r: 8px;
  --r2: 14px;
  --r3: 20px;

  /* Article measure. Declared only by the three industry-insights pages;
     nothing else references var(--max). */
  --max: 760px;
}


/* ── css/base.css ───────────────────────────── */
/* base.css — the reset every page shared, verbatim.
 *
 * These are the only two rules that were byte-identical on all twelve pages.
 * Everything else that looked shared turned out to be either page-specific or
 * dead nav/footer styling, so this file is deliberately small.
 *
 * `body` is NOT here. There are three legitimate variants and merging them
 * would change rendering:
 *
 *   index, contact, faq              min-height:100vh; overflow-x:hidden
 *   about, how-it-works, pricing,    overflow-x:hidden
 *     privacy, terms, 404
 *   the three article pages          font-size:16px; line-height:1.7
 *
 * Each page keeps its own body rule in assets/css/pages/*.css.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Respect a reduced-motion preference for the smooth scroll above. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


/* ── css/components.css ───────────────────────────── */
/* components.css — the global header and footer.
 *
 * Lifted verbatim from the Webflow Symbols, which the 18 Aug 2026 production
 * capture verified are byte-identical to frontend/src/components/*.html.
 *
 * The --ar-* prefix exists because these styles used to be injected into a
 * Webflow document alongside twelve pages' worth of leaking global selectors
 * (bare `nav`, `footer`, `a`, `button`). Off Webflow that collision is gone
 * and the prefix could be unwound — deliberately left alone here so this
 * migration stays visually lossless. See the post-migration list.
 */
:root {
    --ar-accent: #6366f1;
    --ar-accent-g: linear-gradient(135deg, #6366f1, #8b5cf6);
    --ar-text: #111827;
    --ar-text2: #4b5563;
    --ar-text3: #9ca3af;
    --ar-border: #e2e5ee;
    --ar-bg: #ffffff;
    --ar-surface: #eef0f6;
    --ar-font: "Plus Jakarta Sans", system-ui, sans-serif;
    --ar-mono: "JetBrains Mono", monospace;
    --ar-r2: 14px;
  }

  .ar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 60px;
    border-bottom: 1px solid var(--ar-border);
    background: rgba(255, 255, 255);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--ar-font);
  }

  .ar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
    color: var(--ar-text);
    letter-spacing: -0.3px;
    text-decoration: none;
  }

  .ar-logo:hover {
    text-decoration: none;
    color: var(--ar-text);
  }

  .ar-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--ar-accent-g);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }

  .ar-logo sup {
    font-size: 9px;
    font-family: var(--ar-mono);
    color: var(--ar-text3);
    vertical-align: super;
    font-weight: 400;
  }

  .ar-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ar-nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--ar-text2);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
  }

  .ar-nav-link:hover {
    color: var(--ar-text);
    background: var(--ar-surface);
  }

  .ar-nav-cta {
    background: var(--ar-accent-g);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--ar-r2);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.15s;
  }

  .ar-nav-cta:hover {
    opacity: 0.88;
  }

  /* Burger Menu */
  .ar-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
  }

  .ar-burger span {
    height: 2px;
    width: 100%;
    background: var(--ar-text);
    transition: all 0.3s ease;
  }

  /* Mobile Menu */
  .ar-mobile-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95); /* Solid white like nav */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ar-border);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    z-index: 5;

    /* Animation setup */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .ar-mobile-menu.active {
    max-height: 320px; /* Enough space for all links */
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
  }

  .ar-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
  }

  .ar-mobile-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--ar-text2);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.2s;
  }

  .ar-mobile-link:hover {
    background: var(--ar-surface);
    color: var(--ar-text);
  }

  .ar-mobile-cta {
    margin-top: 12px;
    padding: 0 20px 20px;
  }

  /* Active Burger Animation */
  .ar-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .ar-burger.active span:nth-child(2) {
    opacity: 0;
  }

  .ar-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  @media (max-width: 768px) {
    .ar-nav {
      padding: 0 16px;
      height: 52px;
    }

    .ar-nav-links {
      display: none;
    }

    .ar-burger {
      display: flex;
    }

    .ar-nav-cta {
      font-size: 12px;
      padding: 7px 14px;
    }
  }

.ar-footer {
    padding: 32px 40px;
    border-top: 1px solid #e2e5ee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: #ffffff;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  }
  .ar-footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #4b5563;
    text-decoration: none;
  }
  .ar-footer-brand:hover { text-decoration: none; color: #4b5563; }
  .ar-footer-dot {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 5px;
  }
  .ar-footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .ar-footer-link {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s;
  }
  .ar-footer-link:hover { color: #4b5563; }
  .ar-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
  }
  .ar-footer-social:hover { color: #0a66c2; background: #f3f4f6; }
  .ar-footer-social svg { width: 16px; height: 16px; display: block; fill: currentColor; }
  .ar-footer-copy {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: #9ca3af;
  }
  @media(max-width: 768px) {
    .ar-footer { padding: 20px 16px; flex-direction: column; text-align: center; gap: 12px; }
    .ar-footer-brand { justify-content: center; }
    .ar-footer-links { justify-content: center; }
  }


/* ── css/pages/article.css ───────────────────────────── */
/* article.css — extracted from industry-insights/what-is-llms-txt.html during the Webflow → Eleventy migration.
   Tokens live in tokens.css, reset in base.css, header/footer in components.css.
   Dead nav/footer rules removed (verified unused: no page referenced them). */

body {
        background: var(--bg);
        color: var(--text);
        font-family: var(--font);
        font-size: 16px;
        line-height: 1.7;
      }

a {
        color: var(--accent2);
        text-decoration: underline;
        text-underline-offset: 3px;
      }

a:hover {
        color: var(--accent);
      }

.nav-links {
        display: flex;
        align-items: center;
        gap: 8px;
      }

.breadcrumb {
        max-width: var(--max);
        margin: 32px auto 0;
        padding: 0 24px;
        font-family: var(--mono);
        font-size: 12px;
        color: var(--text3);
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
      }

.breadcrumb a {
        color: var(--text3);
        text-decoration: none;
      }

.breadcrumb a:hover {
        color: var(--text2);
      }

.breadcrumb-sep {
        color: var(--border2);
      }

.article-header {
        max-width: var(--max);
        margin: 28px auto 0;
        padding: 0 24px;
      }

.article-cat {
        font-family: var(--mono);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent2);
        background: rgba(99, 102, 241, 0.08);
        border: 1px solid rgba(99, 102, 241, 0.2);
        padding: 3px 12px;
        border-radius: 99px;
        display: inline-block;
        margin-bottom: 16px;
      }

.article-h1 {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 800;
        letter-spacing: -0.8px;
        color: var(--text);
        line-height: 1.15;
        margin-bottom: 20px;
      }

.article-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        font-family: var(--mono);
        font-size: 12px;
        color: var(--text3);
        margin-bottom: 32px;
        flex-wrap: wrap;
      }

.article-meta-dot {
        width: 4px;
        height: 4px;
        background: var(--border2);
        border-radius: 50%;
      }

.article-intro {
        font-size: 18px;
        color: var(--text2);
        line-height: 1.7;
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--border);
      }

.article-body {
        max-width: var(--max);
        margin: 0 auto;
        padding: 0 24px 80px;
      }

.article-body h2 {
        font-size: 24px;
        font-weight: 800;
        color: var(--text);
        margin: 48px 0 14px;
        letter-spacing: -0.4px;
        line-height: 1.25;
      }

.article-body h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text);
        margin: 32px 0 10px;
        line-height: 1.3;
      }

.article-body p {
        margin-bottom: 20px;
        color: var(--text2);
      }

.article-body ul,
      .article-body ol {
        margin: 0 0 20px 24px;
        color: var(--text2);
      }

.article-body li {
        margin-bottom: 8px;
        line-height: 1.65;
      }

.article-body strong {
        color: var(--text);
        font-weight: 700;
      }

.article-body code {
        font-family: var(--mono);
        font-size: 13px;
        background: var(--bg3);
        border: 1px solid var(--border);
        padding: 2px 7px;
        border-radius: 5px;
        color: var(--accent2);
      }

.article-body pre {
        background: var(--bg3);
        border: 1px solid var(--border);
        border-radius: var(--r2);
        padding: 20px;
        font-family: var(--mono);
        font-size: 13px;
        line-height: 1.7;
        overflow-x: auto;
        margin-bottom: 24px;
        color: var(--text2);
        white-space: pre-wrap;
        word-break: break-word;
      }

.callout {
        background: rgba(99, 102, 241, 0.06);
        border: 1px solid rgba(99, 102, 241, 0.2);
        border-radius: var(--r2);
        padding: 20px 24px;
        margin: 32px 0;
      }

.callout-label {
        font-family: var(--mono);
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent2);
        margin-bottom: 8px;
      }

.callout p {
        color: var(--text);
        margin-bottom: 0;
      }

.stat-callout {
        background: var(--bg2);
        border: 1px solid var(--border);
        border-radius: var(--r2);
        padding: 24px;
        margin: 32px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        text-align: center;
      }

.stat-callout-num {
        font-size: 32px;
        font-weight: 800;
        color: var(--accent2);
        letter-spacing: -1px;
      }

.stat-callout-lab {
        font-family: var(--mono);
        font-size: 11px;
        color: var(--text3);
        margin-top: 4px;
      }

.compare-table {
        width: 100%;
        border-collapse: collapse;
        margin: 24px 0;
        font-size: 14px;
        border-radius: var(--r2);
        overflow: hidden;
        border: 1px solid var(--border);
      }

.compare-table th {
        background: var(--bg3);
        padding: 12px 16px;
        text-align: left;
        font-weight: 700;
        color: var(--text);
        font-size: 13px;
        border-bottom: 1px solid var(--border);
      }

.compare-table td {
        padding: 11px 16px;
        border-bottom: 1px solid var(--border);
        color: var(--text2);
      }

.compare-table tr:last-child td {
        border-bottom: none;
      }

.compare-table tr:hover td {
        background: var(--bg3);
      }

.cta-block {
        background: var(--accent-g);
        border-radius: var(--r3);
        padding: 36px 32px;
        text-align: center;
        margin: 48px 0;
      }

.cta-block h3 {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 8px;
      }

.cta-block p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 24px;
      }

.cta-block a {
        display: inline-block;
        background: #fff;
        color: var(--accent2);
        font-weight: 700;
        font-size: 14px;
        padding: 12px 28px;
        border-radius: var(--r2);
        text-decoration: none;
        transition: opacity 0.15s;
      }

.cta-block a:hover {
        opacity: 0.9;
      }

.faq-list {
        margin-top: 16px;
      }

.faq-item {
        border: 1px solid var(--border);
        border-radius: var(--r2);
        margin-bottom: 6px;
        overflow: hidden;
      }

.faq-q {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 600;
        color: var(--text);
        gap: 12px;
        transition: background 0.15s;
      }

.faq-q:hover {
        background: var(--bg2);
      }

.faq-chev {
        color: var(--text3);
        font-size: 12px;
        transition: transform 0.2s;
        flex-shrink: 0;
      }

.faq-item.open .faq-chev {
        transform: rotate(180deg);
      }

.faq-a {
        display: none;
        padding: 0 20px 16px;
        font-size: 14px;
        color: var(--text2);
        line-height: 1.7;
      }

.faq-item.open .faq-a {
        display: block;
      }

.footer-links {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
      }

@media (max-width: 768px) {
.article-header,
        .article-body,
        .breadcrumb {
          padding: 0 16px;
        }
.article-h1 {
          font-size: 26px;
        }
.article-intro {
          font-size: 16px;
        }
.stat-callout {
          grid-template-columns: 1fr;
        }
.footer-links {
          justify-content: center;
        }
}
