/* Local Post Calendar Builder — OTO pages. Deep-navy + gold signature (distinct from FE). */

:root {
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI Variable", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, system-ui, Roboto, Arial, sans-serif;

  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --text-h1: clamp(2.05rem, 4.4vw, 3.25rem);
  --text-h2: clamp(1.65rem, 3.3vw, 2.5rem);
  --text-h3: 1.3rem;
  --text-body-lg: 1.125rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-micro: 0.75rem;

  --tracking-h1: -0.03em;
  --tracking-eyebrow: 0.14em;
  --leading-tight: 1.07;
  --leading-normal: 1.55;

  /* Gold accent */
  --color-accent: #eab308;
  --color-accent-dark: #a16207;
  --color-accent-light: #fbbf24;
  --color-accent-soft: rgba(234, 179, 8, 0.14);

  /* Dark surfaces */
  --color-page: #0c0e13;
  --color-surface: #161922;
  --color-surface-alt: #1d212c;
  --color-surface-raised: #21273420;

  --color-text-primary: #f5f2ea;
  --color-text-secondary: #c7c2b6;
  --color-text-muted: #8d8879;
  --color-text-inverse: #0c0e13;

  --color-border: rgba(255, 255, 255, 0.09);
  --color-border-strong: rgba(255, 255, 255, 0.16);

  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #eab308 52%, #b7860b 100%);
  --gradient-mesh: radial-gradient(60% 60% at 16% 6%, rgba(234, 179, 8, 0.16), transparent 68%),
                   radial-gradient(52% 52% at 90% 24%, rgba(251, 191, 36, 0.1), transparent 70%);

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 6px 20px -8px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px -16px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 28px 64px -28px rgba(0, 0, 0, 0.7);
  --shadow-gold-glow: 0 12px 30px -12px rgba(234, 179, 8, 0.5);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-2xl: 24px;
  --radius-pill: 999px;

  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;

  --pad-section-sm: clamp(2rem, 4vw, 3rem);
  --pad-section: clamp(3rem, 6vw, 5rem);
  --pad-section-lg: clamp(4rem, 8vw, 7rem);

  --duration-med: 240ms;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-body); font-size: var(--text-body); line-height: var(--leading-normal);
  color: var(--color-text-primary); background: var(--color-page); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: var(--weight-bold); line-height: 1.16; margin: 0 0 0.5em; }
h1 { font-size: var(--text-h1); letter-spacing: var(--tracking-h1); line-height: var(--leading-tight); }
h2 { font-size: var(--text-h2); letter-spacing: -0.02em; }
h3 { font-size: var(--text-h3); font-weight: var(--weight-semibold); }
p { margin: 0 0 1rem; }
a { color: var(--color-accent-light); }

.container { max-width: 1120px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.container-narrow { max-width: 720px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

.eyebrow { display: inline-block; font-size: var(--text-micro); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--color-accent-light); margin-bottom: var(--space-2); }
.lede { font-size: var(--text-body-lg); color: var(--color-text-secondary); }

.skip-link { position: absolute; top: -100px; left: 0; background: var(--color-accent); color: var(--color-text-inverse); padding: 12px 16px; z-index: 100; }
.skip-link:focus { top: 0; }
/* Anchor targets must clear the sticky header. Without this, every in-page
   link (#real-output, #demo, #pricing, #faq) lands with its heading hidden
   behind the header bar. */
[id] { scroll-margin-top: 88px; }

*:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: var(--radius-sm); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); font-weight: var(--weight-semibold); border: 0; cursor: pointer; text-decoration: none; white-space: nowrap; transition: transform var(--duration-med) var(--ease-out-quart), box-shadow var(--duration-med) var(--ease-out-quart), background var(--duration-med) var(--ease-out-quart); }
.btn--lg { padding: 1rem 2rem; font-size: var(--text-body-lg); border-radius: var(--radius-lg); min-height: 56px; }
.btn-primary { background: var(--gradient-gold); color: #1a1200; box-shadow: var(--shadow-gold-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(234, 179, 8, 0.6); }
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { transition: transform var(--duration-med) var(--ease-out-quart); }
.btn-primary:hover svg { transform: translateX(4px); }
/* A block button fills its container, so its label must be allowed to wrap.
   The base .btn sets white-space: nowrap, which lets a long label run past the
   card edge instead of wrapping inside it. */
.btn-block { width: 100%; white-space: normal; text-wrap: balance; }
.btn { max-width: 100%; }
@media (max-width: 520px) { .btn { white-space: normal; } }
.btn-text { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; color: var(--color-accent-light); font-weight: var(--weight-semibold); text-decoration: none; }
.btn-text:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 40; background: color-mix(in oklab, var(--color-page) 82%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color var(--duration-med) var(--ease-out-quart); }
.site-header[data-compact="true"] { border-bottom-color: var(--color-border); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.02rem; color: var(--color-text-primary); text-decoration: none; }
.brand__mark { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--gradient-gold); color: #1a1200; box-shadow: var(--shadow-sm); }
.brand__mark svg { width: 19px; height: 19px; }
.brand-pill { margin-left: 4px; padding: 3px 9px; font-size: 0.62rem; font-weight: var(--weight-bold); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent-light); background: var(--color-accent-soft); border: 1px solid color-mix(in oklab, var(--color-accent) 30%, transparent); border-radius: var(--radius-pill); }

