/* ── Solidnetics · Additive Manufacturing module — dark theme ───────────
   Shared stylesheet for /am/* product pages. Each page sets a single
   accent triplet (--am-accent, --am-accent-deep, --am-accent-tint) via
   inline style on the .am-shell root element; everything else picks it
   up from CSS variables. The body is forced dark in base.html when an
   AM endpoint is active, so this stylesheet only needs to style the
   page content. */

.am-shell {
    --am-ink:       #0B1220;
    --am-ink-2:     #0D1A30;
    --am-panel:     #101D33;
    --am-panel-2:   #0F1C32;
    --am-line:      #1C2C46;
    --am-line-soft: rgba(28, 44, 70, 0.55);
    --am-txt:       #E6EDF7;
    --am-muted:     #90A4C2;
    --am-dim:       #5C708C;

    /* Defaults — each page overrides these inline */
    --am-accent:        #5BA8F0;
    --am-accent-deep:   #378ADD;
    --am-accent-tint:   rgba(91, 168, 240, 0.10);

    font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
    color: var(--am-txt);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;

    background-color: var(--am-ink);
    background-image:
        radial-gradient(900px 500px at 80% -5%, var(--am-accent-tint), transparent 70%),
        linear-gradient(rgba(22, 36, 60, 0.32) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 36, 60, 0.32) 1px, transparent 1px);
    background-size: auto, 44px 44px, 44px 44px;
    min-height: calc(100vh - 76px);
    padding-bottom: 60px;
}

.am-shell a {
    color: inherit;
    text-decoration: none;
}

.am-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}
@media (max-width: 760px) {
    .am-wrap { padding: 0 20px; }
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.am-hero {
    padding: 80px 0 40px;
    position: relative;
}
.am-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 980px) {
    .am-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.am-eyebrow {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 12.5px;
    letter-spacing: 0.22em;
    color: var(--am-accent);
    text-transform: uppercase;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.am-eyebrow::before {
    content: '';
    display: inline-block;
    width: 38px;
    height: 1px;
    background: var(--am-accent);
    flex-shrink: 0;
}

.am-h1 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--am-txt);
    margin: 0;
}
.am-h1 .am-prefix {
    display: block;
    font-size: 0.42em;
    font-weight: 600;
    color: var(--am-dim);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.am-h1 .am-accent { color: var(--am-accent); }

.am-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
}
.am-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 11px;
    border-radius: 999px;
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}
.am-pill--enterprise {
    background: linear-gradient(135deg, #4b38b6 0%, #6550ff 100%);
    color: #fff;
    box-shadow: 0 1px 6px rgba(75, 56, 182, 0.40);
}
.am-pill--new {
    background: rgba(95, 216, 166, 0.14);
    color: #5FD8A6;
    border: 1px solid rgba(95, 216, 166, 0.35);
}
.am-pill--internal {
    background: rgba(144, 164, 194, 0.10);
    color: var(--am-muted);
    border: 1px solid rgba(144, 164, 194, 0.25);
}
.am-pill--solver {
    background: var(--am-accent-tint);
    color: var(--am-accent);
    border: 1px solid color-mix(in srgb, var(--am-accent) 40%, transparent);
}

.am-lede {
    font-size: clamp(17px, 2.0vw, 21px);
    color: var(--am-muted);
    max-width: 600px;
    margin: 28px 0 14px;
    line-height: 1.55;
}
.am-lede b, .am-lede strong { color: var(--am-txt); font-weight: 600; }
.am-lede .am-accent { color: var(--am-accent); font-weight: 600; }

.am-hero-meta {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 12.5px;
    color: var(--am-dim);
    letter-spacing: 0.05em;
    line-height: 1.65;
    max-width: 600px;
    margin: 0 0 30px;
}
.am-hero-meta b, .am-hero-meta strong { color: var(--am-muted); font-weight: 500; }

.am-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.am-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.01em;
}
.am-cta--primary {
    background: linear-gradient(135deg, var(--am-accent) 0%, var(--am-accent-deep) 100%);
    color: #ffffff;
    border-color: var(--am-accent);
    box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--am-accent) 50%, transparent);
}
.am-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -8px color-mix(in srgb, var(--am-accent) 60%, transparent);
    color: #ffffff;
}
.am-cta--ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--am-txt);
    border-color: var(--am-line);
}
.am-cta--ghost:hover {
    border-color: var(--am-accent);
    color: var(--am-accent);
    background: var(--am-accent-tint);
}

