:root {
  --mission-blue: #0e5a9b;
  --response-red: #e42a2d;
  --graphite: #535d68;
  --cloud: #eef3f7;
  --ink: #12212e;
  --ink-soft: #2f4050;
  --white: #ffffff;
  --line: rgba(18, 33, 46, 0.1);
  --line-strong: rgba(18, 33, 46, 0.18);
  --card: rgba(255, 255, 255, 0.92);
  --card-strong: rgba(255, 255, 255, 0.97);
  --card-dark: linear-gradient(160deg, rgba(8, 45, 76, 0.98), rgba(10, 67, 112, 0.96));
  --shadow-lg: 0 30px 80px rgba(18, 33, 46, 0.16);
  --shadow-md: 0 16px 38px rgba(18, 33, 46, 0.11);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Lato, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbfd 0%, #f0f5f9 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  position: relative;
  min-height: 100vh;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 90, 155, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 90, 155, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 78%);
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.4;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: rgba(14, 90, 155, 0.2);
  top: -80px;
  right: -80px;
}

.orb-b {
  width: 320px;
  height: 320px;
  background: rgba(228, 42, 45, 0.14);
  left: -80px;
  top: 28%;
}

.orb-c {
  width: 380px;
  height: 380px;
  background: rgba(83, 93, 104, 0.1);
  right: 14%;
  bottom: -140px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding-top: 1rem;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.56));
  border-top: 1px solid rgba(14, 90, 155, 0.08);
  border-bottom: 1px solid rgba(14, 90, 155, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 253, 0.82);
  border-bottom: 1px solid rgba(18, 33, 46, 0.08);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(180px, 18vw, 280px);
  height: auto;
}

.footer-logo {
  width: clamp(190px, 18vw, 260px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(14, 90, 155, 0.08);
  color: var(--mission-blue);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--mission-blue), #0b6ec0);
  box-shadow: 0 12px 28px rgba(14, 90, 155, 0.22);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(18, 33, 46, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  padding-top: 3.75rem;
}

.hero-layout,
.visibility-layout,
.buyers-layout,
.request-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy,
.hero-panel,
.section-heading,
.buyers-copy,
.request-copy,
.visibility-copy,
.portal-sidebar,
.portal-workspace,
.ops-login-panel,
.card,
.card-lite {
  position: relative;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-subtitle,
.portal-lead,
.section-heading p,
.request-copy p,
.visibility-copy p,
.buyers-copy p,
.intro-card p,
.service-card p,
.trust-panel p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mission-blue);
}

.muted-eyebrow {
  color: var(--graphite);
}

.hero-actions,
.inline-actions,
.form-actions,
.ops-admin-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.hero-actions {
  margin: 1.75rem 0 1.5rem;
}

.hero-points,
.request-points,
.service-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-proof,
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.proof-chip,
.pill {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 90, 155, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.pill {
  color: var(--mission-blue);
  background: rgba(14, 90, 155, 0.06);
}

.card,
.card-lite {
  border: 1px solid rgba(18, 33, 46, 0.08);
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.card {
  padding: 1.5rem;
}

.card-lite {
  padding: 1.35rem;
}

.elevated {
  box-shadow: var(--shadow-lg);
}

.hero-panel {
  padding: 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 64, 108, 0.94), rgba(16, 74, 124, 0.98));
  color: var(--white);
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: auto -10% -18% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(228, 42, 45, 0.42), transparent 72%);
  filter: blur(10px);
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.hero-panel-logo {
  width: min(72%, 310px);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.live-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4dff8d;
  box-shadow: 0 0 0 8px rgba(77, 255, 141, 0.13);
}

.signal-band {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.dark-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-card h2 {
  margin: 0.35rem 0 0.6rem;
  font-size: 1.75rem;
}

.dark-card p,
.stats-card p,
.stats-card span,
.timeline-node small,
.timeline-node span {
  color: rgba(255, 255, 255, 0.82);
}

.stats-card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.stats-card .stat-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(18, 33, 46, 0.1);
}

.stats-card .stat-line:last-child {
  border-bottom: 0;
}

.stats-card span {
  color: var(--graphite);
  font-weight: 700;
}

.stats-card strong {
  text-align: right;
}

