/* ============================================
   DeFi Sharks — Form Page
   ============================================ */

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

:root {
  --bg:     #050810;
  --green:  #22C55E;
  --white:  #FFFFFF;
  --text:   rgba(255,255,255,0.88);
  --sub:    rgba(255,255,255,0.65);
  --input-bg: rgba(255,255,255,0.06);
  --input-border: rgba(255,255,255,0.15);
  --f: 'Inter', sans-serif;
}

html, body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--f);
}

/* ===== STEPS ===== */
.step {
  display: none;
  position: relative;
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
}

.step.active {
  display: flex;
}

/* ===== BG ===== */
.bg-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, #080F25 0%, #050810 70%);
  z-index: 0;
}

.bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(0,60,180,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 20%, rgba(0,40,140,0.14) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* ===== BG PHOTO (same as landing) ===== */
.bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('diego-sharks.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.12;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 70% 50%, #000 20%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 100% at 70% 50%, #000 20%, transparent 80%);
}

/* ===== WELCOME ===== */
.welcome-wrap {
  position: relative;
  z-index: 1;
  max-width: 680px;
  width: 100%;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.brand-logo {
  display: flex;
  justify-content: center;
}

.brand-img {
  width: clamp(160px, 22vw, 260px);
  height: auto;
  object-fit: contain;
}

.brand-img--sm {
  width: clamp(120px, 16vw, 200px);
}

.welcome-title {
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  max-width: 620px;
}

.welcome-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.65;
  color: var(--sub);
  max-width: 540px;
}

/* ===== GREEN BUTTON ===== */
.btn-green {
  display: inline-block;
  padding: 18px 52px;
  background: var(--green);
  color: #fff;
  font-family: var(--f);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-green:hover  { background: #16A34A; }
.btn-green:active { transform: scale(0.98) translateY(1px); }
.btn-green:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--text);
  font-family: var(--f);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); }

.time-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--sub);
}

/* ===== FORM ===== */
.form-wrap {
  position: relative;
  z-index: 1;
  max-width: 540px;
  width: 100%;
  padding: 52px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--f);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder { color: rgba(255,255,255,0.3); }

.field input:focus,
.field select:focus {
  border-color: rgba(100,160,255,0.6);
}

.field select option {
  background: #0A1228;
  color: var(--white);
}

.btn-submit {
  margin-top: 8px;
  width: 100%;
  padding: 18px;
  font-size: 15px;
}

/* ===== SUCCESS ===== */
.success-icon {
  display: flex;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .welcome-wrap, .form-wrap {
    padding: 48px 20px;
    gap: 22px;
  }

  .btn-green {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
  }
}
