.early-card {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 42px;
  border: 1px solid rgba(255, 209, 102, .38);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 20%, rgba(246, 185, 59, .24), transparent 26%),
    linear-gradient(145deg, rgba(7, 16, 29, .98), rgba(2, 8, 22, .98));
  box-shadow:
    0 0 34px rgba(246, 185, 59, .28),
    0 40px 110px rgba(0, 0, 0, .75);
  color: white;
}
.badge {
    text-transform: uppercase;
    letter-spacing: .24em;
    color: #ffd166;
    font-weight: 800;
    font-size: 13px;
}

.early-card h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.04em;
}

.early-subtitle {
  margin: 18px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, .74);
  font-size: 19px;
  line-height: 1.55;
}

.founder-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.founder-benefits div {
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.early-info-box {
  margin-top: 24px;
  border: 1px solid rgba(255, 209, 102, .24);
  border-radius: 22px;
  padding: 18px;
  background: rgba(246, 185, 59, .10);
  color: rgba(255, 255, 255, .80);
  line-height: 1.55;
}

.early-info-box strong {
  color: #ffd166;
}

.early-form {
  margin-top: 26px;
}

.early-form .form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.early-form input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .35);
  color: white;
}

/*.early-form label {*/
.early-form > label:not(.check-line) {
  display: block;
  margin: 8px 0 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}

.early-form textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;

  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .15);

  background: rgba(0, 0, 0, .35);
  color: white;

  font-size: 15px;
  line-height: 1.6;
  font-family: inherit;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.early-form textarea::placeholder {
  color: rgba(255, 255, 255, .38);
}

.early-form textarea:focus {
  outline: none;
  border-color: #ffd166;

  background: rgba(0, 0, 0, .45);

  box-shadow:
    0 0 0 2px rgba(246, 185, 59, .25),
    0 0 12px rgba(246, 185, 59, .35);
}

.custom-select {
  position: relative;
  margin-top: 12px;
}

.select-trigger {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .35);
  color: white;
  cursor: pointer;
}

.select-options {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  border-radius: 12px;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  display: none;
  z-index: 10;
}

.select-options div {
  padding: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, .8);
}

.select-options div:hover {
  background: rgba(255, 209, 102, .1);
  color: #ffd166;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .35);
  cursor: pointer;
  margin-bottom: 24px;
}

.select-text {
  color: white;
}

.select-trigger.placeholder .select-text {
  color: rgba(255, 255, 255, .45);
}

.select-icon {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: transform .2s ease, color .2s ease;
}

.custom-select.open .select-icon {
  transform: rotate(180deg);
  color: #ffd166;
}

.select-trigger.error {
  border-color: #ff5a5a;
  box-shadow: 0 0 8px rgba(255, 90, 90, .4);
}
.early-form input.error {
  border-color: #ff5a5a;
  box-shadow: 0 0 8px rgba(255, 90, 90, .4);
}

.check-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 14px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}

.check-line input {
  display: none;
}

.check-custom {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .4);
  position: relative;
  transition: all .2s ease;
}

.check-line:hover .check-custom {
  border-color: rgba(255, 209, 102, .6);
  box-shadow: 0 0 6px rgba(255, 209, 102, .3);
}

.check-line input:checked+.check-custom {
  background: #ffd166;
  border-color: #ffd166;
  box-shadow: 0 0 10px rgba(255, 209, 102, .6);
}

.check-line input:checked+.check-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 13px;
  font-weight: bold;
  color: #000;
}

.check-text {
  line-height: 1.4;
}

.check-line input:checked~.check-text {
  color: #ffd166;
}

.early-form input:focus {
  outline: none;
  border-color: #ffd166;
  box-shadow:
    0 0 0 2px rgba(246, 185, 59, .25),
    0 0 12px rgba(246, 185, 59, .35);
  background: rgba(0, 0, 0, .45);
}

.early-form input {
  transition: all .2s ease;
}

.early-submit:disabled {
  background: linear-gradient(90deg, #444, #666);
  color: rgba(255, 255, 255, .4);
  box-shadow: none;
  cursor: not-allowed;
  opacity: .6;
}

.early-submit {
  transition: all .25s ease;
}

.early-submit:not(:disabled) {
  transform: scale(1.02);
}

.early-footer {
  margin-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, .50);
  font-size: 13px;
}

.early-footer a {
  color: #ffd166;
  font-weight: 700;
  text-decoration: none;
}

body {
  background: radial-gradient(circle at 20% 10%, #0a0f1f, #020617);
}

.early-hero {
  padding: 80px 0 120px;
  display: flex;
  justify-content: center;
}

@media (max-width: 980px) {

  .early-hero {
    padding: 70px 0 90px;
  }

  .early-card {
    padding: 36px 28px;
    border-radius: 28px;
  }

  .early-card h1 {
    font-size: clamp(32px, 6vw, 48px);
  }

  .early-subtitle {
    font-size: 17px;
    max-width: 100%;
  }

  .founder-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .early-form .form-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .early-form > label:not(.check-line) {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .early-form textarea {
    min-height: 160px;
    padding: 15px;
    font-size: 14px;
    border-radius: 14px;
  }

  .early-info-box {
    font-size: 14px;
  }

  .select-trigger {
    padding: 13px;
  }

  .early-submit {
    width: 100%;
    padding: 14px;
  }
}

@media (max-width: 620px) {

  body {
    background: radial-gradient(circle at 20% 10%, #0a0f1f, #020617);
  }

  .early-hero {
    padding: 50px 0 70px;
  }

  .early-card {
    padding: 22px 16px;
    border-radius: 22px;
    box-shadow:
      0 0 22px rgba(246, 185, 59, .18),
      0 30px 70px rgba(0, 0, 0, .7);
  }

  .early-card h1 {
    font-size: 32px;
    line-height: 1.05;
  }

  .early-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .founder-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .founder-benefits div {
    font-size: 13px;
    padding: 12px;
  }

  .early-info-box {
    padding: 14px;
    font-size: 13px;
  }

  .early-form {
    margin-top: 20px;
  }

  .early-form input {
    padding: 13px;
    font-size: 14px;
  }

  .select-trigger {
    padding: 13px;
    font-size: 14px;
  }

  .select-options div {
    padding: 10px;
    font-size: 14px;
  }

  .check-line {
    font-size: 13px;
    gap: 10px;
  }

  .check-custom {
    width: 18px;
    height: 18px;
  }

  .early-submit {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border-radius: 14px;
  }

  .early-footer {
    font-size: 12px;
    margin-top: 18px;
  }

  /* teclado 
  .early-form input:focus-visible {
    outline: none;
    border-color: #ffd166;
    box-shadow:
      0 0 0 3px rgba(246, 185, 59, .35);
  }*/
  .early-form > label:not(.check-line) {
    font-size: 13px;
    margin: 6px 0 8px;
  }

  .early-form textarea {
    min-height: 140px;
    padding: 14px;
    font-size: 14px;
    line-height: 1.55;
    border-radius: 14px;
  }

  .early-form textarea::placeholder {
    font-size: 13px;
    line-height: 1.5;
  }
}