/* ALIT TACTIC: site stylesheet
   Palette is derived from the three hexagons in the logo mark. */

:root {
  --ink: #0c0e0a;
  --ink-2: #13160f;
  --ink-3: #1b1f16;
  --line: rgba(232, 226, 210, .12);
  --line-strong: rgba(232, 226, 210, .26);
  --bone: #e8e2d2;
  --bone-dim: #b9b4a4;
  --muted: #8d8b7d;
  --plate: #e4dfd1;
  --plate-2: #d8d2c1;
  --plate-ink: #1a1c15;
  --plate-muted: #5f5d52;

  --hex-brown: #504324;
  --hex-green: #546c42;
  --hex-tan: #a49972;
  --signal: #c8b98a;       /* tan, lifted for contrast on ink */

  --f-display: "Archivo", system-ui, sans-serif;
  --f-body: "Archivo", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --gutter: clamp(16px, 4vw, 56px);
  --max: 1440px;
  --header-h: 68px;
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  font-variation-settings: "wdth" 100;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
.hero__media picture, .statement__media picture, .program__bg picture, .cta__media picture, .page-head__media picture, .frame picture { display: block; width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }
::selection { background: var(--hex-green); color: var(--bone); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--bone); color: var(--ink); padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- type ---------- */
.mono, .eyebrow, .code {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow { color: var(--signal); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.display {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 72;
  font-weight: 800;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.01em;
  margin: 0;
}
.h-xl { font-size: clamp(52px, 9.2vw, 148px); }
.h-lg { font-size: clamp(40px, 6vw, 92px); }
.h-md { font-size: clamp(30px, 3.6vw, 54px); }
.h-sm { font-size: clamp(22px, 2vw, 30px); line-height: 1; }
.lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--bone-dim); max-width: 60ch; }
.muted { color: var(--muted); }
.tan { color: var(--signal); }
p { margin: 0 0 1em; }

/* ---------- buttons ---------- */
.btn {
  --b: var(--bone);
  display: inline-flex; align-items: center; gap: 14px;
  height: 52px; padding: 0 22px;
  font-family: var(--f-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--b); color: var(--b);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--solid { background: var(--bone); color: var(--ink); }
.btn--solid:hover { background: var(--signal); border-color: var(--signal); }
.btn--ghost:hover { background: var(--bone); color: var(--ink); }
.btn--dark { --b: var(--plate-ink); }
.btn--dark.btn--solid { background: var(--plate-ink); color: var(--plate); }
.btn--dark.btn--solid:hover { background: var(--hex-green); border-color: var(--hex-green); }
.link-arrow { font-family: var(--f-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; display: inline-flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--line-strong); padding-bottom: 4px; }
.link-arrow svg { width: 16px; height: 16px; flex: none; }
.link-arrow:hover { border-color: var(--signal); color: var(--signal); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  transition: background .3s, border-color .3s, transform .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid { background: rgba(12, 14, 10, .88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-color: var(--line); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header .wrap { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img.mark { height: 30px; width: auto; }
.brand img.word { height: 15px; width: auto; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; padding: 8px 12px; color: var(--bone-dim); position: relative; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--bone); }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 1px; background: var(--signal); }
.inq-btn { display: inline-flex; align-items: center; gap: 10px; height: 38px; padding: 0 14px; border: 1px solid var(--line-strong); font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.inq-btn:hover { border-color: var(--bone); }
.inq-count { min-width: 22px; height: 22px; display: grid; place-items: center; background: var(--bone); color: var(--ink); font-size: 11px; padding: 0 5px; }
.inq-count[data-n="0"] { background: transparent; color: var(--muted); border: 1px solid var(--line-strong); }
.inq-count.bump { animation: bump .5s var(--ease); }
@keyframes bump { 40% { transform: scale(1.35); background: var(--signal); } }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line-strong); place-items: center; }
.menu-toggle span { display: block; width: 18px; height: 1px; background: var(--bone); box-shadow: 0 6px 0 var(--bone), 0 -6px 0 var(--bone); }

@media (max-width: 900px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto; flex-direction: column; background: var(--ink); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 24px; display: none; }
  .nav.is-open { display: flex; }
  .nav a { font-size: 15px; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"]::after { display: none; }
  .menu-toggle { display: grid; }
  .inq-btn { margin-left: auto; }
  .inq-btn .label { display: none; }
  .brand img.word { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; transform: scale(1.06); animation: settle 2.4s var(--ease) forwards; }
@keyframes settle { to { transform: scale(1); } }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,14,10,.55) 0%, rgba(12,14,10,0) 22%),
    linear-gradient(0deg, rgba(12,14,10,1) 0%, rgba(12,14,10,.82) 26%, rgba(12,14,10,0) 62%),
    linear-gradient(90deg, rgba(12,14,10,.55) 0%, rgba(12,14,10,0) 55%); }
.hero__inner { padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(28px, 5vw, 56px); width: 100%; }
.hero h1 { max-width: 12ch; }
.hero h1 .thin { font-weight: 300; color: var(--bone-dim); }
.hero__row { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-top: 36px; }
.hero__row .lead { margin: 0; color: var(--bone); opacity: .86; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.hero__telemetry { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-strong); margin-top: clamp(32px, 5vw, 64px); }
.hero__telemetry div { padding: 14px 16px 0 0; }
.hero__telemetry div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.hero__telemetry b { display: block; font-family: var(--f-display); font-variation-settings: "wdth" 75; font-weight: 700; font-size: clamp(22px, 2.4vw, 34px); line-height: 1; }
.hero__telemetry span { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 800px) {
  .hero__row { grid-template-columns: 1fr; }
  .hero__actions { justify-content: flex-start; }
  .hero__telemetry { grid-template-columns: repeat(2, 1fr); }
  .hero__telemetry div:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero__telemetry div:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 14px; }
}