/* Hero */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--gradient-mesh); opacity: 0.9; pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.grid-hero { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 1024px) { .grid-hero { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); } }
.hero .sub-hero { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--color-text-secondary); max-width: 42ch; margin-bottom: var(--space-4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.upsell-note { margin-top: var(--space-4); font-size: var(--text-small); color: var(--color-text-muted); }
.trust-anchor { display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-4); padding: 0.5rem 1rem; background: var(--color-accent-soft); color: var(--color-accent-light); font-size: var(--text-small); font-weight: var(--weight-medium); border-radius: var(--radius-pill); border: 1px solid color-mix(in oklab, var(--color-accent) 24%, transparent); }
.trust-anchor svg { width: 16px; height: 16px; }
.hero-visual { width: 100%; height: auto; display: block; border-radius: var(--radius-2xl); filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55)); border: 1px solid var(--color-border); }
@media (min-width: 1024px) { .hero-visual { max-width: 600px; margin-left: auto; } }

/* Sections */
main > section { padding-block: var(--pad-section); }
main > section[data-visible] { opacity: 0; transform: translateY(20px); transition: opacity 0.4s var(--ease-out-quart), transform 0.4s var(--ease-out-quart); }
main > section[data-visible="true"] { opacity: 1; transform: translateY(0); }
.section-alt { background: var(--color-surface-alt); }
.section-lg { padding-block: var(--pad-section-lg); }
.section-sm { padding-block: var(--pad-section-sm); }
.section-head { margin-bottom: var(--space-5); }
.section-head--center { text-align: center; max-width: 60ch; margin-inline: auto; }
.section-head--left { text-align: left; max-width: 54ch; }
.section-head p { color: var(--color-text-secondary); font-size: var(--text-body-lg); }

