@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  font-family: Orbitron;
}
/* body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000;
  color: #fff;
  background-image: linear-gradient(#3333335c 1px, transparent 0),
    linear-gradient(90deg, #3333335c 1px, transparent 0);
  background-size: 130px 130px;
} */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000;
  color: #fff;
  background-image: linear-gradient(#3333335c 1px, transparent 0),
    linear-gradient(90deg, #3333335c 1px, transparent 0);
  background-size: 130px 130px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.banner-main {
  background-image: url(../assets/images/bannerwelcome.webp);
  background-repeat: no-repeat;
  height: 93vh;
  background-position: 50%;
  background-size: cover;
  margin: 30px;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: opacity 1s ease, transform 1s ease;
}

.banner-logo-wrapper {
  position: absolute;
  top: 40%;
  left: 10%;
}

/* Debug preview */
.debug-block {
  display: none;
  margin-top: 16px;
  padding: 12px;
  border: 1px dashed #999;
  border-radius: 8px;
  background: #0a0a0a0d;
}
.debug-block pre {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.debug-block.is-hidden {
  display: none !important;
}
.is-hidden {
  display: none !important;
}

.main {
  min-height: 100vh;
  height: auto;
  width: 100%;
  position: relative;
}
.logo-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 35px;
  padding-bottom: 35px;
}

.container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}
.form-holder {
  width: 60vw;
  padding-bottom: 180px;
}
@media (max-width: 1024px) {
  .form-holder {
    width: 86vw;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Each step takes the stage */
.form-step {
  /* min-height: 55vh; */
  display: none;
  align-content: flex-start;
}
.form-step .label-input {
  margin-bottom: 16px;
}

.label-input {
  font-weight: 700;
  color: #fff;
  font-size: 40px;
  font-family: Orbitron, sans-serif;
  letter-spacing: 4px;
}
.stepper-input {
  width: 100%;
  padding: 10px 0;
  background: none;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  font-size: 22px;
  font-family: Orbitron, sans-serif;
  letter-spacing: 4px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Buttons */
.cross-cut-button {
  padding: 20px 40px;
  font-size: 16px;
  width: 222px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #000;
  background-color: #05d9ff;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: Orbitron, sans-serif;
  letter-spacing: 4px;
  -webkit-clip-path: polygon(9% 0, 100% 0, 100% 68%, 91% 100%, 0 100%, 0 35%);
  clip-path: polygon(9% 0, 100% 0, 100% 68%, 91% 100%, 0 100%, 0 35%);
  transition: background-color 0.3s ease, opacity 0.2s ease;
}
.cross-cut-button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Arrow anims */
.arrows {
  position: absolute;
  top: 50%;
  left: 76%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
}
.arrows:before {
  transform: translate(6.6667px, 106.6667px) rotate(-45deg);
  animation: arrows 2s linear infinite;
}
.arrows:after,
.arrows:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 2.6667px solid rgba(0, 0, 0, 0.7);
  border-bottom: 2.6667px solid rgba(0, 0, 0, 0.7);
}
.arrows:after {
  transform: translate(53.3333px) rotate(-45deg);
  animation: arrows 2s linear -0.5s infinite;
}
@keyframes arrows {
  0% {
    border-left: 2.6667px solid transparent;
    border-bottom: 2.6667px solid transparent;
    transform: translate(-13.3333px, -13.3333px) rotate(-45deg);
  }
  10%,
  90% {
    border-left: 2.6667px solid transparent;
    border-bottom: 2.6667px solid transparent;
  }
  50% {
    border-left: 2.6667px solid rgba(0, 0, 0, 0.7);
    border-bottom: 2.6667px solid rgba(0, 0, 0, 0.7);
    transform: translate(-13.3333px) rotate(-45deg);
  }
  100% {
    border-left: 2.6667px solid transparent;
    border-bottom: 2.6667px solid transparent;
    transform: translate(-13.3333px, 10.3333px) rotate(-45deg);
  }
}
.arrowsup {
  position: absolute;
  top: 50%;
  left: 64%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%) rotate(180deg);
}
.arrowsup:before {
  transform: translate(6.6667px, 106.6667px) rotate(-45deg);
  animation: arrowsupside 2s linear infinite;
}
.arrowsup:after,
.arrowsup:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 2.6667px solid rgba(0, 0, 0, 0.7);
  border-bottom: 2.6667px solid rgba(0, 0, 0, 0.7);
}
.arrowsup:after {
  transform: translate(53.3333px) rotate(-45deg);
  animation: arrowsupside 2s linear -0.5s infinite;
}
@keyframes arrowsupside {
  0% {
    border-left: 2.6667px solid transparent;
    border-bottom: 2.6667px solid transparent;
    transform: translate(-13.3333px, -13.3333px) rotate(-45deg);
  }
  10%,
  90% {
    border-left: 2.6667px solid transparent;
    border-bottom: 2.6667px solid transparent;
  }
  50% {
    border-left: 2.6667px solid rgba(0, 0, 0, 0.7);
    border-bottom: 2.6667px solid rgba(0, 0, 0, 0.7);
    transform: translate(-13.3333px) rotate(-45deg);
  }
  100% {
    border-left: 2.6667px solid transparent;
    border-bottom: 2.6667px solid transparent;
    transform: translate(-13.3333px, 10.3333px) rotate(-45deg);
  }
}

/* Sticky wizard buttons */
.button-holder {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  bottom: 96px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  z-index: 20;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

/* Progress (fixed) */
.progress-holder {
  width: 100%;
  position: fixed;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  z-index: 5;
}
.progress-bar {
  width: 100%;
  height: 10px;
  background: #ddd;
}
.progress-fill {
  width: 0%;
  height: 100%;
  background: #05d9ff;
}
.progress-count {
  width: 100%;
  text-align: right;
  padding-right: 1%;
  font-family: Orbitron, sans-serif;
  letter-spacing: 4px;
}

/* Tiles */
.checkbox-group {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
}
.radio-inputs {
  display: flex;
}
.radio-inputs > * {
  margin: 6px;
}

.radio-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  min-height: 80px;
  border: 2px solid #b5bfd9;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
  -webkit-clip-path: polygon(9% 0, 100% 0, 100% 68%, 91% 100%, 0 100%, 0 35%);
  clip-path: polygon(9% 0, 100% 0, 100% 68%, 91% 100%, 0 100%, 0 35%);
}
.radio-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid #b5bfd9;
  background: #fff;
  border-radius: 50%;
  top: 0.35rem;
  left: 1.05rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
}
.radio-tile:hover {
  border-color: #05d9ff;
}
.radio-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.radio-input:checked + .radio-tile {
  border-color: #05d9ff;
  color: #05d9ff;
}
.radio-input:checked + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
  background: #05d9ff;
  border-color: #05d9ff;
}
.radio-input:checked + .radio-tile .radio-label {
  color: #05d9ff;
}

