:root {
  --ink: #0b0d0f;
  --panel: #191d21;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #f3f1eb;
  --muted: #aeb6bd;
  --white: #fff;
  --orange: #ff7a1a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.nav { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(7, 8, 9, .92); backdrop-filter: blur(16px); }
.nav-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font-size: 16px; font-weight: 900; letter-spacing: .04em; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 750; }
.nav-links a:hover, .footer a:hover { color: var(--orange); }
.btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; border: 1px solid transparent; border-radius: 4px; font-weight: 850; cursor: pointer; }
.btn-primary { color: #090a0b; background: var(--orange); }
.btn-light { color: var(--ink); background: var(--white); }
.eyebrow { margin: 0 0 14px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.page-hero { padding: 112px 0 68px; background: linear-gradient(120deg, #15191d 0%, #0b0d0f 68%); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 820px; margin: 0; font-size: clamp(42px, 6vw, 76px); line-height: .94; letter-spacing: 0; text-transform: uppercase; }
.page-hero p:not(.eyebrow) { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.content-section { padding: 72px 0; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr); gap: 40px; align-items: end; margin-bottom: 30px; }
.section-head h2 { margin: 0; font-size: clamp(30px, 3.3vw, 48px); line-height: .98; text-transform: uppercase; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.55; }
.about-grid, .commitment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.about-grid > *, .commitment-grid > * { padding: 30px; background: var(--panel); }
.about-grid h3, .commitment-grid h3 { margin: 0 0 12px; font-size: 22px; text-transform: uppercase; }
.about-grid p, .commitment-grid p { margin: 0; color: var(--muted); line-height: 1.6; }
.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border: 1px solid rgba(11,13,15,.16); background: rgba(11,13,15,.16); }
.process article { min-height: 170px; padding: 26px; background: var(--paper); color: var(--ink); }
.process b { display: block; color: var(--orange); margin-bottom: 24px; font-size: 13px; }
.process h3 { margin: 0 0 10px; font-size: 20px; text-transform: uppercase; }
.process p { margin: 0; color: #56616b; line-height: 1.5; }
.insight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.insight-card { display: flex; flex-direction: column; min-height: 100%; border: 1px solid var(--line); background: var(--panel); }
.insight-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.insight-card > div { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.insight-card time, .article-meta { color: var(--orange); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.insight-card h2 { margin: 14px 0 12px; font-size: 25px; line-height: 1.05; text-transform: uppercase; }
.insight-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.insight-card .read-more { margin-top: auto; padding-top: 24px; color: var(--white); font-weight: 850; text-transform: uppercase; font-size: 13px; }
.empty-state { padding: 40px; border: 1px solid var(--line); background: var(--panel); color: var(--muted); line-height: 1.6; }
.article { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 112px 0 80px; }
.article h1 { margin: 12px 0 22px; font-size: clamp(38px, 5vw, 66px); line-height: .96; text-transform: uppercase; }
.article .lead { margin: 0 0 30px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.article-cover { width: 100%; margin: 34px 0 38px; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--line); }
.article-body { color: #dbe0e3; font-size: 18px; line-height: 1.75; }
.article-body h2 { margin: 46px 0 16px; color: var(--white); font-size: 30px; line-height: 1.05; text-transform: uppercase; }
.article-body h3 { margin: 34px 0 12px; color: var(--white); font-size: 22px; }
.article-body p { margin: 0 0 20px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 24px; }
.article-body a { color: var(--orange); text-decoration: underline; }
.article-cta { margin-top: 48px; padding: 30px; border: 1px solid var(--line); background: var(--panel); }
.article-cta h2 { margin: 0 0 12px; font-size: 28px; text-transform: uppercase; }
.article-cta p { margin: 0 0 22px; color: var(--muted); line-height: 1.55; }
.footer { border-top: 1px solid var(--line); padding: 24px 0; color: var(--muted); font-size: 14px; }
.footer > .shell { display: flex; justify-content: space-between; gap: 16px; }
@media (max-width: 760px) { .nav-links { display: none; } .shell { width: min(100% - 28px, 1160px); } .page-hero { padding: 86px 0 48px; } .content-section { padding: 48px 0; } .section-head { grid-template-columns: 1fr; gap: 18px; } .about-grid, .commitment-grid { grid-template-columns: 1fr; } .process { grid-template-columns: repeat(2, minmax(0, 1fr)); } .process article { min-height: 160px; padding: 20px; } .insight-grid { grid-template-columns: 1fr; } .article { width: min(100% - 28px, 820px); padding: 84px 0 54px; } .article-body { font-size: 17px; } .footer > .shell { flex-direction: column; } }

.rich-content{font-size:1.05rem;line-height:1.8}.rich-content h1,.rich-content h2,.rich-content h3{margin:2rem 0 .75rem;line-height:1.15}.rich-content p,.rich-content ul,.rich-content ol,.rich-content blockquote{margin:0 0 1.25rem}.rich-content img{display:block;max-width:100%;height:auto;margin:1.75rem auto}.rich-content blockquote{border-left:3px solid #ff7a1a;margin-left:0;padding-left:1rem;color:#cbd2d9}.rich-content a{color:#ff7a1a;text-decoration:underline}
.mobile-page-links { display:none; }
@media (max-width:760px) {
  .nav-inner { min-height:62px; gap:12px; }
  .brand { font-size:14px; overflow:hidden; text-overflow:ellipsis; }
  .nav .btn { min-height:40px; padding:0 13px; font-size:13px; flex:none; }
  .mobile-page-links { display:flex; gap:8px; overflow-x:auto; padding:10px 14px; border-bottom:1px solid var(--line); background:#111417; scrollbar-width:none; }
  .mobile-page-links::-webkit-scrollbar { display:none; }
  .mobile-page-links a { flex:0 0 auto; padding:8px 11px; border:1px solid var(--line); color:#d9dfe3; font-size:12px; font-weight:800; }
  .page-hero h1 { font-size:clamp(38px,11vw,54px); line-height:.96; }
  .page-hero p:not(.eyebrow) { font-size:16px; }
  .section-head h2 { font-size:32px; line-height:1; }
  .section-head p { font-size:15px; }
  .about-grid > *, .commitment-grid > * { padding:22px; }
  .about-grid h3, .commitment-grid h3 { font-size:19px; }
  .process { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .process article { min-height:148px; padding:18px; }
  .process h3 { font-size:17px; }
  .article-cta { padding:24px; }
}

/* About page: text-first information layout. */
.about-hero { background: linear-gradient(120deg, #191d21 0%, #0b0d0f 70%); }
.about-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .62fr); align-items: end; gap: 54px; }
.about-hero-grid > p { margin: 0 0 6px; color: var(--muted); font-size: 18px; line-height: 1.58; }
.about-intro { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(330px, .72fr); gap: 68px; align-items: start; }
.about-intro h2, .about-principle-lead h2, .about-cta h2 { margin: 0; font-size: clamp(32px, 4vw, 54px); line-height: .98; text-transform: uppercase; }
.about-intro > div:last-child { color: var(--muted); line-height: 1.68; }
.about-intro > div:last-child p { margin: 0 0 18px; }
.about-white { background: var(--paper); color: var(--ink); }
.about-white .section-head p { color: #56616b; }
.manufacturing-steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border: 1px solid rgba(11, 13, 15, .18); background: rgba(11, 13, 15, .18); gap: 1px; }
.manufacturing-steps article { min-height: 232px; padding: 26px 22px; background: var(--paper); }
.manufacturing-steps b, .service-index { display: block; margin-bottom: 32px; color: var(--orange); font-size: 13px; font-weight: 850; }
.manufacturing-steps h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.04; text-transform: uppercase; }
.manufacturing-steps p { margin: 0; color: #56616b; line-height: 1.55; }
.about-panel { background: #121519; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-service-grid article { min-height: 236px; }
.about-service-grid .service-index { margin-bottom: 42px; }
.about-principles { display: grid; grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr); gap: 68px; align-items: start; }
.about-principle-lead > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); line-height: 1.6; }
.principle-list { border-top: 1px solid var(--line); }
.principle-list article { padding: 23px 0; border-bottom: 1px solid var(--line); }
.principle-list h3 { margin: 0 0 8px; font-size: 20px; text-transform: uppercase; }
.principle-list p { margin: 0; color: var(--muted); line-height: 1.58; }
.about-cta { padding: 86px 0; background: #171b1f; border-top: 1px solid var(--line); }
.about-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.about-cta h2 { max-width: 680px; }
.about-cta p:not(.eyebrow) { max-width: 640px; margin: 18px 0 0; color: var(--muted); line-height: 1.6; }
.about-cta .btn { flex: none; }
@media (max-width: 900px) { .about-hero-grid, .about-intro, .about-principles { grid-template-columns: 1fr; gap: 26px; } .manufacturing-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .about-hero-grid > p { font-size: 16px; } .about-intro, .about-principles { gap: 22px; } .about-intro h2, .about-principle-lead h2, .about-cta h2 { font-size: 33px; } .manufacturing-steps { grid-template-columns: 1fr; } .manufacturing-steps article { min-height: auto; padding: 22px; } .manufacturing-steps b { margin-bottom: 18px; } .about-service-grid article { min-height: auto; } .about-service-grid .service-index { margin-bottom: 28px; } .about-cta { padding: 56px 0; } .about-cta-inner { align-items: flex-start; flex-direction: column; gap: 26px; } }
/* Responsive comparison tables in Insights articles. */
.article-table-wrap { width: 100%; margin: 28px 0; overflow-x: auto; border: 1px solid var(--line); }
.article-body table { width: 100%; min-width: 660px; border-collapse: collapse; font-size: 15px; line-height: 1.5; }
.article-body th, .article-body td { padding: 14px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-body th { color: var(--white); background: #191d21; font-weight: 800; }
.article-body td { color: #dbe0e3; }
.article-body tr:last-child td { border-bottom: 0; }
.article-body th:last-child, .article-body td:last-child { border-right: 0; }
@media (max-width: 760px) { .article-body table { font-size: 14px; } .article-body th, .article-body td { padding: 12px; } }
