:root {
  --ink: #050607;
  --panel: #101214;
  --panel-soft: #181b1f;
  --muted: #66717b;
  --line: #dfe3e7;
  --paper: #f7f8f8;
  --white: #ffffff;
  --red: #e30613;
  --red-dark: #ab0710;
  --red-soft: #fff0f1;
  --ice: #eef3f7;
  --steel: #a8b0b8;
  --shadow: 0 24px 70px rgba(5, 6, 7, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafb 34%, #eef2f5 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1240px, calc(100% - 28px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(5, 6, 7, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(5, 6, 7, 0.1);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  width: 156px;
  min-height: 48px;
  align-items: center;
  padding: 5px 8px;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #3f454b;
  font-size: 0.9rem;
  font-weight: 760;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(5, 6, 7, 0.05);
}

.site-nav a.is-active {
  color: var(--white);
  background: var(--ink);
}

.site-nav a.nav-cta {
  color: var(--white);
  background: var(--red);
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta.is-active {
  color: var(--white);
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  padding: 168px clamp(18px, 5vw, 76px) 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(227, 6, 19, 0.32), transparent 28%),
    linear-gradient(116deg, rgba(5, 6, 7, 0.99) 0%, rgba(13, 16, 20, 0.98) 52%, rgba(76, 4, 9, 0.96) 100%),
    var(--ink);
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 88%);
}

.hero-visual::after {
  position: absolute;
  inset: auto -10% -18% 35%;
  height: 46%;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(227, 6, 19, 0.22) 18% 26%, transparent 26% 38%, rgba(255, 255, 255, 0.08) 38% 46%, transparent 46%);
  transform: skewY(-8deg);
}

.hero-logo-ghost {
  position: absolute;
  right: clamp(-110px, -6vw, -40px);
  top: 115px;
  width: min(56vw, 760px);
  opacity: 0.075;
  filter: grayscale(1) contrast(1.4);
  transform: rotate(-2deg);
  user-select: none;
}

.scanline {
  position: absolute;
  top: 31%;
  right: -12%;
  width: 62vw;
  height: 130px;
  background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.34), rgba(255, 255, 255, 0.14), transparent);
  transform: rotate(-18deg);
}

.threat-map {
  position: absolute;
  right: clamp(18px, 7vw, 110px);
  bottom: 100px;
  width: min(40vw, 500px);
  aspect-ratio: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255, 255, 255, 0.045) 22px 23px),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 255, 255, 0.045) 22px 23px);
  clip-path: polygon(0 0, 88% 0, 100% 18%, 100% 100%, 14% 100%, 0 82%);
  opacity: 0.86;
}

.threat-map::before,
.threat-map::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  inset: 18%;
  clip-path: polygon(0 0, 84% 0, 100% 26%, 100% 100%, 16% 100%, 0 74%);
}

.threat-map::after {
  inset: 34%;
  border-color: rgba(227, 6, 19, 0.34);
}

.threat-map span {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(227, 6, 19, 0.12);
}

.threat-map span:nth-child(1) { top: 24%; left: 28%; }
.threat-map span:nth-child(2) { top: 52%; left: 58%; }
.threat-map span:nth-child(3) { top: 66%; left: 35%; }
.threat-map span:nth-child(4) { top: 34%; left: 76%; }

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 910px;
}

.hero-slider {
  position: relative;
  display: grid;
  min-height: 0;
}

.hero-slide {
  position: relative;
  grid-area: 1 / 1;
  display: grid;
  align-content: start;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero:not(.is-bound) .hero-slide {
  animation: heroSlideCycle 13.8s infinite;
  animation-delay: calc(var(--slide-index) * 4.6s);
}

@keyframes heroSlideCycle {
  0%,
  28% {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  33%,
  100% {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-28px);
  }
}

.hero-carousel-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 780px;
  margin-top: 34px;
}

.hero-dots,
.hero-controls {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 44px;
  height: 5px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--red);
}

.hero-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-controls button:hover {
  background: var(--red);
  border-color: var(--red);
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: min(420px, 100%);
  margin-bottom: 26px;
  padding: 8px 12px 8px 8px;
  color: #dfe4e9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-brand-lockup img {
  width: 150px;
  padding: 6px 8px;
  background: #ffffff;
  border-radius: 6px;
}

