/* Design Tokens */
:root {
  --brand-primary: #3f6f1f;
  --brand-primary-dark: #294916;
  --brand-secondary: #092044;
  --brand-accent: #5f8f2c;
  --brand-bg: #f4f7ef;
  --text-main: #102033;
  --text-muted: #5d6b75;
  --surface: #ffffff;
  --surface-warm: #fffdf7;
  --border: #d8e1d0;
  --success: #287a4d;
  --warning: #a86612;
  --error: #b23b35;
  --focus: #f2b84b;
  --header-bg: rgba(255, 255, 255, .96);
  --footer-bg: #092044;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(9, 32, 68, .11);
  --content: 1180px;
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--brand-bg);
  color: var(--text-main);
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; }
a { color: var(--brand-secondary); font-weight: 700; text-decoration: none; }
a:hover { text-decoration: underline; }
section[id] { scroll-margin-top: 104px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--brand-secondary);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 12px clamp(16px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(63,111,31,.06), transparent 34%),
    var(--header-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; flex: 0 1 430px; min-width: 0; }
.brand img { width: clamp(230px, 34vw, 430px); display: block; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--text-main);
  font-size: 16px;
}
.site-nav a[aria-current="page"], .site-nav a:hover {
  background: #edf4e7;
  color: var(--brand-primary-dark);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: var(--brand-secondary);
}

/* Buttons And Forms */
.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius);
  padding: 10px 16px;
  background: var(--surface);
  color: var(--brand-primary-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.btn:hover, button:hover { text-decoration: none; border-color: var(--brand-primary-dark); }
.btn.primary { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.btn.primary:hover { background: var(--brand-primary-dark); }
.btn.secondary { border-color: var(--border); color: var(--brand-secondary); }
.btn.small { min-height: 38px; padding: 8px 12px; }
.btn.large { min-height: 50px; padding: 13px 20px; }
label { display: grid; gap: 6px; margin: 14px 0; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: #fff;
  color: var(--text-main);
  font: inherit;
}
textarea { resize: vertical; }

/* Layout Patterns */
.page-shell, .section-shell {
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
  padding: 68px 0;
}
.page-shell.narrow { width: min(calc(100% - 36px), 760px); }
.section-band { background: #e9f0e2; border-block: 1px solid var(--border); }
.section-heading { max-width: 820px; margin: 0 auto 36px; text-align: center; }
.section-heading.align-left { margin-inline: 0; text-align: left; }
.section-heading h1, .section-heading h2, h1, h2, h3 { line-height: 1.12; color: var(--brand-secondary); }
h1 { font-size: clamp(36px, 6vw, 64px); margin: 0 0 16px; }
h2 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 14px; }
h3 { font-size: 20px; margin: 0 0 8px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.small-note { color: var(--text-muted); font-size: 14px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.grid, .value-grid, .situation-grid, .circle-types {
  display: grid;
  gap: 18px;
}
.grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.value-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.page-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }

/* Cards And Status */
.grid article, .icon-card, .form-card, .auth-card, .preview-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.icon-card { min-height: 210px; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #e8f2dd;
  color: var(--brand-primary-dark);
  font-weight: 900;
  text-transform: uppercase;
}
.notice, .error {
  border-left: 5px solid var(--success);
  background: #eef8f1;
  padding: 12px 14px;
  border-radius: var(--radius);
  margin: 14px 0;
}
.error { border-left-color: var(--error); background: #fff1ef; }

/* Homepage */
.marketing-home { overflow: hidden; }
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(calc(100% - 36px), 1240px);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 96px) 0;
}
.home-hero > *, .steps-layout > *, .connectivity > *, .trust-section > * { min-width: 0; }
.hero-lede { max-width: 720px; color: var(--text-muted); font-size: clamp(18px, 2vw, 22px); }
.hero-visual { position: relative; }
.preview-window { overflow: hidden; background: linear-gradient(145deg, #fff, #eef5ea); }
.preview-top { display: flex; gap: 6px; margin-bottom: 16px; }
.preview-top span { width: 10px; height: 10px; border-radius: 50%; background: var(--brand-accent); }
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.preview-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,.82);
}
.preview-grid span { display: block; color: var(--text-muted); font-size: 13px; }
.map-card {
  position: relative;
  height: 230px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(9,32,68,.08) 1px, transparent 1px),
    linear-gradient(rgba(9,32,68,.08) 1px, transparent 1px),
    #f7faf4;
  background-size: 34px 34px;
}
.route-line {
  position: absolute;
  left: 18%;
  top: 58%;
  width: 62%;
  height: 4px;
  transform: rotate(-18deg);
  background: var(--brand-primary);
  border-radius: 999px;
}
.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--brand-secondary);
  box-shadow: 0 4px 10px rgba(9,32,68,.25);
}
.home-pin { left: 17%; top: 58%; }
.camp-pin { left: 48%; top: 39%; background: var(--brand-primary); }
.meet-pin { right: 17%; top: 28%; background: var(--warning); }
.steps-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.process-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-secondary);
  color: #fff;
  font-weight: 900;
}
.process-list.compact h2 { font-size: 22px; }
.situation-grid, .circle-types { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.situation-grid span, .circle-types span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-warm);
  font-weight: 800;
}
.connectivity {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: center;
}
.ladder { display: grid; gap: 12px; }
.ladder article {
  border-left: 6px solid var(--brand-primary);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.ladder span { color: var(--brand-primary-dark); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.ladder strong { display: block; color: var(--brand-secondary); font-size: 22px; }
.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 54px;
  padding: 34px;
}
.final-cta {
  width: min(calc(100% - 36px), 960px);
  margin: 34px auto 72px;
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  color: #fff;
  background: var(--brand-secondary);
  border-radius: var(--radius);
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.82); }
.final-cta .actions { justify-content: center; }

