/* ==========================================================================
   SECURE MICRO TECHNOLOGIES — Defense-Tech Site
   Theme: American flag — Old Glory Blue #0A3161 · Old Glory Red #BF0A30 · White
   Bright, patriotic, high-assurance. Navy bands punctuate a light base.
   Fonts: Space Grotesk (display) · Inter (text) · JetBrains Mono (data/labels)
   ========================================================================== */

:root {
  /* Flag palette */
  --navy:      #0a3161;   /* Old Glory Blue */
  --navy-2:    #16467f;
  --navy-deep: #061d3b;
  --ink:       #0c1c34;   /* near-navy text */
  --red:       #bf0a30;   /* Old Glory Red */
  --red-2:     #e11d3a;
  --red-soft:  rgba(191,10,48,.10);
  --red-line:  rgba(191,10,48,.34);

  /* Surfaces (light) */
  --bg:    #ffffff;
  --bg-2:  #f2f5fb;
  --bg-3:  #e9eef7;

  /* Text */
  --text:  #16243d;
  --muted: #54627c;
  --faint: #8693aa;
  --dim:   #aab3c5;

  /* Lines */
  --line:   rgba(10,49,97,.14);
  --line-2: rgba(10,49,97,.24);

  /* On-navy text */
  --on-navy:        #eaf0fa;
  --on-navy-muted:  #a9bbd6;
  --on-navy-faint:  #6f86ab;
  --on-navy-line:   rgba(255,255,255,.14);

  --ok: #1fa971;

  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-text:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --container: 1240px;
  --gut: 26px;
  --sec-y: clamp(72px, 9vw, 140px);

  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { overflow-x: clip; }
body {
  font-family: var(--font-text);
  background: var(--bg);
  color: var(--text);
  font-size: 16px; line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--navy); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }

/* ------------------------------------------------------------- utilities */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sec-y); position: relative; }
.mono { font-family: var(--font-mono); }

/* flag tricolor accent bar */
.flag-stripe { position: fixed; top: 0; left: 0; right: 0; z-index: 61; height: 4px; display: flex; }
.flag-stripe i { flex: 1; }
.flag-stripe i:nth-child(1) { background: var(--navy); }
.flag-stripe i:nth-child(2) { background: #fff; }
.flag-stripe i:nth-child(3) { background: var(--red); }

.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 10px; font-weight: 500; }
.eyebrow::before { content: "//"; color: var(--navy); opacity: .5; }

.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { font-size: clamp(30px, 4.6vw, 54px); margin-top: 20px; }
.sec-head p { margin-top: 20px; color: var(--muted); font-size: 17.5px; max-width: 64ch; }
.sec-head.center p { margin-inline: auto; }

