/* =============================================================
   Luppy — Early Access landing page
   Adds to styles.css + luppy-tokens.css. Only page-specific bits.
   ============================================================= */

/* ---------- soft neutral page wash on the hero ---------- */
.ea-hero {
  position: relative;
  padding: 40px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(1000px 560px at 88% -12%, rgba(20,184,166,0.10), transparent 60%),
    radial-gradient(880px 560px at -8% 22%, rgba(59,130,246,0.11), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}
.ea-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .ea-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .ea-hero .hero-visual { max-width: 540px; margin: 0 auto; }
}

/* early-access eyebrow — teal live dot */
.ea-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: var(--font-semibold);
  color: var(--color-link);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.ea-eyebrow .live {
  position: relative;
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--color-success);
  flex: none;
}
.ea-eyebrow .live::after {
  content: "";
  position: absolute; inset: -5px;
  border-radius: 999px;
  border: 2px solid var(--color-success);
  opacity: 0.5;
  animation: ea-pulse 2.4s ease-out infinite;
}
@keyframes ea-pulse {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.ea-eyebrow .pill {
  background: var(--color-lightprimary);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: var(--font-bold);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ea-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 800;
  color: var(--color-link);
  margin: 0 0 20px;
  text-wrap: balance;
}
.ea-hero h1 .accent {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ea-hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-bodytext);
  max-width: 500px;
  margin: 0 0 26px;
}

/* ---------- inline email capture form ---------- */
.ea-form {
  max-width: 500px;
}
.ea-form-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
@media (max-width: 480px) {
  .ea-form-row { flex-direction: column; }
}
.ea-input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-link);
  transition: border-color .15s, box-shadow .15s;
}
.ea-input::placeholder { color: var(--color-bodytext); }
.ea-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-lightprimary);
}
.ea-input.invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 4px var(--color-lighterror);
}
.ea-form .btn-lg { flex: none; }
.ea-form-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-bodytext);
  font-weight: 500;
}
.ea-form-note .iconify { color: var(--color-success); flex: none; margin-top: 2px; }
.ea-form-err {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-error);
}

/* ---------- success modal (popup only, right after submit) ---------- */
.ea-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 28, 51, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: ea-fade .2s ease-out;
}
@keyframes ea-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.ea-modal-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.ea-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  background: transparent;
  color: var(--color-bodytext);
  cursor: pointer;
  border-radius: 999px;
  z-index: 1;
  transition: background .15s, color .15s;
}
.ea-modal-close:hover { background: var(--color-lightgray); color: var(--color-link); }

/* form step inside the join modal */
.ea-modal-panel {
  max-width: 540px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px 40px 36px;
  box-shadow: 0 40px 90px -30px rgba(15,28,51,0.45);
  animation: ea-rise .32s cubic-bezier(.2,.7,.3,1);
}
.form-badge {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--color-lightprimary);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.form-title { font-size: 22px; font-weight: 800; color: var(--color-link); margin: 0 0 8px; }
.form-desc { font-size: 14.5px; color: var(--color-bodytext); margin: 0 0 28px; line-height: 1.55; }

/* ---------- success card ---------- */
.ea-success {
  max-width: 500px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 26px 26px 24px;
  box-shadow: 0 40px 90px -30px rgba(15,28,51,0.45);
  animation: ea-rise .32s cubic-bezier(.2,.7,.3,1);
}
@keyframes ea-rise {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.ea-success .tick {
  width: 46px; height: 46px;
  border-radius: 999px;
  background: var(--color-lightsuccess);
  color: var(--color-success);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ea-success h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-link);
  margin: 0 0 6px;
}
.ea-success-name {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ea-success-name .iconify { color: var(--color-error); flex: none; }
.ea-success-highlight { color: var(--color-primary); font-weight: 700; }
.ea-success p {
  font-size: 14px;
  color: var(--color-bodytext);
  line-height: 1.55;
  margin: 0;
}
.ea-member-id {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--color-lightgray);
  border: 1px dashed var(--color-light-emphasis);
}
.ea-member-id > div:last-child { min-width: 0; }
.ea-member-id .badge {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #34d399, #3b82f6);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.ea-member-id .k {
  font-size: 11px; font-weight: 700; color: var(--color-bodytext);
  text-transform: uppercase; letter-spacing: .05em;
}
.ea-member-id .v {
  font-size: 17px; font-weight: 800; color: var(--color-link);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  letter-spacing: 0.02em;
}
.ea-member-id .v.ea-member-email {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ea-next {
  margin-top: 18px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ea-next li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--color-link); font-weight: 500;
  line-height: 1.45;
}
.ea-next li .iconify { color: var(--color-primary); flex: none; margin-top: 2px; }

