/* ============================================================
   AttackModeling.com — production stylesheet
   ============================================================ */

:root {
  --navy: #0B2A4A;
  --navy-2: #143B63;
  --ink: #22303D;
  --body: #42525F;
  --muted: #6A7B89;
  --faint: #93A5B3;
  --line: #E8EEF3;
  --line-2: #DFE8EE;
  --bg-alt: #F6F9FB;
  --acc: #1B6FAE;
  --cyan: #1E8FB5;
  --amber: #C08A2D;
  --amber-ink: #8A661F;
  --amber-bg: #FBF4E3;
  --nav-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(27, 111, 174, 0.16); }

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

a { color: var(--acc); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  text-decoration: none;
  font-size: 14px;
}
.skip-link:focus { left: 0; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

section { scroll-margin-top: calc(var(--nav-h) + 8px); }

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-alt { background: var(--bg-alt); }

.kicker {
  font-size: 14px;
  font-weight: 600;
  color: var(--acc);
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}

h1, h2, h3 { text-wrap: pretty; margin: 0; }

h2 {
  font-size: clamp(29px, 3.3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--navy);
  max-width: 800px;
}

.lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--body);
  max-width: 640px;
  margin: 20px 0 0;
  text-wrap: pretty;
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-block;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  line-height: 1.2;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.btn-primary { background: var(--navy); color: #FFFFFF; }
.btn-primary:hover { background: var(--navy-2); }
.btn-secondary { color: var(--navy); border: 1px solid #C9D6E0; }
.btn-secondary:hover { border-color: var(--navy); }
.btn-light { background: #FFFFFF; color: var(--navy); }
.btn-light:hover { background: #DFEAF2; }
.btn-ghost-light { color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.35); }
.btn-ghost-light:hover { border-color: #FFFFFF; }

/* ---------------- Navigation ---------------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--navy);
  flex: none;
}
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand-name { font-weight: 600; font-size: 16.5px; letter-spacing: -0.01em; }
.brand-name .tld { color: #8CA2B5; font-weight: 400; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
}
.nav-links a {
  color: var(--body);
  text-decoration: none;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--navy); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.nav-actions .doc-link {
  font-size: 14.5px;
  color: var(--body);
  text-decoration: none;
}
.nav-actions .doc-link:hover { color: var(--navy); }
.nav-actions .btn { font-size: 14.5px; padding: 11px 24px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: #FFFFFF;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(11, 42, 74, 0.10);
    padding: 12px 32px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.open .nav-menu { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid #F0F4F7; font-size: 16px; }
  .nav-actions {
    margin-left: 0;
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .nav-actions .doc-link { padding: 4px 0; font-size: 16px; }
  .nav-actions .btn { text-align: center; }
}

/* ---------------- Hero ---------------- */

.hero-media { padding: clamp(16px, 2.5vw, 36px) clamp(0px, 2.5vw, 36px) 0; }
.hero-media img {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  aspect-ratio: 1672 / 941;
  max-height: 660px;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: clamp(0px, 1.8vw, 22px);
}

.hero-copy {
  text-align: center;
  padding: clamp(48px, 6vw, 84px) 0 clamp(64px, 7vw, 104px);
}
.hero-copy .kicker { margin-bottom: 0; }
.hero-copy h1 {
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 500;
  color: var(--navy);
  max-width: 900px;
  margin: 18px auto 0;
}
.hero-sub {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--body);
  margin: 18px auto 0;
  max-width: 720px;
}
.hero-body {
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 660px;
  margin: 14px auto 0;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}

/* ---------------- Proof (Solutions) ---------------- */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: clamp(40px, 5vw, 60px);
}
.proof-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.proof-grid h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 22px 0 0;
}
.proof-grid p { font-size: 15.5px; line-height: 1.65; color: var(--body); margin: 10px 0 0; }

/* ---------------- Platform ---------------- */

.platform-head {
  display: flex;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  flex-wrap: wrap;
}
.platform-head-copy { flex: 1 1 400px; min-width: 300px; }
.platform-head-visual { flex: 1 1 380px; min-width: 280px; display: flex; justify-content: center; }
.mini-graph { width: 100%; max-width: 480px; height: auto; }
.mini-graph .mg-node { transition: transform 0.3s ease; transform-origin: center; transform-box: fill-box; }
.mini-graph:hover .mg-node { transform: scale(1.18); }

.platform-row {
  display: flex;
  gap: clamp(32px, 4vw, 72px);
  flex-wrap: wrap;
  align-items: center;
  padding: clamp(40px, 5vw, 60px) 0;
  border-bottom: 1px solid var(--line);
}
.platform-row:last-child { border-bottom: 0; padding-bottom: 0; }
.platform-row.rev { flex-direction: row-reverse; }
.platform-row-copy { flex: 1 1 340px; min-width: 280px; }
.platform-row-copy h3 { font-size: 25px; font-weight: 600; color: var(--navy); letter-spacing: -0.012em; }
.platform-row-copy p { font-size: 16.5px; line-height: 1.65; color: var(--body); margin: 14px 0 0; max-width: 480px; text-wrap: pretty; }
.platform-panel {
  flex: 1.15 1 420px;
  min-width: 300px;
  background: var(--bg-alt);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 40px);
}

