:root {
  --navy: #07142f;
  --blue: #1b6dff;
  --cyan: #1ee6d6;
  --lime: #b8ff4d;
  --violet: #8c5cff;
  --paper: #f5fbff;
  --ink: #06142d;
  --muted: #5d6b82;
  --white: #ffffff;
  --line: rgba(6, 20, 45, 0.12);
  --shadow: 0 24px 70px rgba(7, 20, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0, rgba(30, 230, 214, 0.22), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(140, 92, 255, 0.18), transparent 32%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: min(1200px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(245, 251, 255, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.pulse {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 0 8px rgba(30, 230, 214, 0.14);
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(30, 230, 214, 0.45);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #30415f;
  font-size: 0.95rem;
  font-weight: 750;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
}

.hero,
.section,
.flow-strip,
.footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 38px;
  align-items: center;
  min-height: 760px;
  padding: 78px 0 48px;
}

.label {
  margin: 0 0 15px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 960px;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.8vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 42px rgba(27, 109, 255, 0.25);
}

.button.secondary {
  color: var(--blue);
  background: rgba(27, 109, 255, 0.08);
}

.status-wall {
  display: grid;
  gap: 18px;
}

.status-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  color: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.status-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.status-card.green {
  background: linear-gradient(135deg, #00a878, #1ee6d6);
}

.status-card.blue {
  background: linear-gradient(135deg, #1b6dff, #1eb5ff);
}

.status-card.violet {
  background: linear-gradient(135deg, #6e45ff, #c45cff);
}

.status-card span {
  display: block;
  margin-bottom: 24px;
  opacity: 0.8;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.status-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.status-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: -20px;
}

.flow-strip span {
  padding: 18px 12px;
  text-align: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(7, 20, 47, 0.08);
  font-weight: 900;
}

.section {
  padding: 96px 0;
}

.continuity,
.operating-model,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

.continuity-copy,
.service-cloud p,
.service-cloud li,
.model-intro p,
.model-grid p,
.playbook-list p,
.outcome-grid p,
.contact p {
  color: var(--muted);
}

.services {
  padding-top: 42px;
}

.service-cloud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-cloud article,
.model-grid article,
.playbook-list article,
.outcome-grid p,
.contact-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(7, 20, 47, 0.08);
}

.service-cloud article {
  padding: 28px;
}

.service-cloud span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.service-cloud ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.model-grid article {
  padding: 28px;
}

.model-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1.26rem;
}

.playbook-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.playbook-list article {
  padding: 26px;
}

.playbook-list div {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 18px;
  font-weight: 950;
}

.outcomes {
  padding-top: 20px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.outcome-grid p {
  margin: 0;
  padding: 19px;
}

.contact-card {
  padding: 32px;
}

.contact-card a:not(.button) {
  color: var(--blue);
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

@keyframes pulse {
  from {
    opacity: 0.8;
    transform: scale(0.78);
  }
  to {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .hero,
  .continuity,
  .operating-model,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-cloud,
  .playbook-list,
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .flow-strip,
  .footer {
    width: min(100% - 28px, 1200px);
  }

  .hero {
    min-height: auto;
    padding: 60px 0 36px;
  }

  .service-cloud,
  .model-grid,
  .playbook-list,
  .outcome-grid,
  .flow-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .footer {
    flex-direction: column;
  }
}
