:root {
  color-scheme: light;
  --ink: #18232d;
  --ink-soft: #46525e;
  --muted: #6c7884;
  --paper: #f5f7f8;
  --surface: #ffffff;
  --line: #d7dee4;
  --teal: #07877f;
  --teal-strong: #056a64;
  --blue: #2474b8;
  --green: #2f9a62;
  --yellow: #d89822;
  --red: #d94a55;
  --navy: #0d1b25;
  --slate: #24323d;
  --shadow: 0 18px 50px rgba(15, 32, 44, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
  --hero-title: 4rem;
  --section-title: 3rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

p {
  line-height: 1.65;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  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: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--container);
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(13, 27, 37, 0.78);
  color: #eef7f5;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(13, 27, 37, 0.94);
  box-shadow: 0 10px 32px rgba(13, 27, 37, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #e9fffb;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-subtitle {
  color: #bdd2d4;
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #d9e5e7;
  font-size: 0.94rem;
}

.site-nav a {
  color: inherit;
}

.site-nav a:hover,
.site-nav a:focus {
  color: #fff;
}

.nav-cta {
  padding: 9px 12px;
  border-radius: var(--radius);
  background: #eaf8f5;
  color: var(--teal-strong) !important;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px max(20px, calc((100vw - 1160px) / 2)) 86px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 27, 37, 0.96) 0%, rgba(13, 27, 37, 0.82) 39%, rgba(13, 27, 37, 0.24) 100%),
    linear-gradient(135deg, #0d1b25, #1b3a42 52%, #0d1b25);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, transparent 74%, var(--paper) 100%);
  background-size: 42px 42px, 42px 42px, 100% 100%;
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-shell {
  position: absolute;
  right: max(20px, calc((100vw - 1160px) / 2));
  top: 126px;
  width: min(560px, 46vw);
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(236, 246, 247, 0.94);
  box-shadow: 0 26px 70px rgba(2, 8, 14, 0.36);
  overflow: hidden;
  transform: perspective(1100px) rotateY(-8deg) rotateX(3deg);
}

.product-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 48px;
  padding: 0 16px;
  background: #102635;
  color: #cfe9e7;
}

.product-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #68c8bd;
}

.product-topbar span:nth-child(2) {
  background: #efbd56;
}

.product-topbar span:nth-child(3) {
  background: #e76a73;
}

.product-topbar strong {
  margin-left: 10px;
  font-size: 0.86rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 432px;
}

.product-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 14px;
  background: #e5f0f1;
  color: #60717b;
}

.product-sidebar span {
  padding: 10px;
  border-radius: var(--radius);
  font-size: 0.84rem;
}

.product-sidebar .sidebar-active {
  background: #ffffff;
  color: var(--teal-strong);
  font-weight: 800;
}

.product-main {
  padding: 22px;
  color: var(--ink);
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.workflow-strip span {
  padding: 10px 8px;
  border-radius: var(--radius);
  background: #dcebef;
  color: #31515d;
  font-size: 0.78rem;
  text-align: center;
  font-weight: 800;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.device-card {
  position: relative;
  min-height: 108px;
  padding: 14px;
  border: 1px solid #d2e0e4;
  border-radius: var(--radius);
  background: #fff;
}

.device-card b,
.device-card small {
  display: block;
}

.device-card small {
  margin-top: 8px;
  color: var(--muted);
}

.device-card i {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.device-card.warning i {
  background: linear-gradient(90deg, var(--yellow), var(--red));
}

.patch-panel-visual {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid #d5e1e5;
  border-radius: var(--radius);
  background: #f7fafb;
}

.patch-panel-visual span {
  aspect-ratio: 1;
  border-radius: var(--radius);
}

.patch-panel-visual .synced {
  background: #38a565;
}

.patch-panel-visual .needs-work {
  background: #d94a55;
}

.patch-panel-visual .reserved {
  background: #7b858d;
}

.terminal-preview {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #132736;
  color: #dcefee;
}

.terminal-preview span,
.terminal-preview strong {
  display: block;
}

.terminal-preview span {
  color: #75c9c0;
  font-size: 0.82rem;
}

.terminal-preview strong {
  margin-top: 6px;
  font-size: 0.96rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #72d3c8;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 540px;
  font-size: var(--hero-title);
  line-height: 1.02;
}

.hero-copy {
  max-width: 540px;
  margin: 24px 0 0;
  color: #dbe9eb;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--teal);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus {
  background: var(--teal-strong);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus {
  background: rgba(255, 255, 255, 0.2);
}

.proof-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: var(--container);
  margin: -48px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-bar div {
  padding: 24px;
  background: var(--surface);
}

.proof-bar strong,
.proof-bar span {
  display: block;
}

.proof-bar strong {
  color: var(--teal-strong);
  font-size: 1.35rem;
}

.proof-bar span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0;
}

.section-tight {
  padding-top: 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.copy-column h2,
.demo-copy h2,
.live-demo-section h2,
.cta-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--section-title);
  line-height: 1.08;
}

.section-heading p,
.copy-column p,
.demo-copy p,
.cta-band p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.model-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.model-map article,
.roadmap-grid article,
.reconcile-card,
.automation-panel,
.demo-checklist {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(14, 31, 43, 0.08);
}

.model-map article {
  position: relative;
  min-height: 230px;
  padding: 24px;
}

.model-map h3,
.roadmap-grid h3,
.reconcile-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
}

.model-map p,
.roadmap-grid p,
.reconcile-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.node-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(7, 135, 127, 0.12);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 24px;
  color: var(--ink-soft);
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
}