/* Auth, App, Admin */
.auth-shell {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 42px 18px;
}
.auth-card { width: min(100%, 460px); }
.auth-card h1 { font-size: 36px; }
.admin-shell .grid article, .feature-list article { box-shadow: none; }
.admin-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.stat { font-size: 36px; font-weight: 900; margin: 0; color: var(--brand-primary-dark); }
.table-wrap {
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
table { width: 100%; min-width: 720px; border-collapse: collapse; }
th, td { padding: 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
th { color: var(--brand-secondary); background: #f3f7ef; }
.cms-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, auto);
  gap: 30px 44px;
  align-items: start;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 70px);
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    var(--footer-bg);
  background-size: 34px 34px;
  color: #fff;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 68px; height: auto; background: #fff; border-radius: 50%; }
.footer-brand strong { display: block; font-size: 22px; }
.footer-brand p, .copyright { margin: 0; color: rgba(255,255,255,.78); }
.footer-brand p { max-width: 340px; font-size: 17px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 24px 44px; justify-content: flex-end; }
.site-footer nav div {
  display: grid;
  gap: 10px;
  min-width: 132px;
}
.site-footer nav span {
  color: var(--brand-khaki);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.site-footer a { color: #fff; }
.site-footer a,
.copyright { font-size: 16px; }
.copyright { grid-column: 1 / -1; color: rgba(255,255,255,.68); }

/* Member Application */
.member-app {
  min-height: 100vh;
  background:
    radial-gradient(circle at 0 0, rgba(95,143,44,.12), transparent 24rem),
    #eef3e8;
}
.app-topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(190px, 300px) auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(16px, 3vw, 34px);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.app-brand img { width: min(260px, 32vw); display: block; }
.app-nav-toggle { display: none; }
.active-circle-pill {
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f7faf3;
}
.active-circle-pill span,
.app-user-menu small,
.circle-switcher label {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.active-circle-pill strong { color: var(--brand-secondary); }
.app-user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-secondary);
  font-weight: 900;
}
.app-user-menu small { display: block; letter-spacing: 0; text-transform: none; }
.app-frame {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: calc(100vh - 78px);
}
.app-sidebar {
  position: sticky;
  top: 78px;
  align-self: start;
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    var(--brand-secondary);
  background-size: 32px 32px;
}
.circle-switcher {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.circle-switcher label { color: var(--brand-khaki); }
.circle-switcher select { margin-top: 8px; }
.app-nav {
  display: grid;
  gap: 6px;
}
.app-nav a,
.app-sidebar-footer a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255,255,255,.86);
}
.app-nav a[aria-current="page"],
.app-nav a:hover,
.app-sidebar-footer a:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
  text-decoration: none;
}
.app-sidebar-footer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.app-main {
  min-width: 0;
  padding: clamp(22px, 4vw, 46px);
}
.app-page {
  width: min(100%, 1180px);
  margin: 0 auto;
}
.app-page-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}
.app-page-head p { color: var(--text-muted); font-size: 18px; }
.app-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}
.app-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.app-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.app-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.app-grid > article,
.app-card,
.app-form,
.record-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 36px rgba(9,32,68,.08);
  padding: 24px;
}
.app-grid.four article span,
.readiness-console span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.app-grid.four article strong {
  display: block;
  margin-top: 6px;
  color: var(--brand-secondary);
  font-size: 22px;
}
.onboarding-hero,
.readiness-console {
  margin-bottom: 24px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 86% 10%, rgba(95,143,44,.34), transparent 18rem),
    linear-gradient(135deg, #0b2248, #101b27);
}
.onboarding-hero h1,
.readiness-console strong { color: #fff; }
.onboarding-hero p { max-width: 760px; color: rgba(255,255,255,.82); font-size: 20px; }
.readiness-console {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 16px;
}
.readiness-console > div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.readiness-console strong { display: block; margin-top: 6px; font-size: 28px; }
.quick-actions { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.quick-actions a {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.checklist span,
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e8f2dd;
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.checklist li:not(.complete) span,
.status-badge.planned { background: #fff3d8; color: #6f4707; }
.app-form { max-width: 760px; }
.check-row {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}
.check-row input { width: auto; }
.responsive-table { overflow-x: auto; }
.inline-form { display: inline-flex; gap: 8px; align-items: center; margin: 4px 0; }
.inline-form select { min-width: 150px; }
.record-card { margin-bottom: 14px; box-shadow: none; }
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin-bottom: 18px;
}
.step-dot {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-secondary);
  font-weight: 900;
}

@media (max-width: 980px) {
  .app-topbar { grid-template-columns: 1fr auto; }
  .app-brand img { width: min(58vw, 240px); }
  .app-nav-toggle { display: inline-block; }
  .active-circle-pill,
  .app-user-menu { display: none; }
  .app-frame { display: block; }
  .app-sidebar {
    display: none;
    position: fixed;
    inset: 78px 0 auto 0;
    z-index: 65;
    min-height: 0;
    max-height: calc(100vh - 78px);
    overflow: auto;
  }
  .app-sidebar.open { display: flex; }
  .app-grid.two,
  .app-grid.three,
  .app-grid.four,
  .readiness-console { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 980px) {
  .site-header { min-height: 76px; align-items: center; }
  .brand { flex-basis: auto; }
  .brand img { width: clamp(214px, 54vw, 330px); }
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    max-width: 100vw;
    padding: 14px 18px 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; justify-content: flex-start; min-height: 52px; font-size: 18px; }
  .home-hero, .steps-layout, .connectivity, .trust-section { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding-inline: 12px; gap: 10px; }
  .brand { flex: 1 1 auto; }
  .brand img { width: min(58vw, 240px); }
  .nav-toggle { flex: 0 0 auto; }
  h1 { font-size: 38px; }
  .modern-hero h1 { font-size: clamp(38px, 10vw, 48px); }
  h1, h2, h3, p { overflow-wrap: break-word; }
  .home-hero, .page-shell, .section-shell { width: min(calc(100% - 28px), var(--content)); }
  .home-hero { padding-top: 34px; }
  .preview-grid { grid-template-columns: 1fr; }
  .map-card { height: 180px; }
  .page-head, .site-footer { display: block; }
  .site-footer nav { justify-content: flex-start; margin-top: 16px; }
  .trust-section { padding: 24px; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Homepage Modernization */
:root {
  --brand-khaki: #d8ceb2;
  --brand-sand: #eee6d2;
  --brand-charcoal: #182229;
  --field-line: rgba(63,111,31,.18);
}

.modern-home {
  background:
    radial-gradient(circle at 10% 0%, rgba(95,143,44,.13), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(9,32,68,.10), transparent 30rem),
    var(--brand-bg);
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .12em;
}
.field-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.modern-hero {
  width: min(calc(100% - 48px), 1480px);
  grid-template-columns: minmax(620px, 1.1fr) minmax(520px, .9fr);
  min-height: auto;
  padding-block: clamp(48px, 5.8vw, 86px) clamp(38px, 5vw, 72px);
  gap: clamp(42px, 6vw, 86px);
}
.modern-hero h1 {
  max-width: 940px;
  font-size: clamp(58px, 5.2vw, 88px);
  letter-spacing: -.02em;
}
.modern-hero .hero-lede {
  color: #435261;
  max-width: 780px;
  font-size: clamp(21px, 1.55vw, 26px);
  line-height: 1.62;
}
.hero-actions .btn {
  min-height: 60px;
  padding-inline: 28px;
  font-size: 17px;
  box-shadow: 0 12px 28px rgba(9,32,68,.12);
}
.hero-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 720px;
  margin-top: 22px;
}
.hero-status-strip span {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(255,255,255,.72);
  color: var(--text-muted);
  font-size: 15px;
}
.hero-status-strip strong {
  display: block;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.hero-media-card {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}
.hero-media-card::before,
.hero-media-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid var(--field-line);
  border-radius: var(--radius);
}
.hero-media-card::before {
  inset: 28px -14px 42px 44px;
  background:
    linear-gradient(90deg, rgba(9,32,68,.08) 1px, transparent 1px),
    linear-gradient(rgba(9,32,68,.08) 1px, transparent 1px),
    rgba(255,255,255,.35);
  background-size: 42px 42px;
}
.hero-media-card::after {
  inset: 74px 42px -12px -12px;
  border-color: rgba(9,32,68,.22);
}
.hero-media-card > img {
  position: absolute;
  inset: 18px 0 auto auto;
  width: min(92%, 690px);
  height: 450px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(9,32,68,.16);
  box-shadow: 0 30px 70px rgba(9,32,68,.25);
}
.hero-media-card > img::selection { background: transparent; }
.hero-interface-panel {
  position: absolute;
  left: 18px;
  bottom: 12px;
  width: min(68%, 430px);
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    rgba(9,32,68,.94);
  background-size: 28px 28px;
  border: 1px solid rgba(216,206,178,.36);
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(9,32,68,.36);
}
.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.panel-header strong { color: var(--brand-khaki); }
.readiness-meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.readiness-meter span {
  display: block;
  width: var(--level);
  height: 100%;
  background: linear-gradient(90deg, var(--brand-accent), var(--focus));
}
.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-block: 14px;
}
.mini-dashboard span {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.mini-dashboard svg { width: 22px; height: 22px; }
.mini-dashboard strong { font-size: 20px; line-height: 1; }
.mini-dashboard small { color: rgba(255,255,255,.72); }
.mini-map {
  position: relative;
  height: 130px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    rgba(255,255,255,.05);
  background-size: 32px 32px;
}

.value-section {
  padding-top: 38px;
}
.value-section .section-heading p:not(.eyebrow) {
  color: var(--text-muted);
  font-size: 20px;
}
.modern-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.modern-icon-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,247,239,.92)),
    var(--surface);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.modern-icon-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(63,111,31,.18);
  border-radius: 50%;
}
.modern-icon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63,111,31,.42);
  box-shadow: 0 24px 55px rgba(9,32,68,.14);
}
.card-code,
.situation-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.svg-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.svg-icon svg,
.feature-icon svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.modern-icon-card .feature-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  margin-bottom: 22px;
  border: 1px solid rgba(63,111,31,.18);
  border-radius: 50%;
  background: #eaf3df;
  color: var(--brand-primary-dark);
  line-height: 0;
}
.modern-icon-card .feature-icon svg {
  width: 31px;
  height: 31px;
}
.modern-icon-card h3 {
  font-size: 25px;
}
.modern-icon-card p {
  color: #465561;
  font-size: 18px;
}

