/* ============================================
   GeoSIEM — Public Product Site
   AcuGIS enterprise / compliance aesthetic
   ============================================ */

:root {
  --navy: #0f4c75;
  --navy-dark: #0a334f;
  --navy-deep: #071e33;
  --blue: #3282b8;
  --teal: #1b7f8a;
  --teal-soft: #d7eef0;
  --text: #1f2a33;
  --muted: #5b6b76;
  --line: #d5dee6;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f4f8fb;
  --bg-teal: #eef6f8;
  --ok: #2e7d4f;
  --ok-bg: #e7f5ec;
  --warn: #8a5a00;
  --warn-bg: #fff6e0;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px rgba(7, 30, 51, 0.18), 0 8px 16px rgba(7, 30, 51, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --header-height: 72px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy-deep);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 2100;
  padding: 8px 14px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.nav-links a:focus-visible,
.footer-grid a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(27, 127, 138, 0.45);
  outline-offset: 2px;
}

.btn-lg {
  min-height: 52px;
  padding: 0 26px;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--navy-dark);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(15, 76, 117, 0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--navy);
  background: rgba(15, 76, 117, 0.04);
}

.btn-light {
  background: var(--white);
  color: var(--navy-dark);
}

.btn-light:hover,
.btn-light:focus {
  background: #eef6f8;
  color: var(--navy-dark);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  flex-shrink: 0;
}

.brand-mark {
  color: var(--navy);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.is-active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--bg-soft);
}

