/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  -webkit-tap-highlight-color:transparent;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background:#050505;
  color:#ffffff;
  overflow-x:hidden;
  min-height:100vh;
  position:relative;
}

/* =========================
   VARIABLES
========================= */

:root{

  --bg:#050505;

  --card-bg:rgba(255,255,255,0.05);

  --card-border:rgba(255,255,255,0.08);

  --text:#ffffff;

  --muted:#9c9c9c;

  --primary:#7c3aed;

  --secondary:#2563eb;

  --success:#00ff99;

}

/* =========================
   BACKGROUND
========================= */

.bg-grid{
  position:fixed;
  inset:0;

  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px);

  background-size:40px 40px;

  z-index:-3;
}

.blur{
  position:fixed;
  width:520px;
  height:520px;
  border-radius:50%;
  filter:blur(130px);
  opacity:.18;
  z-index:-2;
  animation:float 12s ease-in-out infinite;
}

.blur-1{
  background:#7c3aed;
  top:-180px;
  left:-120px;
}

.blur-2{
  background:#2563eb;
  right:-180px;
  bottom:-180px;
  animation-delay:4s;
}

@keyframes float{

  0%,100%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(40px);
  }

}

/* =========================
   LAYOUT
========================= */

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}

/* =========================
   HERO
========================= */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:80px 0;
}

.hero-content{
  width:100%;
  max-width:850px;
  text-align:center;
  animation:fadeUp 1s ease;
}

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 20px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,0.08);

  background:rgba(255,255,255,0.04);

  backdrop-filter:blur(20px);

  color:#d4d4d4;

  font-size:14px;
  font-weight:600;

  margin-bottom:30px;
}

.badge-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--success);

  box-shadow:0 0 14px var(--success);

  animation:pulse 2s infinite;
}

@keyframes pulse{

  0%,100%{
    opacity:1;
  }

  50%{
    opacity:.4;
  }

}

.hero-title{
  font-size:clamp(44px,8vw,88px);

  line-height:1.02;

  font-weight:900;

  letter-spacing:-3px;

  margin-bottom:30px;
}

.gradient-text{

  background:
    linear-gradient(
      90deg,
      #ffffff,
      #b892ff,
      #6ea8ff,
      #ffffff
    );

  background-size:300% 300%;

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  animation:shine 8s linear infinite;
}

@keyframes shine{

  0%{
    background-position:0% 50%;
  }

  100%{
    background-position:100% 50%;
  }

}

.hero-description{
  font-size:18px;
  line-height:1.9;
  color:var(--muted);

  max-width:760px;

  margin:auto auto 42px;
}

.hero-description strong{
  color:#ffffff;
}

.primary-btn{
  width:100%;
  max-width:320px;

  height:66px;

  border:none;
  outline:none;

  border-radius:22px;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--secondary)
    );

  color:white;

  font-size:18px;
  font-weight:800;

  cursor:pointer;

  transition:.35s ease;

  box-shadow:
    0 18px 50px rgba(124,58,237,.35),
    0 8px 30px rgba(37,99,235,.25);
}

.primary-btn:hover{
  transform:translateY(-4px) scale(1.02);
}

/* =========================
   VALUES SECTION
========================= */

.values-section{
  padding:0 0 120px;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.value-card{

  padding:30px;

  border-radius:28px;

  background:var(--card-bg);

  border:1px solid var(--card-border);

  backdrop-filter:blur(30px);

  transition:.35s ease;
}

.value-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.07);
}

.value-card h3{
  font-size:22px;
  margin-bottom:14px;
}

.value-card p{
  color:#bdbdbd;
  line-height:1.8;
  font-size:15px;
}

/* =========================
   APPLY SECTION
========================= */

.apply-section{
  padding:120px 0;
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-header h2{
  font-size:clamp(38px,7vw,68px);
  font-weight:900;
  letter-spacing:-2px;
  margin-bottom:16px;
}

.section-header p{
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
  max-width:700px;
  margin:auto;
}

/* =========================
   FORM
========================= */

.form-wrapper{

  width:100%;
  max-width:760px;

  margin:auto;

  padding:34px;

  border-radius:36px;

  background:var(--card-bg);

  border:1px solid var(--card-border);

  backdrop-filter:blur(30px);

  box-shadow:
    0 25px 80px rgba(0,0,0,.35);
}

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

.form-group{
  margin-bottom:20px;
}

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

label{
  display:block;
  margin-bottom:12px;
  font-size:14px;
  font-weight:700;
  color:#d6d6d6;
}

input{
  width:100%;
  height:64px;

  border-radius:20px;

  border:1px solid rgba(255,255,255,0.08);

  background:rgba(255,255,255,0.05);

  color:white;

  padding:0 20px;

  font-size:16px;

  outline:none;

  transition:.3s ease;
}

input::placeholder{
  color:#8d8d8d;
}

input:focus{
  border-color:#7c3aed;

  box-shadow:
    0 0 0 4px rgba(124,58,237,.14);
}

.submit-btn{

  width:100%;

  height:68px;

  border:none;
  outline:none;

  border-radius:22px;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--secondary)
    );

  color:white;

  font-size:18px;
  font-weight:900;

  cursor:pointer;

  transition:.35s ease;

  margin-top:10px;
}

.submit-btn:hover{
  transform:translateY(-4px);
}

.status-box{
  min-height:24px;
  margin-top:22px;

  text-align:center;

  color:#cfcfcf;

  font-size:15px;
}

.hidden-input{
  display:none;
}

/* =========================
   FOOTER
========================= */

.footer{
  padding:40px 20px 80px;
  text-align:center;
}

.footer p{
  color:#8a8a8a;
  font-size:14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

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

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

  .hero{
    padding-top:60px;
    padding-bottom:100px;
  }

  .hero-title{
    letter-spacing:-1px;
  }

  .hero-description{
    font-size:16px;
  }

  .section-header p{
    font-size:16px;
  }

  .form-wrapper{
    padding:24px;
    border-radius:28px;
  }

}

@media(max-width:600px){

  .container{
    padding:0 18px;
  }

  .hero-title{
    font-size:48px;
  }

  .badge{
    font-size:13px;
  }

  .primary-btn,
  .submit-btn{
    height:62px;
    font-size:17px;
  }

  input{
    height:60px;
  }

}
