/* Page-specific styles from plushie.ai/airdrop. */

.form-ask .w-form-done,
.form-ask .w-form-fail {
  display: none !important;
}

.blog-hero-background_image {
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: #e5c4f7;
  box-shadow: 0 4px 20px 0 rgba(255, 255, 255, 0.6) inset;
}

/* =========================
   FIELD WRAPPER (dusty input container)
   ========================= */
/* Remove browser autofill background (Chrome, Safari) */
.field-wrap .w-input:-webkit-autofill,
.field-wrap .form-field:-webkit-autofill {
  box-shadow: 0 0 0px 1000px transparent inset !important; /* wipe yellow bg */
  -webkit-text-fill-color: #1d0943 !important; /* keep text color */
  transition: background-color 0s ease-in-out 9999s; /* prevent flash */
}

.field-wrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  box-shadow:
    0 16px 30px 4px rgba(72, 39, 132, 0.2),
    0 0 0 2px rgba(245, 143, 0, 0.2),
    0 0 0 2px rgba(255, 178, 84, 0.64),
    0 0 9.931px 4.966px rgba(255, 255, 255, 0.64) inset;

  /* Smooth state transitions */
  transition: all 0.3s ease;
}

/* Star-dust overlay */
.field-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image: var(--btn-noise-url);
  background-repeat: repeat;
  background-size: var(--noise-size, 380px) var(--noise-size, 380px);
  opacity: 1;
  z-index: 1;
}

/* Ensure input text stays above overlays */
.field-wrap > * {
  position: relative;
  z-index: 2;
}

/* Reset styles for Webflow input inside */
.field-wrap .form-field.w-input,
.field-wrap .w-input {
  width: 100%;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  padding: 0.75rem 0.375rem 0.75rem 1rem;
  font: inherit;
  color: #1d0943;
}

/* =========================
   STATES
   ========================= */

/* Hover & Focus */
.field-wrap:hover,
.field-wrap:has(.w-input:focus),
.field-wrap:has(.form-field:focus) {
  background: rgba(255, 255, 255, 0.8);
}

/* Pressed (active input) */
.field-wrap:has(.w-input:active),
.field-wrap:has(.form-field:active) {
  background: rgba(255, 255, 255, 0.8);
}

/* Entered (when input has a value) */
.field-wrap.is-entered {
  background: rgba(255, 255, 255, 0.4);
}

/* Disabled */
.field-wrap.is-disabled {
  opacity: 0.5;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

/* Error (applied by JS if required field is empty/invalid) */
.field-wrap.is-error {
  border: 1px solid var(--System-Red, #e21906);
  background: rgba(255, 255, 255, 0.4);
}

html {
  font-size: calc(-0.000020811654526609047rem + 1.1111342351716962vw);
}
@media screen and (max-width: 1440px) {
  html {
    font-size: calc(-0.000020811654526609047rem + 1.1111342351716964vw);
  }
}
@media screen and (max-width: 479px) {
  html {
    font-size: calc(0.00007512019230748734rem + 4.266346153846155vw);
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: calc(-0.00267379679144385rem + 4.27807486631016vw);
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: calc(-0.000020811654526609047rem + 1.05vw);
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

.text-color-dark_purple {
  background: linear-gradient(132deg, var(--Purple-2, #8554e4) 0%, var(--Purple-1, #4f3582) 73.66%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
