/* =========================
   GLOBAL FOUNDATION
========================= */

*{
  box-sizing:border-box;
}

body{
  margin:0;
  min-height:100vh;
  color:#fff;

  background:
    linear-gradient(
      to top,
      #050814 0%,
      #081126 30%,
      #15234a 45%,
      #6d87c4 100%
    );
}
/* =========================
   CONTAINER
========================= */

.container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  padding:24px 20px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* =========================
   HEADER + HERO
========================= */

.header{
  text-align:center;
  margin-bottom:20px;
  padding-bottom:14px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.hero{
  position:relative;
  z-index:5;
  text-align:center;
  margin-top:28px;
  margin-bottom:30px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-20px;

  background:
    radial-gradient(
      circle at center,
      rgba(80,160,255,0.08),
      transparent 75%
    );

  pointer-events:none;
  z-index:-1;
}

.hero-title{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
}

.hero-icon{
  width:68px;
  height:auto;
}

.hero h1{
    margin:0;
    color:#ffffff;
}

.subtitle{
    margin-top:10px;
    color:#e6e6e6;
}

.title-block{
  text-align:center;
  margin-bottom:20px;
}

.title-block .intro{
  max-width:460px;
  margin:10px auto 0;
  text-align:center;
  font-size:14px;
  opacity:0.85;
}

.title-block::after{
  content:"";
  display:block;
  width:80px;
  height:2px;
  margin:12px auto 0;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );

  border-radius:2px;
}

/* =========================
   ACCESS CARD
========================= */

.access-wrapper{
  display:flex;
  justify-content:center;
  padding:0 20px 60px;
}

.access-card{
  width:100%;
  max-width:700px;
  margin:0 auto;
  background:rgba(8,18,48,0.92);
  border-radius:24px;
  padding:70px 50px;
  text-align:center;

  box-shadow:0 12px 35px rgba(0,0,0,0.35);
}

/* =========================
   PANELS
========================= */

.panel{
  position:relative;

  display:flex;
  flex-direction:column;

  gap:6px;
  padding:16px;

  background:#162245;

  border-radius:16px;
  border:1px solid rgba(255,255,255,0.04);

  backdrop-filter:blur(6px);

  min-width:0;
  overflow:hidden;

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;

  box-shadow:
    0 6px 20px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.panel::before{
  content:"";

  position:absolute;
  top:0;
  left:0;
  right:0;

  height:1px;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
}

.panel:hover{
  transform:translateY(-2px);

  box-shadow:
    0 10px 28px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.panel h3{
    margin-bottom:8px;
    letter-spacing:.4px;
    color:rgba(255,255,255,.92);
}

.panel label{
  margin-top:3px;
  margin-bottom:1px;
  font-size:12px;
  opacity:0.9;
}

.panel.scene-style{
  border:1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 6px 20px rgba(0,0,0,0.25);
}

/* =========================
   SELECTS
========================= */

select{
    background:#4e61a8;
    color:#eef3ff;
    border:1px solid rgba(255,255,255,.10);
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23eef3ff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 10px center;
    padding-right:30px;
}

select option{
    background:#24305f;
    color:#eef3ff;
}

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

.field-group{
  display:flex;
  flex-direction:column;
}

label{
    display:block;
    margin-top:6px;
}

input,
select,
textarea{
    width:100%;
    padding:7px 10px;
    color:#eef3ff;
    background:hsl(226, 19%, 48%);
    border:1px solid rgba(255,255,255,.10);
    border-radius:6px;
    transition:.15s ease;
}

input::placeholder{
    color:rgba(220,230,255,.45);
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    background:#24305f;
    border-color:#6ca8ff;
    box-shadow:0 0 0 2px rgba(108,168,255,.18);
}

input,
select{
  height:34px;
  margin-bottom:8px;
}

select{
  width:100%;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: center;
    line-height: 2;
}

.feature-list li {
    margin: 8px 0;
}

/* =========================
   UTILITIES
========================= */

.dimmed{
  opacity:0.38;
  filter:grayscale(0.2);
  pointer-events:none;
  transition:0.25s ease;
}

.dimmed select,
.dimmed input{
  cursor:not-allowed;
}

.helper-text{
  opacity:0.7;
  margin:4px 0 8px;
}

textarea::placeholder{
  color:#6b7280;
  font-size:12px;
}

.section-divider{
  width:80%;
  height:1px;
  margin:24px auto 20px;
  background:rgba(255,255,255,0.12);
}

.app-footer{
  text-align:center;
  font-size:11px;
  opacity:0.6;
  margin:20px 0 10px;
}

.app-footer::before{
  content:"";
  display:block;
  width:90%;
  height:1px;
  margin:0 auto 16px;

  background:rgba(255,255,255,0.1);
}