/* ============================================================
   WAYMARK LAB — Civic Precision Design System
   Light theme · Plus Jakarta Sans · Blue + Amber + Cyan
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --blue:        #1570EF;
  --blue-dark:   #0E5BD6;
  --blue-light:  #3B8BF7;
  --blue-50:     #EFF6FF;
  --blue-100:    #DBEAFE;
  --blue-200:    #BFDBFE;
  --amber:       #F59E0B;
  --amber-dark:  #D97706;
  --amber-50:    #FFFBEB;
  --cyan:        #06B6D4;
  --cyan-light:  #22D3EE;
  --cyan-50:     #ECFEFF;
  --emerald:     #059669;
  --slate-950:   #020617;
  --slate-900:   #0F172A;
  --slate-800:   #1E293B;
  --slate-700:   #334155;
  --slate-600:   #475569;
  --slate-500:   #64748B;
  --slate-400:   #94A3B8;
  --slate-300:   #CBD5E1;
  --slate-200:   #E2E8F0;
  --slate-100:   #F1F5F9;
  --slate-50:    #F8FAFC;
  --white:       #FFFFFF;

  --font-main: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius-sm:  8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(21,112,239,0.12);
  --shadow-xl: 0 20px 60px rgba(21,112,239,0.16);

  --nav-h: 68px;
  --section-py: 96px;
  --container-max: 1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--blue-dark); }

ul { list-style: none; }

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

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

.section-py { padding: var(--section-py) 0; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--slate-700);
  line-height: 1.2;
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.text-gradient {
  background: linear-gradient(135deg, #1570EF 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--slate-700);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--slate-500);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 11px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(21,112,239,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-50);
  color: var(--blue-dark);
  border-color: var(--blue-50);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  color: var(--white);
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 14px 30px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.3s ease;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(15,23,42,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-svg { flex-shrink: 0; }

.nav-wordmark {
  font-family: var(--font-main);
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.nav-wordmark strong { font-weight: 800; color: var(--slate-700); }
.nav-wordmark span   { font-weight: 800; color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-50);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-cta { flex-shrink: 0; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--slate-100); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 999;
  padding: 16px 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.nav-mobile.open {
  max-height: 400px;
}

.nav-mobile-link {
  display: block;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-600);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-link:hover,
.nav-mobile-link.active {
  color: var(--blue);
  background: var(--blue-50);
}

.nav-mobile-cta {
  padding: 16px 32px 0;
}
.nav-mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ── Hero Section (Home) ── */
.hero {
  background: var(--white);
  padding: 80px 0 72px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-50);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
}

.hero-headline {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--slate-700);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid var(--slate-200);
  padding-top: 32px;
}

.hero-stat {
  flex: 1;
  padding: 0 28px 0 0;
}
.hero-stat + .hero-stat {
  border-left: 1px solid var(--slate-200);
  padding-left: 28px;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--slate-500);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Hero Visual (Right Column) ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 540px;
}

.hero-blob {
  position: relative;
  width: 440px;
  height: 440px;
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-blob-inner {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle, #BFDBFE 1px, transparent 1px),
    linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  background-size: 28px 28px, 100% 100%;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-blob-icon {
  position: absolute;
  width: 88px;
  height: 88px;
  background: var(--white);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(21,112,239,0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.hero-blob-icon i {
  font-size: 2.25rem;
  color: var(--blue);
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(15,23,42,0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
  border: 1px solid var(--slate-100);
  min-width: 160px;
}

.hero-float-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
  white-space: nowrap;
}

.hero-float-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-700);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero-float-icon {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 2px;
}

.trend {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--emerald);
  background: rgba(5,150,105,0.08);
  border-radius: 4px;
  padding: 2px 6px;
}

.hero-float-card--1 {
  top: 6%;
  right: -10%;
  animation: float 5s ease-in-out infinite;
}
.hero-float-card--2 {
  bottom: 18%;
  right: -8%;
  animation: float 7s ease-in-out infinite 1s;
}
.hero-float-card--3 {
  bottom: 6%;
  left: -5%;
  animation: float 6s ease-in-out infinite 2s;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--slate-50);
  padding: 40px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.trust-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 20px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-chip {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  color: #1570EF;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}
.trust-chip:hover {
  background: var(--blue-100);
  border-color: var(--blue);
}

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  background: var(--slate-50);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--slate-200);
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border-left: 3px solid var(--amber);
  padding-left: 12px;
  margin-bottom: 20px;
  line-height: 1;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--slate-700);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 720px;
}

