/* ==========================================================================
   Industrial — design system for the plant-engineering demo (Meridian).

   Cool GRAPHITE/STEEL canvas, amber accent, a technical monospace label voice,
   a faint blueprint grid and framed panels with corner ticks. Sentence-case
   slab headings — deliberately unlike the Logistics demo's warm-black uppercase.
   ========================================================================== */

:root {
  --bg:        #1a1d23;
  --bg-2:      #21252d;
  --surface:   #262b34;
  --surface-2: #2c323d;
  --line:      #363d49;
  --line-soft: #2b313b;

  --ink:       #eef1f5;
  --muted:     #a6b0bd;
  --muted-2:   #737e8c;

  --accent:    #f5a623;   /* amber / hazard */
  --accent-2:  #ffc861;
  --accent-ink:#1c1403;
  --accent-050:rgba(245,166,35,.12);

  --radius:   6px;
  --radius-sm:4px;
  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 40px);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  --shadow:    0 24px 56px -30px rgba(0,0,0,.8);
  --shadow-sm: 0 12px 30px -20px rgba(0,0,0,.65);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body { margin: 0; font-family: var(--font); color: var(--muted); background: var(--bg); line-height: 1.62; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0 0 .5em; color: var(--ink); font-weight: 800; line-height: 1.06; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.14rem; }
h4 { margin: 0 0 .5em; }
p  { margin: 0 0 1rem; overflow-wrap: break-word; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.center { text-align: center; }
.accent { color: var(--accent); }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--accent); color: var(--accent-ink); padding: 10px 16px; border-radius: 4px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* eyebrow: a monospace technical label with brackets */
.eyebrow { display: inline-flex; align-items: center; gap: .5em; margin: 0 0 1.1rem; font-family: var(--mono); font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.eyebrow::before { content: "//"; opacity: .8; }
.eyebrow i { display: none; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 62ch; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; font-weight: 700; font-size: .94rem; line-height: 1; padding: 14px 24px; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: pointer; transition: transform .12s, background .2s, border-color .2s, color .2s; white-space: nowrap; }
.btn i, .btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-on-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-on-dark:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(26,29,35,.88); backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark .mark-hex { stroke: var(--accent); }
.brand-mark .mark-core { color: var(--accent); }
.brand-mark .mark-teeth { stroke: var(--ink); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name { font-weight: 800; font-size: 1.08rem; color: var(--ink); }
.brand-sub { font-family: var(--mono); font-size: .66rem; color: var(--muted-2); letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.nav-links > li { display: flex; }
.nav-links a { padding: 10px 14px; color: var(--muted); font-weight: 600; font-size: .9rem; transition: color .15s, background .15s; border-radius: var(--radius-sm); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--surface); }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--ink) !important; font-weight: 700; }
.nav-phone i { width: 16px; height: 16px; color: var(--accent); }
.nav-cta { background: var(--accent); color: var(--accent-ink) !important; padding: 11px 18px !important; }
.nav-cta:hover { background: var(--accent-2) !important; }
.nav-burger { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line); background: var(--surface); }
.nav-burger span { width: 20px; height: 2px; background: var(--ink); }
@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links { position: fixed; inset: 72px 0 auto 0; margin: 0; flex-direction: column; align-items: stretch; gap: 2px; padding: 12px var(--pad) 22px; background: var(--bg-2); border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .28s; box-shadow: var(--shadow); max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav-toggle:checked ~ .nav-links { transform: translateY(0); }
  .nav-links a { padding: 14px; font-size: .96rem; }
  .nav-cta, .nav-phone { justify-content: center; }
  .nav-cta-li { margin-top: 8px; }
}

/* sections */
.section { position: relative; padding: clamp(62px, 8.5vw, 116px) 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 62ch; margin-bottom: clamp(34px, 5vw, 54px); }
.section-head.head-center { margin-inline: auto; text-align: center; }
.section-head.head-center .eyebrow { justify-content: center; }
.section-head .lead { margin-top: .5rem; }
.section-dark { position: relative; background: #14171c; overflow: hidden; }
.section-dark::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(245,166,35,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(245,166,35,.05) 1px, transparent 1px); background-size: 40px 40px; }
.section-dark > .wrap { position: relative; z-index: 1; }