/* ── Hero figure (right side) ──────────────────────────────────────── */
.am-hero-fig {
    border: 1px solid var(--am-line);
    border-radius: 20px;
    overflow: hidden;
    background: var(--am-ink-2);
    box-shadow: 0 30px 80px -40px #000c;
    position: relative;
}
.am-hero-fig::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 20px;
    background: linear-gradient(180deg, transparent 75%, rgba(0,0,0,0.18));
}
.am-hero-fig img, .am-hero-fig svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Sections ──────────────────────────────────────────────────────── */
.am-section {
    padding: 72px 0;
    position: relative;
}
.am-section + .am-section { border-top: 1px solid var(--am-line-soft); }

.am-sec-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.am-sec-no {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    color: var(--am-accent);
    letter-spacing: 0.18em;
}
.am-h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 38px);
    letter-spacing: -0.015em;
    color: var(--am-txt);
    margin: 0;
}
.am-sub {
    color: var(--am-muted);
    max-width: 780px;
    margin: 18px 0 40px;
    font-size: 16.5px;
    line-height: 1.65;
}
.am-sub b, .am-sub strong { color: var(--am-txt); font-weight: 600; }
.am-sub .am-accent { color: var(--am-accent); }

/* ── 3-card grid (What X is) ───────────────────────────────────────── */
.am-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.am-card {
    background: linear-gradient(180deg, var(--am-panel) 0%, var(--am-panel-2) 100%);
    border: 1px solid var(--am-line);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.am-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--am-accent) 55%, var(--am-line));
}
.am-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--am-accent);
}
.am-card-key {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 11.5px;
    color: var(--am-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.am-card h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--am-txt);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.am-card p {
    font-size: 14.5px;
    color: var(--am-muted);
    line-height: 1.55;
    margin: 0;
}

/* ── Standalone figure block (full-width SVG) ──────────────────────── */
.am-fig {
    border: 1px solid var(--am-line);
    border-radius: 18px;
    overflow: hidden;
    background: var(--am-ink-2);
    box-shadow: 0 24px 60px -32px rgba(0,0,0,0.6);
}
.am-fig img, .am-fig svg {
    display: block;
    width: 100%;
    height: auto;
}
.am-fig-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid var(--am-line);
    background: #0C1830;
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    color: var(--am-dim);
    letter-spacing: 0.06em;
    gap: 12px;
}
.am-fig-bar > span:first-child { color: var(--am-accent); }

/* ── Feature rows (two-column alternating) ─────────────────────────── */
.am-features { display: flex; flex-direction: column; }
.am-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--am-line-soft);
}
.am-feature:last-child { border-bottom: none; }
.am-feature.is-reverse .am-feature-text { order: 2; }
.am-feature.is-reverse .am-feature-visual { order: 1; }

.am-feature h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--am-txt);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.am-feature p {
    font-size: 15.5px;
    color: var(--am-muted);
    line-height: 1.65;
    margin: 0 0 14px;
}
.am-feature ul {
    padding-left: 20px;
    margin: 0 0 14px;
    color: var(--am-muted);
    font-size: 15.5px;
    line-height: 1.7;
}
.am-feature li { margin-bottom: 4px; }
.am-feature li::marker { color: var(--am-accent); }
.am-feature strong, .am-feature b { color: var(--am-txt); font-weight: 600; }
.am-feature code {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 0.88em;
    color: var(--am-accent);
    background: var(--am-accent-tint);
    padding: 1px 6px;
    border-radius: 4px;
}

/* ── Specs grid (key/value with monospace headers) ─────────────────── */
.am-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--am-line);
    border-radius: 16px;
    overflow: hidden;
    background: var(--am-ink-2);
}
.am-spec {
    padding: 22px 24px;
    border-bottom: 1px solid var(--am-line);
}
.am-spec:nth-child(odd) { border-right: 1px solid var(--am-line); }
.am-spec:nth-last-child(-n+2) { border-bottom: none; }
.am-spec-t {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 11.5px;
    color: var(--am-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.am-spec-v {
    font-size: 15px;
    color: var(--am-muted);
    line-height: 1.55;
}
.am-spec-v b { color: var(--am-txt); font-weight: 600; }

/* ── Code / formula card ───────────────────────────────────────────── */
.am-code {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    color: var(--am-accent);
    background: var(--am-ink-2);
    border: 1px solid var(--am-line);
    border-radius: 14px;
    padding: 22px 24px;
    line-height: 1.7;
    white-space: pre-wrap;
    overflow-x: auto;
}
.am-code .c-key { color: var(--am-dim); }
.am-code .c-val { color: var(--am-txt); }
.am-code .c-num { color: var(--am-accent); }

/* ── Chip cluster ──────────────────────────────────────────────────── */
.am-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.am-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--am-ink-2);
    border: 1px solid var(--am-line);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--am-txt);
    transition: border-color 0.2s ease;
}
.am-chip:hover { border-color: var(--am-accent); }
.am-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--am-accent);
    flex-shrink: 0;
}
.am-chip--soft { color: var(--am-muted); opacity: 0.65; }