.route-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 30%, rgba(63,111,31,.16), transparent 18rem),
    linear-gradient(135deg, #e9f0e2, #f8f5ea);
  border-block: 1px solid var(--border);
}
.route-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background:
    repeating-linear-gradient(115deg, transparent 0 28px, rgba(9,32,68,.08) 29px 30px);
  pointer-events: none;
}
.modern-steps {
  position: relative;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(36px, 6vw, 78px);
}
.route-list {
  position: relative;
  gap: 20px;
}
.route-list::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 38px;
  bottom: 38px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-primary), var(--focus), var(--brand-secondary));
  box-shadow: 0 0 0 6px rgba(63,111,31,.08);
}
.route-list li {
  position: relative;
  grid-template-columns: 76px 1fr;
  padding: 26px 28px;
  box-shadow: 0 18px 36px rgba(9,32,68,.08);
}
.route-list span {
  display: inline-grid;
  place-items: center;
  z-index: 1;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 5px solid #f8f5ea;
  box-shadow: 0 0 0 2px rgba(9,32,68,.18), 0 0 0 10px rgba(63,111,31,.10);
  line-height: 1;
}
.route-list h3 {
  font-size: 23px;
}
.route-list p {
  color: #485663;
  font-size: 17px;
}

.modern-situation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(246px, auto);
  gap: 22px;
}
.situation-card {
  position: relative;
  min-height: 246px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255,255,255,.98), rgba(238,230,210,.86)),
    var(--surface);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.situation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(63,111,31,.36);
  box-shadow: 0 24px 50px rgba(9,32,68,.13);
}
.situation-card:nth-child(4),
.situation-card:nth-child(8) {
  grid-column: span 2;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(9,32,68,.18), rgba(9,32,68,.92)),
    url("../images/site/camping-group-tent.jpg") center/cover;
}
.situation-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.situation-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.situation-card:nth-child(4) { grid-column: 3 / span 2; grid-row: 1 / span 2; }
.situation-card:nth-child(3) { grid-column: 1; grid-row: 2; }
.situation-card:nth-child(5) { grid-column: 2; grid-row: 2; }
.situation-card:nth-child(6) { grid-column: 1; grid-row: 3; }
.situation-card:nth-child(7) { grid-column: 2; grid-row: 3; }
.situation-card:nth-child(8) { grid-column: 3 / span 2; grid-row: 3; }
.situation-card:nth-child(8) {
  background:
    linear-gradient(180deg, rgba(9,32,68,.10), rgba(9,32,68,.90)),
    url("../images/site/campfire-map-planning.jpg") center/cover;
}
.situation-card:nth-child(4) h3,
.situation-card:nth-child(4) p,
.situation-card:nth-child(8) h3,
.situation-card:nth-child(8) p,
.situation-card:nth-child(4) .situation-label,
.situation-card:nth-child(8) .situation-label {
  color: #fff;
}
.situation-card .situation-label,
.situation-card .svg-icon {
  min-height: 0;
  padding: 0;
  border: 0;
}
.situation-card .situation-label {
  background: transparent;
  font-weight: 900;
}
.situation-card .svg-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(63,111,31,.12);
  color: var(--brand-primary-dark);
  line-height: 0;
}
.situation-card .svg-icon svg {
  width: 28px;
  height: 28px;
}
.situation-card:nth-child(4) .svg-icon,
.situation-card:nth-child(8) .svg-icon {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.situation-card h3 { font-size: 25px; }
.situation-card p { color: #4c5a64; font-size: 17px; }
.situation-card:nth-child(4) p,
.situation-card:nth-child(8) p { font-size: 18px; }

.connectivity-console {
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(95,143,44,.28), transparent 28rem),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    var(--brand-secondary);
  background-size: auto, 38px 38px, 38px 38px, auto;
}
.modern-connectivity {
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 48px);
  padding-block: 92px;
}
.modern-connectivity > div:first-child {
  max-width: 820px;
}
.modern-connectivity h2,
.modern-connectivity .eyebrow {
  color: #fff;
}
.modern-connectivity p {
  color: rgba(255,255,255,.78);
  font-size: 20px;
}
.signal-ladder {
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.signal-ladder::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 46px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-khaki));
}
.signal-ladder article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.15);
  border-left: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.signal-ladder article::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin: 8px 0 28px;
  border: 3px solid var(--brand-khaki);
  border-radius: 50%;
  background: var(--brand-secondary);
  box-shadow: 0 0 0 8px rgba(216,206,178,.08);
}
.signal-ladder svg {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  fill: none;
  stroke: var(--brand-khaki);
  stroke-width: 1.7;
}
.signal-ladder span {
  color: var(--brand-khaki);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}
