* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --white: #ffffff;
  --card: #ffffff;
  --text: #212637;
  --muted: #707785;
  --lime: #b7ff00;
  --lime-dark: #8cc700;
  --border: #d7dce5;
  --shadow: 0 25px 70px rgba(0,0,0,.45);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #050505;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(183,255,0,.13), transparent 22%),
    radial-gradient(circle at 90% 75%, rgba(183,255,0,.10), transparent 25%),
    linear-gradient(145deg, #050505, #0b0e08 65%, #050505);
}

.page-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  background: var(--lime);
  opacity: .11;
}
.glow-1 { width: 360px; height: 360px; left: -130px; top: 18%; }
.glow-2 { width: 420px; height: 420px; right: -150px; bottom: 8%; }

.bg-art {
  position: absolute;
  object-fit: contain;
  opacity: .06;
  user-select: none;
  pointer-events: none;
}
.bg-ball {
  width: 520px;
  height: 520px;
  left: -210px;
  bottom: 5%;
}
.bg-snake {
  width: 560px;
  height: 560px;
  right: -230px;
  top: 6%;
}

.form-header {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 16px;
  display: flex;
  justify-content: center;
}

.brand img {
  display: block;
  width: 220px;
  height: 76px;
  object-fit: contain;
}

.form-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 55px;
}

.intro {
  color: white;
  text-align: center;
  padding: 20px 20px 34px;
}

.eyebrow {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 12px;
}

.intro h1,
.result-card h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 7vw, 72px);
  line-height: .95;
  letter-spacing: .5px;
}

.intro h1 span,
.result-card h1 span {
  color: var(--lime);
}

.intro > p:last-child {
  max-width: 670px;
  margin: 17px auto 0;
  color: #c5c5c5;
  line-height: 1.75;
  font-size: 14px;
}

.form-card {
  background: var(--card);
  border-radius: 18px;
  padding: 42px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.form-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--lime), #efffae, var(--lime));
}

.section-title {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid #aeb5c1;
  margin-bottom: 28px;
}

.section-title.second {
  margin-top: 36px;
}

.section-title > span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #10140a;
  color: var(--lime);
  font-family: "Anton", sans-serif;
  font-size: 18px;
}

.section-title h2 {
  font-size: 21px;
  line-height: 1.2;
}

.section-title p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.field-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #313746;
}

label em {
  font-style: normal;
  color: #e21d3f;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.field-group > input,
.field-group > select,
.subfield input {
  width: 100%;
  height: 46px;
  border: 1px solid #b9c2d2;
  border-radius: 5px;
  background: white;
  color: #262d3c;
  padding: 0 13px;
  font: 14px "Montserrat", sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.field-group > select {
  margin-top: 10px;
  appearance: auto;
}

.field-group > input {
  margin-top: 10px;
}

input:focus,
select:focus {
  border-color: #91c900;
  box-shadow: 0 0 0 3px rgba(183,255,0,.16);
}

.subfield small {
  display: block;
  color: #69707d;
  font-size: 11px;
  margin-top: 7px;
}

.form-note {
  background: #f4f7ef;
  border-left: 4px solid var(--lime-dark);
  padding: 14px 16px;
  color: #59606d;
  font-size: 12px;
  line-height: 1.65;
  margin-top: 5px;
}

.submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.submit-btn {
  min-width: 205px;
  min-height: 52px;
  border: 0;
  background: #090b08;
  color: white;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 0 22px;
  cursor: pointer;
  font: 800 12px "Montserrat", sans-serif;
  letter-spacing: 1px;
  transition: transform .2s, background .2s, box-shadow .2s;
  text-decoration: none;
}

.submit-btn b {
  font-size: 24px;
  color: var(--lime);
  font-weight: 400;
}

.submit-btn:hover {
  background: #151b0d;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.contact-strip {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: #999;
  font-size: 11px;
}

.contact-strip span {
  color: white;
  font-weight: 800;
}

.contact-strip a {
  color: var(--lime);
  text-decoration: none;
}

.hp-field {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.result-page {
  display: grid;
  place-items: center;
  padding: 30px 16px;
  background:
    radial-gradient(circle at center, rgba(183,255,0,.15), transparent 35%),
    #050505;
}

.result-card {
  width: min(640px, 100%);
  padding: 55px 35px;
  text-align: center;
  color: white;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.result-card img {
  width: 210px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 22px;
}

.result-card > p:not(.eyebrow) {
  color: #bdbdbd;
  line-height: 1.75;
  margin: 18px auto 28px;
  max-width: 500px;
}

.result-button {
  margin: 0 auto;
}

@media (max-width: 700px) {
  .brand img {
    width: 180px;
    height: 64px;
  }

  .intro {
    padding-left: 5px;
    padding-right: 5px;
  }

  .form-card {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .section-title {
    align-items: flex-start;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .submit-btn {
    width: 100%;
  }

  .bg-art {
    opacity: .035;
  }

  .contact-strip {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* CORRECTED BRAND ART: snake/ball removed and replaced by VIPERS ELITE wordmark */
.bg-ball, .bg-snake { display: none !important; }

.bg-vipers-logo {
  display: block !important;
  position: absolute;
  width: 300px !important;
  height: auto !important;
  right: 4% !important;
  top: 11% !important;
  left: auto !important;
  bottom: auto !important;
  object-fit: contain !important;
  opacity: .10 !important;
  transform: none !important;
  filter: none !important;
}

.brand img {
  width: 190px !important;
  height: 66px !important;
  object-fit: contain !important;
}

@media (max-width: 700px) {
  .bg-vipers-logo {
    width: 190px !important;
    right: -35px !important;
    top: 9% !important;
    opacity: .055 !important;
  }
  .brand img {
    width: 165px !important;
    height: 58px !important;
  }
}


/* Final form artwork: exact snake + basketball graphic */
.bg-vipers-logo { display: none !important; }

.bg-snake-form {
  display: block !important;
  position: absolute;
  width: 330px !important;
  height: 330px !important;
  right: 3% !important;
  top: 10% !important;
  left: auto !important;
  bottom: auto !important;
  object-fit: contain !important;
  opacity: .11 !important;
  transform: none !important;
  filter: drop-shadow(0 0 18px rgba(183,255,0,.08)) !important;
}

@media (max-width: 700px) {
  .bg-snake-form {
    width: 210px !important;
    height: 210px !important;
    right: -45px !important;
    top: 9% !important;
    opacity: .06 !important;
  }
}
