:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --soft: #eef5ff;
  --soft-2: #e7f0fb;
  --ink: #071633;
  --text: #213652;
  --muted: #5d6f89;
  --line: #d8e4f2;
  --blue: #075eea;
  --blue-2: #2f7cff;
  --navy: #061b3d;
  --navy-2: #082a5a;
  --green: #14945b;
  --red: #e13a3a;
  --shadow: 0 18px 42px rgba(8, 35, 74, 0.12);
  --shadow-soft: 0 10px 26px rgba(8, 35, 74, 0.08);
  --wrap: 1200px;
}

* {
  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(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin: 0;
}

input,
select {
  font: inherit;
}

.wrap {
  width: min(var(--wrap), calc(100% - 44px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 14px;
  z-index: 99;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand img {
  width: 28px;
  height: 44px;
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #334864;
  font-size: 15px;
  font-weight: 800;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--blue-2);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(7, 94, 234, 0.24);
}

.button:hover {
  background: #004fc8;
}

.button-secondary {
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

.button-light {
  min-height: 48px;
  border-color: #fff;
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 7px;
  font-size: 14px;
}

.hero {
  padding: 76px 0 70px;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(440px, 1fr);
  align-items: center;
  gap: 58px;
}

.hero-copy h1 {
  max-width: 690px;
  color: var(--ink);
  font-size: clamp(48px, 6.1vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.lead {
  max-width: 670px;
  margin-top: 22px;
  color: #233955;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.hero-steps article {
  position: relative;
}

.hero-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 88px;
  right: -24px;
  width: 42px;
  border-top: 3px dashed var(--blue);
}

.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.step-icon {
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, #ffffff 0 19%, transparent 20%),
    linear-gradient(145deg, #eef6ff 0%, #dcecff 100%);
  color: var(--navy);
  box-shadow:
    inset 0 0 0 1px rgba(7, 94, 234, 0.08),
    0 18px 34px rgba(7, 94, 234, 0.12);
}

.step-icon svg {
  width: 92px;
  height: 92px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-illustration .icon-halo {
  fill: #f8fbff;
  stroke: rgba(7, 94, 234, 0.12);
  stroke-width: 1.5;
}

.hero-illustration .icon-map,
.hero-illustration .icon-card,
.hero-illustration .icon-shield {
  fill: #ffffff;
  stroke: var(--navy);
  stroke-width: 3;
}

.hero-illustration .icon-ring,
.hero-illustration .icon-line {
  stroke: var(--navy);
  stroke-width: 3.2;
}

.hero-illustration .icon-line-soft {
  stroke: #6f84a0;
  stroke-width: 2.4;
}

.hero-illustration .icon-accent-line {
  stroke: var(--blue);
  stroke-width: 3;
}

.hero-illustration .icon-node {
  fill: var(--blue);
  stroke: #ffffff;
  stroke-width: 3;
}

.hero-steps h2 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.hero-steps p {
  margin-top: 10px;
  color: #334864;
  font-size: 15px;
}

.pain-strip {
  padding: 34px 0 42px;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #f6fbff, #eef5ff);
  text-align: center;
}

.pain-strip h2 {
  color: var(--ink);
  font-size: 30px;
  letter-spacing: -0.035em;
}

.pain-icons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pain-icons article {
  min-height: 176px;
  padding: 12px 14px 0;
  border-right: 1px solid var(--line);
}

.pain-icons article:last-child {
  border-right: 0;
}

.pain-icons span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 3px solid var(--blue);
  border-radius: 18px;
  color: var(--blue);
  font-weight: 950;
}

.pain-icons h3 {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.pain-icons p {
  margin-top: 10px;
  color: #41546e;
  font-size: 14px;
}

.pain-cost {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.section {
  padding: 82px 0;
}

.plain-label {
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p:not(.plain-label),
.body-large {
  margin-top: 16px;
  color: #40536d;
  font-size: 19px;
}

.sandler {
  background: #fff;
}

.sandler-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1fr);
  gap: 52px;
  align-items: start;
}

.question-list,
.role-grid,
.security-items {
  display: grid;
  gap: 14px;
}

.question-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.question-list article,
.role-grid article,
.security-items article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.question-list strong {
  display: block;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.question-list p,
.role-grid p,
.security-items p {
  margin-top: 8px;
  color: #475b74;
  font-size: 15px;
}

.solution-section {
  background: #fff;
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  gap: 58px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 40px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  background-image:
    linear-gradient(45deg, transparent 46%, #fff 47%, #fff 56%, transparent 57%),
    linear-gradient(-45deg, transparent 42%, #fff 43%, #fff 54%, transparent 55%);
  background-position: 6px 11px, 11px 8px;
  background-size: 8px 8px, 12px 12px;
  background-repeat: no-repeat;
}

.check-list strong,
.check-list span {
  display: block;
}

.check-list strong {
  color: var(--ink);
  font-weight: 900;
}

.check-list span {
  margin-top: 3px;
  color: var(--muted);
}

.map-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at center, #bfd9ff, transparent 48%);
  box-shadow: var(--shadow);
}

.map-row {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.map-row > div:not(.map-logo) {
  min-height: 150px;
  display: grid;
  align-content: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.map-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.map-row strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}

.map-logo {
  display: flex;
  width: 90px;
  height: 90px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  font-size: 36px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(7, 94, 234, 0.28);
}

.capability-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.capability-row article {
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f9ff;
}

.capability-row strong,
.capability-row span {
  display: block;
}

.capability-row strong {
  color: var(--ink);
}

.capability-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.topology-section {
  padding: 88px 0;
  color: #dceaff;
  background:
    radial-gradient(circle at 85% 10%, rgba(47, 124, 255, 0.28), transparent 32%),
    linear-gradient(180deg, #061b3d 0%, #03142e 100%);
}

.topology-section .plain-label {
  color: #8cbcff;
}

.topology-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.topology-intro h2 {
  color: #fff;
  max-width: 700px;
}

.topology-intro p {
  color: #c7d8f0;
  font-size: 19px;
}

.topology-intro a {
  display: inline-flex;
  margin-top: 18px;
  color: #8cbcff;
  font-weight: 900;
}

.topology-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.entropy-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
}

.entropy-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.entropy-card-top span,
.entropy-meter span {
  color: #8cbcff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.entropy-card-top strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.12;
}

.entropy-points {
  display: grid;
  gap: 12px;
}

.entropy-points div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.entropy-points h3 {
  color: #fff;
  font-size: 18px;
}

.entropy-points p {
  margin-top: 8px;
  color: #bdcce4;
  font-size: 15px;
}

.entropy-meter {
  margin-top: 18px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
}

.entropy-meter strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 17px;
}

.entropy-meter div {
  height: 8px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.entropy-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.entropy-card-critical .entropy-meter i {
  background: #ff6b6b;
}

.entropy-card-optimized .entropy-meter i {
  background: #57e39e;
}

.entropy-outcome {
  margin-top: 14px;
  color: #c7d8f0;
  font-size: 15px;
}

.entropy-outcome strong {
  color: #fff;
}

.proof-band {
  padding: 54px 0;
  color: #fff;
  background: linear-gradient(90deg, var(--navy), #003b86);
  text-align: center;
}

.proof-band h2 {
  color: #fff;
  font-size: 34px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
}

.proof-metrics article {
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.proof-metrics article:last-child {
  border-right: 0;
}

.proof-metrics strong {
  display: block;
  color: var(--blue-2);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.proof-metrics span {
  display: block;
  margin-top: 10px;
  color: #e0ecff;
  font-size: 15px;
}

.roles-section,
.faq-section {
  background: var(--soft);
}

.role-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.role-grid h3,
.security-items h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.comparison-section {
  background: #fff;
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.comparison > div {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
}

.comparison > div:last-child {
  border-bottom: 0;
}

.comparison span {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  color: #475b74;
  font-size: 15px;
}

.comparison span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.comparison span:last-child {
  border-right: 0;
  color: var(--navy);
  background: #eff6ff;
  font-weight: 900;
}

.comparison-head {
  background: var(--navy);
}

.comparison-head span,
.comparison-head span:first-child,
.comparison-head span:last-child {
  color: #fff;
  background: transparent;
}

.team-builder {
  padding: 82px 0;
  color: #dceaff;
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 124, 255, 0.34), transparent 34%),
    linear-gradient(180deg, #061b3d 0%, #082a5a 100%);
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.7fr);
  gap: 58px;
  align-items: center;
}

.builder-grid > div > p:not(.plain-label) {
  max-width: 700px;
  margin-top: 16px;
  color: #c7d8f0;
  font-size: 18px;
}

.team-builder h2 {
  color: #fff;
}

.team-builder .plain-label {
  color: #8cbcff;
}

.builder {
  display: grid;
  gap: 14px;
  max-width: 680px;
  margin-top: 28px;
}

.builder label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 900;
}

.builder input,
.builder select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c8d8ea;
  border-radius: 7px;
  background: #f8fbff;
  color: var(--ink);
  padding: 0 13px;
}

.builder input[type="range"] {
  accent-color: var(--blue);
}

.builder label span {
  color: #b9cbe6;
  font-size: 14px;
}

.plan-card {
  position: relative;
  padding: 28px;
  border-radius: 10px;
  color: #d9e8ff;
  background:
    radial-gradient(circle at 20% 0%, rgba(47, 124, 255, 0.34), transparent 36%),
    #03142e;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.plan-card > span {
  color: #8cbcff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 12px;
  color: #fff;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.plan-card p {
  margin-top: 10px;
  color: #b9cbe6;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: #d9e8ff;
  font-size: 14px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #57e39e;
}

.plan-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.handoff-card {
  padding: 18px;
  margin-top: 22px;
  border: 1px solid rgba(140, 188, 255, 0.3);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(47, 124, 255, 0.16), rgba(255, 255, 255, 0.055));
}

.handoff-card > span {
  display: block;
  color: #8cbcff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.handoff-card p {
  margin-top: 8px;
  color: #c8d9f3;
  font-size: 14px;
  line-height: 1.42;
}

.brief-rows {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.brief-rows div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: baseline;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brief-rows strong {
  color: #8cbcff;
  font-size: 12px;
}

.brief-rows em {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.plan-actions {
  display: grid;
  grid-template-columns: minmax(120px, 0.58fr) minmax(170px, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.button-copy {
  min-height: 46px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.button-copy:hover {
  background: rgba(255, 255, 255, 0.14);
}

.copy-status {
  min-height: 20px;
  margin-top: 12px;
  color: #9ff0c5;
  font-size: 13px;
  font-weight: 800;
}

.security-section {
  padding: 74px 0;
  background: #fff;
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  gap: 54px;
  align-items: start;
}

.security-grid p:not(.plain-label) {
  margin-top: 14px;
  color: #40536d;
  font-size: 18px;
}

.security-items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-section {
  padding: 88px 0;
  color: #dceaff;
  background:
    radial-gradient(circle at 12% 5%, rgba(47, 124, 255, 0.28), transparent 34%),
    linear-gradient(180deg, #061b3d 0%, #03142e 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 56px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 98px;
}

.faq-intro h2 {
  max-width: 520px;
  color: #fff;
}

.faq-intro p:not(.plain-label) {
  max-width: 510px;
  margin-top: 16px;
  color: #c7d8f0;
  font-size: 18px;
}

.faq-section .plain-label {
  color: #8cbcff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 22px 64px 22px 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding: 0 24px 24px;
  color: #c7d8f0;
  font-size: 16px;
  line-height: 1.52;
}

.final-cta {
  padding: 58px 0;
  color: #fff;
  background: linear-gradient(90deg, var(--navy), #003b86);
  text-align: center;
}

.final-card h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
}

.final-card p {
  max-width: 780px;
  margin: 12px auto 24px;
  color: #d9e8ff;
  font-size: 19px;
}

.site-footer {
  padding: 48px 0 26px;
  color: #b9cbe6;
  background: #03142e;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(170px, 0.8fr));
  gap: 34px;
}

.footer-brand {
  color: #fff;
}

.footer-brand img {
  width: 30px;
  height: 48px;
  background: #fff;
}

.site-footer p {
  max-width: 440px;
  margin-top: 16px;
  color: #b9cbe6;
  font-size: 14px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
}

.site-footer a {
  color: #b9cbe6;
  font-size: 14px;
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #8ea4c2;
  font-size: 13px;
}

:focus-visible {
  outline: 3px solid rgba(47, 124, 255, 0.48);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .solution-grid,
  .topology-intro,
  .sandler-grid,
  .builder-grid,
  .security-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .hero-steps {
    max-width: 820px;
  }

  .pain-icons,
  .proof-metrics,
  .role-grid,
  .topology-compare {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topology-compare {
    grid-template-columns: 1fr;
  }

  .pain-icons article:nth-child(3) {
    border-right: 0;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, var(--wrap));
  }

  .nav {
    min-height: 66px;
  }

  .brand {
    font-size: 15px;
  }

  .brand small,
  .button-small {
    display: none;
  }

  .hero {
    padding: 42px 0 46px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12.5vw, 54px);
  }

  .lead {
    font-size: 18px;
  }

  .hero-steps,
  .question-list,
  .pain-icons,
  .proof-metrics,
  .role-grid,
  .capability-row,
  .security-items,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-steps article:not(:last-child)::after {
    display: none;
  }

  .pain-icons article {
    border-right: 0;
  }

  .hero-steps {
    gap: 22px;
    text-align: left;
  }

  .hero-steps article {
    display: grid;
    grid-template-columns: 54px 1fr 56px;
    column-gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }

  .step-number {
    grid-row: 1 / span 3;
    width: 42px;
    height: 42px;
  }

  .step-icon {
    grid-column: 3;
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    margin: 0;
    align-self: start;
  }

  .step-icon svg {
    width: 40px;
    height: 40px;
  }

  .section,
  .team-builder,
  .security-section,
  .faq-section {
    padding: 58px 0;
  }

  .plan-actions,
  .brief-rows div {
    grid-template-columns: 1fr;
  }

  .brief-rows div {
    gap: 3px;
  }

  .map-row {
    grid-template-columns: 1fr;
  }

  .map-logo {
    margin: 0 auto;
  }

  .proof-metrics article {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .proof-metrics article:last-child {
    border-bottom: 0;
  }

  .comparison > div {
    grid-template-columns: 1fr;
  }

  .comparison span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison span:last-child {
    border-bottom: 0;
  }

  .comparison-head span:not(:first-child) {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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