.hero-brand-lockup span {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6.6vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 780px;
  color: #dce2e8;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 36px rgba(227, 6, 19, 0.26);
}

.button-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  align-self: end;
}

.hero-panel div {
  padding: 24px;
  background: rgba(10, 12, 14, 0.68);
  backdrop-filter: blur(16px);
}

.metric {
  display: block;
  margin-bottom: 34px;
  color: #ff3b43;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel p {
  margin-bottom: 0;
  color: #e6e9ec;
  font-weight: 720;
}

.section {
  padding: 100px clamp(18px, 5vw, 70px);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 70px);
  margin-top: -48px;
  position: relative;
  z-index: 3;
}

.feature-strip article {
  min-height: 230px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(18, 21, 25, 0.98), rgba(5, 6, 7, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-strip article:first-child {
  border-radius: 10px 0 0 10px;
}

.feature-strip article:last-child {
  border-radius: 0 10px 10px 0;
}

.feature-strip span {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-strip h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.feature-strip p {
  color: #cdd5dc;
}

.feature-strip a {
  color: #ffffff;
  font-weight: 900;
}

.intelligence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  background: #ffffff;
}

.intelligence-section h2 {
  max-width: 900px;
}

.intelligence-section > p {
  color: #303941;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  background:
    linear-gradient(135deg, #050607 0%, #11161b 58%, #3a0509 100%);
  color: var(--white);
}

.services-section {
  background: #f8fafb;
}

.offer-section,
.usecase-section,
.detail-section,
.about-section,
.values-section,
.profile-proof-section,
.vendor-detail-section,
.deliverables-section,
.legal-section {
  background: #ffffff;
}

.offer-grid,
.usecase-grid,
.values-section,
.profile-proof-grid,
.vendor-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.usecase-carousel {
  display: grid;
  gap: 16px;
}

.carousel-track {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, #050607 0%, #12171d 58%, #3a0509 100%);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(28px, 5vw, 56px);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.carousel-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 20%, rgba(227, 6, 19, 0.22) 20% 28%, transparent 28% 44%),
    radial-gradient(circle at 80% 22%, rgba(227, 6, 19, 0.28), transparent 28%);
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.usecase-section:not(.is-bound) .carousel-slide {
  animation: usecaseSlideCycle 17.6s infinite;
  animation-delay: calc(var(--slide-index) * 4.4s);
}

@keyframes usecaseSlideCycle {
  0%,
  23% {
    opacity: 1;
    transform: translateX(0);
  }

  28%,
  100% {
    opacity: 0;
    transform: translateX(-24px);
  }
}

.carousel-slide > * {
  position: relative;
  max-width: 780px;
}

.carousel-slide span {
  width: fit-content;
  padding: 6px 9px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.carousel-slide h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.carousel-slide p {
  margin-bottom: 0;
  color: #d4dbe1;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
}

.carousel-controls button:hover {
  background: var(--red);
  border-color: var(--red);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 36px;
  height: 6px;
  padding: 0;
  background: #cbd1d6;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--red);
}

.offer-grid article,
.usecase-grid article,
.values-section article,
.about-panel,
.profile-proof-grid article,
.vendor-detail-grid article,
.legal-section article {
  min-height: 230px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  border: 1px solid rgba(5, 6, 7, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(5, 6, 7, 0.05);
}

.offer-grid span,
.values-section span,
.profile-proof-grid span {
  display: inline-flex;
  margin-bottom: 44px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-grid p,
.usecase-grid p,
.about-section p,
.values-section p,
.profile-proof-section p,
.vendor-detail-section p,
.legal-section p {
  color: var(--muted);
}

.profile-proof-section,
.deliverables-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.profile-proof-grid span {
  color: var(--white);
  background: var(--red);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  line-height: 1;
  text-transform: none;
}

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

.legal-section {
  display: grid;
  gap: 14px;
}

.legal-section article {
  min-height: auto;
}

.legal-section a {
  color: var(--red-dark);
  font-weight: 850;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  background:
    linear-gradient(135deg, #050607 0%, #12171d 58%, #3a0509 100%);
  color: var(--white);
}

.trust-section ul,
.detail-list,
.about-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-section li,
.detail-list li,
.about-panel li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 820;
}

.detail-section,
.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.detail-section .button {
  align-self: start;
}

.detail-list li,
.about-panel li {
  color: var(--ink);
  background: #fbfcfd;
  border-color: rgba(5, 6, 7, 0.08);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--red-dark);
  font-weight: 900;
}

.services-section .section-heading > p {
  max-width: 560px;
  color: var(--muted);
}

.service-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(5, 6, 7, 0.1);
  border: 1px solid rgba(5, 6, 7, 0.1);
  border-radius: 10px;
}

.service-lanes article {
  min-height: 260px;
  padding: 28px;
  background: #ffffff;
}

.service-lanes h3 {
  margin-bottom: 76px;
  font-size: 1.2rem;
}

.service-lanes p {
  color: var(--muted);
}

.platform-copy {
  position: sticky;
  top: 118px;
}

.platform-copy p {
  color: #ccd4dc;
}

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

.capability-card {
  min-height: 260px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.capability-card span {
  display: block;
  margin-bottom: 64px;
  color: #ff4b52;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-card h3 {
  font-size: 1.18rem;
}

.capability-card p {
  color: #cdd5dc;
}

.reasons-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 90px);
  background: #ffffff;
}

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

.reason-grid article {
  min-height: 210px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  border: 1px solid rgba(5, 6, 7, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(5, 6, 7, 0.05);
}

.reason-grid h3 {
  margin-bottom: 42px;
}

.reason-grid p {
  color: var(--muted);
}

.page-view,
.page-hero,
.admin-shell {
  padding-top: 148px;
}

.page-loading {
  min-height: 70vh;
  padding-top: 148px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, #ffffff 0%, #f7f9fa 62%, #fff0f1 100%);
}

.page-hero::after {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  top: 118px;
  width: min(34vw, 430px);
  aspect-ratio: 2.35;
  content: "";
  background: url("/assets/skyllix-logo-cropped.png?v=20260720-logo-watermark-1") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.dark-page {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 6, 7, 0.98), rgba(91, 4, 9, 0.94)),
    var(--ink);
}

.dark-page::after {
  display: none;
}

.dark-page p {
  color: #d3d8dd;
}

.standalone-section {
  padding-top: 116px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

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

.service-card {
  min-height: 300px;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border: 1px solid rgba(5, 6, 7, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(5, 6, 7, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(227, 6, 19, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(5, 6, 7, 0.11);
}

.service-icon {
  display: block;
  margin-bottom: 72px;
  color: var(--red);
  font-weight: 900;
}

.service-card p,
.solutions-section p,
.watch-card p,
.watch-sources p,
.method-section p,
.contact-section p,
.site-footer {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 8px;
  color: var(--red-dark);
  background: #fff2f3;
  border: 1px solid #ffd2d5;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 820;
}

.solutions-section,
.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  background:
    linear-gradient(135deg, #050607 0%, #12171d 58%, #3a0509 100%);
  color: var(--white);
}

.solutions-section p,
.method-section p {
  color: #c9d0d6;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.vendor-card {
  display: grid;
  min-height: 108px;
  place-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  backdrop-filter: blur(10px);
}

.vendor-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(227, 6, 19, 0.6);
  transform: translateY(-2px);
}

.vendor-card img {
  display: block;
  width: min(148px, 80%);
  max-height: 60px;
  object-fit: contain;
}

.vendor-card span {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.vendor-card.has-logo-error span,
.vendor-card-text span {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.watch-section {
  background: var(--white);
}

.watch-status {
  flex: 0 0 auto;
  padding: 10px 12px;
  color: var(--red-dark);
  background: #fff4f4;
  border: 1px solid #ffd0d2;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 850;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.watch-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -16px 0 24px;
}

.watch-filters button {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
}

.watch-filters button.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.watch-feed {
  display: grid;
  gap: 12px;
}

.watch-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(5, 6, 7, 0.08);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(5, 6, 7, 0.05);
}

.watch-card h3 {
  margin-bottom: 8px;
}

.watch-card p {
  margin-bottom: 12px;
}

.watch-card a {
  color: var(--red-dark);
  font-weight: 850;
}

.watch-source {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 8px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.watch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #555f68;
  font-size: 0.88rem;
  font-weight: 760;
}

.severity-pill {
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  padding: 4px 8px;
}

.watch-sources {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 22px;
  background: var(--panel);
  border-radius: 10px;
  color: var(--white);
}

.watch-sources a {
  padding-bottom: 10px;
  color: #f4f5f6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 820;
}

.watch-sources p {
  margin-bottom: 0;
  color: #c2c9cf;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
}

.step strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.45;
}

.deliverable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.deliverable-list li {
  padding: 7px 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 820;
}

.assurance-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 90px);
  background: #ffffff;
}

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

.assurance-grid article {
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfd);
  border: 1px solid rgba(5, 6, 7, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(5, 6, 7, 0.05);
}

.assurance-grid h3 {
  margin-bottom: 42px;
}

.assurance-grid p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 850;
}

.contact-details a {
  color: var(--red-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(5, 6, 7, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: #343a40;
  font-weight: 820;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfbfb;
  border: 1px solid #cdd3d8;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(227, 6, 19, 0.14);
}

.form-note {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 850;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-shell {
  background: #f1f3f4;
}

.admin-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.admin-header p {
  max-width: 820px;
  color: var(--muted);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.admin-stats article,
.admin-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 48px rgba(5, 6, 7, 0.06);
}

.admin-stats article {
  padding: 22px;
}

.admin-stats span {
  display: block;
  color: var(--red);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 920;
}

.admin-stats p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 820;
}

.admin-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.admin-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.admin-panel h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.admin-panel a,
.admin-panel article {
  display: block;
  padding: 14px;
  color: var(--ink);
  background: #fbfbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-panel a {
  font-weight: 860;
}

.admin-panel a span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-panel article h3 {
  margin-bottom: 7px;
}

.admin-panel article p {
  margin-bottom: 0;
  color: var(--muted);
}

.admin-login {
  max-width: 620px;
}

.admin-login p {
  color: var(--muted);
}

.admin-editor {
  margin-top: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 48px rgba(5, 6, 7, 0.06);
}

.admin-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.admin-editor-header h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.admin-editor-header div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-editor textarea {
  min-height: 520px;
  font-family: "Cascadia Code", "Consolas", monospace;
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: pre;
  overflow: auto;
}

@media (max-width: 1040px) {
  .hero,
  .solutions-section,
  .method-section,
  .contact-section,
  .watch-layout,
  .intelligence-section,
  .platform-section,
  .reasons-section,
  .assurance-section,
  .trust-section,
  .detail-section,
  .about-section,
  .profile-proof-section,
  .deliverables-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .hero-panel {
    max-width: 720px;
  }

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

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

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 18px;
    background: var(--ink);
  }

  .feature-strip article,
  .feature-strip article:first-child,
  .feature-strip article:last-child {
    border-radius: 10px;
  }

  .platform-copy {
    position: static;
  }

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

  .watch-sources {
    position: static;
  }

  .hero-logo-ghost {
    width: 760px;
    right: -220px;
    top: 120px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    padding: 8px 10px;
    margin-top: 10px;
  }

  .brand {
    width: 132px;
    min-height: 42px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 0;
    display: none;
    width: min(330px, calc(100vw - 20px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 15px 17px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding: 124px 18px 54px;
  }

  .hero-carousel-bar {
    display: grid;
  }

  .hero-brand-lockup {
    display: grid;
    gap: 8px;
    align-items: start;
    max-width: 260px;
    padding: 8px;
  }

  .hero-brand-lockup img {
    width: 138px;
  }

  .hero-logo-ghost {
    right: -180px;
    top: 108px;
    width: 520px;
    opacity: 0.06;
  }

  .threat-map {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .section {
    padding: 64px 18px;
  }

  .feature-strip {
    padding-right: 18px;
    padding-left: 18px;
  }

  .page-view,
  .page-hero,
  .admin-shell,
  .page-loading {
    padding-top: 108px;
  }

  .section-heading {
    display: block;
  }

  .service-grid,
  .vendor-grid,
  .capability-grid,
  .service-lanes,
  .reason-grid,
  .assurance-grid,
  .offer-grid,
  .usecase-grid,
  .values-section,
  .profile-proof-grid,
  .vendor-detail-grid,
  .admin-stats,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    min-height: 210px;
  }

  .feature-strip span,
  .capability-card span {
    margin-bottom: 36px;
  }

  .admin-header {
    display: block;
  }

  .admin-header .button {
    margin-top: 18px;
  }

  .admin-editor-header {
    display: block;
  }

  .admin-editor-header div {
    margin-top: 14px;
  }

  .service-card {
    min-height: 236px;
  }

  .service-icon {
    margin-bottom: 46px;
  }

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