/* corner ticks used on framed media */
.ticks { position: relative; }
.ticks::before, .ticks::after { content: ""; position: absolute; width: 14px; height: 14px; border: 1px solid var(--signal); pointer-events: none; z-index: 2; }
.ticks::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.ticks::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* ---------- sections ---------- */
.section { padding-block: clamp(72px, 10vw, 150px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 90px); }
.section--plate { background: var(--plate); color: var(--plate-ink); }
.section--plate .muted, .section--plate .lead { color: var(--plate-muted); }
.section--plate .eyebrow { color: var(--hex-green); }
.section--ink2 { background: var(--ink-2); }
.sec-head { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 24px 40px; margin-bottom: clamp(40px, 5vw, 72px); }
.sec-head__idx { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; color: var(--muted); padding-top: 10px; border-top: 1px solid var(--line-strong); }
.section--plate .sec-head__idx { border-color: rgba(26,28,21,.3); color: var(--plate-muted); }
.sec-head .lead { margin-top: 22px; }
@media (max-width: 800px) { .sec-head { grid-template-columns: 1fr; } }

/* ---------- layer system (home) ---------- */
.layers { border-top: 1px solid var(--line-strong); }
.layer { display: grid; grid-template-columns: 90px minmax(0, 1.2fr) minmax(0, 1fr) 150px; align-items: center; gap: 24px; min-height: 104px; border-bottom: 1px solid var(--line); position: relative; transition: background .35s var(--ease); padding-inline: 8px; }
.layer__idx { font-family: var(--f-mono); font-size: 13px; color: var(--muted); }
.layer__name { font-family: var(--f-display); font-variation-settings: "wdth" 72; font-weight: 800; text-transform: uppercase; font-size: clamp(28px, 3.4vw, 50px); line-height: 1; transition: color .3s, transform .35s var(--ease); }
.layer__desc { color: var(--bone-dim); font-size: 15px; margin: 0; }
.layer__count { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: right; display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.layer__count svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.layer__peek { position: absolute; right: 190px; top: 50%; width: 170px; height: 170px; background: var(--plate); transform: translateY(-50%) scale(.85) rotate(-3deg); opacity: 0; transition: opacity .3s, transform .45s var(--ease); pointer-events: none; z-index: 3; display: grid; place-items: center; padding: 14px; }
.layer__peek img { mix-blend-mode: multiply; max-height: 100%; object-fit: contain; }
.layer:hover { background: var(--ink-3); }
.layer:hover .layer__name { color: var(--signal); transform: translateX(8px); }
.layer:hover .layer__count svg { transform: translateX(4px); }
.layer:hover .layer__peek { opacity: 1; transform: translateY(-50%) scale(1) rotate(-3deg); }
@media (max-width: 1100px) { .layer__peek { display: none; } }
@media (max-width: 800px) {
  .layer { grid-template-columns: 44px minmax(0, 1fr) auto; min-height: 84px; padding-block: 16px; }
  .layer__desc { display: none; }
  .layer__count .n { display: none; }
}

/* ---------- flagship (TSS-1) ---------- */
.flagship { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.flagship__stage { position: relative; aspect-ratio: 4 / 5; background: radial-gradient(60% 55% at 50% 45%, #2a3122 0%, var(--ink-2) 70%); border: 1px solid var(--line); overflow: hidden; }
.flagship__stage img { position: absolute; inset: 6% 8%; width: 84%; height: 88%; object-fit: contain; opacity: 0; transform: translateY(12px); transition: opacity .5s, transform .6s var(--ease); filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }
.flagship__stage img.is-on { opacity: 1; transform: none; }
.flagship__grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(70% 60% at 50% 50%, #000 20%, transparent 80%); -webkit-mask-image: radial-gradient(70% 60% at 50% 50%, #000 20%, transparent 80%); opacity: .5; }
.flagship__label { position: absolute; left: 16px; bottom: 14px; z-index: 2; font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.views { display: flex; gap: 0; border: 1px solid var(--line-strong); width: max-content; margin-top: 18px; }
.views button { font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; padding: 10px 16px; color: var(--muted); }
.views button + button { border-left: 1px solid var(--line-strong); }
.views button[aria-pressed="true"] { background: var(--bone); color: var(--ink); }
.specs { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-strong); margin: 32px 0; }
.specs div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.specs div:nth-child(odd) { padding-right: 16px; }
.specs div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.specs dt { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.specs dd { margin: 4px 0 0; font-family: var(--f-display); font-variation-settings: "wdth" 80; font-weight: 700; font-size: 22px; }
.detail-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.detail-strip figure { margin: 0; position: relative; overflow: hidden; aspect-ratio: 1; }
.detail-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.detail-strip figure:hover img { transform: scale(1.06); }
.detail-strip figcaption { position: absolute; left: 8px; bottom: 8px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; background: rgba(12,14,10,.8); padding: 3px 6px; }
@media (max-width: 900px) { .flagship { grid-template-columns: 1fr; } }

/* ---------- full-bleed statement ---------- */
.statement { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.statement__media { position: absolute; inset: -8% 0; z-index: -2; }
.statement__media img { width: 100%; height: 100%; object-fit: cover; }
.statement::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,14,10,.92) 0%, rgba(12,14,10,.6) 45%, rgba(12,14,10,.1) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 25%), linear-gradient(180deg, var(--ink) 0%, transparent 20%); }
.statement blockquote { margin: 0; max-width: 980px; }
.statement blockquote .display { max-width: 15ch; }
.statement cite { display: block; margin-top: 28px; font-style: normal; }

/* ---------- numbers ---------- */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-strong); }
.numbers > div { padding: 28px 24px 8px 0; }
.numbers > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.numbers b { display: block; font-family: var(--f-display); font-variation-settings: "wdth" 68; font-weight: 800; font-size: clamp(56px, 7vw, 110px); line-height: .9; }
.numbers b sup { font-size: .4em; vertical-align: top; position: relative; top: .25em; color: var(--signal); margin-left: 4px; }
.numbers span { display: block; margin-top: 12px; color: var(--bone-dim); font-size: 15px; max-width: 22ch; }
@media (max-width: 800px) {
  .numbers { grid-template-columns: 1fr 1fr; }
  .numbers > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .numbers > div:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- process ---------- */
.process { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); counter-reset: step; }
.process li { padding: 22px 18px 0 0; border-top: 1px solid rgba(26,28,21,.3); position: relative; counter-increment: step; }
.process li::before { content: "0" counter(step); font-family: var(--f-mono); font-size: 12px; color: var(--hex-green); display: block; margin-bottom: 30px; }
.process li::after { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; background: var(--plate-ink); }
.process h3 { font-family: var(--f-display); font-variation-settings: "wdth" 80; font-weight: 700; font-size: 20px; line-height: 1.1; margin: 0 0 8px; text-transform: uppercase; }
.process p { font-size: 14px; color: var(--plate-muted); margin: 0; }
@media (max-width: 1000px) { .process { grid-template-columns: repeat(3, 1fr); row-gap: 36px; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr 1fr; } }

/* ---------- split / cards ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.split--top { align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.frame { position: relative; overflow: hidden; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 16 / 10; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-strong); }
.pillars article { padding: 28px 28px 8px 0; }
.pillars article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.pillars h3 { font-family: var(--f-display); font-variation-settings: "wdth" 78; font-weight: 700; text-transform: uppercase; font-size: 24px; line-height: 1.05; margin: 18px 0 12px; }
.pillars p { color: var(--bone-dim); font-size: 15px; }
.pillars .hexi { width: 40px; height: 44px; overflow: visible; }
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .pillars article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}

/* program cards (home) */
.programs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.program { position: relative; min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; overflow: hidden; border: 1px solid var(--line); isolation: isolate; }
.program__bg { position: absolute; inset: 0; z-index: -2; }
.program--render { background: radial-gradient(70% 80% at 78% 40%, #2a3122 0%, var(--ink-2) 70%); }
.program--render .program__bg img { object-fit: contain; object-position: 92% 30%; width: 100%; height: 88%; margin-top: 2%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }
.program--render::before { background: linear-gradient(0deg, rgba(12,14,10,.95) 8%, rgba(12,14,10,0) 55%), linear-gradient(90deg, rgba(19,22,15,.9) 0%, rgba(19,22,15,0) 60%); }
.program__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.program::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(12,14,10,.95) 10%, rgba(12,14,10,.2) 70%); }
.program:hover .program__bg img { transform: scale(1.05); }
.program .code { color: var(--signal); margin-bottom: 12px; }
.program p { color: var(--bone-dim); max-width: 44ch; }
@media (max-width: 900px) { .programs { grid-template-columns: 1fr; } .program { min-height: 380px; } }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; isolation: isolate; border-top: 1px solid var(--line); }
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.15) brightness(.85); }
.cta__media::after { content: ""; position: absolute; inset: 0; background: var(--hex-brown); mix-blend-mode: color; opacity: .85; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,14,10,.94) 0%, rgba(12,14,10,.7) 55%, rgba(12,14,10,.35) 100%); }
.cta .wrap { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 40px; align-items: end; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media (max-width: 900px) { .cta .wrap { grid-template-columns: 1fr; } }

/* ---------- page header (inner pages) ---------- */
.page-head { padding-top: calc(var(--header-h) + clamp(56px, 8vw, 120px)); padding-bottom: clamp(40px, 5vw, 72px); position: relative; overflow: hidden; isolation: isolate; border-bottom: 1px solid var(--line); }
.page-head--media { min-height: 72vh; display: flex; align-items: flex-end; }
.page-head__media { position: absolute; inset: 0; z-index: -2; }
.page-head__media img { width: 100%; height: 100%; object-fit: cover; }
.page-head--media::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,14,10,.6) 0%, rgba(12,14,10,0) 20%), linear-gradient(0deg, var(--ink) 0%, rgba(12,14,10,.7) 40%, rgba(12,14,10,.2) 100%); }
.page-head h1.h-xl { font-size: clamp(48px, 7.4vw, 120px); overflow-wrap: anywhere; }
.crumbs { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.crumbs a:hover { color: var(--bone); }
.crumbs span[aria-hidden] { color: var(--line-strong); }
.page-head__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 40px; align-items: end; }
.page-head__grid .lead { margin: 0; }
@media (max-width: 900px) { .page-head__grid { grid-template-columns: 1fr; } }