.accent { color: var(--red); }
.text-grad { background: linear-gradient(100deg, var(--navy) 20%, #2b66ab); -webkit-background-clip: text; background-clip: text; color: transparent; }

.rule { display: flex; align-items: center; gap: 18px; color: var(--faint); font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.rule::before, .rule::after { content: ""; height: 1px; background: var(--line); flex: 1; }

/* --------------------------------------------------------------- buttons */
.btn {
  --b: var(--red); --bd: var(--red); --f: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 22px; border: 1.5px solid var(--bd); background: var(--b); color: var(--f);
  border-radius: 4px; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s, border-color .2s, color .2s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(191,10,48,.26); background: var(--red-2); border-color: var(--red-2); }
.btn .ar { transition: transform .18s; }
.btn:hover .ar { transform: translateX(4px); }
.btn--ghost { --b: transparent; --bd: var(--line-2); --f: var(--navy); }
.btn--ghost:hover { --b: var(--navy); --bd: var(--navy); --f: #fff; box-shadow: 0 12px 26px rgba(10,49,97,.22); }
.btn--navy { --b: var(--navy); --bd: var(--navy); --f: #fff; }
.btn--navy:hover { background: var(--navy-2); border-color: var(--navy-2); box-shadow: 0 12px 26px rgba(10,49,97,.24); }
/* on dark bands */
.on-dark .btn--ghost { --bd: var(--on-navy-line); --f: #fff; }
.on-dark .btn--ghost:hover { --b: #fff; --bd: #fff; --f: var(--navy); }

.link { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; border-bottom: 1.5px solid var(--red-line); padding-bottom: 3px; transition: color .15s, gap .15s, border-color .15s; }
.link:hover { color: var(--red); gap: 12px; border-color: var(--red); }
.link svg { width: 14px; height: 14px; }

/* corner ticks */
.ticks { position: relative; }
.ticks::before, .ticks::after { content: ""; position: absolute; width: 11px; height: 11px; border: 1.5px solid var(--red); pointer-events: none; }
.ticks::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.ticks::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* =============================================================== HEADER */
.nav { position: fixed; top: 4px; left: 0; right: 0; z-index: 60; background: rgba(255,255,255,.78); backdrop-filter: blur(14px) saturate(150%); border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s; }
.nav.scrolled { background: rgba(255,255,255,.94); border-color: var(--line); box-shadow: 0 6px 26px rgba(10,49,97,.07); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .mark { width: 34px; height: 34px; flex-shrink: 0; object-fit: contain; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; align-items: stretch; }
.brand .wm-1 { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: .02em; color: var(--navy); }
.brand .wm-2 { font-family: var(--font-mono); font-size: 10.5px; color: var(--faint); margin-top: 4px; display: block; white-space: nowrap; letter-spacing: 0.052em; }
.brand .brand-logo { height: 44px; width: auto; display: block; }
@media (max-width: 480px) { .brand .brand-logo { height: 38px; } }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); padding: 9px 13px; border-radius: 4px; transition: color .15s, background .15s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after { content: ""; position: absolute; left: 13px; bottom: 4px; width: 14px; height: 2px; background: var(--red); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line-2); border-radius: 4px; width: 42px; height: 42px; cursor: pointer; color: var(--navy); }
.nav-toggle svg { width: 20px; height: 20px; margin: auto; }

@media (max-width: 1080px) { .nav-links a { padding: 9px 10px; } .nav-actions .btn { display: none; } }
@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 18px 40px rgba(10,49,97,.12); padding: 16px var(--gut) 28px; transform: translateY(-130%); transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: -1; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 15px 10px; font-size: 14px; border-bottom: 1px solid var(--line); }
  .nav-links a.active::after { display: none; }
}

/* =============================================================== HERO */
.hero { position: relative; padding-top: 132px; padding-bottom: 96px; overflow: hidden; background: linear-gradient(180deg, #fbfcff 0%, var(--bg) 60%); }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(110% 80% at 50% 0%, #000 20%, transparent 72%);
  mask-image: radial-gradient(110% 80% at 50% 0%, #000 20%, transparent 72%);
  opacity: .7;
}
.hero::after { /* subtle flag glow */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(700px 380px at 92% 8%, rgba(191,10,48,.07), transparent 60%), radial-gradient(640px 420px at 4% 30%, rgba(10,49,97,.08), transparent 60%);
}
.hero .wrap { position: relative; z-index: 2; max-width: 960px; }

.hero-status { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 16px; background: #fff; }
.hero-status .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(31,169,113,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31,169,113,.45); } 70% { box-shadow: 0 0 0 9px rgba(31,169,113,0); } 100% { box-shadow: 0 0 0 0 rgba(31,169,113,0); } }

.hero h1 { font-size: clamp(38px, 5.6vw, 76px); font-weight: 600; letter-spacing: -0.035em; margin-top: 26px; max-width: 14ch; color: var(--ink); }
.hero h1 .accent { color: var(--red); white-space: nowrap; }
.hero-sub { margin-top: 26px; font-size: clamp(16.5px, 1.5vw, 19px); color: var(--muted); max-width: 56ch; line-height: 1.62; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 40px; }
.tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 4px; padding: 7px 12px; background: #fff; transition: border-color .2s, color .2s; }
.tag:hover { border-color: var(--red-line); color: var(--navy); }
.tag .dot { color: var(--red); margin-right: 7px; }

/* hero visual: status console */
.hero-visual { position: relative; }
.console { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 30px 70px rgba(10,49,97,.14); overflow: hidden; }
.console-img { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-deep); position: relative; }
.console-img img { width: 100%; height: 100%; object-fit: cover; }
.console-img .ci-tag { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(10,49,97,.78); padding: 5px 10px; border-radius: 3px; backdrop-filter: blur(3px); }
.console-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.console-head .ch-l { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.console-head .ch-d { display: flex; gap: 6px; }
.console-head .ch-d i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.console-head .ch-d i:first-child { background: var(--red); }
.console-rows { padding: 8px 18px 18px; }
.crow { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); font-family: var(--font-mono); font-size: 12.5px; }
.crow:last-child { border-bottom: 0; }
.crow .ck { color: var(--muted); flex: 1; letter-spacing: .03em; }
.crow .cv { color: var(--navy); font-weight: 500; display: inline-flex; align-items: center; gap: 7px; }
.crow .cv .s { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.crow .cv.warn .s { background: var(--red); }

/* =============================================================== STAT RIBBON (navy band) */
.ribbon { background: var(--navy); color: var(--on-navy); position: relative; }
.ribbon::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 200px at 85% 0%, rgba(191,10,48,.22), transparent 60%); pointer-events: none; }
.ribbon .wrap { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 38px 28px; border-left: 1px solid var(--on-navy-line); }
.stat:first-child { border-left: 0; }
.stat .num { font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); font-weight: 700; color: #fff; letter-spacing: -.02em; }
.stat .num .accent { color: #ff6b6b; }
.stat .lbl { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--on-navy-muted); margin-top: 8px; }
@media (max-width: 760px) { .ribbon .wrap { grid-template-columns: 1fr 1fr; } .stat:nth-child(odd) { border-left: 0; } .stat { border-top: 1px solid var(--on-navy-line); } .stat:nth-child(-n+2){ border-top: 0; } }

/* =============================================================== CAPABILITIES */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.cap { background: #fff; padding: 36px 30px; position: relative; transition: background .25s, transform .2s; overflow: hidden; }
.cap::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform .3s ease; }
.cap:hover { background: #fbfcff; }
.cap:hover::before { transform: scaleY(1); }
.cap .idx { font-family: var(--font-mono); font-size: 12px; color: var(--faint); letter-spacing: .1em; }
.cap .cap-ico { width: 40px; height: 40px; margin: 18px 0 16px; color: var(--navy); }
.cap h3 { font-size: 20px; margin-bottom: 12px; color: var(--ink); }
.cap h3 a { transition: color .15s; }
.cap:hover h3 a { color: var(--red); }
.cap p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
@media (max-width: 980px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cap-grid { grid-template-columns: 1fr; } }

/* =============================================================== PRODUCTS */
.prod-list { border-top: 1px solid var(--line); }
.prod { display: grid; grid-template-columns: 64px 1.1fr 2fr auto; gap: 28px; align-items: center; padding: 24px 16px; border-bottom: 1px solid var(--line); transition: background .2s; position: relative; }
.prod::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); opacity: 0; transition: opacity .2s; }
.prod:hover { background: #fff; }
.prod:hover::before { opacity: 1; }
.prod .p-idx { font-family: var(--font-mono); font-size: 13px; color: var(--red); font-weight: 500; }
.prod .p-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink); }
.prod .p-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); margin-top: 5px; }
.prod .p-desc { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.prod .p-go { width: 42px; height: 42px; border: 1.5px solid var(--line-2); border-radius: 4px; display: grid; place-items: center; color: var(--navy); transition: all .2s; flex-shrink: 0; }
.prod .p-go svg { width: 16px; height: 16px; }
.prod:hover .p-go { border-color: var(--red); color: #fff; background: var(--red); }
@media (max-width: 900px) { .prod { grid-template-columns: 40px 1fr auto; gap: 14px 18px; } .prod .p-desc { grid-column: 2 / -1; } }

.prod-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.gcard { position: relative; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--navy-deep); aspect-ratio: 4/3; box-shadow: 0 10px 30px rgba(10,49,97,.08); }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,29,59,.92) 8%, rgba(6,29,59,.15) 55%, transparent); }
.gcard:hover img { transform: scale(1.05); }
.gcard .g-meta { position: absolute; inset: auto 0 0 0; padding: 18px; z-index: 2; }
.gcard .g-meta .g-code { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: #ff8a8f; }
.gcard .g-meta .g-name { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 17px; margin-top: 4px; }
@media (max-width: 900px) { .prod-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .prod-gallery { grid-template-columns: 1fr; } }

/* =============================================================== SPLIT / MISSION */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.alt { grid-template-columns: .92fr 1.08fr; }
@media (max-width: 900px) { .split, .split.alt { grid-template-columns: 1fr; gap: 40px; } }
.mission-card { border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 28px 30px; box-shadow: 0 8px 24px rgba(10,49,97,.05); border-left: 3px solid var(--navy); }
.mission-card + .mission-card { margin-top: 16px; }
.mission-card:nth-child(2) { border-left-color: var(--red); }
.mission-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--ink); }
.mission-card p { color: var(--muted); font-size: 14.5px; }
.mission-card .mc-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }

.lead-list { display: grid; gap: 14px; margin-top: 26px; }
.lead-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--muted); font-size: 15.5px; }
.lead-list li svg { width: 22px; height: 22px; color: #fff; background: var(--navy); border-radius: 5px; padding: 3px; flex-shrink: 0; margin-top: 1px; }
.lead-list li b { color: var(--ink); font-weight: 600; }

/* =============================================================== DOMAINS */
.domains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.domain { background: #fff; padding: 26px 24px; display: flex; align-items: center; gap: 16px; transition: background .2s; }
.domain:hover { background: #fbfcff; }
.domain svg { width: 26px; height: 26px; color: var(--red); flex-shrink: 0; }
.domain .d-t { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 16px; }
.domain .d-s { font-size: 12px; color: var(--faint); font-family: var(--font-mono); letter-spacing: .04em; margin-top: 2px; }
@media (max-width: 820px) { .domains { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .domains { grid-template-columns: 1fr; } }

/* =============================================================== NEWSROOM */
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.ncard { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; display: flex; flex-direction: column; box-shadow: 0 8px 24px rgba(10,49,97,.05); transition: border-color .25s, transform .25s, box-shadow .25s; }
.ncard:hover { border-color: var(--red-line); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10,49,97,.12); }
.ncard .n-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-3); position: relative; }
.ncard.feature .n-img { aspect-ratio: 16/10; }
.ncard .n-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ncard:hover .n-img img { transform: scale(1.04); }
/* video feature — sits BELOW the static image, never replaces it */
.n-video { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; margin-top: 16px; }
.n-video video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.n-video .v-play { position: absolute; inset: 0; margin: auto; width: 72px; height: 72px; border: 0; border-radius: 50%; background: rgba(191,10,48,.92); color: #fff; display: grid; place-items: center; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.35); transition: transform .2s, background .2s; }
.n-video .v-play svg { width: 30px; height: 30px; margin-left: 3px; }
.n-video .v-play:hover { transform: scale(1.08); background: var(--red); }
.n-video .v-tag { position: absolute; left: 14px; bottom: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(10,49,97,.78); border: 1px solid rgba(255,255,255,.18); border-radius: 4px; padding: 5px 10px; backdrop-filter: blur(3px); }
.n-video.playing .v-play, .n-video.playing .v-tag { opacity: 0; pointer-events: none; transition: opacity .25s; }
.ncard .n-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.ncard .n-cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.ncard .n-title { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 17px; line-height: 1.25; margin-top: 12px; }
.ncard.feature .n-title { font-size: 25px; }
.ncard .n-ex { color: var(--muted); font-size: 14px; margin-top: 12px; flex: 1; }
.ncard .n-date { font-family: var(--font-mono); font-size: 11.5px; color: var(--faint); margin-top: 16px; letter-spacing: .05em; }
.ncard.feature { grid-row: span 2; }
@media (max-width: 980px) { .news-grid { grid-template-columns: 1fr 1fr; } .ncard.feature { grid-column: 1 / -1; grid-row: auto; } }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }

/* =============================================================== TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tcard { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 8px 22px rgba(10,49,97,.05); transition: border-color .25s, transform .25s, box-shadow .25s; }
.tcard:hover { border-color: var(--red-line); transform: translateY(-4px); box-shadow: 0 18px 38px rgba(10,49,97,.12); }
.tcard .t-img { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-3); position: relative; }
.tcard .t-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: filter .4s, transform .5s; }
.tcard:hover .t-img img { filter: saturate(1.05); transform: scale(1.03); }
.tcard .t-img::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.tcard:hover .t-img::after { transform: scaleX(1); }
.tcard .t-body { padding: 18px; }
.tcard .t-name { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 15.5px; }
.tcard .t-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--red); margin-top: 6px; text-transform: uppercase; }
.tcard .t-links { margin-top: 14px; display: flex; align-items: center; gap: 10px; }
.tcard .t-links a { width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 4px; display: grid; place-items: center; color: var(--muted); transition: all .2s; }
.tcard .t-links a svg { width: 15px; height: 15px; }
.tcard .t-links a:hover { border-color: var(--navy); color: #fff; background: var(--navy); }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* =============================================================== CAREERS */
.jobs { border-top: 1px solid var(--line); }
.job { border-bottom: 1px solid var(--line); }
.job-head { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; display: flex; align-items: center; gap: 22px; padding: 26px 16px; transition: background .2s; }
.job-head:hover { background: #fff; }
.job-head .j-idx { font-family: var(--font-mono); font-size: 12px; color: var(--red); font-weight: 500; }
.job-head .j-title { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink); flex: 1; }
.job-head .j-loc { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); letter-spacing: .05em; }
.job-head .j-plus { width: 36px; height: 36px; border: 1.5px solid var(--line-2); border-radius: 4px; display: grid; place-items: center; color: var(--navy); transition: all .25s; flex-shrink: 0; }
.job-head .j-plus svg { width: 16px; height: 16px; transition: transform .25s; }
.job.open .j-plus { border-color: var(--red); color: #fff; background: var(--red); }
.job.open .j-plus svg { transform: rotate(45deg); }
.job-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.job.open .job-body { grid-template-rows: 1fr; }
.job-body-inner { overflow: hidden; }
.job-content { padding: 0 16px 30px; max-width: 80ch; color: var(--muted); font-size: 14.5px; }
.job-content p { margin-top: 14px; }
.job-content strong { color: var(--ink); font-family: var(--font-display); }
.job-content a { color: var(--red); font-weight: 500; }
@media (max-width: 700px) { .job-head .j-loc { display: none; } .job-head .j-title { font-size: 17px; } }

/* =============================================================== CONTACT */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }
.contact-info { border-radius: 12px; padding: 38px; background: var(--navy); color: var(--on-navy); position: relative; overflow: hidden; }
.contact-info::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 240px at 100% 0%, rgba(191,10,48,.3), transparent 60%); pointer-events: none; }
.contact-info > * { position: relative; }
.contact-info h3 { font-size: 24px; margin-bottom: 8px; color: #fff; }
.contact-info .sub { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--on-navy-muted); }
.ci-rows { margin-top: 26px; display: grid; gap: 2px; }
.ci-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--on-navy-line); }
.ci-row svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }
.ci-row .ci-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-navy-faint); }
.ci-row .ci-v { color: #fff; font-size: 15px; margin-top: 3px; }
.ci-row a.ci-v:hover { color: var(--red); }
.offices { margin-top: 28px; position: relative; padding-top: 22px; border-top: 1px solid var(--on-navy-line); }
.offices .off-k { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--on-navy-muted); margin-bottom: 14px; }
.offices .off-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 460px) { .offices .off-grid { grid-template-columns: 1fr; } }
.offices .off { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid var(--on-navy-line); border-radius: 7px; background: rgba(255,255,255,.04); transition: border-color .2s, background .2s, transform .2s; }
.offices .off:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.offices .off svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; }
.offices .off .off-city { color: #fff; font-size: 14.5px; font-weight: 500; line-height: 1.1; }
.offices .off .off-st { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; color: var(--on-navy-muted); margin-left: auto; }

.contact-form { border: 1px solid var(--line); border-radius: 12px; padding: 38px; background: #fff; box-shadow: 0 12px 34px rgba(10,49,97,.07); }
.field { margin-bottom: 18px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 9px; }
.field input, .field textarea { width: 100%; background: var(--bg-2); border: 1.5px solid var(--line); border-radius: 4px; padding: 13px 15px; color: var(--text); font-size: 15px; transition: border-color .15s, box-shadow .15s, background .15s; }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px var(--red-soft); }
.field textarea { resize: vertical; min-height: 130px; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 480px) { .f2 { grid-template-columns: 1fr; } }
.form-note { font-family: var(--font-mono); font-size: 11px; color: var(--faint); margin-top: 14px; letter-spacing: .03em; }

/* =============================================================== FOOTER (navy) */
.footer { background: var(--navy-deep); color: var(--on-navy-muted); padding-top: 70px; border-top: 4px solid var(--red); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer .f-brand .wm-1 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; }
.footer .f-brand p { color: var(--on-navy-muted); font-size: 14px; margin-top: 16px; max-width: 42ch; }
.footer .f-social { display: flex; gap: 10px; margin-top: 22px; }
.footer .f-social a { width: 38px; height: 38px; border: 1px solid var(--on-navy-line); border-radius: 4px; display: grid; place-items: center; color: var(--on-navy); transition: all .2s; }
.footer .f-social a svg { width: 17px; height: 17px; }
.footer .f-social a:hover { border-color: var(--red); color: #fff; background: var(--red); }
.footer h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-navy-faint); margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: var(--on-navy-muted); font-size: 14px; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--on-navy-line); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom span { font-family: var(--font-mono); font-size: 11.5px; color: var(--on-navy-faint); letter-spacing: .04em; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* =============================================================== misc */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 46px; height: 46px; border-radius: 4px; border: 1.5px solid var(--navy); background: #fff; color: var(--navy); display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s; box-shadow: 0 10px 26px rgba(10,49,97,.16); }
.to-top svg { width: 20px; height: 20px; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--red); color: #fff; background: var(--red); }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: .07s; }
[data-reveal][data-d="2"] { transition-delay: .14s; }
[data-reveal][data-d="3"] { transition-delay: .21s; }
[data-reveal][data-d="4"] { transition-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  :root { scroll-behavior: auto; }
}

/* =============================================================== PARTNERS MARQUEE */
.partners { padding-block: clamp(46px, 6vw, 78px); background: var(--bg); border-bottom: 1px solid var(--line); }
.partners .lead { text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--faint); margin-bottom: 34px; }
.partners .lead b { color: var(--navy); font-weight: 500; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 72px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.partner { flex: 0 0 auto; display: grid; place-items: center; height: 60px; }
.partner img { max-height: 50px; max-width: 168px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .55; transition: filter .25s ease, opacity .25s ease; }
.partner:hover img { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 40px 56px; }
  .marquee-track .partner.dup { display: none; }
}