/* Feature list (icon tiles on dark) */
.feature-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.feature-item { display: grid; grid-template-columns: 46px 1fr; gap: var(--space-3); align-items: start; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-xs); transition: transform var(--duration-med) var(--ease-out-quart), box-shadow var(--duration-med) var(--ease-out-quart), border-color var(--duration-med); }
.feature-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-border-strong); }
.feature-item__body h3 { margin: 0 0 0.35em; font-size: 1.05rem; }
.feature-item__body p { margin: 0; color: var(--color-text-secondary); font-size: var(--text-small); }
.icon-tile { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: var(--radius-lg); background: var(--tile-bg, var(--color-accent-soft)); color: var(--tile-fg, var(--color-accent-light)); transition: transform var(--duration-med) var(--ease-out-quart); }
.feature-item:hover .icon-tile { transform: scale(1.06); }
.icon-tile--gold { --tile-bg: rgba(234,179,8,0.16); --tile-fg: #fbbf24; }
.icon-tile--sky { --tile-bg: rgba(56,189,248,0.16); --tile-fg: #7dd3fc; }
.icon-tile--emerald { --tile-bg: rgba(16,185,129,0.16); --tile-fg: #6ee7b7; }
.icon-tile--violet { --tile-bg: rgba(167,139,250,0.18); --tile-fg: #c4b5fd; }
.icon-tile--rose { --tile-bg: rgba(251,113,133,0.16); --tile-fg: #fda4af; }

/* Before / after split */
.before-after { display: grid; gap: var(--space-4); grid-template-columns: 1fr; margin-top: var(--space-5); }
@media (min-width: 768px) { .before-after { grid-template-columns: 1fr 1fr; } }
.ba-card { border-radius: var(--radius-lg); padding: var(--space-5); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); background: var(--color-surface); }
.ba-card--after { border-color: color-mix(in oklab, var(--color-accent) 40%, transparent); box-shadow: var(--shadow-md); background: linear-gradient(180deg, color-mix(in oklab, var(--color-accent) 8%, var(--color-surface)), var(--color-surface)); }
.ba-tag { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-micro); font-weight: var(--weight-semibold); letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: var(--space-3); }
.ba-tag--before { background: rgba(255,255,255,0.07); color: var(--color-text-muted); }
.ba-tag--after { background: var(--color-accent-soft); color: var(--color-accent-light); }
.ba-card p { margin: 0; color: var(--color-text-secondary); }

/* Pricing card */
.pricing { position: relative; overflow: hidden; }
.pricing::before { content: ""; position: absolute; inset: 0; opacity: 0.7; pointer-events: none; background: var(--gradient-mesh), radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: cover, 26px 26px; }
.pricing .container { position: relative; z-index: 1; }
.pricing-card-featured { position: relative; max-width: 540px; margin-inline: auto; padding: 2px; background: var(--gradient-gold); border-radius: calc(var(--radius-2xl) + 2px); box-shadow: var(--shadow-xl); }
.pricing-ribbon { position: absolute; top: -13px; right: 26px; z-index: 2; padding: 0.3rem 0.8rem; background: #1a1200; color: var(--color-accent-light); font-size: var(--text-micro); font-weight: var(--weight-semibold); letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius-pill); box-shadow: var(--shadow-md); border: 1px solid color-mix(in oklab, var(--color-accent) 40%, transparent); }
.pricing-card-inner { background: var(--color-surface); border-radius: var(--radius-2xl); padding: clamp(1.75rem, 4vw, 2.75rem); }
.price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: var(--space-2); }
.price-amount { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 4rem); font-weight: var(--weight-bold); letter-spacing: -0.03em; line-height: 1; }
.price-note { color: var(--color-text-muted); font-weight: var(--weight-medium); }
.price-sub { color: var(--color-text-secondary); margin-bottom: var(--space-4); }
.price-list { list-style: none; margin: 0 0 var(--space-4); padding: 0; display: grid; gap: 0.75rem; }
.price-list li { display: grid; grid-template-columns: 22px 1fr; gap: 0.6rem; align-items: start; color: var(--color-text-secondary); }
.price-list .tick { color: var(--color-accent-light); margin-top: 2px; }
.price-guarantee { margin-top: var(--space-4); font-size: var(--text-small); color: var(--color-text-muted); }

/* Guarantee */
.guarantee { position: relative; overflow: hidden; text-align: center; }
.guarantee::before { content: ""; position: absolute; top: -120px; right: -80px; width: 420px; height: 420px; pointer-events: none; background: radial-gradient(closest-side, rgba(234,179,8,0.18), transparent); }
.guarantee .container-narrow { position: relative; z-index: 1; }
.shield-badge { display: inline-grid; place-items: center; width: 82px; height: 82px; margin-bottom: var(--space-3); border-radius: 22px; background: var(--gradient-gold); color: #1a1200; box-shadow: var(--shadow-lg); }
.shield-badge svg { width: 42px; height: 42px; }

/* FAQ */
.accordion { max-width: 760px; margin-inline: auto; display: grid; gap: var(--space-3); }
.accordion .qa { border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); box-shadow: var(--shadow-xs); overflow: hidden; }
.accordion h3 { margin: 0; }
.accordion button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: 1.05rem 1.25rem; background: transparent; border: 0; cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 1.05rem; font-weight: var(--weight-semibold); color: var(--color-text-primary); }
.accordion button .chev { flex: none; transition: transform var(--duration-med) var(--ease-out-quart); color: var(--color-accent-light); }
.accordion button[aria-expanded="true"] .chev { transform: rotate(180deg); }
.accordion .qa-body { padding: 0 1.25rem 1.25rem; color: var(--color-text-secondary); }
.accordion .qa-body p { margin: 0; }

/* Final CTA */
.final-cta { position: relative; overflow: hidden; text-align: center; background: var(--color-surface-alt); }
.final-cta::before { content: ""; position: absolute; inset: 0; opacity: 0.8; pointer-events: none; background: var(--gradient-mesh); }
.final-cta .container-narrow { position: relative; z-index: 1; }
.final-cta .btn-primary { margin-top: var(--space-3); }

/* Footer */
.site-footer { background: #07080b; color: #7f7a6f; padding-block: var(--space-6); font-size: var(--text-small); border-top: 1px solid var(--color-border); }
.site-footer .container { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; justify-content: space-between; }
.site-footer a { color: #b3ab98; }
.site-footer .brand { color: #f5f2ea; }
.site-footer .footer-legal { color: #6c675c; max-width: 60ch; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ── JV-page specific ─────────────────────────────────────── */
.snapshot { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: var(--space-5); }
.snapshot-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-xs); }
.snapshot-item .k { font-size: var(--text-micro); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin: 0 0 0.3rem; }
.snapshot-item .v { font-family: var(--font-display); font-weight: 700; color: var(--color-text-primary); margin: 0; }
.snapshot-item .v small { display: block; font-family: var(--font-body); font-weight: 400; font-size: var(--text-small); color: var(--color-text-secondary); margin-top: 0.25rem; }

.funnel-flow { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; margin-top: var(--space-4); }
.funnel-step { display: inline-flex; flex-direction: column; padding: 0.7rem 1.1rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-xs); }
.funnel-step .lbl { font-size: var(--text-micro); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); }
.funnel-step .amt { font-family: var(--font-display); font-weight: 700; color: var(--color-accent-light); }
.funnel-arrow { color: var(--color-text-muted); flex: none; }

.stat-row { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); text-align: center; margin-top: var(--space-5); }
.stat-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-5) var(--space-4); box-shadow: var(--shadow-sm); }
.stat-card--first { border-color: color-mix(in oklab, var(--color-accent) 45%, transparent); background: linear-gradient(180deg, color-mix(in oklab, var(--color-accent) 9%, var(--color-surface)), var(--color-surface)); box-shadow: var(--shadow-md); }
.stat-place { font-size: var(--text-micro); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent-light); }
.stat-value { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; color: var(--color-text-primary); margin: 0.4rem 0 0; }

