@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --ink: #080808;
  --paper: #f7f4ed;
  --white: #fff;
  --line: #171717;
  --soft-line: #c9c5ba;
  --blue: #596574;
  --yellow: #f6e500;
  --pink: #f91880;
  --orange: #ff6b00;
  --green: #00a86b;
  --muted: #67645c;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: var(--paper); }
a { color: inherit; }
button, input, textarea { font: inherit; }

.market-strip {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 max(18px, calc((100% - 1280px) / 2));
  overflow: hidden;
  white-space: nowrap;
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
  font: 600 11px/1 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.market-strip b { font-weight: 600; }
.market-strip .up { color: #006542; }
.market-strip .down { color: #c00032; }

.site-nav {
  min-height: 76px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 max(18px, calc((100% - 1280px) / 2));
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid #3e3e3e;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -.055em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  background: var(--blue);
  color: var(--yellow);
  font: 700 17px/1 'IBM Plex Mono', monospace;
  transform: rotate(-2deg);
}
.brand em { color: var(--yellow); font-style: normal; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.info-nav-link { color: #d7d7d7; font: 600 11px/1 'IBM Plex Mono', monospace; text-transform: uppercase; text-decoration: none; }
.info-nav-link:hover, .agent-nav-link:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.agent-nav-link { color: var(--yellow); font: 700 11px/1 'IBM Plex Mono', monospace; text-transform: uppercase; text-decoration: none; }
.account { font: 500 12px/1.2 'IBM Plex Mono', monospace; color: #d7d7d7; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 34px 18px 72px; }
.landing-wrap { padding-top: 0; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  min-height: 650px;
  border: 2px solid var(--ink);
  border-top: 0;
  background: var(--white);
}
.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 76px);
  border-right: 2px solid var(--ink);
  overflow: hidden;
}
.hero-copy::after {
  content: "SKU / PRICE / SELLER / SIGNAL";
  position: absolute;
  right: -145px;
  bottom: 36px;
  transform: rotate(-90deg);
  font: 600 10px/1 'IBM Plex Mono', monospace;
  letter-spacing: .25em;
  color: #99958b;
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 7px 9px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  font: 600 11px/1 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero h1 {
  max-width: 670px;
  margin: 24px 0 22px;
  font-size: clamp(48px, 5.5vw, 82px);
  line-height: .91;
  letter-spacing: -.072em;
  text-transform: uppercase;
}
.hero-lede { max-width: 500px; margin: 0 0 30px; font-size: 18px; line-height: 1.48; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.microcopy { font: 500 11px/1.35 'IBM Plex Mono', monospace; color: var(--muted); }
.hero-visual { position: relative; min-height: 520px; overflow: hidden; background: var(--ink); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.08) contrast(1.04); }
.visual-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 9px 11px;
  background: var(--white);
  border: 1px solid var(--ink);
  font: 600 10px/1 'IBM Plex Mono', monospace;
  text-transform: uppercase;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  border-top: 0;
  background: var(--white);
}
.signal { min-height: 104px; padding: 20px; border-right: 1px solid var(--ink); }
.signal:last-child { border-right: 0; }
.signal span { display: block; margin-bottom: 12px; font: 500 10px/1 'IBM Plex Mono', monospace; color: var(--muted); text-transform: uppercase; }
.signal strong { font-size: 25px; letter-spacing: -.04em; }
.signal.blue { background: var(--blue); color: var(--white); }
.signal.blue span { color: #cfd8ff; }

.section-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 20px; margin: 64px 0 18px; border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
.section-head h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: .95; letter-spacing: -.055em; text-transform: uppercase; }
.section-head p { margin: 0; max-width: 400px; text-align: right; font: 500 11px/1.45 'IBM Plex Mono', monospace; color: var(--muted); }
.plans { display: grid; grid-template-columns: 1fr 1fr; border: 2px solid var(--ink); background: var(--white); }
.plan { padding: 34px; min-height: 285px; }
.plan + .plan { border-left: 2px solid var(--ink); }
.plan-pro { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.plan-pro::after { content: "PRO"; position: absolute; right: -12px; bottom: -40px; color: #191919; font-size: 170px; font-weight: 900; letter-spacing: -.1em; }
.plan h3 { position: relative; z-index: 1; margin: 0 0 30px; font: 600 13px/1 'IBM Plex Mono', monospace; }
.price { position: relative; z-index: 1; margin: 0 0 22px; font-size: 48px; font-weight: 900; letter-spacing: -.06em; }
.price small { font: 500 12px/1 'IBM Plex Mono', monospace; letter-spacing: 0; }
.plan ul { position: relative; z-index: 1; list-style: none; padding: 0; margin: 0; }
.plan li { padding: 10px 0; border-top: 1px solid currentColor; font: 500 12px/1.35 'IBM Plex Mono', monospace; }

.page-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 10px 0 24px; }
.page-title h1, .auth h1 { margin: 0; font-size: clamp(45px, 6vw, 76px); line-height: .9; letter-spacing: -.065em; text-transform: uppercase; }
.page-title p { max-width: 390px; margin: 0; font: 500 11px/1.5 'IBM Plex Mono', monospace; color: var(--muted); text-align: right; }

.card { background: var(--white); border: 2px solid var(--ink); padding: 28px; }
.grid { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(300px, .7fr); gap: 0; }
.grid > .card + .card { border-left: 0; }
.form-card { position: relative; }
.form-card::before { content: "INPUT / URL FEED"; position: absolute; top: 13px; right: 15px; font: 500 9px/1 'IBM Plex Mono', monospace; color: var(--muted); }
label { display: block; font: 600 12px/1.4 'IBM Plex Mono', monospace; text-transform: uppercase; }
textarea, input {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fbfaf6;
  color: var(--ink);
  font: 500 13px/1.45 'IBM Plex Mono', monospace;
  margin: 10px 0 18px;
  outline: none;
}
textarea { min-height: 230px; resize: vertical; }
textarea:focus, input:focus { box-shadow: inset 0 -4px var(--blue); }

.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--blue);
  color: var(--white);
  padding: 12px 18px;
  font: 700 11px/1 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover, button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.btn-primary { background: var(--blue); }
.secondary { background: var(--white); color: var(--ink); }
.btn-acid { background: var(--yellow); color: var(--ink); }
.badge { display: inline-flex; padding: 6px 8px; border: 1px solid currentColor; font: 600 10px/1 'IBM Plex Mono', monospace; text-transform: uppercase; }
.badge-pro { background: var(--yellow); color: var(--ink); }
.muted { color: var(--muted); }
.error { background: #ffd8e8; color: #8f003e; border: 1px solid #8f003e; padding: 13px; font: 600 12px/1.4 'IBM Plex Mono', monospace; }
.agent-alert, .warning { padding: 14px; border: 1px solid var(--ink); background: var(--yellow); font: 600 12px/1.4 'IBM Plex Mono', monospace; }
.agent-alert a { color: var(--blue); }
.agent-grid h2 { margin: 22px 0 12px; font-size: 32px; letter-spacing: -.045em; text-transform: uppercase; }
.agent-key-card { background: var(--ink); color: var(--white); }
.agent-key-card .muted { color: #aaa; }
.download-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.agent-token { display: block; margin: 16px 0 22px; padding: 14px; overflow-wrap: anywhere; background: #222; border: 1px solid var(--yellow); color: var(--yellow); font: 600 12px/1.5 'IBM Plex Mono', monospace; user-select: all; }
.status-online { background: var(--green); }
.agent-steps strong { display: block; font-size: 16px; line-height: 1.2; }

.mission-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 64px;
  border: 2px solid var(--ink);
  background: var(--white);
}
.mission-preview > div { padding: clamp(28px, 4vw, 52px); }
.mission-preview > div:first-child { background: var(--blue); color: var(--white); border-right: 2px solid var(--ink); }
.mission-preview h2 { margin: 28px 0 0; font-size: clamp(42px, 5vw, 70px); line-height: .92; letter-spacing: -.065em; text-transform: uppercase; }
.mission-preview-copy p { margin: 0 0 18px; font-size: 16px; line-height: 1.55; }
.mission-preview-copy .btn { margin-top: 12px; }

.case-teaser {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  margin-top: 64px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}
.case-teaser-number { display: flex; align-items: center; justify-content: center; min-height: 390px; background: var(--yellow); color: var(--ink); font-size: clamp(120px, 19vw, 260px); font-weight: 900; line-height: .8; letter-spacing: -.11em; }
.case-teaser-copy { padding: clamp(32px, 5vw, 64px); }
.case-teaser-copy h2 { max-width: 760px; margin: 28px 0 20px; font-size: clamp(42px, 5vw, 70px); line-height: .93; letter-spacing: -.065em; text-transform: uppercase; }
.case-teaser-copy p { max-width: 680px; margin: 0 0 28px; color: #c6c6c6; font-size: 16px; line-height: 1.55; }

.story-hero { padding: clamp(42px, 7vw, 92px) clamp(26px, 6vw, 78px); border: 2px solid var(--ink); background: var(--white); }
.story-hero h1 { max-width: 1050px; margin: 28px 0 30px; font-size: clamp(52px, 7.5vw, 102px); line-height: .88; letter-spacing: -.075em; text-transform: uppercase; }
.story-lede { max-width: 820px; margin: 0; font-size: clamp(18px, 2vw, 25px); line-height: 1.42; }
.mission-hero { background: var(--blue); color: var(--white); }
.mission-hero .eyebrow { color: var(--ink); }
.guide-hero { background: var(--yellow); }
.fact-strip { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); border-top: 0; background: var(--ink); color: var(--white); }
.fact-strip span { padding: 18px 20px; border-right: 1px solid #555; font: 500 10px/1.4 'IBM Plex Mono', monospace; }
.fact-strip span:last-child { border-right: 0; }
.fact-strip b { display: block; margin-top: 6px; color: var(--yellow); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 64px; border: 2px solid var(--ink); background: var(--white); }
.story-panel { padding: clamp(30px, 4vw, 52px); }
.story-panel + .story-panel { border-left: 2px solid var(--ink); }
.story-panel-dark { background: var(--ink); color: var(--white); }
.story-panel h2 { margin: 26px 0 24px; font-size: clamp(34px, 4vw, 55px); line-height: .98; letter-spacing: -.06em; text-transform: uppercase; }
.story-panel p { font-size: 16px; line-height: 1.6; }
.impact-list { list-style: none; margin: 30px 0 0; padding: 0; }
.impact-list li { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 17px 0; border-top: 1px solid var(--ink); }
.impact-list b { text-transform: uppercase; }
.impact-list span { color: var(--muted); line-height: 1.45; }
.process-grid, .daily-flow { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); background: var(--white); }
.process-grid article, .daily-flow article { min-height: 255px; padding: 26px; border-right: 1px solid var(--ink); }
.process-grid article:last-child, .daily-flow article:last-child { border-right: 0; }
.process-grid article > span, .daily-flow article > span { color: var(--blue); font: 700 11px/1 'IBM Plex Mono', monospace; }
.process-grid h3, .daily-flow h3 { margin: 42px 0 14px; font-size: 28px; letter-spacing: -.05em; text-transform: uppercase; }
.process-grid p, .daily-flow p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.mission-statement { display: grid; grid-template-columns: 1.35fr .65fr; gap: 45px; margin-top: 64px; padding: clamp(34px, 5vw, 66px); background: var(--yellow); border: 2px solid var(--ink); }
.mission-statement .kicker { grid-column: 1 / -1; background: var(--white); }
.mission-statement blockquote { margin: 0; font-size: clamp(34px, 4.5vw, 60px); line-height: 1; font-weight: 900; letter-spacing: -.06em; text-transform: uppercase; }
.mission-statement p { margin: 0 0 18px; font-size: 14px; line-height: 1.6; }
.story-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-top: 64px; padding: 42px; border: 2px solid var(--ink); background: var(--ink); color: var(--white); }
.story-cta h2 { margin: 24px 0 0; font-size: clamp(40px, 5vw, 65px); line-height: .95; letter-spacing: -.06em; text-transform: uppercase; }
.story-cta p { max-width: 470px; color: #bbb; line-height: 1.5; }
.story-cta .btn { margin-top: 10px; }

.requirements-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; padding: 38px; border: 2px solid var(--ink); border-top: 0; background: var(--white); }
.requirements-card h2 { margin: 24px 0 0; font-size: 40px; letter-spacing: -.055em; text-transform: uppercase; }
.requirements-card ul { margin: 0 0 24px; padding: 0; list-style: none; }
.requirements-card li { padding: 11px 0; border-top: 1px solid var(--ink); font: 600 12px/1.4 'IBM Plex Mono', monospace; }
.guide-steps { margin: 0; padding: 0; list-style: none; border: 2px solid var(--ink); background: var(--white); }
.guide-step { display: grid; grid-template-columns: 115px 1fr; gap: 30px; padding: 32px; border-bottom: 1px solid var(--ink); }
.guide-step:last-child { border-bottom: 0; }
.step-number { color: var(--blue); font: 800 42px/1 'IBM Plex Mono', monospace; }
.guide-step h3 { margin: 0 0 12px; font-size: 28px; letter-spacing: -.04em; text-transform: uppercase; }
.guide-step p { max-width: 860px; margin: 0 0 12px; font-size: 15px; line-height: 1.55; }
.guide-step a { color: var(--blue); font-weight: 700; }
.guide-step code { padding: 3px 6px; background: var(--yellow); border: 1px solid var(--ink); font: 600 12px/1.4 'IBM Plex Mono', monospace; }
.guide-note { padding: 12px; border-left: 5px solid var(--yellow); background: #f2f0e9; font: 500 12px/1.5 'IBM Plex Mono', monospace !important; }
.key-location-card { margin-top: 34px; border: 2px solid var(--ink); background: var(--white); }
.key-location-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 30px; padding: 30px; border-bottom: 2px solid var(--ink); }
.key-location-heading h2 { margin: 0; font-size: clamp(30px, 4vw, 52px); line-height: .95; letter-spacing: -.055em; text-transform: uppercase; }
.key-location-grid { display: grid; grid-template-columns: 1fr 1fr; }
.key-location-grid article { padding: 28px; }
.key-location-grid article + article { border-left: 2px solid var(--ink); }
.key-location-grid article > span { color: var(--blue); font: 700 11px/1 'IBM Plex Mono', monospace; text-transform: uppercase; }
.key-location-grid h3 { margin: 18px 0 10px; font-size: 25px; letter-spacing: -.035em; text-transform: uppercase; }
.key-location-grid p { margin: 0; line-height: 1.55; }
.key-location-warning { margin: 0; padding: 18px 28px; border-top: 2px solid var(--ink); background: var(--yellow); font: 600 12px/1.5 'IBM Plex Mono', monospace; }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink); }
.platform-grid section { padding: 20px; }
.platform-grid section + section { border-left: 1px solid var(--ink); }
.platform-grid section > span { display: block; margin-bottom: 14px; color: var(--blue); font: 700 12px/1 'IBM Plex Mono', monospace; text-transform: uppercase; }
.troubleshooting { border: 2px solid var(--ink); background: var(--white); }
.troubleshooting details { border-bottom: 1px solid var(--ink); }
.troubleshooting details:last-child { border-bottom: 0; }
.troubleshooting summary { padding: 20px 24px; cursor: pointer; font-size: 17px; font-weight: 800; }
.troubleshooting details[open] summary { background: var(--yellow); }
.troubleshooting details p { max-width: 850px; margin: 0; padding: 0 24px 24px; color: var(--muted); line-height: 1.55; }
.security-note { margin-top: 64px; padding: 38px; border: 2px solid var(--ink); background: var(--blue); color: var(--white); }
.security-note h2 { margin: 24px 0 15px; font-size: 40px; letter-spacing: -.055em; text-transform: uppercase; }
.security-note p { max-width: 900px; line-height: 1.6; }
.security-note .kicker { color: var(--ink); }

.cases-hero { background: var(--ink); color: var(--white); }
.cases-hero .eyebrow { color: var(--ink); }
.cases-list { margin-top: 42px; }
.case-card { display: grid; grid-template-columns: 120px 1fr 70px; gap: 30px; align-items: center; padding: clamp(28px, 4vw, 52px); border: 2px solid var(--ink); background: var(--white); color: var(--ink); text-decoration: none; }
.case-card:hover { background: var(--yellow); }
.case-card-index { align-self: start; color: var(--blue); font: 800 64px/1 'IBM Plex Mono', monospace; letter-spacing: -.08em; }
.case-card h2 { margin: 24px 0 15px; font-size: clamp(38px, 5vw, 66px); line-height: .92; letter-spacing: -.06em; text-transform: uppercase; }
.case-card p { max-width: 760px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.case-card-arrow { justify-self: end; font-size: 54px; }
.case-method-note { display: grid; grid-template-columns: 220px 1fr; gap: 35px; margin-top: 28px; padding: 30px; border: 2px solid var(--ink); background: var(--blue); color: var(--white); }
.case-method-note .kicker { color: var(--ink); }
.case-method-note p { max-width: 900px; margin: 0; line-height: 1.6; }

.case-hero { display: grid; grid-template-columns: 1.45fr .55fr; gap: 0; border: 2px solid var(--ink); background: var(--white); }
.case-hero > div:first-child { padding: clamp(38px, 6vw, 78px); }
.case-hero h1 { max-width: 920px; margin: 28px 0; font-size: clamp(52px, 7vw, 96px); line-height: .87; letter-spacing: -.075em; text-transform: uppercase; }
.case-hero-stamp { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 480px; padding: 30px; border-left: 2px solid var(--ink); background: var(--yellow); text-align: center; }
.case-hero-stamp span, .case-hero-stamp small { font: 700 12px/1.3 'IBM Plex Mono', monospace; letter-spacing: .08em; }
.case-hero-stamp strong { margin: 26px 0 18px; font-size: clamp(105px, 13vw, 180px); line-height: .7; letter-spacing: -.12em; }
.case-facts { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); border-top: 0; background: var(--ink); color: var(--white); }
.case-facts span { padding: 20px; border-right: 1px solid #4b4b4b; font: 500 10px/1.45 'IBM Plex Mono', monospace; }
.case-facts span:last-child { border-right: 0; }
.case-facts b { display: block; margin-top: 6px; color: var(--yellow); font-size: 13px; }
.case-origin { display: grid; grid-template-columns: 1fr 1fr; margin-top: 64px; border: 2px solid var(--ink); background: var(--white); }
.case-origin > div { padding: clamp(30px, 4vw, 52px); }
.case-origin h2, .evidence-sheet h2, .visual-audit h2 { margin: 26px 0 20px; font-size: clamp(38px, 4.5vw, 62px); line-height: .95; letter-spacing: -.06em; text-transform: uppercase; }
.case-origin p { max-width: 670px; font-size: 16px; line-height: 1.6; }
.case-origin .btn { margin-top: 14px; }
.sku-terminal { display: flex; flex-direction: column; justify-content: center; gap: 14px; border-left: 2px solid var(--ink); background: var(--blue); color: var(--white); }
.sku-terminal span { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--white); font: 700 11px/1 'IBM Plex Mono', monospace; }
.sku-terminal code { font: 700 clamp(14px, 2vw, 23px)/1.3 'IBM Plex Mono', monospace; }
.case-video { display: grid; grid-template-columns: .72fr 1.28fr; margin-top: 64px; border: 2px solid var(--ink); background: var(--ink); color: var(--white); }
.case-video-copy { padding: clamp(30px, 4vw, 52px); }
.case-video-copy h2 { margin: 26px 0 20px; font-size: clamp(38px, 4.5vw, 62px); line-height: .94; letter-spacing: -.06em; text-transform: uppercase; }
.case-video-copy p { color: #c2c2c2; font-size: 15px; line-height: 1.6; }
.case-video video { display: block; align-self: center; width: 100%; height: auto; max-height: 640px; background: #000; border-left: 2px solid var(--yellow); }
.capture-gallery { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); background: var(--ink); }
.capture-gallery figure { margin: 0; border-right: 1px solid #444; border-bottom: 1px solid #444; }
.capture-gallery figure:nth-child(3n) { border-right: 0; }
.capture-gallery figure:nth-last-child(-n+3) { border-bottom: 0; }
.capture-gallery img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; background: #f1f1f1; }
.capture-gallery figcaption { padding: 13px 15px; color: var(--yellow); font: 700 10px/1 'IBM Plex Mono', monospace; text-transform: uppercase; }
.gallery-note { margin: 0; padding: 18px 20px; border: 2px solid var(--ink); border-top: 0; background: var(--white); color: var(--muted); font: 500 11px/1.5 'IBM Plex Mono', monospace; }
.case-results { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); background: var(--white); }
.case-results article { display: flex; flex-direction: column; min-height: 205px; padding: 24px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.case-results article:nth-child(3n) { border-right: 0; }
.case-results article:nth-last-child(-n+3) { border-bottom: 0; }
.case-results span { color: var(--muted); font: 600 11px/1 'IBM Plex Mono', monospace; }
.case-results strong { margin: 34px 0 auto; font-size: 36px; letter-spacing: -.05em; }
.case-results a { color: var(--blue); font: 700 11px/1.3 'IBM Plex Mono', monospace; text-transform: uppercase; }
.evidence-sheet { margin-top: 64px; border: 2px solid var(--ink); background: var(--white); }
.evidence-sheet-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: clamp(30px, 4vw, 52px); }
.evidence-sheet-head p { max-width: 560px; margin: 0 0 24px; font-size: 15px; line-height: 1.6; }
.sheet-preview { overflow-x: auto; padding: 24px; border-top: 2px solid var(--ink); background: #e7e6e1; }
.sheet-preview img { display: block; width: max(100%, 1580px); height: auto; border: 1px solid #b8b8b8; background: var(--white); }
.visual-audit { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 64px; padding: clamp(34px, 5vw, 62px); border: 2px solid var(--ink); background: var(--yellow); }
.visual-audit p { margin: 0 0 20px; font-size: 16px; line-height: 1.6; }
.case-disclaimer { padding: 17px; border: 1px solid var(--ink); background: var(--white); font: 500 12px/1.55 'IBM Plex Mono', monospace !important; }
.case-outcome { display: grid; grid-template-columns: 1fr auto; gap: 38px; align-items: end; margin-top: 64px; padding: clamp(34px, 5vw, 62px); border: 2px solid var(--ink); background: var(--blue); color: var(--white); }
.case-outcome .kicker { grid-column: 1 / -1; color: var(--ink); }
.case-outcome blockquote { max-width: 920px; margin: 0; font-size: clamp(28px, 3.6vw, 49px); line-height: 1.02; font-weight: 900; letter-spacing: -.05em; text-transform: uppercase; }

.tariff-card { background: var(--ink); color: var(--white); }
.tariff-card h3 { margin-top: 0; font-size: 14px; text-transform: uppercase; }
.tariff-name { margin: 18px 0 4px; font-size: 42px; font-weight: 900; letter-spacing: -.06em; }
.tariff-price { font: 600 13px/1.3 'IBM Plex Mono', monospace; color: var(--yellow); }
.tariff-card .muted { color: #aaa; font: 500 11px/1.5 'IBM Plex Mono', monospace; }

.data-card { padding: 0; overflow: auto; }
table { width: 100%; border-collapse: collapse; font: 500 12px/1.35 'IBM Plex Mono', monospace; }
th { background: var(--ink); color: var(--white); text-transform: uppercase; font-size: 10px; letter-spacing: .04em; }
td, th { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--ink); }
tr:last-child td { border-bottom: 0; }
td a { color: var(--blue); font-weight: 600; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; background: var(--orange); border-radius: 50%; }

.auth { max-width: 520px; margin: 44px auto; background: var(--white); border: 2px solid var(--ink); padding: 38px; box-shadow: 12px 12px 0 var(--yellow); }
.auth .kicker { margin-bottom: 24px; }
.auth h1 { margin-bottom: 30px; }
.auth-switch { margin: 22px 0 0; font: 500 12px/1.5 'IBM Plex Mono', monospace; }
.auth-switch a { color: var(--blue); font-weight: 600; }

.footer { background: var(--ink); color: var(--white); border-top: 7px solid var(--blue); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 28px 18px 36px; display: flex; justify-content: space-between; gap: 30px; font: 500 10px/1.5 'IBM Plex Mono', monospace; color: #aaa; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { border-right: 0; border-bottom: 2px solid var(--ink); }
  .hero-visual { min-height: 430px; }
  .signal-row { grid-template-columns: 1fr 1fr; }
  .signal:nth-child(2) { border-right: 0; }
  .signal:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .grid { grid-template-columns: 1fr; gap: 18px; }
  .grid > .card + .card { border-left: 2px solid var(--ink); }
  .story-grid, .mission-preview, .mission-statement, .case-teaser, .case-origin, .case-video, .evidence-sheet-head, .visual-audit { grid-template-columns: 1fr; }
  .story-panel + .story-panel, .mission-preview > div:first-child { border-left: 0; border-right: 0; border-bottom: 2px solid var(--ink); }
  .case-teaser-number { min-height: 260px; }
  .sku-terminal { border-left: 0; border-top: 2px solid var(--ink); }
  .case-video video { border-left: 0; border-top: 2px solid var(--yellow); }
  .case-hero { grid-template-columns: 1fr; }
  .case-hero-stamp { min-height: 300px; border-left: 0; border-top: 2px solid var(--ink); }
  .case-facts { grid-template-columns: 1fr 1fr; }
  .case-facts span:nth-child(2) { border-right: 0; }
  .case-facts span:nth-child(-n+2) { border-bottom: 1px solid #4b4b4b; }
  .case-results { grid-template-columns: 1fr 1fr; }
  .case-results article:nth-child(3n) { border-right: 1px solid var(--ink); }
  .case-results article:nth-child(2n) { border-right: 0; }
  .case-results article:nth-last-child(-n+3) { border-bottom: 1px solid var(--ink); }
  .case-results article:nth-last-child(-n+2) { border-bottom: 0; }
  .case-outcome { grid-template-columns: 1fr; }
  .process-grid, .daily-flow { grid-template-columns: 1fr 1fr; }
  .process-grid article:nth-child(2), .daily-flow article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(-n+2), .daily-flow article:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .mission-statement .kicker { grid-column: auto; }
  .requirements-card { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .market-strip { gap: 18px; }
  .site-nav { min-height: 66px; }
  .site-nav { flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
  .brand { font-size: 20px; }
  .brand-mark { width: 34px; height: 34px; }
  .account { display: none; }
  .nav-actions { width: 100%; order: 2; justify-content: space-between; gap: 8px; padding-top: 12px; }
  .info-nav-link, .agent-nav-link { font-size: 9px; }
  .wrap { padding-left: 12px; padding-right: 12px; }
  .hero-copy { padding: 32px 24px; }
  .hero h1 { font-size: 48px; }
  .hero-visual { min-height: 330px; }
  .signal-row { grid-template-columns: 1fr; }
  .signal { border-right: 0; border-bottom: 1px solid var(--ink); }
  .signal:last-child { border-bottom: 0; }
  .plans { grid-template-columns: 1fr; }
  .plan + .plan { border-left: 0; border-top: 2px solid var(--ink); }
  .section-head, .page-title { grid-template-columns: 1fr; display: grid; align-items: start; }
  .section-head p, .page-title p { text-align: left; }
  .footer-inner { flex-direction: column; }
  .fact-strip, .process-grid, .daily-flow, .story-cta { grid-template-columns: 1fr; }
  .fact-strip span, .process-grid article, .daily-flow article { border-right: 0; border-bottom: 1px solid var(--ink); }
  .fact-strip span:last-child, .process-grid article:last-child, .daily-flow article:last-child { border-bottom: 0; }
  .guide-step { grid-template-columns: 1fr; gap: 14px; padding: 24px; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-grid section + section { border-left: 0; border-top: 1px solid var(--ink); }
  .key-location-heading, .key-location-grid { grid-template-columns: 1fr; }
  .key-location-grid article + article { border-left: 0; border-top: 2px solid var(--ink); }
  .impact-list li { grid-template-columns: 1fr; gap: 7px; }
  .case-card { grid-template-columns: 1fr; }
  .case-card-arrow { justify-self: start; }
  .case-method-note { grid-template-columns: 1fr; }
  .capture-gallery { grid-template-columns: 1fr 1fr; }
  .capture-gallery figure:nth-child(3n) { border-right: 1px solid #444; }
  .capture-gallery figure:nth-child(2n) { border-right: 0; }
  .capture-gallery figure:nth-last-child(-n+3) { border-bottom: 1px solid #444; }
  .capture-gallery figure:nth-last-child(-n+2) { border-bottom: 0; }
  .case-facts, .case-results { grid-template-columns: 1fr; }
  .case-facts span, .case-results article { border-right: 0 !important; border-bottom: 1px solid var(--ink) !important; }
  .case-facts span:last-child, .case-results article:last-child { border-bottom: 0 !important; }
}
