:root {
  --ink: #0E1A2B;
  --slate: #3D4F5F;
  --amber: #C9842A;
  --paper: #F4EFE6;
  --green: #2F6F4E;
  --clay: #B54A32;
  --graph: #1C1C1C;
  --fog: #FAF8F4;
  --line: rgba(14, 26, 43, 0.12);
  --shadow: 0 10px 30px rgba(14, 26, 43, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--graph);
  background: var(--paper);
  line-height: 1.55;
}
h1, h2, h3, .serif { font-family: "IBM Plex Serif", Georgia, serif; }
.mono, code, .tag { font-family: "IBM Plex Mono", ui-monospace, monospace; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: var(--ink);
  color: var(--fog);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; }
.topbar a { color: var(--fog); text-decoration: none; }
header.site {
  position: sticky; top: 0; z-index: 20;
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 600; }
.plate {
  width: 36px; height: 36px; border-radius: 4px;
  background: var(--ink); color: var(--fog);
  display: grid; place-items: center;
  font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.04em;
}
nav.primary { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
nav.primary a { text-decoration: none; font-size: 14px; color: var(--slate); }
nav.primary a:hover { color: var(--ink); }
.utils { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer; text-decoration: none;
  padding: 11px 16px; border-radius: 3px; font-weight: 600; font-size: 14px;
}
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--fog); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn[disabled], .btn.is-off { opacity: 0.55; cursor: not-allowed; }
.hero {
  background: var(--ink); color: var(--fog);
  padding: 72px 0 64px;
}
.hero h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.1; margin: 0 0 12px; }
.hero p.lead { font-size: 18px; color: #d7d1c6; max-width: 620px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.section { padding: 56px 0; }
.section h2 { font-size: 28px; margin: 0 0 8px; }
.kicker { font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber); }
.grid { display: grid; gap: 16px; }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.card, .ticket, .desk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.ticket { padding: 16px; display: flex; flex-direction: column; gap: 8px; min-height: 220px; }
.ticket a.title { text-decoration: none; font-weight: 650; color: var(--ink); font-size: 16px; }
.price { font-family: "IBM Plex Mono", monospace; }
.price s { color: var(--slate); margin-right: 6px; }
.meta { color: var(--slate); font-size: 13px; }
.stamp {
  display: inline-block; border: 1px solid var(--ink); padding: 2px 6px;
  font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.04em;
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 12px; background: var(--paper); border: 1px solid var(--line);
  padding: 4px 8px; border-radius: 99px; text-decoration: none; color: var(--slate);
}
.chip.on { background: var(--ink); color: var(--fog); border-color: var(--ink); }
.industry-card {
  background: var(--ink); color: var(--fog); min-height: 160px; padding: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  text-decoration: none; border-radius: 4px;
}
.industry-card strong { font-size: 20px; font-family: "IBM Plex Serif", serif; }
.industry-card span { color: #c9c2b6; font-size: 13px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { background: #fff; padding: 20px; border: 1px solid var(--line); }
.step b { display: block; font-family: "IBM Plex Mono", monospace; color: var(--amber); margin-bottom: 8px; }
.product-hero { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 28px; padding: 40px 0; }
.buybox { background: #fff; border: 1px solid var(--line); padding: 20px; box-shadow: var(--shadow); height: fit-content; position: sticky; top: 88px; }
.buybox h1 { font-size: 26px; margin: 0 0 8px; }
.includes li { margin: 6px 0; }
.notice {
  background: #fff; border-left: 3px solid var(--amber); padding: 12px 14px; margin: 16px 0;
  font-size: 14px;
}
.alert { border-left-color: var(--clay); }
.ok { border-left-color: var(--green); }
.prose { max-width: 720px; }
.prose h2 { margin-top: 28px; }
footer.site { background: var(--ink); color: #d7d1c6; padding: 48px 0 28px; margin-top: 40px; }
footer.site a { color: var(--fog); }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
.subform { display: flex; gap: 8px; flex-wrap: wrap; }
.subform input, .subform select, input, select, textarea {
  font: inherit; padding: 10px 12px; border: 1px solid var(--line); background: #fff; color: var(--graph);
}
.searchbar { width: min(420px, 100%); padding: 10px 12px; border: 1px solid var(--line); }
.video-frame {
  background: var(--ink); color: var(--fog); aspect-ratio: 16/9;
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.table { width: 100%; border-collapse: collapse; background: #fff; }
.table th, .table td { text-align: left; padding: 10px; border-bottom: 1px solid var(--line); font-size: 14px; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 24px; }
.hamburger { display: none; background: none; border: 0; color: var(--ink); font-size: 22px; }

/* —— premium layer —— */
body {
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(201,132,42,0.08), transparent 50%),
    var(--paper);
}
.aisle-bar {
  position: sticky;
  top: 68px;
  z-index: 15;
  background: rgba(14, 26, 43, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.aisle-bar .wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  min-height: 52px;
  scrollbar-width: thin;
}
.aisle-bar a {
  flex: 0 0 auto;
  color: #d7d1c6;
  text-decoration: none;
  font-size: 13px;
  font-weight: 550;
  padding: 7px 14px;
  border-radius: 99px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.aisle-bar a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.aisle-bar a.on {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.crumb { font-size: 13px; color: var(--slate); margin: 0 0 14px; }
.crumb a { color: var(--slate); text-decoration: none; border-bottom: 1px solid var(--line); }
.orient {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
}
.hero { position: relative; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(201,132,42,0.25);
  pointer-events: none;
}
.statrow { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.statrow b { display: block; font-family: "IBM Plex Serif", serif; font-size: 22px; color: #fff; }
.statrow span { color: #c9c2b6; font-size: 13px; }
.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.industry-card::before {
  content: "";
  position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--amber);
}
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(14,26,43,.22); }
.ticket {
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ticket:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(14,26,43,.12); }
.ticket-stub {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--ink), var(--ink) 8px, #1b2c44 8px, #1b2c44 16px);
  margin: -16px -16px 12px;
}
.desk-card { transition: transform .2s ease; }
.desk-card:hover { transform: translateY(-3px); }
.btn { transition: transform .15s ease, filter .15s ease; }
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
@media (max-width: 860px) {
  .orient { grid-template-columns: 1fr; }
  .aisle-bar { top: 60px; }
}
  .product-hero, .steps, footer.site .cols { grid-template-columns: 1fr; }
  .buybox { position: static; }
  nav.primary { display: none; }
  nav.primary.open { display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 68px; background: var(--paper); padding: 16px; border-bottom: 1px solid var(--line); }
  .hamburger { display: block; }
}

.hero-full { min-height: 86vh; display: flex; align-items: flex-end; padding: 88px 0 72px; }
.display {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 16ch;
  background: linear-gradient(180deg, #8b97a4 0%, #FAF8F4 72%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.display-sm {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-sm.fog { color: var(--fog); }
.marquee {
  background: var(--ink);
  border-top: 1px solid rgba(201,132,42,.35);
  overflow: hidden;
  padding: 16px 0 18px;
}
.marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: ticker 42s linear infinite;
  color: #d7d1c6;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
}
.marquee-track span::after { content: " ·"; color: var(--amber); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.sheet-top {
  background: var(--paper);
  border-radius: 40px 40px 0 0;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.ink-sheet {
  background: var(--ink);
  color: #d7d1c6;
  border-radius: 40px 40px 0 0;
}
.ink-sheet h3 { color: var(--fog); }
.service-list { list-style: none; padding: 0; margin: 28px 0 0; }
.service-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.service-list span {
  font-family: "IBM Plex Serif", serif;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 0.8;
  color: var(--fog);
}
.industry-card em {
  font-style: normal;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--amber);
}
@media (max-width: 860px) {
  .service-list li { grid-template-columns: 1fr; }
  .hero-full { min-height: auto; }
}

/* 2026 visual system: a more editorial, premium expression of the existing LOC brand. */
:root {
  --ink: #0a1320;
  --slate: #576678;
  --amber: #f4ad42;
  --paper: #f7f4ee;
  --green: #2f7b64;
  --clay: #b9533d;
  --graph: #142234;
  --fog: #fffdf8;
  --line: rgba(10, 19, 32, .12);
  --shadow: 0 20px 50px rgba(10, 19, 32, .09);
}
body { font-family: "Manrope", system-ui, sans-serif; letter-spacing: -.012em; }
h1, h2, h3, .serif { font-family: "Playfair Display", Georgia, serif; }
.mono, code, .tag, .kicker, .plate, .stamp, .price, .marquee-track { font-family: "DM Mono", ui-monospace, monospace; }
.wrap { width: min(1240px, calc(100% - 48px)); }
.topbar { background: #07101b; border-bottom: 1px solid rgba(255,255,255,.08); padding: 10px 0; font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
header.site { background: rgba(247, 244, 238, .84); border-bottom-color: rgba(10,19,32,.08); }
header.site .wrap { min-height: 82px; }
.logo { font-size: 14px; letter-spacing: -.025em; }
.plate { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(145deg, #18304a, #09121f); box-shadow: inset 0 1px rgba(255,255,255,.16); }
nav.primary { gap: 26px; }
nav.primary a { font-size: 12px; letter-spacing: .02em; font-weight: 700; }
nav.primary a::after { content: ""; display: block; height: 1px; width: 0; margin-top: 3px; background: var(--amber); transition: width .25s ease; }
nav.primary a:hover::after { width: 100%; }
.btn { min-height: 43px; padding: 11px 17px; border-radius: 999px; font-size: 12px; letter-spacing: .01em; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn-amber { background: var(--amber); color: #182234; box-shadow: 0 10px 22px rgba(244,173,66,.22); }
.btn-amber:hover { box-shadow: 0 13px 28px rgba(244,173,66,.32); }
.btn-ink { background: #0b1725; }
.btn-ghost { border-color: rgba(10,19,32,.2); }
.btn:hover { filter: none; transform: translateY(-2px); }
.hero { background: #091523; isolation: isolate; }
.hero::before { content: ""; position:absolute; inset:0; z-index:-1; background: radial-gradient(circle at 74% 48%, rgba(244,173,66,.16), transparent 20%), radial-gradient(circle at 64% 70%, rgba(56,127,179,.18), transparent 32%), linear-gradient(115deg, transparent 45%, rgba(255,255,255,.03)); }
.hero::after { width: 520px; height: 520px; right: -160px; top: -240px; border-color: rgba(244,173,66,.2); }
.hero-full { min-height: min(790px, calc(100vh - 40px)); align-items: center; padding: 74px 0; }
.hero-grid { display:grid; grid-template-columns: minmax(0, .93fr) minmax(440px, .75fr); gap: 48px; align-items:center; }
.hero-copy { position:relative; z-index:1; }
.kicker { color: var(--amber); font-size: 10px; letter-spacing: .13em; font-weight: 500; }
.display { max-width: 12ch; font-size: clamp(50px, 6.8vw, 100px); line-height: .93; letter-spacing: -.065em; margin: 16px 0 20px; background: linear-gradient(145deg, #fffdf8 12%, #e0e7ea 56%, #9dacb8 100%); -webkit-background-clip:text; background-clip:text; }
.hero p.lead { max-width: 47ch; font-size: 17px; line-height:1.7; color:#bdc8d2; }
.hero-actions { margin-top: 32px; }
.hero-actions .btn { gap: 9px; }
.statrow { gap:0; margin-top:48px; border-top: 1px solid rgba(255,255,255,.15); max-width: 600px; }
.statrow div { padding:17px 28px 0 0; margin-right:28px; border-right: 1px solid rgba(255,255,255,.12); }
.statrow div:last-child { border:0; }
.statrow b { font-family:"Manrope", sans-serif; font-size:26px; letter-spacing:-.06em; }
.statrow span { display:block; max-width:115px; font-family:"DM Mono",monospace; font-size:9px; line-height:1.45; letter-spacing:.04em; text-transform:uppercase; }
.hero-note { color:#94a3b1 !important; margin-top:22px !important; font-size:12px; line-height:1.65; }
.operator-map { position:relative; min-height:470px; overflow:hidden; border:1px solid rgba(255,255,255,.15); border-radius:30px; background:linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025)); box-shadow: 0 30px 70px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.12); }
.map-grid { position:absolute; inset:0; opacity:.32; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 32px 32px; mask-image:linear-gradient(to bottom, black, transparent); }
.map-orbit { position:absolute; border:1px solid rgba(244,173,66,.4); border-radius:50%; }
.orbit-one { width:400px; height:400px; left:50%; top:50%; transform:translate(-50%,-50%); }
.orbit-two { width:290px; height:290px; left:50%; top:50%; transform:translate(-50%,-50%) rotate(48deg); border-color:rgba(139,205,245,.33); }
.map-line { position:absolute; height:1px; transform-origin:left center; background:linear-gradient(90deg, rgba(244,173,66,.76), transparent); }
.line-one { width:155px; left:50%; top:48%; transform:rotate(-34deg); }.line-two { width:145px; left:50%; top:51%; transform:rotate(150deg); }.line-three { width:138px; left:50%; top:51%; transform:rotate(44deg); }
.map-node { position:absolute; display:grid; place-items:center; border-radius:50%; }
.map-node i { display:block; width:9px; height:9px; border-radius:50%; background:#f4ad42; box-shadow:0 0 0 6px rgba(244,173,66,.12), 0 0 30px #f4ad42; }
.node-main { width:112px; height:112px; left:calc(50% - 56px); top:calc(50% - 56px); border:1px solid rgba(255,255,255,.5); background:radial-gradient(circle at 35% 35%, #35536c, #102133 70%); box-shadow: 0 0 45px rgba(111,190,239,.25), inset 0 1px rgba(255,255,255,.35); }
.node-main span { margin-top: 8px; color:#fff; font:500 11px "DM Mono",monospace; letter-spacing:.14em; }.node-main i { position:absolute; top:28px; }
.node-a { left:21%; top:25%; }.node-b { right:18%; top:22%; }.node-c { right:23%; bottom:24%; }.node-b i { background:#8bcdf5; box-shadow:0 0 0 6px rgba(139,205,245,.12), 0 0 30px #8bcdf5; }
.map-label, .map-corner { position:absolute; color:#cfd9e2; font:500 10px "DM Mono", monospace; letter-spacing:.16em; }.label-a { left:14%; top:32%; }.label-b { right:12%; top:29%; }.label-c { right:16%; bottom:31%; }.map-corner { left:24px; bottom:20px; color:#8193a3; font-size:8px; }
.marquee { padding: 17px 0; border-color:rgba(244,173,66,.22); }.marquee-track { font-size:10px; }
.section { padding: 104px 0; }.sheet-top, .ink-sheet { border-radius:32px 32px 0 0; }.sheet-top { margin-top:-22px; }
.display-sm, .section h2 { font-size:clamp(38px, 4.6vw, 70px); line-height:.98; letter-spacing:-.055em; margin-top:12px; }.section h2:not(.display-sm) { font-size:clamp(32px, 3.6vw, 54px); }
.grid { gap:18px; }.grid-4 { grid-template-columns:repeat(4, minmax(0, 1fr)); }.grid-3 { grid-template-columns:repeat(3, minmax(0, 1fr)); }
.industry-card { min-height:235px; padding:22px; border-radius:18px; background:linear-gradient(145deg, #142c43, #0a1523 76%); border:1px solid rgba(255,255,255,.1); box-shadow:none; }.industry-card::before { height:2px; background:linear-gradient(90deg, var(--amber), transparent); }.industry-card:hover { transform:translateY(-6px); box-shadow:0 24px 45px rgba(10,19,32,.22); }.industry-card strong { font-family:"Manrope", sans-serif; font-size:21px; letter-spacing:-.04em; }.industry-card span { line-height:1.55; }.industry-card em { color:var(--amber); }
.chips { gap:8px; }.chip { border-radius:999px; padding:7px 11px; font-family:"DM Mono",monospace; font-size:10px; background:rgba(255,255,255,.55); }.chip:hover { background:var(--ink); color:#fff; }
.ticket, .desk-card, .card { border-radius:18px; border-color:rgba(10,19,32,.1); box-shadow:none; }.ticket { min-height:260px; padding:20px; gap:11px; }.ticket:hover { transform:translateY(-6px); box-shadow:var(--shadow); }.ticket-stub { height:5px; margin:-20px -20px 8px; background:linear-gradient(90deg, var(--amber), #e7cc91 42%, #173a56 42%, #173a56); }.ticket a.title { font-family:"Manrope", sans-serif; font-size:18px; line-height:1.28; letter-spacing:-.04em; }.stamp { border-radius:999px; border-color:rgba(10,19,32,.18); padding:4px 8px; font-size:9px; align-self:flex-start; }
.ink-sheet { background:#0b1725; }.service-list { max-width:900px; }.service-list li { grid-template-columns:155px 1fr; padding:34px 0; }.service-list span { font-family:"Manrope",sans-serif; font-size:clamp(46px,6vw,76px); color:var(--amber); }.service-list h3 { font-size:28px; margin:0; }.service-list p { color:#b6c2cc; max-width:52ch; }
.desk-card { padding:22px !important; min-height:190px; background:linear-gradient(155deg,#fff,#ebe4d8); }.desk-card h3 { font-size:22px; margin:20px 0 7px; }.desk-card .plate { width:42px; height:42px; }
.video-frame { border-radius:24px; background:radial-gradient(circle at 45% 40%, #23425b, #0a1624 64%); border:1px solid rgba(255,255,255,.12); }.notice { border-radius:10px; border-left-width:4px; }
footer.site { margin-top:0; padding:72px 0 28px; background:#09131f; } footer.site .logo { color:#fff; } footer.site .meta { color:#96a6b6; }
@media (max-width: 980px) { .hero-grid { grid-template-columns:1fr; }.operator-map { min-height:350px; max-width:620px; width:100%; }.grid-4 { grid-template-columns:repeat(2, minmax(0,1fr)); }.grid-3 { grid-template-columns:repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .wrap { width:min(100% - 32px, 1240px); }.topbar .wrap { font-size:8px; }.topbar a { display:none; } header.site .wrap { min-height:68px; }.utils .btn-ghost { display:none; }.hero-full { padding:48px 0 54px; }.display { font-size:clamp(46px,14vw,68px); }.hero p.lead { font-size:15px; }.statrow { margin-top:36px; }.statrow div { margin-right:12px; padding-right:12px; }.statrow b { font-size:21px; }.operator-map { min-height:315px; border-radius:22px; }.orbit-one { width:300px; height:300px; }.orbit-two { width:210px; height:210px; }.section { padding:70px 0; }.grid-4, .grid-3 { grid-template-columns:1fr; }.service-list li { grid-template-columns:72px 1fr; gap:12px; }.service-list h3 { font-size:24px; }.service-list span { font-size:42px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; scroll-behavior:auto !important; } }

/* Packaging improvements: brand seal, legibility, and product-page information hierarchy. */
.plate { background-image: url("../assets/loc-seal.jpg"); background-position:center; background-size:cover; background-color:#fff; color:transparent; font-size:0; border-radius:50%; box-shadow:0 2px 10px rgba(10,19,32,.16); }
.desk-card .plate { background-image:none; background-color:var(--ink); color:var(--fog); font-size:11px; border-radius:12px; }
footer.site .logo .plate { filter:invert(1); }
.marquee { position:relative; z-index:3; }.sheet-top { margin-top:0; }
.display { font-size:clamp(58px,7.6vw,116px); max-width:11ch; }.hero-full { min-height:min(820px, calc(100vh - 40px)); }
.industry-card { min-height:270px; padding:26px; }.industry-card strong { font-size:25px; }.industry-card span { font-size:14px; line-height:1.65; }
.product-hero { gap:46px; padding:64px 0 36px; }.product-hero > div > h1 { font-size:clamp(42px,5vw,74px); line-height:.96; letter-spacing:-.06em; margin:14px 0; }.product-hero > div > p { font-size:18px; max-width:56ch; }
.product-story { margin-top:42px; }.job-brief { display:grid; grid-template-columns:1fr 1fr; overflow:hidden; border:1px solid var(--line); border-radius:22px; background:#fff; }.job-brief > div { padding:30px; }.job-brief > div + div { background:#102033; color:var(--fog); }.job-brief h2, .fact-card h2, .limits-card h2, .industry-carousel-heading h2 { margin:10px 0 10px; font-size:clamp(24px,2.2vw,34px); letter-spacing:-.045em; }.job-brief p, .fact-card p, .limits-card p, .industry-slide p { margin:0; line-height:1.7; }.job-brief > div + div .kicker { color:#f4ad42; }
.pack-facts { display:grid; grid-template-columns:1.12fr 1.12fr .76fr; gap:14px; margin-top:14px; }.fact-card { min-height:255px; padding:27px; border:1px solid var(--line); border-radius:20px; background:linear-gradient(145deg,#fff,#f0ebe1); }.fact-card > span { display:block; font:500 11px "DM Mono",monospace; color:var(--amber); letter-spacing:.12em; }.fact-card .mono { color:var(--slate); font-size:10px; margin-top:16px; }.fact-time { background:#153047; color:#fff; border-color:#153047; }.fact-time h2 { color:#fff; }
.limits-card { padding:30px; margin-top:14px; border-left:4px solid var(--amber); border-radius:14px; background:#e9e1d2; }.limits-card h2 { margin-top:8px; }
.industry-carousel-section { margin-top:56px; }.industry-carousel-heading { display:flex; justify-content:space-between; align-items:end; gap:24px; margin-bottom:18px; }.industry-carousel-heading h2 { font-size:clamp(30px,3.4vw,50px); }.carousel-controls { display:flex; gap:8px; }.carousel-button { width:46px; height:46px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; background:#fff; color:var(--ink); font-size:20px; cursor:pointer; transition:transform .2s ease, background .2s ease; }.carousel-button:hover { background:var(--ink); color:#fff; transform:translateY(-2px); }
.industry-carousel { display:flex; gap:14px; overflow-x:auto; padding:2px 1px 14px; scroll-snap-type:x mandatory; scrollbar-color:var(--amber) transparent; }.industry-slide { flex:0 0 min(520px, calc(100% - 18px)); min-height:220px; padding:30px; scroll-snap-align:start; border-radius:20px; background:linear-gradient(135deg,#122b42,#091523); color:#fff; box-shadow:0 16px 34px rgba(10,19,32,.14); }.industry-slide h3 { margin:12px 0 10px; font-family:"Manrope",sans-serif; font-size:28px; letter-spacing:-.05em; }.industry-slide .kicker { color:var(--amber); }
@media (max-width: 860px) { .product-hero { grid-template-columns:minmax(0, 1fr); padding-top:42px; }.product-hero > *, .product-story { min-width:0; }.job-brief, .pack-facts { grid-template-columns:1fr; }.job-brief > div { padding:24px; }.fact-card { min-height:0; }.industry-carousel-section { margin-top:42px; } }
@media (max-width: 640px) { .display { font-size:clamp(52px,15vw,74px); }.hero-full { min-height:auto; }.industry-card { min-height:210px; padding:22px; }.industry-card strong { font-size:24px; }.industry-card span { font-size:14px; }.product-hero > div > h1 { font-size:42px; }.product-hero > div > p { font-size:16px; }.job-brief > div, .fact-card, .limits-card, .industry-slide { padding:22px; }.industry-carousel-heading { align-items:start; flex-direction:column; }.industry-slide { flex-basis:calc(100% - 10px); min-height:240px; } }