/* ── Stack ribbon (where it sits) ──────────────────────────────────── */
.am-stack {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--am-line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--am-ink-2);
}
.am-stack--6 { grid-template-columns: repeat(6, 1fr); }
.am-stack-step {
    padding: 22px 16px;
    border-right: 1px solid var(--am-line);
    text-align: center;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: background 0.2s ease;
}
.am-stack-step:last-child { border-right: none; }
.am-stack-no {
    display: block;
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 10.5px;
    color: var(--am-dim);
    margin-bottom: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.am-stack-lbl {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--am-muted);
}
.am-stack-step.is-current {
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--am-accent) 18%, transparent) 0%,
        color-mix(in srgb, var(--am-accent) 4%, transparent) 100%);
    position: relative;
}
.am-stack-step.is-current::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--am-accent);
}
.am-stack-step.is-current .am-stack-no { color: var(--am-accent); }
.am-stack-step.is-current .am-stack-lbl { color: var(--am-txt); }

/* ── Reasons grid (Why cloud) ──────────────────────────────────────── */
.am-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.am-reason {
    background: linear-gradient(180deg, var(--am-panel) 0%, var(--am-panel-2) 100%);
    border: 1px solid var(--am-line);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.2s ease;
}
.am-reason:hover { border-color: color-mix(in srgb, var(--am-accent) 40%, var(--am-line)); }
.am-reason-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--am-accent-tint);
    color: var(--am-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid color-mix(in srgb, var(--am-accent) 35%, transparent);
}
.am-reason h5 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--am-txt);
    margin: 0;
    letter-spacing: -0.01em;
}
.am-reason p {
    font-size: 14.5px;
    color: var(--am-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Steps row (How it works) ──────────────────────────────────────── */
.am-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
}
.am-step {
    background: var(--am-ink-2);
    border: 1px solid var(--am-line);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
}
.am-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--am-accent-tint);
    color: var(--am-accent);
    border: 1px solid color-mix(in srgb, var(--am-accent) 35%, transparent);
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 14px;
}
.am-step h5 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--am-txt);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.am-step p {
    font-size: 14px;
    color: var(--am-muted);
    line-height: 1.55;
    margin: 0;
}
.am-step code {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 12.5px;
    color: var(--am-accent);
    background: var(--am-accent-tint);
    padding: 1px 5px;
    border-radius: 4px;
}

/* ── Apps grid ─────────────────────────────────────────────────────── */
.am-apps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.am-app {
    aspect-ratio: 1;
    background: var(--am-ink-2);
    border: 1px solid var(--am-line);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    transition: all 0.2s ease;
    gap: 10px;
}
.am-app:hover {
    border-color: var(--am-accent);
    background: linear-gradient(180deg, var(--am-panel) 0%, var(--am-ink-2) 100%);
    transform: translateY(-2px);
}
.am-app i {
    font-size: 1.85rem;
    color: var(--am-accent);
}
.am-app span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--am-txt);
    line-height: 1.25;
}
@media (max-width: 760px) {
    .am-apps { grid-template-columns: repeat(2, 1fr); }
    .am-app { aspect-ratio: 1.4; }
}

/* ── Final CTA ─────────────────────────────────────────────────────── */
.am-final {
    text-align: center;
    padding: 96px 28px;
    border-top: 1px solid var(--am-line);
    margin-top: 40px;
    background:
        radial-gradient(600px 240px at 50% 0%, var(--am-accent-tint), transparent 70%);
}
.am-final h2 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.6vw, 42px);
    color: var(--am-txt);
    margin: 0 0 14px;
    letter-spacing: -0.015em;
}
.am-final p {
    color: var(--am-muted);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 16px;
    line-height: 1.6;
}
.am-final .am-cta-row { justify-content: center; }