.timeline-preview {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.timeline-node {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-node strong {
  display: block;
  margin: 0.4rem 0 0.35rem;
  font-size: 1.25rem;
}

.intro-grid,
.service-grid,
.ops-grid,
.portal-dashboard-grid {
  display: grid;
  gap: 1.2rem;
}

.intro-grid {
  grid-template-columns: repeat(3, 1fr);
}

.intro-card,
.trust-panel {
  min-height: 100%;
}

.card-kicker,
.service-tag,
.stack-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(14, 90, 155, 0.08);
  color: var(--mission-blue);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.6rem;
}

.section-heading h2,
.buyers-copy h2,
.request-copy h2,
.visibility-copy h2,
.portal-sidebar h1,
.ops-login-panel h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.03;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-card h3,
.intro-card h3,
.trust-panel h3 {
  margin: 0;
  font-size: 1.3rem;
}

.portal-shell {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.portal-workspace {
  min-width: 0;
}

.portal-empty,
.portal-dashboard,
.list-card,
.detail-card {
  min-height: 100%;
}

.portal-summary,
.summary-grid,
.detail-grid,
.meta-grid,
.ops-metrics {
  display: grid;
  gap: 0.95rem;
}

.portal-summary,
.summary-grid {
  grid-template-columns: repeat(4, 1fr);
}

.portal-preview-grid {
  margin-top: 1rem;
}

.portal-dashboard-grid {
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: start;
  margin-top: 1rem;
}

.delivery-list,
.admin-list {
  display: grid;
  gap: 0.85rem;
}

.delivery-item,
.admin-item {
  width: 100%;
  border: 1px solid rgba(18, 33, 46, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  text-align: left;
  box-shadow: 0 10px 24px rgba(18, 33, 46, 0.08);
}

.delivery-item.active {
  border-color: rgba(14, 90, 155, 0.35);
  box-shadow: 0 14px 28px rgba(14, 90, 155, 0.16);
}

.delivery-top,
.admin-top,
.detail-top,
.section-subhead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.delivery-top h3,
.admin-top h3,
.detail-top h2,
.detail-top h3,
.section-subhead h2,
.section-subhead h3 {
  margin: 0;
}

.delivery-top p,
.admin-top p,
.section-subhead p,
.admin-meta,
.detail-placeholder p,
.empty-state,
.footer-legal,
.footer-meta {
  color: var(--ink-soft);
}

.delivery-meta,
.ops-metrics {
  margin-top: 0.8rem;
}

.delivery-meta {
  display: grid;
  gap: 0.75rem;
}

.delivery-mini span,
.detail-label,
.summary-card span,
.metric-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--graphite);
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.detail-grid,
.meta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-grid {
  margin-top: 1rem;
}

.summary-card,
.stat-card,
.metric-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 33, 46, 0.08);
}

.metric-card strong,
.stat-card strong,
.summary-card strong {
  display: block;
  font-size: 1.05rem;
}

.metric-card small,
.stat-card small {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
}

.detail-shell {
  display: grid;
  gap: 1rem;
}

.detail-section {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 33, 46, 0.08);
}

.detail-section h3 {
  margin-top: 0;
}

.signature-block {
  margin-top: 1rem;
}