.page-hero-desc {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Section Intro Layout ── */
.section-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.section-intro.centered {
  align-items: center;
  text-align: center;
}
.section-intro.centered .section-desc {
  margin: 0 auto;
}

/* ── Featured Continuum Card ── */
.continuum-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 60px rgba(21,112,239,0.14);
  border: 1px solid var(--blue-200);
}

.continuum-left {
  background: linear-gradient(135deg, #1570EF 0%, #0E5BD6 100%);
  padding: 52px 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.continuum-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px,
    transparent 0, transparent 50%
  );
  background-size: 20px 20px;
  pointer-events: none;
}

.continuum-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.continuum-name {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.continuum-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.continuum-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.continuum-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.continuum-feature i {
  color: var(--cyan-light);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.continuum-right {
  background: var(--white);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.continuum-product-name {
  font-size: 5rem;
  font-weight: 800;
  color: var(--blue-100);
  letter-spacing: -0.04em;
  line-height: 1;
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 0;
  user-select: none;
}

.continuum-graphic {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
}

.continuum-right-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* SAR-7 workflow visual */
.sar7-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.sar7-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 12px 16px;
}
.sar7-bar-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}
.sar7-bar-icon.blue  { background: var(--blue-50); color: var(--blue); }
.sar7-bar-icon.amber { background: var(--amber-50); color: var(--amber-dark); }
.sar7-bar-icon.green { background: rgba(5,150,105,0.08); color: var(--emerald); }
.sar7-bar-icon.cyan  { background: var(--cyan-50); color: var(--cyan); }

.sar7-bar-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-600);
  flex: 1;
}
.sar7-bar-status {
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}
.sar7-bar-status.complete  { background: rgba(5,150,105,0.1); color: var(--emerald); }
.sar7-bar-status.pending   { background: var(--amber-50); color: var(--amber-dark); }
.sar7-bar-status.active    { background: var(--blue-50); color: var(--blue); }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-top-accent {
  border-top: 3px solid var(--blue);
}

/* ── Industry Cards ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.25s ease;
}
.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.industry-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.625rem;
  transition: all 0.25s;
}

.industry-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 8px;
}
.industry-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.industry-card--health:hover   { border-color: var(--blue-200); }
.industry-card--health .industry-icon { background: var(--blue-50); color: var(--blue); }

.industry-card--permits:hover  { border-color: rgba(245,158,11,0.3); }
.industry-card--permits .industry-icon { background: var(--amber-50); color: var(--amber-dark); }

.industry-card--waste:hover    { border-color: rgba(5,150,105,0.2); }
.industry-card--waste .industry-icon { background: rgba(5,150,105,0.08); color: var(--emerald); }

.industry-card--law:hover      { border-color: var(--slate-300); }
.industry-card--law .industry-icon { background: var(--slate-100); color: var(--slate-600); }

.industry-card--parks:hover    { border-color: rgba(5,150,105,0.2); }
.industry-card--parks .industry-icon { background: rgba(5,150,105,0.08); color: var(--emerald); }

.industry-card--works:hover    { border-color: var(--blue-200); }
.industry-card--works .industry-icon { background: var(--blue-50); color: var(--blue-light); }

/* ── Stats Section ── */
.stats-section {
  background: var(--white);
  padding: var(--section-py) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 48px 32px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--slate-200);
}

