:root {
  color-scheme: dark;
  --bg: #06111f;
  --bg-2: #091827;
  --panel: rgba(12, 28, 45, 0.76);
  --panel-solid: #0d2033;
  --line: rgba(160, 199, 230, 0.18);
  --text: #f4f8fb;
  --muted: #9eb2c4;
  --blue: #4db4ff;
  --blue-strong: #1286ff;
  --green: #4de2a4;
  --ink: #04101d;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 31, 0) 0, var(--bg) 740px),
    radial-gradient(circle at 84% 18%, rgba(77, 180, 255, 0.15), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(4, 16, 29, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-compact {
  min-height: 62px;
  background: rgba(4, 16, 29, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(77, 180, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(77, 180, 255, 0.2), rgba(77, 226, 164, 0.16));
  color: var(--text);
}

.brand-text {
  font-size: 1.02rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d8e6f1;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/cyberprotectplus-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 16, 29, 0.92) 0%, rgba(4, 16, 29, 0.72) 34%, rgba(4, 16, 29, 0.18) 74%, rgba(4, 16, 29, 0.5) 100%),
    linear-gradient(180deg, rgba(4, 16, 29, 0.1) 0%, rgba(4, 16, 29, 0.36) 75%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 78px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: #c6d6e3;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 760;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue-strong), #2fd592);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(18, 134, 255, 0.28);
}

.button.secondary {
  border-color: rgba(219, 236, 248, 0.32);
  background: rgba(255, 255, 255, 0.07);
  color: #edf7ff;
}

.hero-metrics {
  margin: 54px 0 0;
  padding: 0;
}

.hero-metrics div {
  width: 154px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 24, 39, 0.64);
  box-shadow: var(--shadow);
}

.hero-metrics dt {
  font-size: 1.7rem;
  font-weight: 820;
  color: #ffffff;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  padding-top: 64px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 8vw, 96px);
  align-items: end;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.split p,
.cta p {
  margin: 0;
  color: #bdccda;
  font-size: 1.08rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 790px;
}

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

.proof {
  padding-top: 48px;
}

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

.proof-grid article,
.deliverable-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.proof-grid article {
  min-height: 230px;
  padding: 22px;
}

.proof-grid h3,
.deliverable-list h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.proof-grid p,
.deliverable-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.solution-card {
  min-height: 258px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 35, 55, 0.92), rgba(9, 23, 38, 0.82));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.solution-card.featured {
  background:
    linear-gradient(180deg, rgba(18, 134, 255, 0.2), rgba(9, 23, 38, 0.9)),
    var(--panel-solid);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: rgba(77, 180, 255, 0.12);
  color: var(--green);
  border: 1px solid rgba(77, 226, 164, 0.26);
  font-size: 0.82rem;
  font-weight: 820;
}

.solution-card h3,
.timeline h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.solution-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.method {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(77, 180, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverables {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.deliverable-list {
  display: grid;
  gap: 12px;
}

.deliverable-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px 18px;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(77, 180, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.035);
}

.deliverable-list span {
  grid-row: span 2;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 820;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline article {
  padding: 26px;
  min-height: 238px;
  background: rgba(5, 18, 31, 0.62);
}

.timeline article + article {
  border-left: 1px solid var(--line);
}

.timeline span {
  display: block;
  margin-bottom: 42px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 820;
}

.sector-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.sector-strip span {
  min-height: 92px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: #d9e8f4;
  font-weight: 760;
}

.cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(77, 226, 164, 0.26);
  background:
    linear-gradient(135deg, rgba(18, 134, 255, 0.2), rgba(77, 226, 164, 0.1)),
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.cta h2 {
  max-width: 780px;
  margin-bottom: 18px;
}

.contact-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(4, 16, 29, 0.58);
  border: 1px solid var(--line);
}

.contact-card a {
  font-weight: 760;
  color: #ffffff;
}

address {
  color: var(--muted);
  font-style: normal;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: #a8bbc9;
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(4, 16, 29, 0.96);
  }

  .site-nav.is-open {
    display: grid;
    gap: 10px;
  }

  .site-nav a {
    padding: 10px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 16, 29, 0.94) 0%, rgba(4, 16, 29, 0.78) 56%, rgba(4, 16, 29, 0.38) 100%),
      linear-gradient(180deg, rgba(4, 16, 29, 0.12) 0%, var(--bg) 100%);
  }

  .split,
  .cta {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .solution-grid,
  .proof-grid,
  .timeline,
  .sector-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deliverables {
    grid-template-columns: 1fr;
  }

  .timeline article + article {
    border-left: 0;
  }

  .timeline article {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand-text {
    font-size: 0.96rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(358px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

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

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.55rem);
    line-height: 0.98;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics div {
    flex: 1 1 100%;
    width: auto;
  }

  .section {
    width: min(358px, calc(100vw - 32px));
    margin-left: 16px;
    margin-right: 16px;
    padding: 64px 0;
  }

  .solution-grid,
  .proof-grid,
  .timeline,
  .sector-strip {
    grid-template-columns: 1fr;
  }

  .deliverable-list article {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
  }

  .cta {
    width: min(358px, calc(100vw - 32px));
    margin-left: 16px;
    margin-right: 16px;
    padding: 24px;
  }

  .site-footer {
    display: grid;
  }
}