.jv-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.jv-list li { display: grid; grid-template-columns: 26px 1fr; gap: var(--space-2); align-items: start; color: var(--color-text-secondary); }
.jv-list li strong { color: var(--color-text-primary); }
.jv-list .tick { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; background: var(--color-accent-soft); color: var(--color-accent-light); margin-top: 2px; }

.swipe-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.swipe-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-xs); }
.swipe-card h3 { font-size: 1.05rem; margin: 0 0 0.4rem; }
.swipe-card p { margin: 0; color: var(--color-text-secondary); font-size: var(--text-small); }
.swipe-card blockquote { margin: 0; color: var(--color-text-secondary); font-size: var(--text-small); font-style: italic; border-left: 2px solid var(--color-accent); padding-left: 0.8rem; }

.contact-card { max-width: 720px; margin: var(--space-5) auto 0; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-2xl); padding: clamp(1.75rem, 4vw, 2.5rem); box-shadow: var(--shadow-md); text-align: center; }
.disclosure { max-width: 720px; margin: var(--space-5) auto 0; font-size: var(--text-small); color: var(--color-text-muted); text-align: center; }

/* ── Accessibility utility ───────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Hero metric bar — the four numbers an affiliate decides on ── */
.metric-bar {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; list-style: none; padding: 0;
  margin: var(--space-5) 0 0; background: var(--color-border);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden;
}
@media (min-width: 768px) { .metric-bar { grid-template-columns: repeat(4, 1fr); } }
.metric-bar li { background: var(--color-surface); padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.metric-bar__v { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; line-height: 1; color: var(--color-accent-light); }
.metric-bar__k { font-size: 0.75rem; color: var(--color-text-muted); }

/* ── Contest note ────────────────────────────────────────── */
.stat-note { font-size: 0.75rem; color: var(--color-text-muted); margin: 0.4rem 0 0; }
.stat-note strong { color: var(--color-text-primary); }

/* ── Promo toolkit table ─────────────────────────────────── */
.tool-table {
  display: grid; gap: 1px; background: var(--color-border);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden;
}
.tool-row {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background: var(--color-surface); padding: 1.15rem 1.35rem;
}
.tool-row h3 { font-size: 1rem; margin: 0 0 0.3rem; }
.tool-row p { font-size: 0.9rem; color: var(--color-text-secondary); margin: 0; }
.tool-row blockquote {
  margin: 0.6rem 0 0; color: var(--color-text-secondary); font-size: var(--text-small);
  font-style: italic; border-left: 2px solid var(--color-accent); padding-left: 0.8rem;
}
.tool-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.55rem; border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06); color: var(--color-text-secondary); white-space: nowrap;
}
.tool-tag--ready { background: rgba(234, 179, 8, 0.14); color: var(--color-accent-light); border: 1px solid rgba(234, 179, 8, 0.3); }
@media (max-width: 640px) { .tool-row { grid-template-columns: 1fr; } }