.signature-frame {
  min-height: 110px;
  border: 1px solid rgba(18, 33, 46, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.signature-frame img {
  width: 100%;
  height: auto;
}

.signature-sample {
  justify-content: flex-start;
  align-items: flex-end;
  background: linear-gradient(180deg, #ffffff, #f1f7fb);
}

.signature-name {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #233648;
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  opacity: 0.82;
}

.timeline-list {
  display: grid;
  gap: 0.75rem;
}

.timeline-entry {
  position: relative;
  padding: 0.95rem 1rem;
  border-left: 4px solid var(--mission-blue);
  border-radius: 0 16px 16px 0;
  background: rgba(14, 90, 155, 0.06);
}

.timeline-entry h4 {
  margin: 0 0 0.3rem;
}

.timeline-entry time {
  display: block;
  color: var(--graphite);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.status-delivered {
  background: rgba(24, 133, 82, 0.12);
  color: #188552;
}

.status-in_transit {
  background: rgba(14, 90, 155, 0.12);
  color: var(--mission-blue);
}

.status-scheduled {
  background: rgba(228, 42, 45, 0.11);
  color: var(--response-red);
}

.stack-form {
  display: grid;
  gap: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

.form-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(18, 33, 46, 0.14);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(14, 90, 155, 0.42);
  box-shadow: 0 0 0 4px rgba(14, 90, 155, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--mission-blue), #0b6ec0);
  box-shadow: 0 16px 34px rgba(14, 90, 155, 0.26);
}

.btn-secondary {
  color: var(--mission-blue);
  background: rgba(14, 90, 155, 0.09);
  border: 1px solid rgba(14, 90, 155, 0.16);
}

.btn-ghost {
  color: var(--ink-soft);
  background: rgba(18, 33, 46, 0.06);
  border: 1px solid rgba(18, 33, 46, 0.09);
}

.auth-form {
  margin-top: 1rem;
}

.credential-card code {
  font-weight: 900;
}

.client-identity {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(14, 90, 155, 0.06);
  border: 1px solid rgba(14, 90, 155, 0.12);
  color: var(--ink-soft);
}

.client-identity strong {
  color: var(--ink);
}

.form-note {
  min-height: 1.3em;
  margin: 0;
  font-size: 0.95rem;
  color: var(--graphite);
}

.form-note.is-error {
  color: var(--response-red);
}

.form-note.is-success {
  color: #188552;
}

.signature-area {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px dashed rgba(18, 33, 46, 0.18);
}

.inline-subhead {
  margin-bottom: 0.75rem;
}

.signature-pad {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(18, 33, 46, 0.12);
  background: #ffffff;
  touch-action: none;
}

.ops-shell,
.ops-workspace {
  display: grid;
  gap: 1.2rem;
}

.ops-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ops-grid.two-col-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ops-grid.three-col-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.request-layout,
.buyers-layout,
.visibility-layout {
  align-items: start;
}

.hidden {
  display: none !important;
}

.empty-state,
.detail-placeholder {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(18, 33, 46, 0.16);
}

.site-footer {
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(18, 33, 46, 0.08);
}

.compact-footer {
  padding-top: 1rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-legal,
.footer-meta {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .ops-grid.three-col-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 33, 46, 0.08);
    box-shadow: 0 18px 44px rgba(18, 33, 46, 0.14);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .hero-layout,
  .visibility-layout,
  .buyers-layout,
  .request-layout,
  .portal-shell,
  .portal-dashboard-grid,
  .ops-grid.two-col-grid {
    grid-template-columns: 1fr;
  }

  .portal-shell {
    gap: 1rem;
  }

  .portal-summary,
  .summary-grid,
  .ops-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.25rem 0;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .portal-summary,
  .summary-grid,
  .ops-metrics,
  .detail-grid,
  .meta-grid,
  .form-grid.two-up,
  .service-grid,
  .timeline-preview {
    grid-template-columns: 1fr;
  }

  .footer-wrap,
  .ops-admin-bar,
  .hero-actions,
  .inline-actions,
  .form-actions,
  .section-subhead,
  .detail-top,
  .admin-top,
  .delivery-top,
  .hero-panel-top {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel-logo {
    width: min(100%, 280px);
  }

  .brand-logo {
    width: min(70vw, 230px);
  }

  .card,
  .card-lite,
  .hero-panel {
    padding: 1.15rem;
  }
}

.utility-bar {
  background: linear-gradient(90deg, var(--mission-blue), var(--response-red));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.utility-wrap {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.utility-copy {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.utility-links a,
.utility-links span {
  color: var(--white);
  opacity: 0.96;
}

.utility-links a {
  font-weight: 700;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.accent-word {
  color: var(--response-red);
}

.hero-contact-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 90, 155, 0.16);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(18, 33, 46, 0.08);
  color: var(--mission-blue);
  font-weight: 900;
}

.contact-pill:hover,
.contact-pill:focus-visible {
  transform: translateY(-1px);
  color: var(--response-red);
}

.narrow-heading {
  max-width: 760px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.pillar-card {
  min-height: 100%;
  border-top: 4px solid rgba(14, 90, 155, 0.28);
}

.pillar-card:nth-child(2) {
  border-top-color: rgba(228, 42, 45, 0.46);
}

.pillar-card:nth-child(3) {
  border-top-color: rgba(14, 90, 155, 0.42);
}

.pillar-card:nth-child(4) {
  border-top-color: rgba(83, 93, 104, 0.36);
}

.service-note {
  margin-top: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.service-note strong {
  color: var(--mission-blue);
}

.buyers-panels {
  display: grid;
  gap: 1rem;
}

.support-callout {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.support-callout p {
  margin: 0.55rem 0 0;
  line-height: 1.65;
}

.support-callout a {
  color: var(--mission-blue);
  font-weight: 700;
}

.footer-wrap-wide {
  align-items: flex-start;
}

.footer-brand-block {
  max-width: 720px;
}

.footer-contact-block {
  display: grid;
  gap: 0.55rem;
  text-align: right;
}

.footer-contact-block a {
  color: var(--mission-blue);
  font-weight: 900;
}

.footer-contact-block a:hover,
.footer-contact-block a:focus-visible {
  color: var(--response-red);
}

.footer-contact-block .footer-meta {
  margin-top: 0.35rem;
}

.contact-stack {
  margin-top: 1rem;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(228, 42, 45, 0.9));
}

.nav-links .nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--mission-blue) 0%, #1573bf 60%, var(--response-red) 100%);
}

.btn-primary {
  box-shadow: 0 18px 42px rgba(14, 90, 155, 0.25);
}

.request-points li {
  margin-bottom: 0.3rem;
}

@media (max-width: 1180px) {
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .utility-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .utility-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .utility-links,
  .hero-contact-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-block {
    text-align: left;
  }
}