/* trust chips under hero form */
.ea-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-bodytext);
  font-weight: 500;
}
.ea-trust-item { display: flex; align-items: center; gap: 6px; }
.ea-trust-item .iconify { color: var(--color-success); }

/* ---------- WHO IS IT FOR ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .who-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .who-grid { grid-template-columns: 1fr 1fr; } }
.who-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: left;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.who-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 22px 44px -26px rgba(31,52,82,0.2);
}
.who-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.who-card h3 {
  font-size: 15px; font-weight: 700; color: var(--color-link);
  margin: 0 0 6px; line-height: 1.25;
}
.who-card p {
  font-size: 13px; color: var(--color-bodytext); line-height: 1.5; margin: 0;
}

/* ---------- FOUNDER ---------- */
.founder-wrap {
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: 0 40px 90px -55px rgba(31,52,82,0.3);
  padding: 44px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 720px) {
  .founder-wrap { grid-template-columns: 1fr; gap: 28px; padding: 30px; text-align: center; }
  .founder-photo { margin: 0 auto; }
}
.founder-photo {
  width: 200px; height: 200px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.founder-quotemark {
  color: var(--color-primary);
  opacity: 0.25;
  margin-bottom: 8px;
}
.founder-quote {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-link);
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  text-wrap: pretty;
}
.founder-sign {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 720px) { .founder-sign { justify-content: center; } }
.founder-sign .line { width: 28px; height: 2px; background: var(--color-primary); }
.founder-sign .who { font-size: 14px; }
.founder-sign .who strong { color: var(--color-link); font-weight: 700; display: block; }
.founder-sign .who span { color: var(--color-bodytext); font-size: 13px; }

/* ---------- EARLY ACCESS CTA (perks + form) ---------- */
.ea-cta-section { padding: 96px 0; }
.ea-cta-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0f1c33;
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
@media (max-width: 860px) {
  .ea-cta-card { grid-template-columns: 1fr; }
}
.ea-cta-left {
  padding: 52px 48px;
  position: relative;
  z-index: 1;
}
.ea-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(340px 300px at 6% 4%, rgba(59,130,246,0.35), transparent 70%),
    radial-gradient(300px 260px at 96% 100%, rgba(20,184,166,0.28), transparent 70%);
  pointer-events: none;
}
.ea-cta-left .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.ea-cta-left .eyebrow .live {
  width: 7px; height: 7px; border-radius: 999px; background: #4ade80;
}
.ea-cta-left h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.ea-cta-left p.sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin: 0 0 26px;
  max-width: 440px;
}
.perk-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
@media (max-width: 520px) { .perk-list { grid-template-columns: 1fr; } }
.perk-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.perk-list li .pk-ic {
  width: 30px; height: 30px; flex: none;
  border-radius: 9px;
  background: rgba(255,255,255,0.1);
  color: #7dd3fc;
  display: flex; align-items: center; justify-content: center;
}
.perk-list li .pk-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.perk-list li .pk-t {
  display: block;
  font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3;
}
.perk-list li .pk-d {
  display: block;
  font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.4;
}

