:root {
  --ink: #000000;
  --ink-soft: #070808;
  --navy: #000000;
  --navy-deep: #070808;
  --blue: #001f60;
  --rfid-blue: #001f60;
  --rfid-blue-bright: #284b9c;
  --yellow: var(--rfid-blue);
  --yellow-deep: #001744;
  --yellow-soft: #e8edf8;
  --green: #176844;
  --green-soft: #e0f2e7;
  --red: #bd3024;
  --red-soft: #fbe8e4;
  --canvas: #f8f8f7;
  --paper: #ffffff;
  --paper-warm: #f4f4f2;
  --line: #dededb;
  --muted: #5b5c5b;
  --white: #ffffff;
  --shadow: 0 16px 36px rgba(0, 0, 0, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--rfid-blue); color: var(--white); }
a { color: var(--ink); text-decoration-color: var(--yellow-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink); text-decoration-thickness: 2px; }
button, input, select, textarea { font: inherit; }

.header-inner, .container { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}
.site-header::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 4px;
  background: var(--rfid-blue);
  content: "";
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
}
.brand:hover { color: var(--white); text-decoration: none; }
.brand-mark {
  display: inline-grid;
  width: 112px;
  height: 34px;
  place-items: center;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .7);
  background: var(--white);
}
.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand > span:last-child {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.05;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 3px 9px; }
.main-nav a, .plain-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 6px 3px;
  color: rgba(255, 255, 255, .9);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .085em;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a::after {
  position: absolute;
  right: 3px;
  bottom: 4px;
  left: 3px;
  height: 2px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.main-nav a:hover, .plain-button:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }
.inline-form { display: inline; }

