/* ==========================================================================
   OfferU Brand 2.0 — shared stylesheet for the brochure website
   Design source: docs/design-brand-2.0.md
   Pure static CSS. No build step. No external fonts (system stack only).
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #1D2557;
  --navy-700: #2B3A8F;
  --blue-500: #3D5AD1;
  --blue-200: #C9D6F2;
  --blue-050: #EEF3FB;
  --white: #FFFFFF;
  --ink-600: #4A5578;
  --ink-400: #8B94B3;
  --success: #1E9E6A;
  --warning: #D98E00;
  --error: #D64545;
  --radius-card: 14px;
  --radius-btn: 10px;
  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1120px;
  --shadow-soft: 0 2px 12px rgba(29, 37, 87, 0.06);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.625; /* 16/26 */
  color: var(--ink-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  text-wrap: balance;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem); /* up to 56px */
  line-height: 1.14; /* 56/64 */
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem); /* up to 36px */
  line-height: 1.22; /* 36/44 */
  font-weight: 700;
}

h3 {
  font-size: 1.375rem; /* 22px */
  line-height: 1.36; /* 22/30 */
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--navy-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-700);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-btn) 0;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--tinted {
  background: var(--blue-050);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem; /* 13px */
  line-height: 1.54;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}

.lede {
  font-size: 1.125rem;
  color: var(--ink-600);
}

.caption {
  font-size: 0.8125rem;
  line-height: 1.54;
  color: var(--ink-400);
}

.tabular {
  font-variant-numeric: tabular-nums;
}

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--blue-200);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.site-header__logo img {
  height: 40px;
  width: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-900);
  border-radius: 8px;
}

.site-nav a:hover {
  text-decoration: none;
  background: var(--blue-050);
}

.site-nav a[aria-current="page"] {
  color: var(--navy-700);
  box-shadow: inset 0 -3px 0 var(--navy-700);
  border-radius: 8px 8px 0 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-btn);
  padding: 10px;
  cursor: pointer;
  color: var(--navy-900);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

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

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--blue-200);
    box-shadow: var(--shadow-soft);
    padding: 8px 24px 16px;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav a {
    display: block;
    padding: 12px 14px;
  }

  .site-nav a[aria-current="page"] {
    box-shadow: inset 3px 0 0 var(--navy-700);
    border-radius: 0 8px 8px 0;
    background: var(--blue-050);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--navy-700);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-900);
}

.btn--outline {
  background: var(--white);
  color: var(--navy-700);
  border-color: var(--navy-700);
}

.btn--outline:hover {
  background: var(--blue-050);
}

.btn[disabled],
.btn:disabled {
  background: var(--blue-200);
  color: var(--navy-900);
  cursor: not-allowed;
  opacity: 0.7;
}

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--blue-050);
  color: var(--navy-700);
  border: 1px solid var(--blue-200);
}

.chip--soon {
  color: var(--warning);
  border-color: currentColor;
  background: #FFF8EC;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-card);
  padding: 28px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

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

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

@media (max-width: 980px) {
  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .card-grid--2,
  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Icon badge (single icon style site-wide) ---------- */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-050);
  border: 1px solid var(--blue-200);
  color: var(--navy-700);
  flex: none;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge--sm {
  width: 44px;
  height: 44px;
}

.icon-badge--sm svg {
  width: 20px;
  height: 20px;
}

.icon-badge--lg {
  width: 72px;
  height: 72px;
}

.icon-badge--lg svg {
  width: 34px;
  height: 34px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero__copy .lede {
  max-width: 46ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Value-prop rows under a hero heading (icon + text, hairline dividers) */
.prop-list {
  margin-top: 32px;
  max-width: 440px;
}

.prop-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--blue-200);
}

.prop-list li:first-child {
  border-top: 1px solid var(--blue-200);
}

.prop-list strong {
  display: block;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 700;
}

.prop-list span {
  color: var(--ink-600);
  font-size: 0.9375rem;
}

/* ---------- Audience cards (home) ---------- */
.audience-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.audience-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.audience-card__head h3 {
  margin: 0;
  font-size: 1.125rem;
}

.audience-card p {
  margin: 0;
  font-size: 0.9375rem;
}

.audience-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

/* ---------- How it works (01/02/03 strip) ---------- */
.how-strip {
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-card);
  background: var(--white);
  padding: 36px 32px;
}

.how-strip__title {
  text-align: center;
  margin-bottom: 28px;
}

.how-strip__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}

.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.how-step__num {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-500);
}

.how-step h3 {
  font-size: 1rem;
  margin: 2px 0 4px;
}

.how-step p {
  margin: 0;
  font-size: 0.875rem;
}

.how-arrow {
  align-self: center;
  color: var(--blue-200);
}

.how-arrow svg {
  width: 32px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .how-strip__steps {
    grid-template-columns: 1fr;
  }

  .how-arrow {
    transform: rotate(90deg);
    justify-self: start;
    margin-left: 20px;
  }
}

/* Circular how-it-works flow (what-we-do page) */
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  text-align: center;
}