/* ---- hero (steel, spec panel) ------------------------------------------ */
.in-hero { position: relative; overflow: hidden; padding: clamp(66px, 9vw, 128px) 0 clamp(56px, 8vw, 104px); background: radial-gradient(55% 60% at 80% 6%, rgba(245,166,35,.14), transparent 58%), var(--bg); }
.in-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .6; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 44px 44px; -webkit-mask-image: radial-gradient(75% 70% at 40% 20%, #000, transparent 78%); mask-image: radial-gradient(75% 70% at 40% 20%, #000, transparent 78%); }
.in-hero .wrap { position: relative; z-index: 2; }
.in-hero-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); gap: clamp(30px, 5vw, 60px); align-items: center; }
@media (max-width: 920px) { .in-hero-grid { grid-template-columns: 1fr; } }
.in-hero-text h1 { margin-bottom: .3em; }
.hero-sub { font-size: clamp(1.04rem, 1.8vw, 1.28rem); color: var(--muted); max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }
@media (max-width: 460px) { .hero-cta .btn { width: 100%; } }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 26px 0 0; padding: 0; list-style: none; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted); font-family: var(--mono); }
.hero-badges i { width: 16px; height: 16px; color: var(--accent); }

.in-panel { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.in-panel::before, .in-panel::after { content: ""; position: absolute; width: 14px; height: 14px; border: 2px solid var(--accent); }
.in-panel::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.in-panel::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.in-panel-head { display: flex; align-items: center; gap: 10px; font-family: var(--mono); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; color: var(--accent); margin-bottom: 18px; }
.in-panel-head i { width: 18px; height: 18px; }
.in-spec { list-style: none; counter-reset: spec; margin: 0; padding: 0; display: grid; gap: 0; }
.in-spec li { counter-increment: spec; display: flex; gap: 14px; align-items: baseline; padding: 13px 0; border-bottom: 1px dashed var(--line); color: var(--ink); font-size: .95rem; }
.in-spec li:last-child { border-bottom: 0; }
.in-spec li::before { content: counter(spec, decimal-leading-zero); font-family: var(--mono); font-size: .8rem; color: var(--accent); flex: none; }
.in-panel-note { margin: 16px 0 0; font-size: .82rem; color: var(--muted-2); font-family: var(--mono); }

/* trust strip */
.trust { background: var(--bg-2); border-block: 1px solid var(--line); padding: clamp(38px, 5vw, 56px) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 1px; background: var(--line); }
.trust-item { background: var(--bg-2); padding: 8px 22px 8px 0; }
.trust-item i { width: 24px; height: 24px; color: var(--accent); margin-bottom: 10px; }
.trust-item h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 4px; }
.trust-item p { font-size: .9rem; color: var(--muted); margin: 0; }

/* services — framed cards with corner tick */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 20px; }
.service-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: transform .18s, border-color .2s; min-width: 0; }
.service-card::before { content: ""; position: absolute; top: -1px; right: -1px; width: 16px; height: 16px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); opacity: 0; transition: opacity .2s; }
.service-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.service-card:hover::before { opacity: 1; }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: var(--radius-sm); background: var(--accent-050); color: var(--accent); margin-bottom: 18px; }
.service-icon i { width: 24px; height: 24px; }
.service-media { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/10; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-size: 1.14rem; }
.service-card p { color: var(--muted); font-size: .94rem; }
.service-bullets { list-style: none; margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line-soft); display: grid; gap: 9px; }
.service-bullets li { position: relative; padding-left: 22px; font-size: .88rem; color: var(--muted); font-family: var(--mono); }
.service-bullets li::before { content: "▸"; position: absolute; left: 2px; color: var(--accent); }

/* story */
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(30px, 5vw, 60px); align-items: center; }
.story-body { min-width: 0; }
.story-text { color: var(--muted); font-size: 1.02rem; }
.story-text strong { color: var(--ink); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr)); gap: 1px; margin-top: 30px; background: var(--line); border: 1px solid var(--line); }
.stat-grid > div { background: var(--bg); padding: 18px 16px; }
.stat-value { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; color: var(--accent); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stat-label { font-family: var(--mono); font-size: .74rem; color: var(--muted-2); margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; }
.story-figure { border-radius: var(--radius); overflow: hidden; min-height: 280px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.story-figure img { width: 100%; height: 100%; object-fit: cover; }
.story-figure.is-empty { background: linear-gradient(160deg, var(--surface-2), var(--bg)); position: relative; }
.story-figure.is-empty::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(245,166,35,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(245,166,35,.09) 1px, transparent 1px); background-size: 40px 40px; }

/* steps — dark blueprint band */
.steps-grid { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 20px; }
.step { counter-increment: step; position: relative; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; min-width: 0; }
.step::before { content: "STEP " counter(step, decimal-leading-zero); display: inline-block; font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; color: var(--accent); margin-bottom: 12px; }
.step h3 { font-size: 1.08rem; color: #fff; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 20px; }
.quote-card { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; min-width: 0; }
.quote-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--accent); }
.quote-stars i { width: 17px; height: 17px; fill: currentColor; }
.quote-card blockquote { margin: 0 0 18px; font-size: 1.04rem; color: var(--ink); line-height: 1.5; }
.quote-meta { margin-top: auto; }
.quote-author { font-weight: 750; color: var(--ink); }
.quote-place { font-family: var(--mono); font-size: .8rem; color: var(--muted-2); }

