@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Inter",sans-serif;
}

body{
  min-height:100vh;
  overflow-x:hidden;
  color:#333;
  background:
    radial-gradient(circle at var(--x,50%) var(--y,50%),rgba(255,106,0,.14),transparent 260px),
    linear-gradient(rgba(255,255,255,.94),rgba(255,255,255,.94)),
    repeating-linear-gradient(0deg,transparent 0 63px,rgba(0,0,0,.035) 64px),
    repeating-linear-gradient(90deg,transparent 0 63px,rgba(0,0,0,.035) 64px);
}

.cursor-glow{
  position:fixed;
  width:360px;
  height:360px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,106,0,.14),transparent 65%);
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:0;
}

.join-navbar{
  width:78%;
  height:66px;
  margin:14px auto 0;
  padding:0 20px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 50px rgba(255,106,0,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  z-index:10;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#222;
}

.brand-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#ff6200;
  display:grid;
  place-items:center;
  font-size:16px;
  font-weight:700;
  color:#111;
  box-shadow:0 10px 28px rgba(255,106,0,.35);
}

.brand span:last-child{
  font-size:17px;
  font-weight:700;
}

.back-btn{
  height:42px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.75);
  color:#111;
  font-size:14px;
  font-weight:600;
  display:flex;
  align-items:center;
  text-decoration:none;
}

.join-wrapper{
  width:78%;
  margin:90px auto 120px;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:38px;
  align-items:start;
  position:relative;
  z-index:2;
}

.join-left{
  padding-top:48px;
}

.eyebrow{
  color:#ff6200;
  font-size:13px;
  letter-spacing:2px;
  font-weight:600;
}

.join-left h1{
  margin-top:22px;
  font-size:58px;
  line-height:1.04;
  letter-spacing:-3px;
  font-weight:600;
  color:#303030;
}

.join-left p{
  margin-top:24px;
  max-width:520px;
  font-size:17px;
  line-height:1.75;
  color:#666;
}

.join-points{
  margin-top:34px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.join-points div{
  display:flex;
  align-items:center;
  gap:10px;
  color:#555;
  font-size:15px;
}

.join-points span{
  width:22px;
  height:22px;
  border-radius:50%;
  background:#ff6200;
  color:#111;
  display:grid;
  place-items:center;
  font-size:13px;
  font-weight:700;
}

.form-card{
  border:1px solid rgba(0,0,0,.08);
  border-radius:32px;
  background:
    radial-gradient(circle at 90% 0%,rgba(255,98,0,.10),transparent 300px),
    rgba(255,255,255,.86);
  box-shadow:0 28px 80px rgba(0,0,0,.05);
  padding:38px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

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

.field.full{
  grid-column:1 / -1;
}

.field label{
  font-size:13px;
  color:#555;
  font-weight:600;
}

.field input,
.field select{
  height:52px;
  border:1px solid rgba(0,0,0,.09);
  border-radius:16px;
  background:#fff;
  padding:0 16px;
  color:#222;
  font-size:15px;
  outline:none;
  transition:.2s ease;
}

.field input:focus,
.field select:focus{
  border-color:rgba(255,98,0,.55);
  box-shadow:0 0 0 4px rgba(255,98,0,.08);
}

.submit-btn{
  width:100%;
  height:56px;
  margin-top:26px;
  border:none;
  border-radius:999px;
  background:#ff6200;
  color:#111;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(255,98,0,.22);
}

.submit-btn:disabled{
  opacity:.65;
  cursor:not-allowed;
}

.form-message{
  margin-top:16px;
  min-height:22px;
  text-align:center;
  font-size:14px;
  font-weight:600;
}

.form-message.success{
  color:#15803d;
}

.form-message.error{
  color:#dc2626;
}

@media(max-width:1000px){
  .join-navbar,
  .join-wrapper{
    width:92%;
  }

  .join-wrapper{
    grid-template-columns:1fr;
    margin-top:60px;
  }

  .join-left{
    padding-top:0;
  }

  .join-left h1{
    font-size:44px;
  }
}

@media(max-width:560px){
  .join-navbar{
    height:58px;
    padding:0 14px;
  }

  .back-btn{
    height:38px;
    padding:0 14px;
    font-size:13px;
  }

  .join-left h1{
    font-size:36px;
    letter-spacing:-2px;
  }

  .form-card{
    padding:24px;
    border-radius:26px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .field.full{
    grid-column:auto;
  }
}
.field-note{
  display:block;
  margin-top:8px;
  color:#777;
  font-size:12px;
  line-height:1.5;
}