/* ---------- catalog index ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.cat-card { grid-column: span 4; background: var(--plate); color: var(--plate-ink); position: relative; display: flex; flex-direction: column; min-height: 440px; overflow: hidden; transition: background .3s; }
.cat-card:nth-child(1), .cat-card:nth-child(2) { grid-column: span 6; min-height: 520px; }
.cat-card:hover { background: var(--plate-2); }
.cat-card__top { display: flex; justify-content: space-between; padding: 18px 20px 0; font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--plate-muted); }
.cat-card__img { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; padding: 10px 20px; gap: 6px; }
.cat-card__img img { mix-blend-mode: multiply; width: 100%; aspect-ratio: 1; object-fit: contain; transition: transform .5s var(--ease); }
.cat-card__img img:nth-child(2) { transform: translateY(-10px); }
.cat-card:hover .cat-card__img img { transform: translateY(-6px); }
.cat-card:hover .cat-card__img img:nth-child(2) { transform: translateY(-18px); }
.cat-card__foot { padding: 0 20px 20px; display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.cat-card__foot h2 { font-family: var(--f-display); font-variation-settings: "wdth" 72; font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 3vw, 44px); line-height: .95; margin: 0; }
.cat-card__foot p { margin: 6px 0 0; font-size: 14px; color: var(--plate-muted); }
.cat-card__arrow { width: 48px; height: 48px; border: 1px solid rgba(26,28,21,.35); display: grid; place-items: center; flex: none; transition: background .3s, color .3s; }
.cat-card:hover .cat-card__arrow { background: var(--plate-ink); color: var(--plate); }
.cat-card__arrow svg { width: 18px; height: 18px; }
@media (max-width: 1000px) { .cat-card, .cat-card:nth-child(1), .cat-card:nth-child(2) { grid-column: span 6; min-height: 420px; } }
@media (max-width: 640px) { .cat-card, .cat-card:nth-child(1), .cat-card:nth-child(2) { grid-column: span 12; min-height: 380px; } }

/* ---------- category page ---------- */
.cat-nav { position: sticky; top: var(--header-h); z-index: 20; background: rgba(12,14,10,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: top .35s var(--ease); }
.site-header.is-hidden ~ main .cat-nav { top: 0; }
.cat-nav .wrap { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-block: 10px; }
.cat-nav .wrap::-webkit-scrollbar { display: none; }
.cat-nav a { flex: none; font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 8px 12px; color: var(--muted); border: 1px solid transparent; }
.cat-nav a:hover { color: var(--bone); }
.cat-nav a[aria-current="page"] { color: var(--bone); border-color: var(--line-strong); }
.cat-nav a b { font-weight: 400; color: var(--signal); margin-right: 6px; }

.toolbar { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.filters { display: flex; flex-wrap: wrap; gap: 6px; }
.filters button { font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 9px 14px; border: 1px solid var(--line-strong); color: var(--bone-dim); }
.filters button:hover { color: var(--bone); border-color: var(--bone-dim); }
.filters button[aria-pressed="true"] { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.filters button sup { color: inherit; opacity: .6; margin-left: 4px; }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
@media (max-width: 600px) {
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .prod__meta span:last-child { display: none; }
  .prod__img { padding: 10px 12px 4px; }
  .prod__body { padding: 0 12px 12px; }
  .prod__body h3 { font-size: 16px; }
  .add { padding: 10px 12px; font-size: 11px; }
}
.prod { background: var(--plate); color: var(--plate-ink); display: flex; flex-direction: column; position: relative; transition: transform .35s var(--ease), background .3s; }
.prod[hidden] { display: none; }
.prod:hover { background: var(--plate-2); }
.prod__open { display: block; text-align: left; width: 100%; }
.prod__meta { display: flex; justify-content: space-between; gap: 8px; padding: 14px 16px 0; font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--plate-muted); }
.prod__img { aspect-ratio: 1; padding: 18px 26px 6px; display: grid; place-items: center; }
.prod__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .5s var(--ease); }
/* legacy photos sit on near-white, not pure white: lift the background so multiply blends it away */
.prod__img img, .cat-card__img img, .layer__peek img, .inq-row .thumb img { filter: brightness(1.07) contrast(1.08); }
.prod:hover .prod__img img { transform: scale(1.04); }
.prod__body { padding: 0 16px 14px; }
.prod__body h3 { font-family: var(--f-display); font-variation-settings: "wdth" 85; font-weight: 700; font-size: 19px; line-height: 1.15; margin: 0 0 4px; }
.prod__body .cw { font-size: 14px; color: var(--plate-muted); display: flex; align-items: center; gap: 8px; }
.prod__foot { margin-top: auto; border-top: 1px solid rgba(26,28,21,.14); display: flex; }
.add { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; transition: background .25s, color .25s; }
.add:hover { background: var(--plate-ink); color: var(--plate); }
.add .ic { width: 18px; height: 18px; display: grid; place-items: center; border: 1px solid currentColor; font-size: 14px; line-height: 1; }
.add[aria-pressed="true"] { background: var(--hex-green); color: var(--bone); }
.add[aria-pressed="true"] .ic { background: var(--bone); color: var(--hex-green); border-color: var(--bone); }

/* product dialog */
dialog.sheet { padding: 0; border: 0; background: var(--plate); color: var(--plate-ink); width: min(1080px, calc(100vw - 32px)); max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); overflow: auto; }
dialog.sheet::backdrop { background: rgba(6,7,5,.78); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
dialog.sheet[open] { animation: sheet-in .4s var(--ease); }
@keyframes sheet-in { from { opacity: 0; transform: translateY(24px); } }
.sheet__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.sheet__media { background: #fff; display: grid; place-items: center; padding: 40px; min-height: 420px; position: relative; }
.sheet__media img { max-height: 560px; width: 100%; object-fit: contain; }
.sheet__body { padding: 40px 36px 32px; display: flex; flex-direction: column; }
.sheet__close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; display: grid; place-items: center; background: var(--plate-ink); color: var(--plate); z-index: 2; }
.sheet__close:hover { background: var(--hex-green); }
.sheet h2 { font-family: var(--f-display); font-variation-settings: "wdth" 75; font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 3.4vw, 46px); line-height: .95; margin: 14px 0 18px; }
.sheet dl { display: grid; grid-template-columns: 120px 1fr; margin: 22px 0; border-top: 1px solid rgba(26,28,21,.2); }
.sheet dt, .sheet dd { padding: 10px 0; border-bottom: 1px solid rgba(26,28,21,.12); margin: 0; font-size: 14px; }
.sheet dt { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--plate-muted); padding-top: 12px; }
.sheet__note { font-size: 13px; color: var(--plate-muted); border-left: 2px solid var(--hex-tan); padding-left: 12px; }
.qty { display: flex; align-items: center; border: 1px solid rgba(26,28,21,.35); height: 52px; }
.qty button { width: 44px; height: 100%; font-size: 18px; }
.qty button:hover { background: var(--plate-2); }
.qty input { width: 90px; height: 100%; border: 0; border-inline: 1px solid rgba(26,28,21,.2); background: transparent; text-align: center; font-family: var(--f-mono); font-size: 15px; color: inherit; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.sheet__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 22px; }
@media (max-width: 800px) { .sheet__grid { grid-template-columns: 1fr; } .sheet__media { min-height: 300px; padding: 28px; } .sheet__body { padding: 28px 20px; } }