.panel-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 14.5px;
  color: var(--body);
  box-shadow: 0 2px 8px rgba(11, 42, 74, 0.05);
  line-height: 1.6;
}
.panel-arrow { display: flex; justify-content: center; padding: 12px 0; color: var(--faint); font-size: 15px; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.chip {
  background: #FFFFFF;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(11, 42, 74, 0.05);
  white-space: nowrap;
}
.chip-amber { background: var(--amber-bg); color: var(--amber-ink); box-shadow: none; }
.chip-sep { color: var(--faint); }
.panel-note { font-size: 13px; color: var(--muted); margin-top: 18px; }

.version-line { display: flex; align-items: center; }
.version-line .v-dot { width: 12px; height: 12px; border-radius: 50%; background: #C9D6E0; flex: none; }
.version-line .v-dot.active { width: 14px; height: 14px; background: var(--acc); box-shadow: 0 0 0 5px rgba(27, 111, 174, 0.14); }
.version-line .v-seg { flex: 1; height: 2px; background: #DCE5EC; }
.version-labels { display: flex; justify-content: space-between; margin-top: 14px; font-size: 13px; color: var(--muted); gap: 8px; }
.version-labels strong { color: var(--navy); font-weight: 600; }

.check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 14px;
  color: var(--body);
  box-shadow: 0 2px 8px rgba(11, 42, 74, 0.05);
}
.check-row + .check-row { margin-top: 10px; }
.status { font-weight: 600; font-size: 13px; white-space: nowrap; }
.status-ok { color: #2E7D4F; }
.status-warn { color: var(--amber-ink); }

/* ---------------- Consequence (split rows) ---------------- */

.split {
  display: flex;
  gap: clamp(40px, 5vw, 88px);
  flex-wrap: wrap;
  align-items: center;
}
.split > div { flex: 1 1 420px; min-width: 300px; }
.split img {
  width: 100%;
  height: clamp(320px, 32vw, 460px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(11, 42, 74, 0.12);
}

.def-list { margin-top: 28px; max-width: 540px; }
.def-list > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.def-list > div:last-child { border-bottom: 1px solid var(--line); }
.def-list dt, .def-list .k { color: var(--navy); font-weight: 600; }
.def-list dd, .def-list .v { color: var(--muted); text-align: right; margin: 0; }

/* ---------------- Reasoning map ---------------- */

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(36px, 4vw, 52px);
}
.map-hint { font-size: 13px; color: var(--faint); }

.map-scroll { overflow-x: auto; margin-top: 18px; -webkit-overflow-scrolling: touch; }

.map-stage {
  position: relative;
  min-width: 860px;
  aspect-ratio: 1000 / 640;
  background: #FFFFFF;
  border: 1px solid #E3EAF0;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(11, 42, 74, 0.08);
}

.map-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
}

.edge {
  fill: none;
  transition: opacity 0.25s ease, stroke-width 0.25s ease;
}
.e-attack { stroke: var(--cyan); stroke-width: 2.2; opacity: 0.9; }
.e-infra { stroke: #C6D4DF; stroke-width: 1.4; opacity: 0.85; }
.e-reason { stroke: #8FC0D6; stroke-width: 1.5; opacity: 0.75; }
.e-amber { stroke: #D9BE79; stroke-width: 1.5; opacity: 0.85; stroke-dasharray: 5 5; }

.map-stage.hovering .edge { opacity: 0.12; }
.map-stage.hovering .edge.lit { opacity: 1; stroke-width: 2.8; }
.map-stage.hovering .e-amber.lit { stroke-width: 2.2; }

.map-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #DCE6EE;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  color: var(--body);
  box-shadow: 0 2px 6px rgba(11, 42, 74, 0.06);
  white-space: nowrap;
  cursor: default;
  transition: opacity 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.map-node .nd { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.nd-blue { background: var(--acc); }
.nd-amber { background: var(--amber); }

.n-active { border-color: #A8BDCD; color: var(--ink); box-shadow: 0 2px 6px rgba(11, 42, 74, 0.08); }
.n-reason { background: #EDF6FA; border-color: #BCDCE9; color: #175E77; }
.n-amber { background: var(--amber-bg); border-color: #D3B872; border-style: dashed; color: var(--amber-ink); }
.n-dark { background: var(--navy); border-color: var(--navy); color: #FFFFFF; box-shadow: 0 4px 12px rgba(11, 42, 74, 0.22); }

.map-stage.hovering .map-node { opacity: 0.35; }
.map-stage.hovering .map-node.lit { opacity: 1; }
.map-node.lit { box-shadow: 0 6px 18px rgba(11, 42, 74, 0.16); }
.map-node.lit.n-amber { box-shadow: 0 6px 18px rgba(138, 102, 31, 0.18); }

.map-legend {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.map-legend span { display: flex; gap: 9px; align-items: center; }
.lg-line { width: 22px; height: 0; display: inline-block; }
.lg-attack { border-top: 2px solid var(--cyan); }
.lg-reason { border-top: 2px solid #8FC0D6; }
.lg-amber { border-top: 2px dashed #D3B872; }
.lg-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); display: inline-block; }

/* ---------------- Example (description → model) ---------------- */

.input-quote {
  border-left: 3px solid var(--acc);
  padding: 8px 0 8px 28px;
  margin-top: clamp(36px, 4vw, 52px);
  max-width: 880px;
}
.input-quote .label { font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }
.input-quote p {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}

.output-cols {
  display: flex;
  gap: clamp(32px, 4vw, 64px);
  flex-wrap: wrap;
  margin-top: clamp(44px, 5vw, 64px);
}
.output-cols > div { flex: 1 1 300px; min-width: 270px; }
.output-cols h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.output-cols ul { list-style: none; margin: 0; padding: 0; }
.output-cols li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--body);
}
.output-cols li:last-child { border-bottom: 0; }
.output-cols li.open-assumptions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin: 6px -14px 0;
  background: var(--amber-bg);
  border-radius: 10px;
  border-bottom: 0;
  color: #6E5215;
  font-weight: 600;
}
.open-assumptions .lg-dot { flex: none; }
.example-note { font-size: 14px; color: var(--muted); margin: 26px 0 0; max-width: 640px; }

/* ---------------- Evidence ---------------- */

.evidence-doc {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 32px 72px rgba(11, 42, 74, 0.14);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.evidence-doc-head { padding: 32px 38px 24px; border-bottom: 1px solid var(--line); }
.evidence-doc-head .meta { font-size: 12.5px; color: var(--faint); }
.evidence-doc-head .title { font-size: 23px; font-weight: 600; color: var(--navy); margin-top: 12px; letter-spacing: -0.012em; }
.evidence-doc-head .sub { font-size: 14px; color: var(--muted); margin-top: 8px; }
.evidence-doc-body { padding: 14px 38px 28px; }
.evidence-doc-body > div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #F0F4F7;
  font-size: 14.5px;
  color: var(--ink);
}
.evidence-doc-body > div:last-child { border-bottom: 0; }
.evidence-doc-body .tag { color: var(--faint); font-size: 13px; }
.evidence-doc-body .tag-amber { color: #B08325; }
.evidence-doc-body .tag-red { color: #B0654A; }
.evidence-doc-body .tag-ok { color: #2E7D4F; }

/* ---------------- Governance ---------------- */

.gov-grid {
  flex: 1.3 1 480px;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 0 56px;
  align-content: start;
}
.gov-grid > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #E3EAF0;
  font-size: 15px;
}
.gov-grid .k { color: var(--navy); font-weight: 600; flex: none; }
.gov-grid .v { color: var(--muted); text-align: right; }

.assurance-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 56px);
}
.assurance-row span {
  font-size: 13.5px;
  color: var(--body);
  background: #FFFFFF;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 9px 18px;
}

/* ---------------- Integrations ---------------- */

.integrations-head { text-align: center; max-width: 680px; margin: 0 auto; }
.integrations-head h2 { margin: 0 auto; }

.int-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 920px;
  margin: clamp(44px, 5vw, 64px) auto 0;
  align-items: center;
}
.int-col { display: flex; flex-direction: column; gap: 22px; }
.int-item { display: flex; align-items: center; }
.int-item .pill {
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 10px 20px;
  white-space: nowrap;
}
.int-item .wire { flex: 1; height: 1px; background: #DCE5EC; }
.int-center { display: flex; flex-direction: column; align-items: center; align-self: stretch; }
.int-center .stem { flex: 1; width: 1px; background: #DCE5EC; }
.int-center .hub {
  font-size: 15.5px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--navy);
  border-radius: 999px;
  padding: 14px 28px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(11, 42, 74, 0.2);
  margin: 10px 0;
}

@media (max-width: 760px) {
  .int-diagram { grid-template-columns: 1fr; gap: 22px; }
  .int-center { order: -1; }
  .int-center .stem { display: none; }
  .int-item .wire { display: none; }
  .int-col { flex-direction: row; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .int-item .pill { font-size: 14px; }
}

/* ---------------- Industries ---------------- */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: clamp(44px, 5vw, 60px);
}
@media (max-width: 1080px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .industry-grid { grid-template-columns: 1fr; } }

.industry-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.industry-grid a { text-decoration: none; display: block; }
.industry-grid a:hover img {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(11, 42, 74, 0.14);
}
.industry-grid .label { font-size: 17px; font-weight: 600; color: var(--navy); margin-top: 16px; }

/* ---------------- Pricing ---------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: clamp(44px, 5vw, 60px);
  align-items: stretch;
}
.price-card {
  background: #FFFFFF;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: #B7CBDA;
  box-shadow: 0 24px 56px rgba(11, 42, 74, 0.12);
}
.price-card .tier { font-size: 19px; font-weight: 600; color: var(--navy); }
.price-card .price-line { font-size: 14px; color: var(--muted); margin-top: 6px; min-height: 42px; }
.price-card ul { list-style: none; margin: 18px 0 26px; padding: 0; flex: 1; }
.price-card li {
  font-size: 14.5px;
  color: var(--body);
  padding: 9px 0;
  border-bottom: 1px solid #F0F4F7;
}
.price-card li:last-child { border-bottom: 0; }
.price-card .btn { text-align: center; font-size: 14.5px; padding: 12px 24px; }
.pricing-note { font-size: 13.5px; color: var(--muted); margin-top: 22px; }

/* ---------------- Resources strip ---------------- */

.resources-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.resources-inner {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
}
.resources-inner h2 { font-size: 20px; font-weight: 600; }
.resources-inner p { font-size: 15px; color: var(--body); margin: 6px 0 0; max-width: 620px; }
.resources-inner a.mail { font-weight: 600; color: var(--acc); text-decoration: none; white-space: nowrap; }
.resources-inner a.mail:hover { text-decoration: underline; }

/* ---------------- Final CTA ---------------- */

.cta-panel {
  background: var(--navy);
  border-radius: 24px;
  padding: clamp(56px, 6vw, 88px) clamp(32px, 5vw, 80px);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cta-panel h2 { color: #FFFFFF; }
.cta-panel p { font-size: 16.5px; color: #A9BCCE; margin: 16px 0 0; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Footer ---------------- */

.site-footer {
  background: #F6F8FA;
  border-top: 1px solid var(--line);
  color: #5A6B7A;
}
.footer-cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding: 64px 0 48px;
}
.footer-about { flex: 1.6 1 260px; min-width: 240px; }
.footer-about p { font-size: 13.5px; line-height: 1.65; margin: 16px 0 0; max-width: 300px; color: var(--muted); }
.footer-about .mail {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.footer-about .mail:hover { text-decoration: underline; }
.footer-col { flex: 1 1 150px; min-width: 140px; }
.footer-col h3 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
.footer-col nav { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer-col nav a { color: #5A6B7A; text-decoration: none; }
.footer-col nav a:hover { color: var(--navy); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .container {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 12.5px;
  color: #8CA2B5;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------------- Motion preferences ---------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