.section-alt {
  background:
    radial-gradient(ellipse 70% 60% at 8% 20%, rgba(27, 127, 138, 0.08), transparent 55%),
    linear-gradient(180deg, #f3f8fb 0%, #eef5f8 100%);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
}

.section-header .emphasis {
  margin-top: 10px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  min-width: 0;
  height: 100%;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.info-card p {
  color: var(--muted);
  font-size: 15px;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: var(--teal);
  background: var(--teal-soft);
}

.info-card.compact h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 80px;
  color: var(--white);
  background:
    radial-gradient(ellipse 70% 55% at 88% 12%, rgba(50, 130, 184, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 45% at 8% 88%, rgba(27, 127, 138, 0.22), transparent 50%),
    linear-gradient(135deg, #071e33 0%, #0f4c75 58%, #146e8c 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fd4d9;
}

.hero h1 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-lead {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 14px;
}

.hero-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.capability-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.capability-pills li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.tech-labels {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
}

/* ---------- Product illustration ---------- */
.product-frame {
  margin: 0;
  background: #f7fafc;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.product-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #e8eef3;
  border-bottom: 1px solid var(--line);
}

.chrome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c5d0d8;
}

.chrome-dot:nth-child(1) { background: #d9b4b0; }
.chrome-dot:nth-child(2) { background: #d6c48a; }
.chrome-dot:nth-child(3) { background: #a8c4b0; }

.chrome-title {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.product-body {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 460px;
}

.product-sidebar {
  background: #f0f4f9;
  border-right: 1px solid var(--line);
  padding: 16px 12px;
}

.sidebar-brand {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  padding: 0 8px;
}

.product-sidebar li {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.product-sidebar li.is-active {
  background: var(--navy);
  color: var(--white);
}

.product-main {
  display: grid;
  gap: 12px;
  padding: 14px;
  min-width: 0;
}

.dash-top {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 12px;
}

.dash-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.dash-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.donut-wrap {
  display: flex;
  justify-content: center;
}

.donut {
  width: 118px;
  height: 118px;
}

.donut-track,
.donut-value {
  fill: none;
  stroke-width: 10;
}

.donut-track {
  stroke: #e6eef2;
}

.donut-value {
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-dasharray: 289.027;
  stroke-dashoffset: 23.122;
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
}

.donut-percent {
  font-size: 22px;
  font-weight: 800;
  fill: var(--navy-deep);
  font-family: var(--font);
}

.donut-label {
  font-size: 9px;
  font-weight: 600;
  fill: var(--ok);
  font-family: var(--font);
  letter-spacing: 0.04em;
}

.dash-metrics dl {
  display: grid;
  gap: 8px;
}

.dash-metrics dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
}

.dash-metrics dt {
  color: var(--muted);
}

.dash-metrics dd {
  margin: 0;
  font-weight: 700;
  color: var(--navy-dark);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.chart-head p {
  font-size: 11px;
  color: var(--muted);
}

.activity-chart {
  width: 100%;
  height: auto;
}

.chart-grid line {
  stroke: #edf2f6;
  stroke-width: 1;
}

.chart-days text {
  font-size: 10px;
  fill: #8a99a4;
  font-family: var(--font);
}

.table-scroll {
  overflow-x: auto;
}

.dash-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.dash-table th,
.dash-table td {
  text-align: left;
  padding: 7px 6px;
  border-bottom: 1px solid #eef2f5;
  white-space: nowrap;
}

.dash-table th {
  color: var(--muted);
  font-weight: 600;
}

.dash-table td {
  color: var(--text);
}

.type-pill {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.type-config {
  background: #e7f0f6;
  color: var(--navy);
}

.type-access {
  background: var(--teal-soft);
  color: var(--teal);
}

.type-auth {
  background: var(--warn-bg);
  color: var(--warn);
}

/* ---------- Message band ---------- */
.message-band {
  padding: 22px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.message-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.message-flow li {
  display: flex;
  align-items: center;
}

.message-flow li:not(:last-child)::after {
  content: "→";
  margin: 0 14px;
  color: var(--teal);
  font-weight: 600;
}

/* ---------- GeoServer-aware ---------- */
.aware-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.aware-item {
  padding: 22px 22px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.aware-item h3 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--navy);
}

.aware-item p {
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Workflow ---------- */
.workflow {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.workflow-step,
.workflow-step-split {
  flex: 1;
  min-width: 0;
  padding: 20px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.workflow-split {
  flex: 1.15;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.workflow-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.workflow-step h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.workflow-step p:last-child {
  color: var(--muted);
  font-size: 13px;
}

.workflow-join {
  width: 18px;
  flex-shrink: 0;
  position: relative;
}

.workflow-join::before,
.workflow-join::after {
  content: "";
  position: absolute;
  top: 50%;
  background: var(--teal);
}

.workflow-join::before {
  left: 0;
  right: 6px;
  height: 2px;
  transform: translateY(-50%);
}

.workflow-join::after {
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.workflow-summary {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- Self-hosted ---------- */
.section-hosted {
  background:
    linear-gradient(180deg, rgba(238, 246, 248, 0.4), rgba(215, 238, 240, 0.85));
}

.hosted-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hosted-statement {
  margin: 14px 0 16px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.25;
}

.hosted-layout > div > p:last-child {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%232e7d4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E")
    center / 12px no-repeat,
    var(--ok-bg);
}

/* ---------- Accountability ---------- */
.accountability-line {
  margin-top: 36px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
}

.plan-includes {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.pricing-card .check-list {
  margin-bottom: 28px;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.pricing-card-featured {
  border-color: rgba(15, 76, 117, 0.28);
  box-shadow: var(--shadow-md);
  background:
    linear-gradient(180deg, #f7fbfc 0%, #ffffff 42%);
}

.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- CTA ---------- */
.cta {
  padding: 88px 0;
  color: var(--white);
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(50, 130, 184, 0.24), transparent 55%),
    linear-gradient(135deg, #071e33 0%, #0a334f 45%, #0f4c75 100%);
}

.cta-inner {
  max-width: 760px;
  text-align: center;
}

.cta h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 14px;
}

.cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 28px;
}

.cta-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p:last-child {
  max-width: 280px;
  font-size: 15px;
}

.site-footer h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: #94a3b8;
  font-size: 15px;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--white);
}

.copyright {
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero h1 {
    font-size: 42px;
  }

  .product-sidebar {
    display: none;
  }

  .product-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .is-open .primary-nav {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a {
    height: 48px;
    border-bottom: 0;
  }

  .nav-actions {
    margin-top: 8px;
    gap: 8px;
  }

  .hero-grid,
  .hosted-layout,
  .pricing-grid,
  .footer-grid,
  .aware-grid,
  .card-grid-4,
  .card-grid-3,
  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .section {
    padding: 72px 0;
  }

  .section-header h2,
  .cta h2 {
    font-size: 32px;
  }

  .workflow {
    flex-direction: column;
  }

  .workflow-join {
    width: auto;
    height: 22px;
  }

  .workflow-join::before {
    top: 0;
    bottom: 6px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: none;
  }

  .workflow-join::after {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(135deg);
  }

  .aware-grid,
  .card-grid-4,
  .card-grid-3,
  .card-grid-2,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hosted-layout,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  body {
    font-size: 16px;
  }

  .hero {
    padding: 40px 0 48px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .hosted-statement {
    font-size: 22px;
  }

  .cta {
    padding: 64px 0;
  }

  .cta h2 {
    font-size: 26px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .dash-top {
    grid-template-columns: 1fr;
  }

  .aware-grid,
  .card-grid-4,
  .card-grid-3,
  .card-grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .message-flow {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .message-flow li:not(:last-child)::after {
    content: "↓";
    margin: 0 0 0 8px;
  }

  .nav-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .nav-links a,
  .site-footer a {
    transition: none;
  }
}
