:root {
  --panel-bg: rgba(17, 24, 39, 0.82);
  --panel-border: rgba(101, 145, 255, 0.18);
  --panel-border-strong: rgba(101, 145, 255, 0.3);
  --text-soft: rgba(231, 238, 255, 0.76);
  --cobalt: #2f6bff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(47, 107, 255, 0.14), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(47, 107, 255, 0.08), transparent 18%),
    #0a0a0a;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 1.25rem 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(5, 9, 18, 0.92), rgba(5, 9, 18, 0.76));
}

@media (min-width: 640px) {
  .site-header {
    padding: 1.25rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding: 1.25rem 2rem;
  }
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

.section-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(112, 161, 255, 0.95);
}

.glass-panel,
.feature-card,
.sector-card,
.mini-card,
.contact-form,
.agnostic-banner {
  border: 1px solid var(--panel-border);
  background: var(--panel-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.glass-panel {
  border-radius: 1.5rem;
}

.panel-cell {
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.feature-card,
.sector-card,
.mini-card,
.contact-form {
  border-radius: 1.25rem;
  padding: 1.25rem;
}

.feature-card,
.sector-card,
.mini-card,
.chip-card,
.value-tile,
.btn-primary,
.btn-secondary,
.field-input {
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.feature-card:hover,
.sector-card:hover,
.mini-card:hover,
.chip-card:hover,
.value-tile:hover {
  transform: translateY(-2px);
}

.feature-card {
  border-color: var(--panel-border-strong);
}

.feature-index,
.mono-tag {
  font-family: 'JetBrains Mono', monospace;
  color: rgba(112, 161, 255, 0.92);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.mini-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(112, 161, 255, 0.88);
}

.mini-value {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.bullet {
  margin-top: 0.45rem;
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.16);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(47, 107, 255, 1), rgba(46, 84, 208, 1));
  box-shadow: 0 0 0 1px rgba(47, 107, 255, 0.28), 0 18px 35px rgba(47, 107, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(47, 107, 255, 0.42), 0 20px 42px rgba(47, 107, 255, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(101, 145, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(101, 145, 255, 0.5);
  background: rgba(47, 107, 255, 0.1);
}

.agnostic-banner {
  border-radius: 1.75rem;
  padding: 1.5rem;
}

.chip-card {
  border: 1px solid rgba(101, 145, 255, 0.2);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.95rem 1.1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(234, 240, 255, 0.9);
}

.sector-card {
  border-color: rgba(101, 145, 255, 0.16);
}

.sector-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.sector-card p {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.value-tile {
  border: 1px solid rgba(101, 145, 255, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
}

.value-tile span {
  display: inline-flex;
  height: 1.8rem;
  width: 1.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(101, 145, 255, 0.28);
  color: rgba(112, 161, 255, 0.96);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
}

.value-tile p {
  margin-top: 0.85rem;
  color: rgba(231, 238, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.6;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-group span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(112, 161, 255, 0.9);
}

.field-input {
  width: 100%;
  border: 1px solid rgba(101, 145, 255, 0.18);
  border-radius: 1rem;
  background: rgba(7, 10, 18, 0.88);
  padding: 0.95rem 1rem;
  color: #fff;
  outline: none;
}

.field-input::placeholder {
  color: rgba(162, 174, 208, 0.75);
}

.field-input:focus {
  border-color: rgba(47, 107, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

.section-head {
  max-width: 52rem;
}

.brand-title,
.brand-subtitle {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-title {
  letter-spacing: 0.22em;
}

.brand-subtitle {
  letter-spacing: 0.16em;
}

.hero-badge {
  max-width: 100%;
  line-height: 1.35;
}

.wsp-header-btn,
.wsp-inline-btn,
.wsp-float {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.25), 0 16px 32px rgba(18, 140, 126, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.wsp-header-btn:hover,
.wsp-inline-btn:hover,
.wsp-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.45), 0 18px 36px rgba(18, 140, 126, 0.4);
  filter: saturate(1.05);
}

.wsp-float {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.5rem);
  z-index: 72;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  padding: 0;
  text-decoration: none;
  animation: wsp-shake 2.5s ease-in-out infinite;
}

.wsp-float-icon {
  display: inline-flex;
  height: 1.75rem;
  width: 1.75rem;
}

.wsp-float-icon svg {
  width: 100%;
  height: 100%;
}

.wsp-float-text {
  display: none;
}

@keyframes wsp-shake {
  0%,
  76%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  80% {
    transform: translate3d(-1px, 0, 0) rotate(-12deg);
  }
  84% {
    transform: translate3d(1px, 0, 0) rotate(12deg);
  }
  88% {
    transform: translate3d(-1px, 0, 0) rotate(-9deg);
  }
  92% {
    transform: translate3d(1px, 0, 0) rotate(9deg);
  }
  96% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@media (max-width: 640px) {
  .section-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .glass-panel {
    border-radius: 1.15rem;
  }

  .feature-card,
  .sector-card,
  .mini-card,
  .contact-form,
  .panel-cell {
    padding: 1rem;
  }

  .agnostic-banner,
  .contact-form {
    padding: 1.1rem;
  }

  .chip-card {
    border-radius: 0.9rem;
    text-align: left;
  }

  .wsp-float {
    right: 0;
    bottom: calc(100% + 0.45rem);
    width: 3.45rem;
    height: 3.45rem;
  }
}

@media (max-width: 420px) {
  html {
    font-size: 15px;
  }

  .hero-badge {
    letter-spacing: 0.1em;
    font-size: 0.64rem;
  }

  .brand-title {
    letter-spacing: 0.14em;
  }

  .brand-subtitle {
    letter-spacing: 0.1em;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 17px;
  }
}