/* related categories strip */
.next-cats { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.next-cats a { padding: 36px var(--gutter); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background .3s; }
.next-cats a + a { border-left: 1px solid var(--line); text-align: right; flex-direction: row-reverse; }
.next-cats a:hover { background: var(--ink-3); }
.next-cats small { display: block; font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.next-cats strong { font-family: var(--f-display); font-variation-settings: "wdth" 72; font-weight: 800; text-transform: uppercase; font-size: clamp(24px, 3vw, 40px); line-height: 1; }
.next-cats svg { width: 22px; height: 22px; flex: none; }
@media (max-width: 640px) { .next-cats { grid-template-columns: 1fr; } .next-cats a + a { border-left: 0; border-top: 1px solid var(--line); } }

/* ---------- capabilities / signature diagram ---------- */
.bands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.band { border: 1px solid var(--line); padding: 28px; background: var(--ink-2); display: flex; flex-direction: column; gap: 14px; }
.band svg { width: 100%; height: 120px; }
.band h3 { font-family: var(--f-display); font-variation-settings: "wdth" 78; font-weight: 700; text-transform: uppercase; font-size: 24px; margin: 0; }
.band p { margin: 0; color: var(--bone-dim); font-size: 15px; }
.band table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: auto; }
.band td { padding: 8px 0; border-top: 1px solid var(--line); }
.band td + td { text-align: right; font-family: var(--f-mono); color: var(--signal); }
@media (max-width: 900px) { .bands { grid-template-columns: 1fr; } }

.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.chips li { font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 8px 12px; border: 1px solid var(--line-strong); color: var(--bone-dim); }
.section--plate .chips li { border-color: rgba(26,28,21,.25); color: var(--plate-ink); }

.fabric-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.fabric-table th { text-align: left; font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 400; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--line-strong); }
.fabric-table td { padding: 14px 12px 14px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.fabric-table td:last-child { white-space: nowrap; }
.fabric-table td:first-child { font-family: var(--f-mono); font-size: 13px; color: var(--signal); white-space: nowrap; }
.table-scroll { overflow-x: auto; }

/* ---------- drones page ---------- */
.hero--uas .hero__media img { object-position: 50% 45%; }
.hero--uas h1 { max-width: 8ch; }

.uas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 12px; }
.uas { display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--ink); transition: border-color .3s, transform .4s var(--ease); }
.uas:hover { border-color: var(--line-strong); }
.uas__img { aspect-ratio: 16 / 10; overflow: hidden; background: #1a1d24; border-bottom: 1px solid var(--line); }
.uas__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.uas:hover .uas__img img { transform: scale(1.04); }
.uas__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.uas__meta { display: flex; justify-content: space-between; gap: 10px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.uas__body h3 { margin: 0 0 10px; }
.uas__body p { font-size: 14.5px; color: var(--bone-dim); margin: 0 0 18px; }
.uas__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: auto 0 0; border-top: 1px solid var(--line); }
.uas__specs > div { padding: 10px 0; border-bottom: 1px solid var(--line); }
.uas__specs > div:nth-child(even) { padding-left: 14px; border-left: 1px solid var(--line); }
.uas__specs dt { font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.uas__specs dd { margin: 3px 0 0; font-family: var(--f-display); font-variation-settings: "wdth" 82; font-weight: 700; font-size: 17px; }
.uas .prod__foot { border-top: 1px solid var(--line); }
.uas .add { color: var(--bone-dim); }
.uas .add:hover { background: var(--bone); color: var(--ink); }
.uas .add[aria-pressed="true"] { background: var(--hex-green); color: var(--bone); }

.clip { margin: 0; }
.clip video { width: 100%; display: block; border: 1px solid var(--line); background: #000; }
.clip figcaption { margin-top: 8px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.mods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mod { border: 1px solid var(--line); padding: 24px; background: var(--ink-2); transition: background .3s; }
.mod:hover { background: var(--ink-3); }
.mod__top { display: flex; justify-content: space-between; margin-bottom: 28px; font-size: 11px; }
.mod h3 { font-family: var(--f-display); font-variation-settings: "wdth" 80; font-weight: 700; text-transform: uppercase; font-size: 21px; line-height: 1.05; margin: 0 0 10px; }
.mod p { margin: 0; font-size: 14.5px; color: var(--bone-dim); }
@media (max-width: 1000px) { .mods { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .mods { grid-template-columns: 1fr; } .uas-grid { grid-template-columns: 1fr; } }

/* ---------- contact / inquiry ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: clamp(32px, 6vw, 96px); }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
.hq { border-top: 1px solid var(--line-strong); }
.hq > div { padding: 20px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 120px 1fr; gap: 16px; }
.hq dt { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.hq dd { margin: 0; font-size: 18px; }
.hq a:hover { color: var(--signal); }
.coords { font-family: var(--f-mono); font-size: 12px; color: var(--muted); letter-spacing: .06em; }

.inq-list { border: 1px solid var(--line-strong); margin-bottom: 28px; }
.inq-list__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--line); font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.inq-list__empty { padding: 22px 16px; color: var(--bone-dim); font-size: 15px; }
.inq-row { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto auto; gap: 14px; align-items: center; padding: 10px 16px; border-bottom: 1px solid var(--line); }
.inq-row:last-child { border-bottom: 0; }
.inq-row .thumb { width: 64px; height: 64px; background: var(--plate); display: grid; place-items: center; padding: 6px; }
.inq-row .thumb img { mix-blend-mode: multiply; max-height: 100%; object-fit: contain; }
.inq-row strong { display: block; font-weight: 600; font-size: 15px; line-height: 1.25; }
.inq-row small { font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: .06em; }
.inq-row .qty { height: 38px; border-color: var(--line-strong); }
.inq-row .qty input { width: 64px; border-color: var(--line); font-size: 13px; }
.inq-row .qty button { width: 32px; font-size: 15px; }
.inq-row .qty button:hover { background: var(--ink-3); }
.inq-row .rm { width: 32px; height: 32px; display: grid; place-items: center; color: var(--muted); }
.inq-row .rm:hover { color: var(--bone); }
@media (max-width: 560px) { .inq-row { grid-template-columns: 48px minmax(0, 1fr) auto; } .inq-row .thumb { width: 48px; height: 48px; } .inq-row .qty { grid-column: 2; width: max-content; } .inq-row .rm { grid-row: 1; grid-column: 3; } }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { font: inherit; font-size: 16px; color: var(--bone); background: var(--ink-2); border: 1px solid var(--line-strong); padding: 14px; border-radius: 0; width: 100%; transition: border-color .2s; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--bone-dim) 50%), linear-gradient(135deg, var(--bone-dim) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--signal); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #b8664f; }
.fs { grid-column: 1 / -1; display: block; border: 0; border-top: 1px solid var(--line-strong); margin: 0 0 12px; padding: 22px 0 0; min-width: 0; }
.fs legend { float: left; width: 100%; padding: 0; margin-bottom: 18px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--bone); display: flex; align-items: center; gap: 12px; }
.fs__grid { clear: left; display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.fs__n { color: var(--signal); }
.field i, .form__foot i { font-style: normal; color: var(--signal); }
.field__label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.seg { display: flex; flex-wrap: wrap; gap: 6px; }
.seg label { cursor: pointer; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: block; padding: 10px 14px; border: 1px solid var(--line-strong); font-size: 14px; color: var(--bone-dim); transition: background .2s, color .2s, border-color .2s; }
.seg label:hover span { border-color: var(--bone-dim); color: var(--bone); }
.seg input:checked + span { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.seg input:focus-visible + span { outline: 2px solid var(--signal); outline-offset: 2px; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.consent { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 22px; font-size: 14px; color: var(--bone-dim); cursor: pointer; }
.consent input { appearance: none; -webkit-appearance: none; flex: none; width: 20px; height: 20px; margin: 1px 0 0; border: 1px solid var(--line-strong); background: var(--ink-2); display: grid; place-items: center; cursor: pointer; }
.consent input:checked { background: var(--bone); border-color: var(--bone); }
.consent input:checked::after { content: "✓"; color: var(--ink); font-size: 13px; line-height: 1; }
.consent input:user-invalid { border-color: #b8664f; }
.form.is-sending { opacity: .6; pointer-events: none; }
.form-status.is-error { border-color: #b8664f; }
.form-done { border: 1px solid var(--line-strong); background: var(--ink-2); padding: clamp(24px, 4vw, 44px); margin-top: 8px; }
.form-done:focus { outline: none; }
@media (max-width: 640px) { .fs__grid { grid-template-columns: 1fr; } }
.form__foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.form__foot p { margin: 0; font-size: 13px; color: var(--muted); max-width: 44ch; }
.form-status { grid-column: 1 / -1; margin-top: 16px; padding: 14px 16px; border-left: 2px solid var(--signal); background: var(--ink-2); font-size: 15px; }
.form-status[hidden] { display: none; }
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 96px); background: var(--ink); }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 40px; padding-bottom: 56px; }
.foot-grid h4 { font-family: var(--f-mono); font-weight: 400; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15px; }
.foot-grid a { color: var(--bone-dim); }
.foot-grid a:hover { color: var(--bone); }
.foot-brand img { height: 64px; width: auto; margin-bottom: 20px; }
.foot-brand p { color: var(--bone-dim); font-size: 15px; max-width: 36ch; }
.foot-word { font-family: var(--f-display); font-variation-settings: "wdth" 62; font-weight: 800; text-transform: uppercase; font-size: clamp(64px, 21.5vw, 340px); line-height: .78; letter-spacing: -.02em; color: transparent; -webkit-text-stroke: 1px var(--line-strong); white-space: nowrap; overflow: hidden; user-select: none; margin: 0; padding-top: .06em; }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 18px; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

/* ---------- toast ---------- */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 140%); background: var(--bone); color: var(--ink); padding: 12px 16px 12px 18px; display: flex; gap: 16px; align-items: center; z-index: 80; font-size: 15px; transition: transform .45s var(--ease); max-width: calc(100vw - 32px); box-shadow: 0 20px 50px rgba(0,0,0,.45); }
.toast.is-on { transform: translate(-50%, 0); }
.toast a { font-family: var(--f-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid; white-space: nowrap; }

/* ---------- reveal ---------- */
.js .rv { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s !important; } .rv-d2 { transition-delay: .16s !important; } .rv-d3 { transition-delay: .24s !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .rv { opacity: 1; transform: none; }
  .hero__media img { transform: none; }
}

/* utility */
.mt-0 { margin-top: 0; } .mt-s { margin-top: 16px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 64px; }
.row-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