/* right form panel */
.ea-cta-right {
  position: relative;
  z-index: 1;
  padding: 52px 48px;
  background: rgba(255,255,255,0.04);
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 860px) {
  .ea-cta-right { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
}
.ea-cta-right .form-title {
  font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 4px;
}
.ea-cta-right .form-badge {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #7dd3fc;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ea-cta-right .form-desc {
  font-size: 13.5px; color: rgba(255,255,255,0.6); margin: 0 0 20px; line-height: 1.5;
}
.trust-checklist {
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.trust-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
}
.trust-checklist li .iconify { color: #4ade80; flex: none; }
.ea-cta-right .ea-form { max-width: none; }
.ea-cta-open-btn { width: 100%; justify-content: center; margin-top: 4px; }
.ea-cta-right .ea-input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}
.ea-cta-right .ea-input::placeholder { color: rgba(255,255,255,0.5); }
.ea-cta-right .ea-input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
}
.ea-cta-right .ea-form-row { flex-direction: column; }
.ea-cta-right .btn-solid {
  background: #fff; color: #0f1c33; width: 100%;
}
.ea-cta-right .btn-solid:hover { background: #eaf1ff; }
.ea-cta-right .ea-form-note { color: rgba(255,255,255,0.6); }
.ea-cta-right .ea-form-note .iconify { color: #4ade80; }

/* dark success variant inside CTA */
.ea-cta-right .ea-success {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.ea-cta-right .ea-success h3 { color: #fff; }
.ea-cta-right .ea-success p { color: rgba(255,255,255,0.65); }
.ea-cta-right .ea-member-id {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.ea-cta-right .ea-member-id .v { color: #fff; }
.ea-cta-right .ea-member-id { min-width: 0; }
.ea-cta-right .ea-member-id .ea-member-email { min-width: 0; }
.ea-cta-right .ea-next li { color: rgba(255,255,255,0.82); }
.ea-cta-right .ea-next li .iconify { color: #7dd3fc; }

/* ---------- full qualifying form (name/company/email/size/challenge) ---------- */
.ea-full-form { display: flex; flex-direction: column; gap: 20px; }
.ea-full-form .ea-form-note { margin-top: -10px; }
.ea-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) { .ea-field-row { grid-template-columns: 1fr; } }
.ea-field { display: flex; flex-direction: column; gap: 9px; }
.ea-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-link);
}
.ea-field label .req { color: var(--color-error); margin-left: 2px; }
.ea-field label .opt { font-weight: 500; color: var(--color-bodytext); text-transform: none; }
.ea-field .ea-input { height: auto; width: 100%; padding: 12px 14px; font-size: 14px; }
.ea-select {
  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 d='M1 1L6 6L11 1' stroke='%237c8aa0' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.ea-full-submit { width: 100%; justify-content: center; height: 54px; font-size: 16px; margin-top: 6px; }

/* dark-panel variant (inside the Join card) */
.ea-cta-right .ea-field label { color: #fff; }
.ea-cta-right .ea-field label .opt { color: rgba(255,255,255,0.55); }
.ea-cta-right .ea-select {
  background-color: rgba(255,255,255,0.08);
  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 d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.6)' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.ea-cta-right .ea-select option { color: #0f1c33; }
.ea-cta-right .ea-full-submit.btn-solid { background: #fff; color: #0f1c33; }
.ea-cta-right .ea-full-submit.btn-solid:hover { background: #eaf1ff; }

/* ---------- reset native <button> chrome used as a .method-link ---------- */
button.method-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

/* ---------- problem section: scroll-in stagger animation ---------- */
.problem-anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
@media (prefers-reduced-motion: reduce) {
  .problem-anim { opacity: 1; transform: none; transition: none; }
}
.problem-inview .problem-anim {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- product peek framing tweaks ---------- */
.ea-peek-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--color-bodytext);
  font-weight: 500;
}
.ea-peek-caption .iconify { color: var(--color-primary); }

/* ---------- simplified early-access nav ---------- */
.ea-nav-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-secondary);
  background: var(--color-lightsecondary);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- mobile nav (hamburger) ---------- */
.ea-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  flex: none;
}
.ea-nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-link);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.ea-nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ea-nav-burger.open span:nth-child(2) { opacity: 0; }
.ea-nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.ea-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 18px;
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.ea-nav-mobile a {
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-link);
  border-bottom: 1px solid var(--color-border);
}
.ea-nav-mobile a:last-child { border-bottom: none; margin-top: 6px; }
.ea-nav-mobile .btn {
  justify-content: center;
  width: 100%;
  margin-top: 4px;
}
@media (max-width: 880px) {
  .ea-nav-burger { display: flex; }
  .ea-nav-mobile { display: flex; }
  .nav-cta { display: none; }
}

/* ---------- legal modal (privacy / terms) ---------- */
.ea-legal-card { max-width: 680px; max-height: calc(100vh - 32px); }
.ea-legal-panel { max-width: none; position: relative; padding-bottom: 44px; }
.ea-legal-updated {
  font-size: 12.5px;
  color: var(--color-bodytext);
  font-weight: 600;
  margin: -4px 0 22px;
}
.ea-legal-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-height: 62vh;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}
.ea-legal-body::-webkit-scrollbar { width: 5px; }
.ea-legal-body::-webkit-scrollbar-track { background: transparent; }
.ea-legal-body::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 999px; }
.ea-legal-block h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-link);
  margin: 0 0 7px;
}
.ea-legal-block p {
  font-size: 14px;
  color: var(--color-bodytext);
  line-height: 1.65;
  margin: 0;
}
.ea-legal-more {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--color-lightgray);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  animation: ea-bob 1.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ea-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}