.stat-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--blue-50);
  opacity: 0.5;
  z-index: 0;
}

.stat-number {
  position: relative;
  z-index: 1;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.stat-label {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  color: var(--slate-500);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Pillars (Why Waymark) ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  padding: 36px 28px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pillar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pillar-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue-50);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.375rem;
  margin-bottom: 20px;
  transition: background 0.25s, color 0.25s;
}
.pillar-card:hover .pillar-icon {
  background: var(--blue);
  color: var(--white);
}

.pillar-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ── CTA Banner ── */
.cta-banner {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%),
    linear-gradient(135deg, #1570EF 0%, #0E5BD6 50%, #1570EF 100%);
  background-size: 20px 20px, 100% 100%;
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-banner-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.cta-banner-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-banner-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Solutions Page ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s;
}
.solution-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.solution-card--placeholder {
  border: 2px dashed var(--slate-300);
  background: var(--slate-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 240px;
}
.solution-card--placeholder:hover {
  border-color: var(--blue-200);
  background: var(--blue-50);
  transform: none;
  box-shadow: none;
}

.solution-category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.solution-name {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--slate-700);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.solution-desc {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.badge-coming {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber-50);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber-dark);
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue), var(--blue-200));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--blue);
  position: relative;
  z-index: 2;
  transition: all 0.25s;
}
.process-step:hover .process-step-num {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(21,112,239,0.3);
}

.process-step-icon {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 6px;
}

.process-step-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ── Security Page ── */
.security-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.security-intro-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 20px;
}

.security-intro-text p {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.security-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 320px;
}

.shield-visual {
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.shield-visual i {
  font-size: 7rem;
  color: var(--blue);
  opacity: 0.85;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--blue-200);
  top: 50%;
  left: 50%;
}
.shield-ring--1 {
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  animation: float 4s ease-in-out infinite;
}
.shield-ring--2 {
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  border-style: dashed;
  animation: float 6s ease-in-out infinite 1.5s;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.security-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.25s;
}
.security-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.security-card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.375rem;
  margin-bottom: 20px;
  transition: all 0.25s;
}
.security-card:hover .security-card-icon {
  background: var(--blue);
  color: white;
}

.security-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 10px;
}
.security-card-desc {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* Compliance Badges */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.compliance-badge {
  background: var(--white);
  border: 2px solid var(--blue-200);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.25s;
}
.compliance-badge:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.compliance-badge-icon {
  width: 72px;
  height: 72px;
  background: var(--blue-50);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.875rem;
  color: var(--blue);
  transition: all 0.25s;
}
.compliance-badge:hover .compliance-badge-icon {
  background: var(--blue);
  color: white;
}

.compliance-badge-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-700);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.compliance-badge-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* Azure callout */
.azure-callout {
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.azure-callout-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--blue);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.azure-callout-content { flex: 1; }

.azure-callout-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 10px;
}

.azure-callout-desc {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ── About Page ── */
.mission-block {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-block::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 36px;
  font-size: 12rem;
  font-weight: 800;
  color: var(--blue-100);
  line-height: 1;
  font-family: Georgia, serif;
}

.mission-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--slate-700);
  line-height: 1.45;
  max-width: 780px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.mission-attribution {
  font-size: 0.9375rem;
  color: var(--blue);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-stat-item {
  padding: 40px 24px;
  background: var(--white);
}
.about-stat-item + .about-stat-item {
  border-left: 1px solid var(--slate-200);
}

.about-stat-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 0.875rem;
  color: var(--slate-500);
  font-weight: 500;
}

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

.value-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s;
}
.value-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.375rem;
  margin-bottom: 18px;
  transition: all 0.25s;
}
.value-card:hover .value-icon {
  background: var(--blue);
  color: white;
}

.value-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 10px;
}
.value-desc {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.approach-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 20px;
}
.approach-text p {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 14px;
}

.approach-visual {
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--blue-200);
}