.radio-label {
  color: #000;
  transition: 0.375s ease;
  text-align: center;
  font-size: 14px;
  font-family: Orbitron, sans-serif;
  letter-spacing: 4px;
  font-weight: 500;
  position: relative;
  top: 2px;
}
.radio-icon-img {
  width: 32px;
  height: 32px;
  font-weight: 700;
  position: relative;
  top: -5px;
}

/* Application tiles */
.radio-tile-application {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 215px;
  min-height: 50px;
  border: 2px solid #b5bfd9;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
  -webkit-clip-path: polygon(9% 0, 100% 0, 100% 67%, 91% 98%, 0 100%, 0 42%);
  clip-path: polygon(9% 0, 100% 0, 100% 68%, 91% 100%, 0 100%, 0 35%);
}
.checkbox-group-application {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
}
.radio-label-application {
  margin-right: 0;
  font-size: 14px;
  font-family: Orbitron, sans-serif;
  letter-spacing: 1px;
  position: relative;
  top: 1px;
  padding: 0 20px;
  font-weight: 500;
  color: #000;
}
.radio-tile-application:before {
  content: "";
  position: absolute;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid #b5bfd9;
  background: #fff;
  border-radius: 50%;
  top: 0.35rem;
  left: 0.65rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
}

.application-wrapper {
  position: relative;
  background: #000;
  color: #fff;
  isolation: isolate;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  gap: 20px;
  align-items: center;
}
.application-wrapper,
.application-wrapper:before {
  -webkit-clip-path: polygon(7% 0, 100% 0, 100% 68%, 93% 100%, 0 100%, 0 35%);
  clip-path: polygon(7% 0, 100% 0, 100% 68%, 93% 100%, 0 100%, 0 35%);
}
.application-wrapper:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: #fff;
  z-index: -1;
}
.application-wrapper:after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #000;
  -webkit-clip-path: polygon(7% 0, 100% 0, 100% 68%, 93% 100%, 0 100%, 0 35%);
  clip-path: polygon(7% 0, 100% 0, 100% 68%, 93% 100%, 0 100%, 0 35%);
  z-index: -1;
}

/* Camera/Selfie */
.cam-div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cam-holder {
  width: 300px;
}
.selfie-button {
  width: auto;
}

/* Thanks */
.thank-you-message {
  color: #fff;
  font-size: 2.5rem;
  font-family: Orbitron, sans-serif;
  letter-spacing: 4px;
  margin-top: 30px;
  text-align: center;
  font-weight: 500;
}
