:root {
  --ink: #132025;
  --muted: #52646b;
  --line: #d8e1e2;
  --paper: #f7faf9;
  --white: #ffffff;
  --teal: #127a75;
  --teal-dark: #0e5653;
  --gold: #c18b28;
  --graphite: #24343a;
  --shadow: 0 18px 44px rgba(19, 32, 37, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 250, 249, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 700;
}
.nav-links a { text-decoration: none; color: var(--graphite); }
.nav-links a.button { color: var(--white); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--teal-dark);
}
.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--teal-dark);
  border-radius: 7px;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}
.button.secondary {
  background: var(--white);
  color: var(--teal-dark);
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(10, 29, 34, .88) 0%, rgba(10, 29, 34, .76) 42%, rgba(10, 29, 34, .18) 100%),
    url('/assets/hero-secure-community.png') center right / cover no-repeat;
  color: var(--white);
}
.hero-inner { padding: 92px 0 68px; }
.eyebrow {
  color: #a9e3dc;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; margin: 0; }
h1 {
  max-width: 860px;
  margin-top: 16px;
  font-size: clamp(32px, 4.8vw, 56px);
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 6vw, 68px);
}
.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: #d9e8e7;
  font-size: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip div {
  background: var(--white);
  padding: 22px;
  font-weight: 800;
  color: var(--graphite);
}
.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  margin-top: 4px;
}

section { padding: 78px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(260px, .45fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
h2 { font-size: clamp(32px, 4vw, 48px); }
.lead { color: var(--muted); font-size: 18px; margin: 0; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { color: var(--muted); margin: 0 0 16px; }
.asset-card img {
  width: 100%;
  min-height: 120px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  margin-bottom: 18px;
}
.asset-card .asset-mark {
  width: min(160px, 100%);
  margin-inline: auto;
}
.dark-preview img { background: #10191d; }
.text-link {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.card ul, .checklist { padding: 0; margin: 0; list-style: none; }
.card li, .checklist li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  color: var(--graphite);
}
.card li::before, .checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gold);
}

.band {
  background: var(--graphite);
  color: var(--white);
}
.band .lead, .band p { color: #d5e1e2; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  border-top: 3px solid var(--gold);
  padding-top: 18px;
}
.step strong { display: block; font-size: 20px; margin-bottom: 8px; }

.split {
  display: grid;
  grid-template-columns: .85fr .55fr;
  gap: 34px;
  align-items: start;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.profile-panel { display: grid; gap: 16px; }
.about-link { margin-top: 22px; }
.location-context { margin-top: 24px; }
.about-link a {
  color: var(--teal-dark);
  font-weight: 800;
}
.profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline-item {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
}
.timeline-item strong {
  display: block;
  color: #a9e3dc;
  font-size: 13px;
  margin-bottom: 10px;
}
.timeline-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.timeline-item p { margin: 0; color: #d5e1e2; }
.form-grid { display: grid; gap: 14px; }
label { display: grid; gap: 7px; font-weight: 800; color: var(--graphite); }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b9c8ca;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 136px; resize: vertical; }
.fineprint { color: var(--muted); font-size: 13px; margin: 10px 0 0; }
.news-paragraph { margin-top: 22px; }
.news-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 7px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  background: var(--mist);
}
.news-figure {
  margin: 28px 0;
}
.news-figure-lead {
  margin-top: 24px;
}
.news-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--mist);
}
.news-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.alert {
  padding: 14px 16px;
  border-radius: 7px;
  margin-bottom: 16px;
  background: #e6f4f1;
  color: var(--teal-dark);
  font-weight: 750;
}
.error { background: #fdeaea; color: #8a1e1e; }

.location-list {
  columns: 3;
  column-gap: 32px;
  margin-top: 22px;
}
.location-list a {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-weight: 750;
  text-decoration: none;
}
.site-footer {
  padding: 42px 0;
  background: #10191d;
  color: #d4dee0;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-grid a { color: #d4eee9; }

@media (max-width: 900px) {
  .nav { padding: 14px 0; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0 2px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 7px;
    background: var(--white);
    border: 1px solid var(--line);
  }
  .nav-links a.button {
    justify-content: center;
    background: var(--teal-dark);
    border-color: var(--teal-dark);
  }
  .hero { min-height: 620px; background-position: 62% center; }
  .trust-strip, .grid, .steps, .split, .section-head, .timeline { grid-template-columns: 1fr; }
  .location-list { columns: 2; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 24px, 1120px); }
  .brand { max-width: calc(100% - 60px); }
  .hero-inner { padding: 72px 0 48px; }
  .hero p { font-size: 18px; }
  section { padding: 54px 0; }
  .trust-strip div { padding: 18px 14px; }
  .location-list { columns: 1; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