.automation-panel {
  padding: 22px;
}

.panel-header,
.runbook-row,
.queue-metrics {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.panel-header {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-header span {
  color: var(--muted);
  font-weight: 800;
}

.panel-header b,
.runbook-row strong {
  padding: 7px 9px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-size: 0.82rem;
}

.runbook-row {
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}

.runbook-row span {
  font-weight: 800;
}

.runbook-row:not(.active) strong {
  background: var(--blue);
}

.queue-metrics {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  gap: 10px;
}

.queue-metrics div {
  padding: 14px;
  border-radius: var(--radius);
  background: #ecf4f6;
  text-align: center;
}

.queue-metrics b,
.queue-metrics span {
  display: block;
}

.queue-metrics b {
  color: var(--teal-strong);
  font-size: 1.42rem;
}

.queue-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
}

.reconcile-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reconcile-card {
  padding: 24px;
  border-top: 5px solid var(--green);
}

.reconcile-card.action {
  border-top-color: var(--yellow);
}

.reconcile-card span {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 9px;
  border-radius: var(--radius);
  background: #ecf4f6;
  color: var(--teal-strong);
  font-size: 0.84rem;
  font-weight: 900;
}

.screenshot-section {
  padding-top: 40px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 16px;
}

.equinix-screens {
  margin-top: 34px;
}

.screenshot-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(14, 31, 43, 0.08);
}

.screenshot-card-wide {
  grid-row: span 2;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: clamp(230px, 21vw, 280px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
  background: #edf3f5;
}

.screenshot-card-wide img {
  height: clamp(440px, 43vw, 610px);
  aspect-ratio: 16 / 11.4;
}

.screenshot-card div {
  padding: 20px;
}

.screenshot-card span {
  color: var(--teal-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.screenshot-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
}

.screenshot-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.7fr);
  gap: 44px;
  align-items: center;
  padding: 64px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.demo-copy h2,
.demo-copy p {
  color: #fff;
}

.demo-copy p {
  color: #cfe0e4;
}

.demo-checklist {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.demo-checklist div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.demo-checklist b,
.demo-checklist span {
  display: block;
}

.demo-checklist span {
  margin-top: 7px;
  color: #cfe0e4;
}

.live-demo-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  border: 1px solid rgba(7, 135, 127, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 135, 127, 0.1), rgba(36, 116, 184, 0.12)),
    var(--surface);
  box-shadow: 0 12px 32px rgba(14, 31, 43, 0.08);
}

.live-demo-section h2 {
  max-width: 780px;
}

.live-demo-button {
  flex-shrink: 0;
}

.roadmap-section {
  padding-bottom: 64px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.roadmap-grid article {
  padding: 24px;
}

.cta-band {
  width: var(--container);
  margin: 0 auto 80px;
  padding: 56px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 135, 127, 0.94), rgba(36, 116, 184, 0.92)),
    #0e6e77;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  max-width: 720px;
  margin-top: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: var(--container);
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.site-footer div,
.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer strong {
  color: var(--ink);
}