.signal-ladder strong {
  color: #fff;
  font-size: 28px;
}
.signal-ladder p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

.circle-types-section {
  background:
    linear-gradient(180deg, #f8f5ea, #edf4e7);
}
.modern-circle-types {
  grid-template-columns: repeat(4, 1fr);
}
.modern-circle-types article {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 34px rgba(9,32,68,.08);
}
.modern-circle-types article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(63,111,31,.16);
  border-radius: 50%;
}
.modern-circle-types .svg-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--brand-primary-dark);
  background: #e8f2dd;
  line-height: 0;
}
.modern-circle-types .svg-icon svg {
  width: 28px;
  height: 28px;
}
.modern-circle-types h3 {
  font-size: 24px;
}
.modern-circle-types p {
  color: var(--text-muted);
  font-size: 17px;
}

.modern-trust-section {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  margin-top: 72px;
  padding: clamp(34px, 5vw, 58px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(95,143,44,.30), transparent 18rem),
    linear-gradient(135deg, #0b2248, #101b27);
  border-color: rgba(255,255,255,.12);
}
.modern-trust-section h2,
.modern-trust-section .eyebrow {
  color: #fff;
}
.modern-trust-section p {
  color: rgba(255,255,255,.78);
  font-size: 20px;
}
.permission-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.permission-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.permission-list svg {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--brand-khaki);
  stroke-width: 1.8;
}
.trust-panel {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.trust-panel span {
  color: var(--brand-khaki);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.trust-panel strong {
  font-size: 28px;
  line-height: 1.15;
}
.access-ring {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  border: 1px solid rgba(216,206,178,.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(95,143,44,.34) 0 28%, transparent 29%),
    conic-gradient(from 40deg, rgba(216,206,178,.85), rgba(95,143,44,.85), rgba(216,206,178,.85));
}
.access-ring img {
  width: 78px;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
}
.access-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--brand-secondary);
  border-radius: 50%;
  background: var(--brand-khaki);
}
.access-dot:nth-child(2) { top: 12px; left: 66px; }
.access-dot:nth-child(3) { right: 18px; top: 78px; }
.access-dot:nth-child(4) { left: 22px; bottom: 28px; }
.role-row {
  display: grid;
  gap: 8px;
  width: 100%;
}
.role-row small {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
  font-size: 14px;
}
.role-row b { color: #fff; }

.modern-final-cta {
  position: relative;
  width: min(calc(100% - 40px), 1180px);
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  margin-block: 84px;
  padding: clamp(38px, 7vw, 82px);
  text-align: left;
  isolation: isolate;
}
.modern-final-cta > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modern-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,32,68,.98), rgba(9,32,68,.84), rgba(9,32,68,.42));
  background-size: 34px 34px, 34px 34px, auto;
}
.modern-final-cta > div {
  max-width: 820px;
}
.modern-final-cta h2 {
  font-size: clamp(42px, 5vw, 70px);
}
.modern-final-cta p {
  max-width: 720px;
  color: rgba(255,255,255,.88);
  font-size: clamp(20px, 2vw, 25px);
}
.modern-final-cta .btn {
  min-height: 60px;
  padding-inline: 28px;
  font-size: 17px;
}
.modern-final-cta .btn.secondary {
  color: #fff;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.34);
}

