:root {
  --ink: #08111f;
  --navy: #07101e;
  --panel: #0b1829;
  --muted: #627084;
  --line: rgba(8, 17, 31, 0.14);
  --red: #e71921;
  --cyan: #23c8d2;
  --green: #45d483;
  --blue: #0a5cff;
  --white: #ffffff;
  --mist: #eef4f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f9fb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.wg-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--white);
}

.wg-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-weight: 850;
}

.wg-brand span {
  font-size: 24px;
}

.wg-brand strong {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wg-nav {
  display: flex;
  gap: clamp(14px, 2.5vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
}

.wg-nav a:hover {
  color: var(--white);
}

.nav-product {
  position: relative;
}

.nav-product::before {
  content: "";
  position: absolute;
  top: 100%;
  right: -12px;
  left: -12px;
  height: 14px;
}

.nav-product-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.nav-product-trigger::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-product-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 5;
  width: 260px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 16, 30, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-product:hover .nav-product-menu,
.nav-product:focus-within .nav-product-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-product-menu a {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: 6px;
  color: var(--white);
}

.nav-product-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-product-menu span {
  font-size: 14px;
  font-weight: 850;
}

.nav-product-menu small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 650;
}

.wg-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 76% 30%, rgba(231, 25, 33, 0.26), transparent 28%),
    linear-gradient(135deg, #07101e 0%, #111827 54%, #2a0c13 100%);
  background-size: 82px 82px, 82px 82px, auto, auto;
}

#security-canvas,
.wg-hero-shade {
  position: absolute;
  inset: 0;
}

.wg-hero-shade {
  background: linear-gradient(90deg, rgba(7, 16, 30, 0.94), rgba(7, 16, 30, 0.62), rgba(7, 16, 30, 0.35));
}

.wg-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  width: min(1180px, calc(100% - 40px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 120px 0 62px;
}

.wg-logo {
  width: min(250px, 58vw);
  height: auto;
  margin-bottom: 38px;
}

.wg-eyebrow,
.wg-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6.8vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.wg-hero-copy p:not(.wg-eyebrow) {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
}

.wg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}

.wg-button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #a50f16);
}

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

.wg-hero-visual {
  display: grid;
  gap: 16px;
}

.wg-device {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.wg-device img {
  display: block;
  width: 100%;
  height: auto;
}

.wg-signal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 16, 30, 0.74);
}

.wg-signal span {
  color: rgba(255, 255, 255, 0.62);
}

.wg-signal strong {
  color: var(--green);
}

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

.wg-split,
.wg-proof-inner,
.wg-contact {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.wg-split > p,
.wg-contact > div > p,
.wg-product p,
.wg-outcomes p {
  color: var(--muted);
  font-size: 18px;
}

.wg-band {
  color: var(--white);
  background: var(--navy);
}

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

.wg-product {
  min-height: 500px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.wg-product.dark {
  background: linear-gradient(135deg, rgba(231, 25, 33, 0.2), rgba(255, 255, 255, 0.04));
}

.wg-product span {
  display: block;
  margin-bottom: 80px;
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}

.wg-product h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
}

.wg-product p {
  color: rgba(255, 255, 255, 0.72);
}

.wg-product ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
}

.wg-product li {
  padding-left: 18px;
  border-left: 3px solid var(--red);
  font-weight: 700;
}

.wg-section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

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

.wg-steps div {
  min-height: 230px;
  padding-top: 20px;
  border-top: 4px solid var(--red);
}

.wg-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 24px;
  font-weight: 850;
}

.wg-steps p {
  color: var(--muted);
}

.wg-proof {
  background: var(--mist);
}

.wg-outcomes {
  display: grid;
  gap: 18px;
}

.wg-outcomes p {
  margin: 0;
  padding-left: 20px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-weight: 750;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(8, 17, 31, 0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: #263446;
  font-size: 13px;
  font-weight: 850;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(8, 17, 31, 0.16);
  border-radius: 6px;
  background: #f9fbfd;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.form-row input {
  height: 48px;
  padding: 0 14px;
}

.form-row textarea {
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.captcha-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px;
  border: 1px dashed rgba(8, 17, 31, 0.22);
  border-radius: 6px;
  background: #f5f8fb;
  color: #526172;
  font-size: 14px;
  font-weight: 750;
}

.captcha-slot.captcha-loaded {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.captcha-icon {
  width: 24px;
  height: 24px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.wg-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.66);
  background: #06111f;
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 980px) {
  .wg-header {
    position: absolute;
  }

  .wg-brand strong {
    display: none;
  }

  .wg-hero-inner,
  .wg-split,
  .wg-product-grid,
  .wg-proof-inner,
  .wg-contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .wg-header {
    align-items: flex-start;
  }

  .wg-nav {
    max-width: 260px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 14px;
    font-size: 12px;
  }

  .nav-product-menu {
    right: -8px;
    width: min(250px, calc(100vw - 32px));
  }

  .wg-hero,
  .wg-hero-inner {
    min-height: auto;
  }

  .wg-hero-inner {
    width: min(100% - 32px, 1180px);
    padding-top: 118px;
  }

  .wg-actions,
  .wg-button {
    width: 100%;
  }

  .wg-section {
    width: min(100% - 32px, 1180px);
    padding: 72px 0;
  }

  .wg-steps {
    grid-template-columns: 1fr;
  }

  .wg-product {
    min-height: auto;
  }

  .wg-product span {
    margin-bottom: 44px;
  }

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