main { min-height: calc(100vh - 172px); padding: 48px 0 78px; }
.messages { display: grid; gap: 9px; margin-bottom: 28px; }
.message {
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 0 5px 14px rgba(18, 19, 16, .04);
}
.message.success { border-left-color: var(--green); background: var(--green-soft); }
.message.error { border-left-color: var(--red); background: var(--red-soft); }
.message.warning { border-left-color: var(--rfid-blue); background: var(--yellow-soft); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 9vw, 128px) 0 clamp(56px, 8vw, 104px);
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}
.hero--campaign {
  color: var(--ink);
  background-color: #edf0ef;
  background-image: url("../img/banner.03823af9f3b1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 63%, rgba(40, 75, 156, .48) 63% 64%, transparent 64%),
    repeating-linear-gradient(90deg, transparent 0 106px, rgba(255, 255, 255, .055) 106px 107px);
  content: "";
}
.hero::after {
  position: absolute;
  right: max(4vw, 28px);
  bottom: -75px;
  z-index: -1;
  width: min(28vw, 370px);
  aspect-ratio: 1;
  background: var(--rfid-blue-bright);
  content: "";
  transform: rotate(24deg);
}
.hero--campaign::before {
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .93) 40%, rgba(255, 255, 255, .57) 57%, rgba(255, 255, 255, .12) 78%, rgba(255, 255, 255, .04) 100%);
}
.hero--campaign::after { display: none; }
.hero-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(36px, 7vw, 94px);
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--rfid-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero .eyebrow { color: rgba(255, 255, 255, .68); }
.hero--campaign .eyebrow { color: var(--rfid-blue); }
h1, h2, h3 { line-height: .98; }
h1, h2 { font-family: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; letter-spacing: -.06em; }
h1 { max-width: 920px; margin: 0 0 22px; font-size: clamp(44px, 6.7vw, 88px); font-weight: 650; }
h2 { margin: 0 0 15px; color: var(--ink); font-size: clamp(29px, 3.4vw, 48px); font-weight: 650; }
h3 { margin: 0 0 9px; color: var(--ink); font-size: 20px; font-weight: 650; letter-spacing: -.035em; }
.hero p:not(.eyebrow) { max-width: 660px; margin: 0; color: rgba(255, 255, 255, .76); font-size: 18px; }
.hero--campaign p:not(.eyebrow) { color: var(--ink-soft); }
.hero-panel {
  position: relative;
  padding: 24px 0 2px 23px;
  border-left: 1px solid rgba(255, 255, 255, .74);
  color: var(--white);
}
.hero-panel::before {
  position: absolute;
  top: -28px;
  right: 0;
  left: 23px;
  height: 1px;
  background: rgba(255, 255, 255, .34);
  content: "";
}
.hero-panel > span { color: rgba(255, 255, 255, .62); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-panel strong { display: block; margin: 8px 0 7px; color: var(--white); font-size: clamp(22px, 2.2vw, 31px); line-height: 1.05; }
.hero-panel p { margin: 0; color: rgba(255, 255, 255, .75); font-size: 14px !important; }
.hero--campaign .hero-panel {
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, .16);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.hero--campaign .hero-panel::before { display: none; }
.hero--campaign .hero-panel > span { color: var(--muted); }
.hero--campaign .hero-panel strong { color: var(--ink); }
.hero--campaign .hero-panel p { color: var(--muted); }

.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 29px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  box-shadow: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .075em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.button:hover { color: var(--white); border-color: var(--rfid-blue); background: var(--rfid-blue); text-decoration: none; transform: translateY(-1px); }
.button:focus-visible, .plain-button:focus-visible, .main-nav a:focus-visible, a:focus-visible { outline: 3px solid var(--rfid-blue); outline-offset: 3px; }
.button.secondary { color: var(--ink); border-color: var(--ink); background: transparent; }
.button.secondary:hover { color: var(--white); border-color: var(--ink); background: var(--ink); }
.button.outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button.outline:hover { color: var(--white); border-color: var(--ink); background: var(--ink); }
.button.danger { color: var(--white); border-color: var(--red); background: var(--red); }
.button.danger:hover { color: var(--white); border-color: #921f16; background: #921f16; }
.button.small { min-height: 35px; padding: 8px 11px; font-size: 10px; }
.hero .button:not(.secondary) { color: var(--ink); border-color: var(--white); background: var(--white); }
.hero .button:not(.secondary):hover { color: var(--white); border-color: var(--rfid-blue-bright); background: var(--rfid-blue-bright); }
.hero .button.secondary { color: var(--white); border-color: rgba(255, 255, 255, .82); background: transparent; }
.hero .button.secondary:hover { color: var(--ink); border-color: var(--white); background: var(--white); }
.hero--campaign .button:not(.secondary) { color: var(--white); border-color: var(--ink); background: var(--ink); }
.hero--campaign .button:not(.secondary):hover { color: var(--white); border-color: var(--rfid-blue); background: var(--rfid-blue); }
.hero--campaign .button.secondary { color: var(--ink); border-color: var(--ink); background: rgba(255, 255, 255, .76); }
.hero--campaign .button.secondary:hover { color: var(--white); border-color: var(--ink); background: var(--ink); }

.role-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 30px;
}
.role-choice-card {
  display: flex;
  min-height: 206px;
  flex-direction: column;
  align-items: flex-start;
  padding: 21px;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, .2);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.role-choice-card:hover { color: var(--ink); border-color: var(--rfid-blue); text-decoration: none; transform: translateY(-3px); }
.role-choice-card:focus-visible { outline: 3px solid var(--rfid-blue); outline-offset: 4px; }
.role-choice-card__eyebrow {
  margin-bottom: 17px;
  color: var(--rfid-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.role-choice-card strong { color: currentColor; font-size: 25px; font-weight: 750; letter-spacing: -.04em; line-height: 1.08; }
.role-choice-card > span:not(.role-choice-card__eyebrow) { margin-top: 9px; font-size: 14px; line-height: 1.45; }
.role-choice-card b {
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-bottom: 2px solid currentColor;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.role-choice-card--representative { color: var(--white); border-color: var(--ink); background: var(--ink); }
.role-choice-card--representative:hover { color: var(--white); border-color: var(--rfid-blue); background: var(--rfid-blue); }
.role-choice-card--representative .role-choice-card__eyebrow { color: rgba(255, 255, 255, .68); }
.role-choice-card--integrator { border-top: 4px solid var(--rfid-blue); }
.hero-login { margin-top: 18px !important; font-size: 13px !important; }
.hero-login a { color: var(--ink); font-weight: 800; }
.hero-login a:hover { color: var(--rfid-blue); }

.section { padding: 76px 0 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.section-heading p { max-width: 620px; margin: 0; color: var(--muted); }
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  position: relative;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
}
.card.compact { padding: 21px; }
.card p:last-child { margin-bottom: 0; }
.card:hover { border-color: #aaa9a1; }
.feature-number {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--white);
  background: var(--rfid-blue);
  font-size: 13px;
  font-weight: 950;
}

.dashboard-action-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dashboard-action-card:hover { color: var(--ink); border-color: var(--ink); box-shadow: var(--shadow); text-decoration: none; transform: translateY(-3px); }
.dashboard-action-card:focus-visible { outline: 3px solid var(--rfid-blue); outline-offset: 4px; }
.dashboard-action-card__step {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.dashboard-action-card__content h3 { margin: 0 0 9px; font-size: 25px; }
.dashboard-action-card__content p { margin: 0; color: var(--muted); font-size: 15px; }
.dashboard-action-card__cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding: 0;
  border-bottom: 2px solid var(--rfid-blue);
  border-radius: 0;
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dashboard-action-card__cta span { font-size: 19px; line-height: 1; transition: transform .18s ease; }
.dashboard-action-card:hover .dashboard-action-card__cta span { transform: translateX(4px); }
.dashboard-action-card--availability { background: var(--paper); }
.dashboard-action-card--availability .dashboard-action-card__step { color: var(--white); background: var(--rfid-blue); border-color: var(--rfid-blue); }
.dashboard-action-card--availability .dashboard-action-card__content p { color: var(--muted); }
.dashboard-action-card--reserve { color: var(--white); border-color: var(--ink); background: var(--ink); }
.dashboard-action-card--reserve::after { position: absolute; top: -38px; right: -42px; width: 154px; aspect-ratio: 1; background: var(--rfid-blue-bright); content: ""; transform: rotate(30deg); }
.dashboard-action-card--reserve .dashboard-action-card__step { position: relative; z-index: 1; color: var(--ink); border-color: var(--white); background: var(--white); }
.dashboard-action-card--reserve .dashboard-action-card__content { position: relative; z-index: 1; }
.dashboard-action-card--reserve .dashboard-action-card__content h3 { color: var(--white); }
.dashboard-action-card--reserve .dashboard-action-card__content p { color: rgba(255, 255, 255, .7); }
.dashboard-action-card--reserve .dashboard-action-card__cta { position: relative; z-index: 1; border-bottom-color: var(--white); color: var(--white); }
.dashboard-action-card--reserve:hover { color: var(--white); border-color: var(--rfid-blue-bright); }
.dashboard-action-card--default { background: var(--paper-warm); }
.dashboard-action-card--default .dashboard-action-card__step { color: var(--ink); border-color: var(--line); background: transparent; }

.notice {
  padding: 20px 21px;
  border: 1px solid #c9d2e8;
  border-left: 4px solid var(--rfid-blue);
  border-radius: 0;
  background: var(--yellow-soft);
}
.notice h1, .notice h2 { margin-top: 0; }
.notice.info { border-color: var(--line); border-left-color: var(--ink); background: var(--paper-warm); }
.notice.success { border-color: #b6d9c5; border-left-color: var(--green); background: var(--green-soft); }
.notice.danger { border-color: #e9bdb8; border-left-color: var(--red); background: var(--red-soft); }

.page-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.page-heading h1 { margin: 0 0 10px; color: var(--ink); font-size: clamp(36px, 4.5vw, 59px); }
.page-heading p { margin: 0; color: var(--muted); }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-bottom: 28px; border: 1px solid var(--line); background: var(--line); }
.metric { min-height: 139px; padding: 20px; background: var(--paper); }
.metric .label { display: block; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.metric .value { display: block; margin-top: 13px; color: var(--ink); font-size: clamp(28px, 3.2vw, 43px); font-weight: 850; letter-spacing: -.06em; line-height: 1; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(290px, .8fr); gap: 24px; align-items: start; }
.form-card { max-width: 720px; border-top: 4px solid var(--rfid-blue); }
.form-card.wide { max-width: none; }
.registration-sidebar { display: grid; gap: 14px; }
.campaign-period-panel { border-left-color: var(--rfid-blue); background: var(--yellow-soft); }
.campaign-period-panel .eyebrow { margin-bottom: 9px; }
.campaign-period-panel h2 { margin-bottom: 14px; font-size: 28px; }
.campaign-period-panel__dates { margin: 0 0 8px; color: var(--ink); font-size: 21px; font-weight: 800; letter-spacing: -.035em; line-height: 1.15; }
.campaign-period-panel p:last-child { margin-bottom: 0; }
form p { margin: 0 0 19px; }
form label { display: block; margin-bottom: 7px; color: var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
form input:not([type="checkbox"]), form select, form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #bbbcb4;
  border-radius: 0;
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
form textarea { min-height: 112px; resize: vertical; }
form input:not([type="checkbox"]):hover, form select:hover, form textarea:hover { border-color: #777970; }
form input:focus, form select:focus, form textarea:focus { border-color: var(--rfid-blue); outline: 3px solid rgba(0, 31, 96, .18); outline-offset: 0; }
form input[readonly] { color: #4f514b; border-color: #c7c8c0; background: #ecece6; cursor: not-allowed; }
form input[type="checkbox"] { width: 17px; height: 17px; margin-right: 8px; accent-color: var(--ink); vertical-align: -3px; }
form label:has(input[type="checkbox"]) { color: var(--ink); font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.helptext, .helptext ul { margin: 6px 0 0; padding-left: 0; color: var(--muted); font-size: 12px; }
.helptext ul { padding-left: 17px; }
.errorlist { margin: 6px 0 0; padding-left: 17px; color: var(--red); font-size: 13px; }
.nonfield { padding: 12px; border-left: 4px solid var(--red); background: var(--red-soft); color: var(--red); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 0; background: var(--paper); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 14px 15px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { color: var(--white); background: var(--ink); font-size: 10px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #f5f5ef; }
.status { display: inline-block; padding: 5px 7px; border: 1px solid currentColor; border-radius: 0; background: transparent; color: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .075em; line-height: 1; text-transform: uppercase; }
.status.available, .status.active, .status.won, .status.eligible-order { color: #176844; background: var(--green-soft); }
.status.unavailable, .status.cancelled, .status.expired, .status.lost, .status.oracle-error { color: #a72319; background: var(--red-soft); }
.status.warning, .status.under-review { color: var(--rfid-blue); background: var(--yellow-soft); }
.definition-list { display: grid; grid-template-columns: 180px 1fr; gap: 9px 20px; margin: 0; }
.definition-list dt { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .03em; }
.definition-list dd { margin: 0; color: var(--ink); font-weight: 650; }
.filters { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; align-items: end; margin-bottom: 23px; padding: 17px; border: 1px solid var(--line); background: var(--paper-warm); }
.filters .filter-actions { display: flex; gap: 8px; }
.filters label { font-size: 10px; }
.filters input, .filters select { padding: 9px 10px; }
.pagination { display: flex; justify-content: center; gap: 14px; padding-top: 19px; font-size: 13px; }
.pagination a { font-weight: 800; }
.muted { color: var(--muted); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.empty { padding: 45px 26px; border: 1px dashed #a9aaa2; border-radius: 0; background: var(--paper-warm); color: var(--muted); text-align: center; }

.admin-bar { margin: -48px 0 42px; padding: 12px 0; color: var(--white); border-top: 1px solid var(--rfid-blue); background: var(--ink-soft); }
.admin-bar .container { display: flex; flex-wrap: wrap; gap: 7px 20px; }
.admin-bar a { color: rgba(255, 255, 255, .8); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.admin-bar a:hover { color: var(--white); }
.certificate { max-width: 800px; margin: 0 auto; border-top: 7px solid var(--rfid-blue); }
.qr-code { max-width: 220px; padding: 10px; background: var(--white); }
.wrap-anywhere { overflow-wrap: anywhere; }

.footer { padding: 31px 0; color: rgba(255, 255, 255, .65); background: var(--navy-deep); font-size: 12px; }
.footer-inner { width: min(1280px, calc(100% - 48px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; }
.footer-inner span:first-child { color: var(--white); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero::after { right: -70px; bottom: -125px; width: 290px; }
  .grid.three { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .header-inner, .container, .hero-grid, .footer-inner { width: min(100% - 32px, 1280px); }
  .header-inner { min-height: 0; padding: 15px 0 14px; align-items: flex-start; flex-direction: column; gap: 7px; }
  .main-nav { width: 100%; gap: 2px 12px; }
  .main-nav a, .plain-button { min-height: 31px; font-size: 10px; }
  main { padding: 32px 0 56px; }
  .hero { padding: 60px 0 64px; }
  .hero--campaign { background-position: 68% center; }
  .hero h1 { font-size: clamp(42px, 14vw, 65px); }
  .hero-grid { gap: 46px; }
  .hero-panel { max-width: 430px; }
  .role-choice-grid { grid-template-columns: 1fr; }
  .section { padding-top: 55px; }
  .grid.two, .metric-grid { grid-template-columns: 1fr; }
  .page-heading, .section-heading { align-items: flex-start; flex-direction: column; }
  .dashboard-action-card { min-height: 208px; }
  .filters { grid-template-columns: 1fr; }
  .definition-list { grid-template-columns: 1fr; gap: 3px; }
  .definition-list dd { margin-bottom: 12px; }
  .footer-inner { flex-direction: column; }
  .admin-bar { margin: -32px 0 32px; }
}

@media print {
  .site-header, .footer, .admin-bar, .no-print, .messages { display: none !important; }
  body { background: #fff; }
  main { padding: 0; }
  .card, .table-wrap { box-shadow: none; border-color: #bbb; }
}