@media (max-width: 1180px) {
  .modern-hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-media-card { min-height: 620px; }
  .modern-value-grid, .modern-circle-types { grid-template-columns: repeat(2, 1fr); }
  .modern-situation-grid { grid-template-columns: repeat(2, 1fr); }
  .situation-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .situation-card,
  .situation-card:nth-child(4),
  .situation-card:nth-child(8) { grid-column: span 1; min-height: 280px; }
  .situation-card:nth-child(4),
  .situation-card:nth-child(8) { grid-column: span 2; }
  .signal-ladder { grid-template-columns: repeat(2, 1fr); }
  .signal-ladder::before { display: none; }
}

@media (max-width: 760px) {
  .modern-hero { width: min(calc(100% - 28px), 1320px); }
  .modern-hero h1 { font-size: clamp(40px, 11vw, 56px); }
  .modern-hero .hero-lede,
  .section-heading p,
  .modern-connectivity p,
  .modern-trust-section p { font-size: 18px; }
  .hero-status-strip,
  .modern-value-grid,
  .modern-situation-grid,
  .modern-circle-types,
  .signal-ladder {
    grid-template-columns: 1fr;
  }
  .hero-media-card { min-height: 600px; }
  .hero-media-card > img { width: 100%; height: 360px; }
  .hero-interface-panel {
    width: calc(100% - 28px);
    left: 12px;
  }
  .mini-dashboard { grid-template-columns: 1fr; }
  .modern-steps, .modern-connectivity, .modern-trust-section { grid-template-columns: 1fr; }
  .route-list::before { left: 37px; }
  .signal-ladder::before { display: block; top: 34px; bottom: 34px; left: 34px; right: auto; width: 4px; height: auto; }
  .signal-ladder article { min-height: 0; }
  .situation-card:nth-child(4),
  .situation-card:nth-child(8) { grid-column: span 1; }
  .modern-final-cta { width: min(calc(100% - 28px), 1180px); min-height: 480px; }
  .modern-final-cta::before {
    background:
      linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
      linear-gradient(180deg, rgba(9,32,68,.90), rgba(9,32,68,.76));
    background-size: 34px 34px, 34px 34px, auto;
  }
}

@media (max-width: 480px) {
  .hero-media-card { min-height: 560px; }
  .hero-media-card > img { height: 310px; }
  .hero-interface-panel { padding: 14px; }
  .panel-header { display: block; }
  .route-list li { grid-template-columns: 52px 1fr; }
  .route-list::before { left: 29px; }
  .trust-panel { display: none; }
  .modern-icon-card,
  .situation-card,
  .modern-circle-types article { padding: 24px; }
}