/* faq */
.faq-list { max-width: 840px; margin-inline: auto; display: grid; gap: 8px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item[open] { border-color: var(--accent); }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 22px; font-weight: 700; font-size: 1rem; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-weight: 400; font-size: 1.5rem; line-height: 1; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 22px; color: var(--muted); }
.faq-answer p { margin: 0 0 .7em; }
.faq-answer strong { color: var(--ink); }

/* contact / CTA */
.cta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(28px, 4vw, 52px); align-items: center; }
.cta-body { min-width: 0; }
.contact-panel { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; min-width: 0; }
.contact-panel::before, .contact-panel::after { content: ""; position: absolute; width: 16px; height: 16px; border: 2px solid var(--accent); }
.contact-panel::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.contact-panel::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.contact-panel h3 { color: #fff; font-size: 1.2rem; }
.panel-lead { color: var(--muted); }
.contact-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci { flex: none; width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--accent-050); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.ci i { width: 20px; height: 20px; }
.contact-label { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); }
.contact-value { font-weight: 700; color: #fff; }
.contact-value a { color: #fff; }
.contact-value .small { display: block; font-weight: 400; font-size: .88rem; color: var(--muted); white-space: pre-line; }

/* footer */
.footer { background: #14171c; color: var(--muted); padding: clamp(48px, 6vw, 74px) 0 30px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 820px) { .footer-top { grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr)); } }
.footer .brand { margin-bottom: 14px; }
.footer .brand-name { color: #fff; }
.footer-about { color: var(--muted-2); font-size: .9rem; max-width: 42ch; }
.footer h4 { font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--muted); font-size: .92rem; }
.footer a:hover { color: var(--accent); }
.contact-line { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .92rem; }
.contact-line a { color: var(--muted); }
.contact-line a:hover { color: var(--accent); }
.contact-line i { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; color: var(--muted-2); font-size: .84rem; }
.footer-bottom nav { display: flex; gap: 18px; }

/* call bar */
.call-bar { display: none; }
@media (max-width: 640px) {
  .call-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; gap: 1px; background: var(--line); border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom); }
  .call-bar a { flex: 1 1 0; min-width: 0; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 8px; font-weight: 700; font-size: .94rem; }
  .call-bar i { width: 18px; height: 18px; }
  .cb-call { background: var(--surface); color: var(--ink); }
  .cb-quote { background: var(--accent); color: var(--accent-ink); }
  body { padding-bottom: 60px; }
}

/* full-bleed background media */
.has-bg-media, .hero-has-media { position: relative; }
.has-bg-media > .wrap, .hero-has-media > .wrap { position: relative; z-index: 2; }
.dd-bg-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.dd-bg-el { width: 100%; height: 100%; object-fit: cover; }
.dd-bg-video-poster { position: absolute; inset: 0; display: none; }
.dd-bg-overlay { position: absolute; inset: 0; z-index: 1; }
.dd-bg-overlay.ov-light  { background: linear-gradient(180deg, rgba(20,23,28,.55), rgba(20,23,28,.72)); }
.dd-bg-overlay.ov-medium { background: linear-gradient(180deg, rgba(20,23,28,.74), rgba(20,23,28,.86)); }
.dd-bg-overlay.ov-strong { background: linear-gradient(180deg, rgba(20,23,28,.88), rgba(20,23,28,.95)); }
@media (prefers-reduced-motion: reduce) { .dd-bg-video { display: none; } .dd-bg-video-poster { display: block; } }

/* ==========================================================================
   BESPOKE SPEC-SHEET STRUCTURES (Industrial only)
   Distinct DOM: framed spec cards with capability codes, chained phase blocks,
   a dotted-leader datasheet, field-report dossiers and an RFQ panel.
   ========================================================================== */

/* --- services → framed spec cards --------------------------------------- */
.in-spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 20px; }
.in-svc { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; min-width: 0; transition: border-color .2s, transform .2s; }
.in-svc::before, .in-svc::after { content: ""; position: absolute; width: 12px; height: 12px; border: 2px solid var(--accent); opacity: 0; transition: opacity .2s; }
.in-svc::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.in-svc::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.in-svc:hover { transform: translateY(-3px); border-color: var(--accent); }
.in-svc:hover::before, .in-svc:hover::after { opacity: 1; }
.in-svc-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.in-svc-code { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; color: var(--accent); text-transform: uppercase; }
.in-svc-ic { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--accent-050); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.in-svc-ic i { width: 22px; height: 22px; }
.in-svc h3 { font-size: 1.2rem; }
.in-svc > p { color: var(--muted); font-size: .95rem; }
.in-svc .in-spec { margin-top: 16px; border-top: 1px solid var(--line); }