/* =============================================================== SUB-PAGE: PRODUCT DETAIL */
.subhero { position: relative; overflow: hidden; color: var(--on-navy); padding-top: 124px; padding-bottom: clamp(56px, 7vw, 88px); background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 70%); }
.subhero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .6; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 60px 60px; -webkit-mask-image: radial-gradient(120% 90% at 75% 0%, #000 25%, transparent 78%); mask-image: radial-gradient(120% 90% at 75% 0%, #000 25%, transparent 78%); }
.subhero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(620px 320px at 90% 0%, rgba(191,10,48,.22), transparent 60%); }
.subhero .wrap { position: relative; z-index: 2; }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: 12.5px; color: #9fb0d6; margin-bottom: 20px; }
.crumb a { color: #c3cee8; transition: color .15s; }
.crumb a:hover { color: #fff; }
.crumb .sep { opacity: .5; }
.subhero .ph-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #ff8a90; display: inline-flex; align-items: center; gap: 10px; }
.subhero .ph-eyebrow::before { content: "//"; color: rgba(255,255,255,.45); }
.subhero h1 { color: #fff; font-size: clamp(32px, 4.6vw, 56px); letter-spacing: -.03em; margin-top: 18px; max-width: 18ch; }
.subhero .ph-sub { color: #aeb9d6; margin-top: 20px; font-size: 18px; max-width: 60ch; line-height: 1.6; }

.detail { display: grid; grid-template-columns: 1.55fr .85fr; gap: 52px; align-items: start; }
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; gap: 40px; } }

.prose { color: var(--body, #4a5068); }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-size: clamp(22px, 2.6vw, 30px); color: var(--ink); margin-top: 12px; }
.prose h3 { font-size: 19px; color: var(--navy); margin-top: 30px; }
.prose p { font-size: 16px; color: var(--muted); line-height: 1.7; }
.prose strong { color: var(--ink); }
.prose a { color: var(--red); font-weight: 500; }
.prose a:hover { text-decoration: underline; }
.prose ul { display: grid; gap: 11px; padding-left: 0; margin-top: 8px; }
.prose ul li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--muted); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 7px; height: 7px; background: var(--red); transform: rotate(45deg); }
.prose blockquote { margin: 26px 0; padding: 20px 26px; border-left: 3px solid var(--red); background: var(--bg-2); font-size: 17px; font-style: italic; color: var(--navy); border-radius: 0 8px 8px 0; }

.product-media { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--navy-deep); box-shadow: 0 16px 40px rgba(10,49,97,.12); }
.product-media img, .product-media video { width: 100%; display: block; }

.specbox { border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 26px; box-shadow: 0 10px 30px rgba(10,49,97,.06); position: sticky; top: 92px; }
.specbox h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-2, #eef0f6); font-size: 14px; }
.spec-row:last-of-type { border-bottom: 0; }
.spec-row .k { color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; }
.spec-row .v { color: var(--ink); font-weight: 500; text-align: right; }
.specbox .btn { width: 100%; justify-content: center; margin-top: 20px; }

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-top: 8px; }
@media (max-width: 620px) { .feat-grid { grid-template-columns: 1fr; } }
.feat { background: #fff; padding: 26px; }
.feat .feat-ico { width: 34px; height: 34px; color: var(--red); margin-bottom: 12px; }
.feat h4 { font-size: 16px; color: var(--ink); margin-bottom: 7px; }
.feat p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--on-navy); border-radius: 14px; padding: clamp(34px, 5vw, 60px); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(520px 260px at 80% 0%, rgba(191,10,48,.26), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.2vw, 38px); }
.cta-band p { color: #aeb9d6; margin: 14px auto 26px; max-width: 56ch; font-size: 17px; }

/* related products */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
@media (max-width: 760px) { .related { grid-template-columns: 1fr; } }
.relcard { border: 1px solid var(--line); border-radius: 10px; padding: 22px; background: #fff; transition: border-color .2s, transform .2s; display: block; }
.relcard:hover { border-color: var(--red-line); transform: translateY(-3px); }
.relcard .rc-code { font-family: var(--font-mono); font-size: 11px; color: var(--red); letter-spacing: .08em; }
.relcard .rc-name { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 17px; margin-top: 5px; }
.relcard .rc-desc { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* =============================================================== PRODUCT DETAIL — reflowed layout */
.subhero .ph-sub { max-width: 76ch; }

.detail-top { display: grid; grid-template-columns: 1.45fr 1fr; gap: 44px; align-items: stretch; margin-bottom: 44px; }
@media (max-width: 900px) { .detail-top { grid-template-columns: 1fr; gap: 28px; } }
.detail-top .product-media { position: relative; min-height: 240px; }
.detail-top .product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-top .specbox { position: static; top: auto; height: 100%; display: flex; flex-direction: column; }
.detail-top .specbox .spec-row:last-of-type { border-bottom: 0; }
.detail-top .specbox .btn:first-of-type { margin-top: auto; }   /* push buttons to bottom so heights align */

.detail-body { max-width: none; }
.detail-body > h2:first-child { margin-top: 0; }
.detail-body .caps-title { text-align: center; margin-top: 40px; }
.detail-body .feat-grid.centered { max-width: 860px; margin-inline: auto; }
@media (max-width: 900px) { .detail-body .feat-grid.centered { max-width: 560px; } }

/* one-pager PDF block */
.onepager { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 10px;
  background: linear-gradient(120deg, var(--bg-2), #fff); padding: 26px 30px; box-shadow: 0 8px 24px rgba(10,49,97,.05); }
.onepager .op-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.onepager .op-text p { color: var(--ink); font-size: 16px; margin-top: 6px; }
.onepager .op-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 560px) { .onepager .op-actions { width: 100%; } .onepager .op-actions .btn { flex: 1; justify-content: center; } }

/* =============================================================== WHITE PAPERS / RESOURCES */
.doc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px) { .doc-list { grid-template-columns: 1fr; } }
.doc-card { display: flex; gap: 18px; align-items: flex-start; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 24px; box-shadow: 0 8px 22px rgba(10,49,97,.05); transition: border-color .2s, transform .2s; }
.doc-card:hover { border-color: var(--red-line); transform: translateY(-3px); }
.doc-card .doc-ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 9px; display: grid; place-items: center; background: var(--bg-2); color: var(--red); }
.doc-card .doc-ico svg { width: 24px; height: 24px; }
.doc-card .doc-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.doc-card h3 { font-size: 17px; color: var(--ink); margin: 5px 0 6px; }
.doc-card p { font-size: 14px; color: var(--muted); }
.doc-card .doc-actions { margin-top: 14px; display: flex; gap: 16px; }
.doc-card .doc-actions a { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; border-bottom: 1.5px solid var(--red-line); padding-bottom: 2px; transition: color .15s, gap .15s; }
.doc-card .doc-actions a:hover { color: var(--red); gap: 9px; }

/* =============================================================== ACADEMY */
.prog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .prog-grid { grid-template-columns: 1fr; } }
.prog { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 8px 22px rgba(10,49,97,.05); display: flex; flex-direction: column; transition: border-color .25s, transform .25s, box-shadow .25s; }
.prog:hover { border-color: var(--red-line); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10,49,97,.12); }
.prog .prog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-3); }
.prog .prog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prog:hover .prog-img img { transform: scale(1.04); }
.prog .prog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.prog .prog-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.prog h3 { font-size: 19px; color: var(--ink); margin: 8px 0 8px; }
.prog p { font-size: 14.5px; color: var(--muted); flex: 1; }
.prog .link { margin-top: 16px; align-self: flex-start; }

.academy-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
@media (max-width: 900px) { .academy-split { grid-template-columns: 1fr; gap: 36px; } }
.academy-split .as-media { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: 0 16px 40px rgba(10,49,97,.12); }
.academy-split .as-media img { width: 100%; display: block; }
.focus-list { display: grid; gap: 12px; margin-top: 24px; }
.focus-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--muted); font-size: 15.5px; }
.focus-list li svg { width: 20px; height: 20px; color: #fff; background: var(--navy); border-radius: 5px; padding: 3px; flex-shrink: 0; margin-top: 1px; }
.focus-list li b { color: var(--ink); font-weight: 600; }

/* widen selected section sub-texts to fill the column (avoid early wrap) */
.sec-head.wide { max-width: none; }
.sec-head.wide p { max-width: none; }
