/* Black Shard www previewer v3: the reference site's real anatomy.
   Light/dark section alternation, white nav + utility strip, crimson action
   colour, heavy grotesque type (Archivo), big rounded panels, arrowed CTAs.
   Wordmark stays Instrument Serif beside the v3 shard tile. */

:root {
  --ink: #0A0A0A;
  --black: #050505;
  --panel: #1b1b1e;
  --white: #ffffff;
  --grey: #f4f4f5;
  --line: #e4e4e7;
  --line-dark: #2a2a2f;
  --mut: #55575c;
  --mut-dark: #9a9ca3;
  --crimson: #DC143C;
  --crimson-deep: #b30e2f;
  --cyan: #00B8D4;
  --gold: #C9A24A;
  --sans: 'Archivo', 'Segoe UI', system-ui, sans-serif;
  --wordmark: 'Instrument Serif', Georgia, serif;
  --mono: 'Geist Mono', 'SFMono-Regular', Consolas, monospace;
  --max: 1280px;
  --r: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--crimson); outline-offset: 3px; border-radius: 2px; }
::selection { background: rgba(220,20,60,.85); color: #fff; }

.arr { display: inline-block; transition: transform .18s; }
a:hover .arr { transform: translateX(4px); }

/* ======= announcement bar ======= */
.bar {
  position: relative; background: var(--crimson); color: #fff;
  text-align: center; padding: 11px 52px; font-size: 14.5px; font-weight: 600;
}
.bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.bar a:hover { opacity: .85; }
.bar-x {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #fff; font-size: 15px; cursor: pointer; padding: 6px;
}
.bar.hide { display: none; }

/* ======= utility strip ======= */
.util {
  display: flex; justify-content: flex-end; align-items: center; gap: 14px;
  max-width: var(--max); margin: 0 auto; padding: 9px 28px 0;
  font-size: 13px; color: var(--mut);
}
.util a { text-decoration: none; color: var(--ink); opacity: .78; }
.util a:hover { opacity: 1; }
.util span { color: #d4d4d8; }
.util .util-hot { font-weight: 600; opacity: 1; }
.util-preview { margin-left: 18px; font-family: var(--mono); font-size: 10.5px; color: #a1a1aa; }
.util-preview a { color: #a1a1aa; }

/* ======= main nav ======= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 34px;
  max-width: var(--max); margin: 0 auto; padding: 16px 28px;
  background: var(--white);
}
.nav.scrolled { box-shadow: 0 1px 0 var(--line), 0 8px 28px rgba(0,0,0,.07); }
.brand { display: inline-flex; align-items: center; gap: .27em; text-decoration: none; color: var(--ink); }
.brand .tile { height: 1.42em; width: 1.42em; font-size: 21px; }
.wordmark { font-family: var(--wordmark); font-size: 23px; letter-spacing: -.01em; white-space: nowrap; }
.brand-light { color: #fff; }

.menu { display: flex; gap: 6px; }
.mi { position: relative; }
.mi > a {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; font-size: 15px; font-weight: 500; color: var(--ink);
  padding: 10px 12px; border-radius: 8px;
}
.mi > a:hover { background: #f4f4f5; }
.chev { width: 10px; height: 6px; opacity: .55; transition: transform .18s; }
.mi:hover .chev { transform: rotate(180deg); }
.drop {
  position: absolute; left: 0; top: 100%; min-width: 300px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
  padding: 10px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.mi:hover .drop, .mi:focus-within .drop { opacity: 1; visibility: visible; transform: none; }
.drop a {
  display: grid; grid-template-columns: 10px 1fr; column-gap: 12px;
  text-decoration: none; padding: 10px 12px; border-radius: 10px; align-items: start;
}
.drop a:hover { background: #f4f4f5; }
.drop i { width: 8px; height: 8px; border-radius: 2px; background: var(--a); margin-top: 7px; }
.drop b { font-size: 14.5px; font-weight: 600; grid-column: 2; }
.drop small { color: var(--mut); font-size: 12.5px; grid-column: 2; }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-contact { text-decoration: none; font-size: 15px; font-weight: 500; opacity: .8; }
.nav-contact:hover { opacity: 1; }

/* ======= pills ======= */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; font-weight: 700; font-size: 15px; line-height: 1.2;
  padding: 12px 22px; border-radius: 100px; white-space: nowrap;
  transition: background .16s, color .16s, border-color .16s, box-shadow .16s;
}
.pill-lg { padding: 15px 28px; font-size: 16px; }
.pill-crimson { background: var(--crimson); color: #fff; }
.pill-crimson:hover { background: var(--crimson-deep); box-shadow: 0 8px 26px rgba(220,20,60,.35); }
.pill-out { border: 1.5px solid #d4d4d8; color: var(--ink); background: #fff; }
.pill-out:hover { border-color: var(--ink); }
.pill-outline-light { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.pill-outline-light:hover { border-color: #fff; }
.pill-navy { background: #10264a; color: #fff; }
.pill-navy:hover { background: #0a1a35; }
.txtlink {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--crimson); font-weight: 700; font-size: 15px; text-decoration: none;
}
.txtlink:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ======= section headline pattern ======= */
h2 {
  font-weight: 800; letter-spacing: -.02em; line-height: 1.08;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
}

/* ======= HERO ======= */
.hero { position: relative; background: var(--black); color: #fff; overflow: hidden; }
.hero-art { position: absolute; inset: 0; }
.hero-art svg { position: absolute; right: 0; top: 0; height: 100%; width: 62%; }
.hero-art .shards polygon { transform-origin: 100% 50%; }
.hero-in {
  position: relative; max-width: var(--max); margin: 0 auto;
  padding: 96px 28px 40px; min-height: 480px;
}
.hero-slides { position: relative; max-width: 640px; }
.slide { display: none; }
.slide.on { display: block; animation: slidein .5s ease; }
@keyframes slidein { from { opacity: 0; transform: translateY(10px); } }
.slide h1 {
  font-weight: 800; letter-spacing: -.022em; line-height: 1.04;
  font-size: clamp(2.4rem, 4.6vw, 3.9rem); margin-bottom: 22px;
}
.slide p { font-size: 17.5px; font-weight: 400; color: #d8d8dc; max-width: 34em; margin-bottom: 30px; }
.strike { position: relative; white-space: nowrap; }
.strike-svg {
  position: absolute; left: -1.5%; bottom: -.08em; width: 104%; height: .15em;
  color: var(--crimson); overflow: visible;
}
.strike-svg path { stroke-dasharray: 230; stroke-dashoffset: 230; animation: draw .5s ease-out .5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.dots { display: flex; gap: 10px; padding: 34px 0 0; }
.dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.32); transition: background .15s, transform .15s;
}
.dot.on { background: #fff; transform: scale(1.15); }

/* news panel inside hero */
.news {
  position: relative; max-width: var(--max); margin: 0 auto 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--panel); border-radius: var(--r) var(--r) 0 0;
  padding: 30px 10px;
}
.news a {
  text-decoration: none; padding: 4px 30px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.news a:first-child { border-left: 0; }
.news em {
  display: block; font-style: normal; color: #ff5f7e; font-weight: 700;
  font-size: 13.5px; margin-bottom: 8px;
}
.news b { font-weight: 700; font-size: 16.5px; line-height: 1.3; color: #fff; }
.news b:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ======= PLATFORM ======= */
.platform {
  background: var(--black); color: #fff; text-align: center;
  padding: 96px 28px 0;
}
.platform h2 { max-width: 21em; margin: 0 auto 26px; }
.fan-wrap { max-width: 1120px; margin: 26px auto 0; }
.fan { width: 100%; height: auto; display: block; }
.fan-arc { font-size: 15px; font-weight: 700; letter-spacing: .34em; fill: #ffb3c2; }
.fan-node text { font-size: 14px; font-weight: 600; fill: #fff; }
.fan-node tspan { fill: #b9bcc3; font-weight: 400; font-size: 12.5px; }
.core-t { font-size: 12px; font-weight: 700; letter-spacing: .22em; fill: #ffd7de; }

.estrip {
  display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap;
  background: #fff; color: var(--ink); border-radius: 12px 12px 0 0;
  padding: 16px 24px; font-size: 13.5px; font-weight: 600;
}
.estrip b { font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
.estrip span { color: #3a3d42; }
.echev { color: var(--cyan); font-weight: 800; letter-spacing: -2px; }

/* ======= RECOGNITION ======= */
.recog { max-width: var(--max); margin: 0 auto; padding: 96px 28px 0; text-align: center; }
.recog h2 { margin-bottom: 44px; }
.recog-hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  background: var(--black); color: #fff; border-radius: var(--r);
  padding: 56px 60px; text-align: left;
}
.rh-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -.015em; line-height: 1.12; margin-bottom: 16px; }
.rh-copy p { color: #c9c9cf; margin-bottom: 26px; max-width: 30em; }
.rh-card {
  background: #fff; border-radius: 14px; padding: 26px;
  display: flex; align-items: center; justify-content: center;
}
.rh-card img { width: 100%; max-width: 340px; }
.recog-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.rc {
  display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center;
  background: var(--black); color: #fff; border-radius: var(--r);
  padding: 34px 38px; text-align: left;
}
.rc-inset {
  background: #fff; border-radius: 12px; height: 130px;
  display: flex; align-items: center; justify-content: center; padding: 14px;
}
.rc-mark {
  font-weight: 800; letter-spacing: .02em; color: var(--ink);
  font-size: 20px; line-height: 1.2; text-align: center;
}
.rc h3 { font-size: 19px; font-weight: 800; letter-spacing: -.01em; line-height: 1.2; margin-bottom: 12px; }

/* ======= PRICING ======= */
.pricing { background: var(--grey); margin-top: 96px; padding: 84px 28px 92px; text-align: center; }
.pricing h2 { margin-bottom: 12px; }
.pricing-sub { color: var(--mut); font-size: 16.5px; margin-bottom: 26px; }
.pricing-sub a { color: var(--crimson); font-weight: 700; text-decoration: none; }
.pricing-sub a:hover { text-decoration: underline; }
.pricing-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 30px 0 34px; }
.tg-label { font-size: 14.5px; font-weight: 600; color: var(--mut); }
.tg-label.on { color: var(--ink); }
.tg {
  width: 52px; height: 28px; border-radius: 100px; border: 0; cursor: pointer;
  background: var(--crimson); position: relative; transition: background .15s;
}
.tg-knob {
  position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; transition: left .18s;
}
.tg.yr .tg-knob { left: 27px; }

.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: var(--max); margin: 0 auto; text-align: left;
}
.card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 26px;
}
.card-trial { border: 2px solid #10264a; }
.card-eb { font-style: normal; color: var(--crimson); font-weight: 700; font-size: 13px; margin-bottom: 10px; }
.eb-blue { color: #10264a; }
.eb-light { color: #ff5f7e; }
.card h3 { font-size: 24px; font-weight: 800; letter-spacing: -.015em; line-height: 1.08; margin-bottom: 16px; }
.price { font-size: 38px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.price-free { color: #10264a; }
.per { color: var(--mut); font-size: 13px; margin: 6px 0 18px; }
.card .pill { align-self: stretch; justify-content: center; margin-bottom: 20px; }
.feats { list-style: none; border-top: 1px solid var(--line); padding-top: 16px; width: 100%; }
.feats li { font-size: 14px; padding: 6px 0 6px 28px; position: relative; }
.feats li::before {
  position: absolute; left: 0; top: 6px; font-weight: 800;
}
.feats .y::before { content: "\2713"; color: var(--crimson); }
.feats .n { color: #b0b2b8; }
.feats .n::before { content: "\2713"; color: #d4d4d8; }

/* ======= MANAGED ======= */
.managed { background: var(--grey); padding: 0 28px 92px; }
.managed-card {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 54px; align-items: center;
  background: var(--panel); color: #fff; border-radius: var(--r);
  padding: 54px 58px;
}
.managed-copy h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 20px; }
.mfeats { list-style: none; margin-bottom: 28px; }
.mfeats li { padding: 7px 0 7px 30px; position: relative; font-size: 15.5px; color: #e3e3e7; }
.mfeats li::before { content: "\2713"; position: absolute; left: 0; color: var(--crimson); font-weight: 800; }
.managed .pricing-ctas { justify-content: flex-start; }

/* browser mock */
.browser {
  background: #101014; border: 1px solid #26262b; border-radius: 14px;
  overflow: hidden; box-shadow: 0 30px 90px rgba(0,0,0,.5);
}
.browser-bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: #0a0a0d; border-bottom: 1px solid #232328;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: #2e2e34; border: 0; }
.browser-url {
  font-family: var(--mono); font-size: 11.5px; color: #8f9196;
  background: #131318; border: 1px solid #232328; border-radius: 6px;
  padding: 3px 12px; margin-left: 10px;
}
.browser-tag {
  margin-left: auto; font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,162,74,.4);
  border-radius: 4px; padding: 2px 7px;
}
.browser-body { display: grid; grid-template-columns: 140px 1fr; }
.dash-side { border-right: 1px solid #232328; padding: 14px 0; background: #0c0c10; }
.dash-brand { font-family: var(--wordmark); font-size: 17px; padding: 0 16px 10px; color: #fff; }
.dash-item { font-size: 12.5px; color: #8f9196; padding: 7px 16px; }
.dash-item.on { color: #fff; background: rgba(220,20,60,.1); border-right: 2px solid var(--crimson); }
.dash-main { padding: 16px 18px; }
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.dash-h { font-size: 14.5px; font-weight: 700; color: #fff; }
.dash-sub { font-size: 11.5px; color: #8f9196; }
.gauge { width: 62px; height: 62px; }
.vrow {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 8px 0; border-top: 1px solid #1d1d22; font-size: 13px; color: #e3e3e7;
}
.chip {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px; white-space: nowrap;
}
.chip-ok { color: #4cd6a4; background: rgba(14,138,95,.16); }
.chip-risk { color: #ff7d84; background: rgba(220,61,67,.16); }
.chip-no { color: #9aa0a6; background: rgba(255,255,255,.07); }
.dash-note { font-family: var(--mono); font-size: 10px; color: #8f9196; padding-top: 9px; border-top: 1px solid #1d1d22; }

/* ======= STORY ======= */
.story { max-width: var(--max); margin: 0 auto; padding: 96px 28px 0; text-align: center; }
.story h2 { max-width: 22em; margin: 0 auto 44px; }
.story-hero {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: stretch; text-align: left;
}
.story-visual {
  background: var(--black); border-radius: var(--r); position: relative;
  display: flex; align-items: center; justify-content: center; min-height: 320px;
  overflow: hidden;
}
.story-visual::after {
  content: ""; position: absolute; inset: 0;
  background: url('/img/panel-bg.jpg') center / cover; opacity: .5;
}
.story-logos { position: relative; z-index: 1; filter: brightness(2.2) grayscale(1); opacity: .95; }
.story-logos img { width: 300px; }
.story-cap {
  position: absolute; left: 24px; bottom: 18px; z-index: 1;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; color: #9a9ca3;
}
.story-copy { display: flex; flex-direction: column; justify-content: center; }
.story-copy blockquote {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -.015em;
  line-height: 1.15; margin-bottom: 18px;
}
.story-copy > p { color: var(--mut); font-size: 16px; max-width: 34em; margin-bottom: 26px; }
.story .pricing-ctas { justify-content: flex-start; }
.story-wall {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 34px 52px;
  margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--line);
  /* the mono client marks are white-on-transparent; invert them for this light band */
  filter: invert(1) grayscale(1); opacity: .6;
}
.story-wall img { height: 26px; width: auto; }
.story-wall .lg-tall { height: 38px; }

/* ======= SOLUTIONS ======= */
.sol { max-width: var(--max); margin: 0 auto; padding: 96px 28px 0; }
.sol h2 { text-align: center; margin-bottom: 44px; }
.sol-card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; align-items: stretch;
  background: var(--grey); border-radius: var(--r); overflow: hidden; margin-bottom: 22px;
}
.sol-flip { grid-template-columns: 1.1fr 1fr; }
.sol-flip .sol-copy { order: 2; }
.sol-flip .sol-img { order: 1; }
.sol-copy { padding: 52px 54px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.sol-copy h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; letter-spacing: -.015em; margin-bottom: 14px; }
.sol-copy p { color: var(--mut); font-size: 15.5px; max-width: 34em; margin-bottom: 22px; }
.sol-img { position: relative; min-height: 300px; }
.sol-img > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sol-console { display: flex; align-items: center; justify-content: center; background: var(--black); padding: 36px; }
.sol-console .console { position: relative; width: 100%; max-width: 460px; }
.sol-breach .sol-copy h3 { color: var(--crimson); }

.console {
  background: #101014; border: 1px solid #26262b; border-radius: 12px;
  padding: 20px 22px; font-family: var(--mono); font-size: 12.5px; line-height: 1.5; color: #e3e3e7;
  text-align: left;
}
.console-title {
  color: #8f9196; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  padding-bottom: 12px; border-bottom: 1px solid #232328; margin-bottom: 12px;
}
.console-log { list-style: none; }
.console-log li {
  display: grid; grid-template-columns: 68px 1fr; gap: 8px; align-items: baseline; padding: 5px 0;
}
.console-log li.pending { opacity: 0; }
.console-log li.shown { opacity: 1; transition: opacity .3s; }
.c-mut, .c-ok, .c-risk { font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: 10.5px; }
.c-mut { color: #8f9196; }
.c-ok { color: #4cd6a4; }
.c-risk { color: #ff7d84; }
.console-foot { color: #8f9196; font-size: 11px; margin-top: 12px; padding-top: 12px; border-top: 1px solid #232328; }

/* ======= COMMITMENTS ======= */
.commit { max-width: var(--max); margin: 0 auto; padding: 96px 28px 0; }
.commit h2 { text-align: center; margin-bottom: 44px; }
.commit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.commit-grid > div {
  border: 1px solid var(--line); border-radius: 16px; padding: 26px 26px 24px;
  transition: box-shadow .18s, transform .18s;
}
.commit-grid > div:hover { box-shadow: 0 16px 44px rgba(0,0,0,.08); transform: translateY(-2px); }
.commit-grid b { display: block; font-size: 16.5px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 8px; }
.commit-grid b::before { content: "\2713"; color: var(--crimson); margin-right: 10px; }
.commit-grid p { color: var(--mut); font-size: 14px; }

/* ======= CLOSING ======= */
.close { position: relative; margin-top: 96px; background: var(--black); color: #fff; text-align: center; overflow: hidden; }
.close-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.close-in { position: relative; padding: 130px 28px 140px; }
.close h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); margin-bottom: 14px; }
.close p { color: #d8d8dc; font-size: 17px; margin-bottom: 32px; }

/* ======= FOOTER ======= */
.foot { background: var(--black); color: #d8d8dc; border-top: 1px solid #1c1c20; }
.foot-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr; gap: 36px;
  padding: 64px 28px 44px;
}
.foot-brand > p { color: #9a9ca3; font-size: 13.5px; margin-top: 16px; max-width: 22em; }
.foot-cert { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--gold); margin-top: 14px !important; }
.foot-h { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #8f9196; margin-bottom: 14px; }
.foot-grid a { display: block; color: #d8d8dc; text-decoration: none; font-size: 14px; padding: 4px 0; }
.foot-grid a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.foot-addr { color: #9a9ca3; font-size: 13.5px; margin-top: 10px; }
.foot-legal {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid #1c1c20; padding: 22px 28px 44px;
  color: #8f9196; font-size: 13px;
}
.foot-legal a { color: #8f9196; }
.foot-note { font-family: var(--mono); font-size: 11px; }

/* ======= motion ======= */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.reveal.pre { opacity: 0; transform: translateY(16px); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .slide.on { animation: none; transition: none; }
  .strike-svg path { stroke-dashoffset: 0 !important; animation: none !important; }
}

/* ======= responsive ======= */
@media (max-width: 1120px) {
  .menu { display: none; }
  .recog-hero, .managed-card, .story-hero { grid-template-columns: 1fr; }
  .recog-row { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .commit-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-card, .sol-flip { grid-template-columns: 1fr; }
  .sol-flip .sol-copy { order: 1; }
  .sol-flip .sol-img { order: 2; }
  .news { grid-template-columns: 1fr; gap: 20px; }
  .news a { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; }
  .news a:first-child { border-top: 0; padding-top: 0; }
  .hero-art svg { opacity: .5; }
}
@media (max-width: 680px) {
  .util { display: none; }
  .nav { padding: 12px 18px; gap: 12px; }
  .nav-contact { display: none; }
  .pill { padding: 11px 18px; font-size: 14px; }
  .hero-in { padding: 64px 20px 30px; }
  .cards, .commit-grid { grid-template-columns: 1fr; }
  .recog-hero { padding: 34px 26px; }
  .rc { grid-template-columns: 1fr; }
  .managed-card { padding: 34px 26px; }
  .sol-copy { padding: 34px 26px; }
  .browser-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .bar { font-size: 13px; padding: 10px 44px; }
}