.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.flow__step h3 {
  font-size: 1.0625rem;
  margin: 0;
}

.flow__step p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 30ch;
}

@media (max-width: 900px) {
  .flow {
    grid-template-columns: 1fr;
  }

  .flow .how-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

/* ---------- Tagline banner strip ---------- */
.banner {
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-card);
  background: var(--blue-050);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.banner__text {
  flex: 1;
}

.banner__text strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.banner__text p {
  margin: 0;
  font-size: 0.9375rem;
}

.banner__art {
  flex: none;
  color: var(--blue-200);
}

.banner__art svg {
  width: 220px;
  height: 72px;
}

@media (max-width: 760px) {
  .banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner__art {
    align-self: flex-end;
  }
}

/* ---------- Store badges (inline SVG official-style) ---------- */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.store-badge {
  display: inline-block;
  border-radius: 9px;
  line-height: 0;
}

.store-badge svg {
  height: 52px;
  width: auto;
}

.store-badge:hover {
  opacity: 0.85;
}

.download-panel {
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-card);
  background: var(--white);
  padding: 24px;
  max-width: 440px;
}

.download-panel h3 {
  font-size: 1.0625rem;
  margin-bottom: 16px;
}

.download-panel .caption {
  margin: 14px 0 0;
}

/* ---------- Phone mockup (CSS device frame + illustrative app UI) ---------- */
.phone {
  width: 300px;
  border-radius: 44px;
  background: var(--navy-900);
  padding: 10px;
  box-shadow: 0 24px 48px rgba(29, 37, 87, 0.18);
  flex: none;
}

.phone__screen {
  background: var(--white);
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--blue-200);
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink-600);
}

.phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 6px;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 11px;
}

.phone__notch {
  width: 74px;
  height: 18px;
  background: var(--navy-900);
  border-radius: 999px;
  margin: 0 auto;
}

.phone__body {
  padding: 10px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone__brand {
  text-align: center;
  font-weight: 800;
  color: var(--navy-900);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.phone__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.phone__location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--navy-900);
}

.phone__location svg,
.phone__bell svg {
  width: 12px;
  height: 12px;
  stroke: var(--navy-700);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-hero-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.phone-hero-card strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}

.phone-hero-card small {
  display: block;
  opacity: 0.8;
  font-size: 10px;
  margin-top: 2px;
}

.phone-hero-card .phone-chip {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 9px;
  font-weight: 600;
}

.phone-hero-card__disc {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-050);
  border: 2px solid var(--white);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
}

.phone-hero-card__disc svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone__section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 11px;
}

.phone__section-title a {
  font-size: 9px;
  color: var(--blue-500);
  pointer-events: none;
}

.phone-cats {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.phone-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 8.5px;
  color: var(--ink-600);
  flex: 1;
}

.phone-cat i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue-050);
  border: 1px solid var(--blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  font-style: normal;
}

.phone-cat i svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--blue-200);
  border-radius: 10px;
  padding: 7px 9px;
}

.phone-list__thumb {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue-050);
  border: 1px solid var(--blue-200);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
}

.phone-list__thumb svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-list__item strong {
  display: block;
  color: var(--navy-900);
  font-size: 10px;
}

.phone-list__item small {
  font-size: 9px;
  color: var(--ink-400);
}

.phone-list__meta {
  margin-left: auto;
  font-size: 8.5px;
  color: var(--blue-500);
  font-weight: 700;
  white-space: nowrap;
}

.phone__tabbar {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--blue-200);
  padding: 8px 6px 10px;
  font-size: 8.5px;
  color: var(--ink-400);
}

.phone__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.phone__tab svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone__tab--active {
  color: var(--navy-700);
  font-weight: 700;
}

/* Business dashboard mockup pieces */
.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.phone-stat {
  border: 1px solid var(--blue-200);
  border-radius: 10px;
  padding: 8px 10px;
}

.phone-stat small {
  display: block;
  font-size: 8.5px;
  color: var(--ink-400);
}

.phone-stat strong {
  display: block;
  color: var(--navy-900);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.phone-stat em {
  font-style: normal;
  font-size: 8px;
  color: var(--success);
  font-weight: 700;
}

.phone-toggle-card {
  border: 1px solid var(--blue-200);
  border-radius: 10px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-toggle-card strong {
  display: block;
  color: var(--navy-900);
  font-size: 10px;
}

.phone-toggle-card small {
  font-size: 8.5px;
  color: var(--ink-400);
}

.phone-toggle {
  margin-left: auto;
  width: 30px;
  height: 17px;
  border-radius: 999px;
  background: var(--success);
  position: relative;
  flex: none;
}

.phone-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
}

/* Map mockup (join page) */
.phone-map {
  position: relative;
  border: 1px solid var(--blue-200);
  border-radius: 12px;
  background:
    linear-gradient(var(--blue-200) 1px, transparent 1px) 0 0 / 100% 26px,
    linear-gradient(90deg, var(--blue-200) 1px, transparent 1px) 0 0 / 30px 100%,
    var(--blue-050);
  height: 120px;
  overflow: hidden;
}

.phone-map__pin {
  position: absolute;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--navy-700);
  color: var(--white);
  font-size: 8.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-map__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-500);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px rgba(61, 90, 209, 0.25);
}