.approach-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.approach-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.approach-badge-icon.blue   { background: var(--blue-50); color: var(--blue); }
.approach-badge-icon.amber  { background: var(--amber-50); color: var(--amber-dark); }
.approach-badge-icon.green  { background: rgba(5,150,105,0.08); color: var(--emerald); }
.approach-badge-icon.cyan   { background: var(--cyan-50); color: var(--cyan); }

.approach-badge-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  color: var(--slate-700);
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,112,239,0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.5;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item i {
  color: var(--blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-email-link {
  color: var(--cyan);
  font-weight: 600;
}
.contact-email-link:hover { color: var(--cyan-light); }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
  padding: 24px 28px;
  background: var(--white);
  transition: background 0.2s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--blue-50); }

.faq-question {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-question::before {
  content: 'Q';
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-50);
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.65;
  padding-left: 30px;
}

/* ── Footer ── */
.footer {
  background: var(--slate-900);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-wordmark {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer-wordmark span { color: var(--blue-light); }

.footer-brand-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-brand-email a {
  color: var(--cyan-light);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-brand-email a:hover { color: var(--white); }

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-link:hover { color: rgba(255,255,255,0.65); }

/* ── Responsive ── */

@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero-blob { width: 340px; height: 340px; }
  .hero-visual { height: 380px; }

  .continuum-card { grid-template-columns: 1fr; }
  .continuum-left, .continuum-right { padding: 40px 36px; }
  .continuum-product-name { display: none; }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }

  .security-intro { grid-template-columns: 1fr; gap: 40px; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: repeat(3, 1fr); }

  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .azure-callout { flex-direction: column; text-align: center; }
  .azure-callout-icon { margin: 0 auto; }

  .footer-grid { grid-template-columns: 3fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --nav-h: 60px;
  }

  .container { padding: 0 20px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }

  .hero-visual { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  .hero-headline { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* hero stats stay in a row at tablet; only stack at ≤480px */
  .trust-chips { justify-content: flex-start; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* stats row stays 3-col on tablet; stacks at ≤480px */
  .stat-item { padding: 32px 16px; }

  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

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

  .security-grid { grid-template-columns: 1fr; }
  /* compliance stays 3-col on tablet */
  .compliance-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* values 2-col on tablet, 1-col at ≤480px */
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  /* about stats stay in a row on tablet */
  .about-stat-item { padding: 28px 16px; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }

  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* footer: brand full-width, then 3 link cols in one row */
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 40px; }
  .footer-brand { grid-column: span 3; }
  .footer-brand-desc { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links { justify-content: center; }

  .mission-block { padding: 48px 24px; }
  .mission-block::before { font-size: 8rem; }

  .page-hero { padding: 48px 0 40px; }

  .approach-visual { padding: 32px 24px; }
  .azure-callout { padding: 32px 24px; gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .industries-grid { grid-template-columns: 1fr; }
  .pillars-grid    { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; gap: 12px; }

  /* hero stats stack at mobile */
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat  { padding-right: 0; }
  .hero-stat + .hero-stat {
    border-left: none;
    border-top: 1px solid var(--slate-200);
    padding-left: 0;
    padding-top: 16px;
  }

  /* big stat numbers stack */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 28px 16px; border-top: 1px solid var(--slate-200); }

  /* about stats stack */
  .about-stats-grid { grid-template-columns: 1fr; }
  .about-stat-item + .about-stat-item {
    border-left: none;
    border-top: 1px solid var(--slate-200);
  }

  /* footer: fully stacked at mobile */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand  { grid-column: span 1; }

  .continuum-left, .continuum-right { padding: 32px 24px; }
  .continuum-name { font-size: 2.25rem; }

  .compliance-badge { padding: 32px 20px; }
  .mission-block    { padding: 36px 20px; }
  .mission-block::before { display: none; }

  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 360px) {
  :root { --section-py: 44px; }
  .container { padding: 0 16px; }
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.625rem; }
}