/* ── Mode / tier cards (two-up comparison) ─────────────────────────── */
.am-modes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.am-mode {
    background: linear-gradient(180deg, var(--am-panel) 0%, var(--am-panel-2) 100%);
    border: 1px solid var(--am-line);
    border-radius: 16px;
    padding: 28px;
}
.am-mode-lbl {
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    border-radius: 999px;
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--am-accent-tint);
    color: var(--am-accent);
    border: 1px solid color-mix(in srgb, var(--am-accent) 30%, transparent);
    margin-bottom: 14px;
}
.am-mode h5 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--am-txt);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.am-mode p {
    font-size: 14.5px;
    color: var(--am-muted);
    line-height: 1.6;
    margin: 0 0 12px;
}
.am-mode-meta {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 12.5px;
    color: var(--am-accent);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ── Big metric card (stats) ───────────────────────────────────────── */
.am-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.am-metric {
    background: linear-gradient(180deg, var(--am-panel) 0%, var(--am-panel-2) 100%);
    border: 1px solid var(--am-line);
    border-radius: 16px;
    padding: 26px;
    text-align: center;
}
.am-metric-lbl {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    color: var(--am-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.am-metric-val {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--am-accent);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.am-metric-sub {
    font-size: 13.5px;
    color: var(--am-muted);
}

/* ── Gate scorecard rows (Certify) ─────────────────────────────────── */
.am-gates {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.am-gate {
    display: grid;
    grid-template-columns: 1fr 100px 100px 32px;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--am-ink-2);
    border: 1px solid var(--am-line);
    border-radius: 12px;
}
.am-gate-nm {
    font-size: 14.5px;
    color: var(--am-txt);
    font-weight: 600;
}
.am-gate-nm small {
    display: block;
    color: var(--am-dim);
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}
.am-gate-val, .am-gate-lim {
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 13.5px;
    text-align: right;
}
.am-gate-val { color: var(--am-txt); font-weight: 600; }
.am-gate-lim { color: var(--am-dim); }
.am-gate-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}
.am-gate-badge--pass {
    background: rgba(95, 216, 166, 0.16);
    color: #5FD8A6;
    border: 1px solid rgba(95, 216, 166, 0.40);
}
.am-gate-badge--fail {
    background: rgba(226, 73, 95, 0.16);
    color: #E2495F;
    border: 1px solid rgba(226, 73, 95, 0.40);
}
@media (max-width: 760px) {
    .am-gate { grid-template-columns: 1fr 80px 80px 28px; gap: 10px; padding: 12px 14px; }
}

.am-verdict {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: 'IBM Plex Mono', SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--am-accent), var(--am-accent-deep));
    color: #0B1220;
    border: 1px solid var(--am-accent);
    box-shadow: 0 6px 24px -8px color-mix(in srgb, var(--am-accent) 60%, transparent);
}

/* ── Regime swatches (GrainPath) ───────────────────────────────────── */
.am-regimes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.am-regime {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--am-ink-2);
    border: 1px solid var(--am-line);
    border-radius: 10px;
}
.am-regime-swatch {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}
.am-regime-nm {
    font-size: 14.5px;
    color: var(--am-txt);
    font-weight: 700;
    min-width: 170px;
}
.am-regime-desc {
    font-size: 13.5px;
    color: var(--am-muted);
}

/* ── Internal banner (FusionMap) ───────────────────────────────────── */
.am-internal-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: var(--am-accent-tint);
    border: 1px solid color-mix(in srgb, var(--am-accent) 30%, transparent);
    border-radius: 12px;
    color: var(--am-txt);
    font-size: 14.5px;
    margin-top: 18px;
    line-height: 1.55;
}
.am-internal-banner i {
    color: var(--am-accent);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.am-internal-banner strong { color: var(--am-accent); font-weight: 700; }

/* ── Responsive collapses ──────────────────────────────────────────── */
@media (max-width: 860px) {
    .am-grid3 { grid-template-columns: 1fr; }
    .am-specs { grid-template-columns: 1fr; }
    .am-spec:nth-child(odd) { border-right: none; }
    .am-stack { grid-template-columns: 1fr; }
    .am-stack--6 { grid-template-columns: 1fr; }
    .am-stack-step { border-right: none; border-bottom: 1px solid var(--am-line); }
    .am-stack-step:last-child { border-bottom: none; }
    .am-feature { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
    .am-feature.is-reverse .am-feature-text { order: 0; }
    .am-feature.is-reverse .am-feature-visual { order: 0; }
    .am-reasons { grid-template-columns: 1fr; }
    .am-steps { grid-template-columns: 1fr; }
    .am-modes { grid-template-columns: 1fr; }
    .am-metrics { grid-template-columns: 1fr; }
    .am-hero { padding: 60px 0 30px; }
    .am-section { padding: 48px 0; }
    .am-fig-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
}