/* --- process → chained phase blocks ------------------------------------- */
.in-phases { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 18px; }
.in-phase { position: relative; background: rgba(38,43,52,.72); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius-sm); padding: 22px; min-width: 0; }
.in-phase::after { content: ""; position: absolute; top: 50%; right: -18px; width: 18px; height: 2px; background: var(--accent); opacity: .6; z-index: 1; }
.in-phase:last-child::after { display: none; }
.in-phase-code { display: inline-block; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; color: var(--accent); text-transform: uppercase; margin-bottom: 12px; }
.in-phase h3 { color: var(--ink); font-size: 1.08rem; }
.in-phase p { color: var(--muted); font-size: .92rem; margin: 0; }
@media (max-width: 720px) { .in-phase::after { display: none; } }

/* --- shared datasheet rows (trust + RFQ) -------------------------------- */
.in-caps-band { background: var(--bg-2); border-block: 1px solid var(--line); padding: clamp(40px, 5vw, 60px) 0; }
.in-datasheet { display: grid; gap: 0; }
.in-drow { display: grid; grid-template-columns: minmax(0, auto) 1fr minmax(0, auto); align-items: baseline; gap: 10px; padding: 15px 0; border-bottom: 1px dashed var(--line); }
.in-drow:last-child { border-bottom: 0; }
.in-dlabel { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); min-width: 0; }
.in-dlabel i { width: 17px; height: 17px; color: var(--accent); flex: none; }
.in-dlead { align-self: center; height: 1px; border-bottom: 1px dotted var(--line); min-width: 20px; }
.in-dvalue { text-align: right; color: var(--ink); font-weight: 600; overflow-wrap: break-word; min-width: 0; }
.in-dvalue a { color: var(--ink); }
.in-dvalue a:hover { color: var(--accent); }
@media (max-width: 560px) {
  .in-drow { grid-template-columns: 1fr; gap: 4px; }
  .in-dlead { display: none; }
  .in-dvalue { text-align: left; }
}

/* --- testimonials → field-report dossiers ------------------------------- */
.in-reports { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 20px; }
.in-report { margin: 0; display: flex; flex-direction: column; }
.in-report-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.in-report-ref { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; color: var(--accent); text-transform: uppercase; }
.in-report-bar i { width: 22px; height: 22px; color: var(--accent); opacity: .6; }
.in-report blockquote { margin: 0 0 18px; color: var(--ink); font-size: 1.05rem; line-height: 1.55; }
.in-report figcaption { margin-top: auto; display: flex; flex-direction: column; }
.in-report-author { color: var(--ink); font-weight: 700; }
.in-report-meta { font-family: var(--mono); font-size: .8rem; color: var(--muted-2); }

/* --- contact → RFQ spec panel ------------------------------------------- */
.in-rfq { padding: clamp(28px, 4vw, 44px); }
.in-rfq-body { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 860px) { .in-rfq-body { grid-template-columns: 1fr; } }
.in-rfq-lead h2 { color: var(--ink); }
.in-rfq-lead .lead { color: var(--muted); margin-bottom: 24px; }
.in-rfq-sheet { display: grid; gap: 0; padding-top: 4px; }
.in-rfq-sheet .in-drow:first-child { padding-top: 0; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
