/* =====================================================
   SEEK — EARLY ACCESS / WAITLIST FORM (early-access.css)
===================================================== */
.ea-sec {
  padding: 9rem 5rem; background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 5rem; position: relative; overflow: hidden;
}
.ea-sec::after {
  content: ''; position: absolute; right: -100px; bottom: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(203,154,45,.08), transparent 70%);
  pointer-events: none;
}
.ea-eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-family: 'Space Mono', monospace;
  font-size: .62rem; letter-spacing: .2em; color: var(--gold);
  margin-bottom: 1.2rem; text-transform: uppercase;
}
.ea-title {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.0; letter-spacing: -.02em;
  margin-bottom: 1.2rem; color: var(--black);
}
.ea-desc {
  font-size: clamp(.9rem, 1.2vw, 1rem); color: var(--grey);
  font-weight: 500; line-height: 1.75; max-width: 380px; margin-bottom: 2rem;
}
.ea-checks { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2.5rem; }
.ea-check  { display: flex; align-items: center; gap: .85rem; }
.check-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .75rem; color: var(--black); font-weight: 900;
}
.check-txt { font-size: .9rem; font-weight: 600; color: var(--black); }

/* Form card */
.ea-form-wrap { position: relative; z-index: 1; }
.ea-card {
  background: var(--white); border-radius: 24px;
  padding: 2.8rem;
  box-shadow: 0 4px 0 rgba(0,0,0,.08), 0 20px 60px rgba(10,10,10,.1);
  position: relative;
}
.ea-card::before {
  content: ''; position: absolute; inset: -3px; border-radius: 26px;
  background: linear-gradient(135deg, rgba(203,154,45,.2), transparent, rgba(203,154,45,.1));
  z-index: -1;
}
.ea-input {
  width: 100%; padding: .9rem 1.2rem;
  border: 1.5px solid rgba(10,10,10,.1); border-radius: 12px;
  background: var(--cream);
  font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 600; color: var(--black);
  margin-bottom: 1rem; outline: none; cursor: text;
  transition: border-color .3s, box-shadow .3s, background .3s;
  appearance: none;
}
.ea-input::placeholder { color: var(--grey); font-weight: 500; }
.ea-input:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(203,154,45,.12);
}
.ea-submit {
  width: 100%; padding: .95rem; border: none; border-radius: 12px;
  background: var(--black); color: var(--white);
  font-family: 'Nunito', sans-serif; font-size: .95rem; font-weight: 800;
  letter-spacing: .05em; cursor: none;
  transition: background .3s, transform .3s var(--spring), box-shadow .3s;
  position: relative; overflow: hidden;
}
.ea-submit:hover {
  background: var(--gold); color: var(--black);
  transform: translateY(-2px); box-shadow: 0 10px 32px rgba(203,154,45,.3);
}
.ea-submit.sent { background: #22c55e; color: white; }
.ea-privacy {
  text-align: center; margin-top: 1rem;
  font-size: .72rem; color: var(--grey); font-weight: 600;
}

/* Success state */
.ea-success { display: none; text-align: center; padding: 1rem; }
.ea-success.show { display: block; }
.ea-success-icon { font-size: 2.5rem; margin-bottom: .8rem; }
.ea-success-txt  { font-size: 1.1rem; font-weight: 800; color: var(--black); margin-bottom: .4rem; }
.ea-success-sub  { font-size: .85rem; color: var(--grey); font-weight: 500; }

/* App download banner */
.app-banner {
  background: var(--black);
  padding: 5rem 5rem;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.app-banner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 120% at 0% 50%, rgba(203,154,45,.10) 0%, transparent 65%),
    radial-gradient(ellipse 30% 80% at 100% 50%, rgba(203,154,45,.06) 0%, transparent 60%);
}
.app-banner::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.app-banner-left  { position: relative; z-index: 1; flex: 1; min-width: 260px; }
.app-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: .6rem; letter-spacing: .22em; color: var(--gold);
  margin-bottom: 1.2rem; text-transform: uppercase;
  display: flex; align-items: center; gap: .7rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s var(--expo), transform .7s var(--expo);
}
.app-eyebrow.vis { opacity: 1; transform: none; }
.app-eyebrow-line {
  width: 32px; height: 1.5px; background: var(--gold); flex-shrink: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--expo) .2s;
}
.app-eyebrow.vis .app-eyebrow-line { transform: scaleX(1); }
.app-title {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: var(--white); line-height: 1.0; letter-spacing: -.02em;
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s .15s var(--expo), transform .8s .15s var(--expo);
}
.app-title.vis  { opacity: 1; transform: none; }
.app-title .gold-word { color: var(--gold); }
.app-banner-right { position: relative; z-index: 1; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.badge-link {
  display: inline-block; border-radius: 13px; overflow: hidden;
  opacity: 0; transform: translateY(24px) scale(.96);
  transition: transform .4s var(--spring), box-shadow .35s, opacity .4s;
  cursor: none;
  outline: 2px solid transparent; outline-offset: 3px;
  width: 250px; height: 83px; flex-shrink: 0;
}
.badge-link:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 2px rgba(203,154,45,.45);
  outline-color: rgba(203,154,45,.3);
}
.badge-link.vis { opacity: 1; transform: translateY(0) scale(1); }
.store-badge { display: block; border-radius: 13px; width: 250px; height: 83px; object-fit: cover; object-position: center center; }
#btnPlay .store-badge { width: 250px; height: 83px; object-fit: contain; object-position: 50% 50%; margin: 0; transform: scale(1.38); }
.app-deco {
  position: absolute; right: 38%; top: 50%; transform: translateY(-50%);
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(203,154,45,.15), transparent);
  pointer-events: none; z-index: 0;
}
