/* ============================
   EARLY ACCESS PAGE — ClimbPath
   ============================ */

/* ---- HERO ---- */
.ea-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 2rem 7rem;
}

.ea-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(232,168,56,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.ea-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.ea-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 168, 56, 0.1);
  border: 1px solid rgba(232, 168, 56, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.ea-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
  color: var(--fg);
}

.ea-hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.ea-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.ea-hero-image {
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  max-width: 600px;
  border: 1px solid var(--border);
}

.ea-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 340px;
}

/* ---- WAITLIST FORM ---- */
.ea-form-section {
  padding: 6rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ea-form-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.ea-waitlist-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  padding: 0.45rem 1rem;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: 20px;
}

.ea-waitlist-count strong {
  color: var(--fg);
  font-weight: 600;
}

.ea-count-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ea-form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.ea-form-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.ea-form-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.ea-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.ea-name-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.8rem;
}

.ea-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}

.ea-input::placeholder {
  color: var(--fg-dim);
}

.ea-input:focus {
  border-color: rgba(232, 168, 56, 0.5);
  box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.08);
}

.ea-submit-btn {
  background: var(--accent);
  color: #0f0f12;
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
}

.ea-submit-btn:hover {
  background: #f0b44a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.3);
}

.ea-submit-btn:active {
  transform: translateY(0);
}

.ea-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.ea-privacy {
  font-size: 0.78rem;
  color: var(--fg-dim);
  margin-top: 0.5rem;
}

.ea-alt-cta {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 0.4rem;
}

.ea-alt-cta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.ea-alt-cta a:hover {
  text-decoration: underline;
}

.ea-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 12px;
}

.ea-success.show {
  display: block;
}

.ea-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green);
}

.ea-success h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.ea-success p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.ea-error {
  display: none;
  font-size: 0.82rem;
  color: var(--red);
  padding: 0.6rem 0;
}

.ea-error.show {
  display: block;
}

/* ---- VALUE PROPS ---- */
.ea-props {
  padding: 7rem 2rem;
}

.ea-props-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ea-props-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.ea-props-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 3.5rem;
  line-height: 1.65;
}

.ea-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.ea-prop-card {
  background: var(--bg-surface);
  padding: 2rem 1.8rem;
}

.ea-prop-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(232, 168, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.ea-prop-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.ea-prop-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- CREDIBILITY STRIP ---- */
.ea-credibility {
  padding: 3.5rem 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.ea-credibility-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.ea-credibility-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 1.8rem;
}

.ea-credibility-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.ea-credibility-logo {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  padding: 0 1rem;
  opacity: 0.6;
  font-family: var(--font-body);
}

/* ---- SOCIAL PROOF ---- */
.ea-proof {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ea-proof-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ea-proof-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.ea-proof-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  text-align: center;
}

.ea-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.ea-proof-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  position: relative;
}

.ea-proof-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(232, 168, 56, 0.15);
  position: absolute;
  top: 0.8rem;
  left: 1.2rem;
  line-height: 1;
}

.ea-proof-quote {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
  padding-top: 1.5rem;
}

.ea-proof-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ea-proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg-muted);
  flex-shrink: 0;
}

.ea-proof-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

.ea-proof-role {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* ---- PATH SECTION ---- */
.ea-path {
  padding: 7rem 2rem;
}

.ea-path-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ea-path-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.ea-path-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3.5rem;
  letter-spacing: -0.01em;
}

.ea-path-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  text-align: left;
}

.ea-path-step {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  position: relative;
}

.ea-path-num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.ea-path-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.ea-path-step p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.ea-path-arrow {
  width: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-dim);
  font-size: 1.2rem;
}

/* ---- FINAL CTA ---- */
.ea-cta {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.ea-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.ea-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.ea-cta p {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.ea-cta .btn-anchor {
  display: inline-block;
  background: var(--accent);
  color: #0f0f12;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
}

.ea-cta .btn-anchor:hover {
  background: #f0b44a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
  .ea-props-grid,
  .ea-proof-grid {
    grid-template-columns: 1fr;
  }

  .ea-path-steps {
    flex-direction: column;
  }

  .ea-path-arrow {
    display: none;
  }

  .ea-name-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ea-hero {
    padding: 6rem 1.5rem 5rem;
  }

  .ea-form-section,
  .ea-props,
  .ea-proof,
  .ea-path,
  .ea-cta {
    padding: 5rem 1.5rem;
  }
}