.ea-page {
  padding: 0 1.5rem;
  background: linear-gradient(to bottom, #130e28, #0a0d1a);
  min-height: calc(100dvh - 72px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ea-content-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.ea-top-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 640px) {
  .ea-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.ea-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.ea-subhead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 2.5rem;
  max-width: 520px;
}

.ea-waitlist-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}
.ea-waitlist-link:hover {
  color: #fff;
}

.ea-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ea-input,
.ea-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #f9fafb;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s;
}
.ea-input::placeholder,
.ea-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.ea-input:focus,
.ea-textarea:focus {
  border-color: rgba(124, 58, 237, 0.6);
}
.ea-input:-webkit-autofill, .ea-input:-webkit-autofill:hover, .ea-input:-webkit-autofill:focus,
.ea-textarea:-webkit-autofill,
.ea-textarea:-webkit-autofill:hover,
.ea-textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #1c1730 inset;
  -webkit-text-fill-color: #f9fafb;
  border-color: rgba(255, 255, 255, 0.12) !important;
  outline: none !important;
  transition: background-color 9999s;
}

.ea-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.ea-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .ea-form-row {
    grid-template-columns: 1fr;
  }
}

.ea-submit-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ea-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.ea-error {
  font-size: 0.875rem;
  color: #fca5a5;
  display: none;
}

.ea-slug-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  margin: -0.25rem 0 0;
}
.ea-slug-hint:empty {
  display: none;
}
.ea-slug-hint.is-pending {
  color: rgba(255, 255, 255, 0.3);
}
.ea-slug-hint.is-error {
  color: #fca5a5;
}
.ea-slug-hint.is-ok {
  color: #86efac;
}

.ea-claimed-badge {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.5rem 0.75rem;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 6px;
  margin-bottom: 1rem;
}
.ea-claimed-badge strong {
  color: #a78bfa;
}

.ea-success {
  display: none;
  padding: 0.5rem 0;
}

.ea-success-body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.ea-success-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.ea-delete-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.ea-delete-link:hover {
  color: #fca5a5;
}

.ea-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0;
}

.ea-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}
@media (max-width: 640px) {
  .ea-list {
    grid-template-columns: 1fr;
  }
}

.ea-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

.ea-step-confirm {
  padding: 0.5rem 0;
}

.ea-edit-email-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.15);
}
.ea-edit-email-btn:hover {
  color: rgba(255, 255, 255, 0.6);
}

.ea-item--promo {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.25);
  justify-content: center;
}
.ea-item--promo .ea-promo-btn {
  align-self: flex-start;
}

.ea-item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ea-item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #a78bfa;
}

.ea-item-link {
  font-size: 1.1rem;
  color: #a78bfa;
  text-decoration: none;
}
.ea-item-link:hover {
  color: #c4b5fd;
  text-decoration: underline;
  text-decoration-color: #7c3aed;
}

.ea-item-time {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
  margin-left: auto;
}

.ea-item-message {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.ea-item-reply {
  font-size: 0.85rem;
  color: #c4b5fd;
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid rgba(124, 58, 237, 0.4);
  margin-top: 0.25rem;
}

.ea-item-reply-attr {
  font-size: 0.75rem;
  color: rgba(124, 58, 237, 0.6);
  margin-top: 0.2rem;
  padding-left: 1rem;
}

.ea-item--own {
  border-color: rgba(99, 102, 241, 0.3);
}

.ea-item-own-controls {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  justify-content: flex-end;
}

.ea-item-edit-btn,
.ea-item-delete-btn {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.ea-item-edit-btn:hover,
.ea-item-delete-btn:hover {
  color: rgba(255, 255, 255, 0.6);
}

.ea-item-delete-btn:hover {
  color: #f87171;
}

.ea-toast {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #c4b5fd;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.ea-empty {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

.ea-loading {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.25);
}

.ea-edit-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ea-edit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 480px) {
  .ea-edit-row {
    grid-template-columns: 1fr;
  }
}

.ea-edit-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.ea-edit-cancel {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.ea-edit-cancel:hover {
  color: rgba(255, 255, 255, 0.6);
}

.ea-quote {
  border-left: 3px solid rgba(124, 58, 237, 0.5);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 0;
}
@media (max-width: 640px) {
  .ea-quote {
    margin-top: 0.5rem;
  }
}
.ea-quote p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 0.75rem;
}
.ea-quote cite {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: normal;
}
.ea-quote cite a {
  color: #fff;
  text-decoration: none;
}
.ea-quote cite a:hover {
  text-decoration: underline;
}

.ea-tabs {
  display: flex;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ea-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 0.5rem 0;
  margin-right: 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  font-family: inherit;
}
.ea-tab:hover {
  color: rgba(255, 255, 255, 0.7);
}
.ea-tab.is-active {
  color: #fff;
  border-bottom-color: #7c3aed;
}

.ea-tab-count {
  font-weight: 400;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.ea-tab:hover .ea-tab-count, .ea-tab.is-active .ea-tab-count {
  opacity: 1;
}

.ea-bg-img {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(-1);
  width: 100%;
  max-width: 900px;
  opacity: 0.15;
  pointer-events: none;
  filter: invert(1);
  mix-blend-mode: screen;
}