.phone-search {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--ink-400);
  font-size: 9.5px;
}

.phone-search svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
}

/* ---------- Dashboard preview (browser-style panel) ---------- */
.dash-preview {
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-card);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.dash-preview__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--blue-200);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy-900);
}

.dash-preview__bar .chip {
  font-size: 0.75rem;
  padding: 3px 10px;
}

.dash-preview__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--blue-050);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dash-stat {
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 10px;
  padding: 12px 14px;
}

.dash-stat small {
  display: block;
  font-size: 0.6875rem;
  color: var(--ink-400);
}

.dash-stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--navy-900);
  font-variant-numeric: tabular-nums;
}

.dash-stat em {
  font-style: normal;
  font-size: 0.6875rem;
  color: var(--success);
  font-weight: 700;
}

.dash-charts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dash-chart {
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 10px;
  padding: 12px 14px;
}

.dash-chart small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.dash-chart svg {
  width: 100%;
  height: 72px;
}

@media (max-width: 760px) {
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-charts {
    grid-template-columns: 1fr;
  }
}

/* ---------- Feature rows / detail cards ---------- */
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.0625rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
}

/* ---------- Board ---------- */
.board-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.board-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 18px;
}

.board-card h3 {
  font-size: 1rem;
  margin: 4px 0 0;
}

.board-card .role {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue-500);
}

.board-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.board-card .linkedin {
  margin-top: auto;
  padding-top: 8px;
  color: var(--navy-700);
}

.board-card .linkedin svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 1080px) {
  .board-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .board-grid {
    grid-template-columns: 1fr;
  }
}

.rule-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 36px;
  max-width: 560px;
}

.rule-title::before,
.rule-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--blue-200);
}

.rule-title span {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-900);
  white-space: nowrap;
}

/* ---------- News ---------- */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .news-layout {
    grid-template-columns: 1fr;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.news-card--wide {
  grid-column: 1 / -1;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--ink-400);
  font-variant-numeric: tabular-nums;
}

.news-card h3 {
  margin: 0;
  font-size: 1.125rem;
}

.news-card p {
  margin: 0;
  font-size: 0.9375rem;
}

.news-card .read-more {
  margin-top: auto;
  padding-top: 6px;
  font-weight: 700;
  font-size: 0.875rem;
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-side .card {
  padding: 24px;
}

.news-side h3 {
  font-size: 1.0625rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.side-list li {
  border-bottom: 1px solid var(--blue-050);
}

.side-list li:last-child {
  border-bottom: none;
}

.side-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-route {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
}

.contact-route__text {
  flex: 1;
}

.contact-route__text h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-route__text p {
  margin: 0;
  font-size: 0.875rem;
}

.contact-route__mail {
  text-align: right;
  flex: none;
}

.contact-route__mail a {
  font-weight: 700;
  font-size: 0.9375rem;
  word-break: break-all;
}

.contact-route__mail .caption {
  margin: 4px 0 0;
}

@media (max-width: 560px) {
  .contact-route {
    flex-wrap: wrap;
  }

  .contact-route__mail {
    text-align: left;
    width: 100%;
    padding-left: 74px;
  }
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- Forms ---------- */
.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--navy-900);
  background: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-400);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-500);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
}

.form-note.is-visible {
  display: block;
}

.form-note--success {
  background: #E9F7F0;
  border: 1px solid var(--success);
  color: #14532D;
}

.form-note--error {
  background: #FDF1F1;
  border: 1px solid var(--error);
  color: #7F1D1D;
}

/* ---------- Streetscape line-art ---------- */
.streetscape {
  color: var(--blue-200);
}

.streetscape svg {
  width: 100%;
  height: auto;
}

.hero-illustration {
  color: var(--blue-200);
}

.hero-illustration svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--blue-200);
  background: var(--blue-050);
}

.site-footer__tagline {
  border-bottom: 1px solid var(--blue-200);
  padding: 28px 0;
}

.site-footer__tagline .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__tagline strong {
  color: var(--navy-900);
  font-size: 1.125rem;
}

.site-footer__tagline span {
  color: var(--ink-600);
  font-size: 0.9375rem;
}

.site-footer__main {
  padding: 40px 0 20px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
}

@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__brand img {
  height: 34px;
  width: auto;
  margin-bottom: 12px;
}

.site-footer__brand p {
  font-size: 0.875rem;
  max-width: 32ch;
}

.site-footer h4 {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 14px;
}

.site-footer__grid ul li {
  margin-bottom: 10px;
}

.site-footer__grid ul a {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer__legal {
  border-top: 1px solid var(--blue-200);
  margin-top: 32px;
  padding: 18px 0 26px;
}

.site-footer__legal .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--ink-400);
}