.error-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 28px;
  width: var(--container);
  margin: 0 auto;
  padding: 48px 0;
}

.error-brand {
  color: var(--ink);
}

.error-brand .brand-subtitle {
  color: var(--muted);
}

.error-panel {
  width: 100%;
  margin: 0;
}

.error-panel h1 {
  margin: 0;
  font-size: var(--section-title);
  line-height: 1.08;
}

.demo-page .hero {
  min-height: 72vh;
}

.demo-product-shell {
  min-height: 420px;
}

.demo-sandbox-visual {
  display: grid;
  gap: 14px;
  padding: 26px;
  color: var(--ink);
}

.sandbox-lane {
  position: relative;
  min-height: 72px;
  padding: 16px 18px 16px 62px;
  border: 1px solid #d2e0e4;
  border-radius: var(--radius);
  background: #fff;
}

.sandbox-lane::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 26px;
  height: 26px;
  border-radius: var(--radius);
  background: var(--teal);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.34);
}

.sandbox-lane:nth-child(2)::before {
  background: var(--blue);
}

.sandbox-lane:nth-child(3)::before {
  background: var(--yellow);
}

.sandbox-lane:nth-child(4)::before {
  background: var(--green);
}

.sandbox-lane b,
.sandbox-lane span {
  display: block;
}

.sandbox-lane b {
  font-size: 1rem;
}

.sandbox-lane span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.demo-architecture {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.demo-architecture article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.demo-architecture span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: #e6f4f2;
  color: var(--teal-strong);
  font-weight: 900;
}

[data-step] {
  animation: riseIn 520ms ease both;
  animation-delay: var(--step-delay, 0ms);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  :root {
    --hero-title: 4.1rem;
    --section-title: 2.55rem;
  }

  .site-header {
    width: calc(100vw - 24px);
    margin-top: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(13, 27, 37, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .product-shell {
    right: 20px;
    top: 130px;
    width: min(620px, 86vw);
    opacity: 0.4;
    transform: none;
  }

  .demo-product-shell {
    min-height: 370px;
  }

  .hero {
    padding-top: 430px;
  }

  .proof-bar,
  .model-map,
  .reconcile-board,
  .roadmap-grid,
  .screenshot-grid,
  .demo-architecture {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-card-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .screenshot-card-wide img {
    height: clamp(340px, 52vw, 480px);
  }

  .section-heading,
  .split-band,
  .demo-section,
  .live-demo-section {
    grid-template-columns: 1fr;
  }

  .demo-section,
  .live-demo-section,
  .cta-band {
    padding: 34px;
  }

  .live-demo-section {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1160px);
    --hero-title: 2.36rem;
    --section-title: 2rem;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 386px;
    padding-bottom: 48px;
  }

  .product-shell {
    top: 104px;
    width: calc(100vw - 40px);
    min-height: 250px;
    max-height: 260px;
    opacity: 0.94;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    display: none;
  }

  .product-main {
    padding: 14px;
  }

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

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

  .device-card {
    min-height: 76px;
    padding: 10px;
  }

  .device-card b {
    font-size: 0.78rem;
  }

  .device-card small {
    display: none;
  }

  .device-card i {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .demo-sandbox-visual {
    padding: 16px;
  }

  .patch-panel-visual {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-content,
  .hero h1,
  .hero-copy,
  .eyebrow {
    overflow-wrap: break-word;
  }

  .hero-content {
    width: calc(100vw - 64px);
    max-width: 330px;
  }

  .hero h1,
  .hero-copy,
  .eyebrow {
    width: 100%;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .live-demo-button {
    width: 100%;
  }

  .proof-bar,
  .model-map,
  .reconcile-board,
  .roadmap-grid,
  .demo-architecture,
  .screenshot-grid,
  .queue-metrics {
    grid-template-columns: 1fr;
  }

  .screenshot-card-wide {
    grid-column: auto;
  }

  .screenshot-card img,
  .screenshot-card-wide img {
    height: clamp(210px, 58vw, 320px);
  }

  .proof-bar {
    margin-top: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-tight {
    padding-top: 64px;
  }

  .site-footer {
    display: grid;
  }
}

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