/* ==========================================================================
   EarnTrump — landing page  ·  ARCADE
   Namespaced .et-* so it cannot collide with the archived home_o* variants,
   which own .bk-* in home.css.
   Colour comes from the tokens in theme.css; the only literals here are the
   coin brand tints, which arrive inline as --tint per element.
   ========================================================================== */

.et { display: block; }

/* Reveal start state, gated on .et-js so a blocked script leaves the page
   fully readable instead of blank. */
.et-js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.et-js [data-reveal].is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------------ HERO -- */
.et-hero {
  position: relative;
  padding: clamp(44px, 7vw, 88px) 0 clamp(52px, 7vw, 84px);
  background:
    radial-gradient(900px 500px at 78% -10%, var(--accent-soft), transparent 62%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  overflow: hidden;
}

/* Drifting orbs + a slow scanline: enough motion to read as "alive" without
   competing with the claim button, which is the only thing that should pull
   the eye. All decorative and inert. */
.et-hero-fx { position: absolute; inset: 0; pointer-events: none; }
.et-hero-fx .orb {
  position: absolute; border-radius: 50%; filter: blur(46px); opacity: .5;
}
.et-hero-fx .orb-1 {
  width: 380px; height: 380px; top: -90px; right: 4%;
  background: var(--accent-bright);
  animation: etFloat 13s var(--ease) infinite alternate;
}
.et-hero-fx .orb-2 {
  width: 300px; height: 300px; bottom: -110px; left: -60px;
  background: var(--hot);
  opacity: .34;
  animation: etFloat 17s var(--ease) infinite alternate-reverse;
}
@keyframes etFloat {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-26px, 30px, 0) scale(1.12); }
}
.et-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.et-hero-in {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.et-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; letter-spacing: .01em;
}

.et-h1 {
  margin: 18px 0 0;
  font-size: clamp(38px, 6.2vw, 68px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .98;
}
.et-h1-accent {
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.et-sub {
  margin-top: 18px;
  max-width: 52ch;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-2);
  line-height: 1.62;
}

/* ------------------------------------------------------------------- CTA -- */
.et-cta {
  margin-top: 28px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  max-width: 460px;
}

.et-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--success);
  text-transform: uppercase; letter-spacing: .05em;
}
.et-live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  animation: etPulse 2s infinite;
}
@keyframes etPulse {
  0%   { box-shadow: 0 0 0 0 var(--success-soft); }
  70%  { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.et-google { margin: 15px 0 12px; min-height: 44px; }
.et-google > div { display: flex; }

.et-google-fallback {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  background: var(--surface);
  font-size: 14px; font-weight: 700;
  transition: transform .16s var(--ease-pop), border-color .16s var(--ease);
}
.et-google-fallback:hover { border-color: var(--accent); transform: translateY(-2px); }
.et-google-fallback .g {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-grad); color: #fff;
  font-weight: 800; font-size: 13px;
}

.et-auth-busy { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

.et-cta-note {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 12px; color: var(--muted); line-height: 1.5;
}
.et-cta-note i { color: var(--success); margin-top: 3px; }

/* ------------------------------------------------------------ HERO PROOF -- */
.et-hero-proof {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 42px);
  list-style: none; margin: 28px 0 0; padding: 0;
}
.et-hero-proof b {
  display: block;
  font-family: var(--mono);
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 700; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.et-hero-proof span { font-size: 12px; color: var(--muted); }

/* --------------------------------------------------------- CLAIM MACHINE -- */
/* A non-interactive mock of the real claim screen. It is the product demo:
   the visitor sees the thing they are about to use, already running. */
.et-machine {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 400px;
  margin-inline: auto;
}

.et-machine-top {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.et-machine-top .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border-strong);
}
.et-machine-top .dot:first-child { background: var(--hot); }
.et-machine-top b {
  margin-left: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  color: var(--muted);
}

.et-machine-body { padding: 26px 22px 22px; text-align: center; }

.et-machine-cap {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}

.et-machine-coin { position: relative; display: grid; place-items: center; margin: 18px 0 14px; }
.et-machine-coin img {
  width: 76px; height: 76px; border-radius: 50%;
  position: relative; z-index: 1;
  animation: etBob 3.4s var(--ease) infinite alternate;
}
@keyframes etBob {
  from { transform: translateY(-4px); }
  to   { transform: translateY(5px); }
}
/* Expanding halo — the "ready" tell. */
.et-ring {
  position: absolute;
  width: 76px; height: 76px; border-radius: 50%;
  border: 2px solid var(--accent-bright);
  animation: etRing 2.4s var(--ease-out) infinite;
}
@keyframes etRing {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.9); opacity: 0; }
}

.et-machine-amt {
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 800; letter-spacing: -.03em;
  color: var(--success);
}
.et-machine-amt small { font-size: 13px; color: var(--muted); font-weight: 700; }

/* The single hottest object on the page. --hot is reserved for it so nothing
   else in the UI competes for the first glance. */
.et-claim-btn {
  display: block; width: 100%;
  margin: 18px 0 16px;
  padding: 16px;
  border-radius: var(--r-pill);
  background: var(--hot-grad);
  color: #fff;
  font-size: 15px; font-weight: 900; letter-spacing: .06em;
  box-shadow: var(--shadow-hot);
  animation: etThrob 2.6s var(--ease) infinite;
}
@keyframes etThrob {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.035); }
}
.et-claim-btn:hover { animation-play-state: paused; transform: scale(1.045); }

.et-machine-xp { text-align: left; }
.et-xp-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; margin-bottom: 6px;
}
.et-xp-row b { font-weight: 800; color: var(--xp); letter-spacing: .04em; }
.et-xp-row i { font-style: normal; color: var(--muted); font-family: var(--mono); }
.et-xp-bar {
  display: block; height: 8px; border-radius: var(--r-pill);
  background: var(--surface-3); overflow: hidden;
}
.et-xp-bar i {
  display: block; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--xp), var(--accent-bright));
}

.et-machine-foot {
  display: flex; justify-content: space-around; gap: 10px;
  padding: 13px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 11px; font-weight: 600; color: var(--muted);
}
.et-machine-foot i { color: var(--hot); margin-right: 5px; }

/* -------------------------------------------------------------- SECTIONS -- */
.et-sec { padding: clamp(52px, 7vw, 88px) 0; }
.et-sec-alt { background: var(--bg-2); }

.et-sec-head { max-width: 62ch; margin: 0 auto clamp(30px, 4vw, 46px); text-align: center; }
.et-sec-head-sm { margin-bottom: 20px; }
.et-sec-head h2 {
  margin: 12px 0 0;
  font-size: clamp(27px, 3.8vw, 40px);
  font-weight: 900; letter-spacing: -.03em;
}
.et-sec-head p { margin-top: 13px; color: var(--text-2); line-height: 1.65; }

.et-kicker {
  font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
}

/* --------------------------------------------------------- STICKY MOBILE -- */
.et-sticky {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: none; align-items: center; gap: 12px;
  padding: 11px 12px 11px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  transition: transform .3s var(--ease-out);
}
.et-sticky.is-on { transform: none; }
.et-sticky div  { flex: 1 1 auto; line-height: 1.25; }
.et-sticky b    { display: block; font-size: 13px; }
.et-sticky span { font-size: 11px; color: var(--muted); }
.et-sticky-btn {
  padding: 11px 22px;
  border-radius: var(--r-pill);
  background: var(--hot-grad); color: #fff;
  font-size: 13px; font-weight: 900; letter-spacing: .05em;
}

/* ------------------------------------------------------------ RESPONSIVE -- */
@media (max-width: 900px) {
  .et-hero-in { grid-template-columns: 1fr; }
  .et-machine { order: -1; }
  .et-cta     { max-width: none; }
}

@media (max-width: 620px) {
  .et-sticky   { display: flex; }
  .et-hero-proof { gap: 20px; }
}
/* ---------------------------------------------------------------- TICKER -- */
.et-ticker {
  border-block: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding: 13px 0;
}
.et-ticker-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: etScroll 46s linear infinite;
}
.et-ticker:hover .et-ticker-track { animation-play-state: paused; }
@keyframes etScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.et-ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.et-ticker-item img   { width: 22px; height: 22px; border-radius: 50%; }
.et-ticker-item b     { font-size: 13px; font-weight: 700; }
.et-ticker-item small { font-size: 12px; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .et-ticker-track { animation: none; }
  .et-ticker { overflow-x: auto; }
}


/* ------------------------------------------------------------- COIN GRID -- */
.et-coingrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 14px;
}

.et-coin {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 22px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform .18s var(--ease-out), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.et-coin:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--tint) 50%, var(--border));
  box-shadow: 0 12px 26px -14px color-mix(in srgb, var(--tint) 60%, transparent);
}
.et-coin img {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 9px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--tint) 14%, transparent);
}
.et-coin b     { font-size: 14px; font-weight: 700; letter-spacing: -.01em; }
.et-coin small { font-size: 11px; color: var(--muted); }

.et-coingrid-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 24px;
  font-size: 13px; color: var(--muted); text-align: center;
}
.et-coingrid-note i { color: var(--accent); }

/* ------------------------------------------------------------ STATS ROW -- */
.et-statrow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}
.et-stat {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.et-stat span { display: block; font-size: 12px; color: var(--muted); }
.et-stat b {
  display: block; margin-top: 5px;
  font-family: var(--mono);
  font-size: clamp(22px, 2.6vw, 29px);
  font-weight: 700; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

/* ----------------------------------------------------------- PROOF PANELS -- */
.et-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.et-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.et-panel-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 13px;
}
.et-panel-head b { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.et-panel-head i { color: var(--accent); }

.et-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); flex: none;
  animation: etPulse 2s infinite;
}

.et-feed { list-style: none; margin: 0; padding: 6px; max-height: 310px; }
.et-feed li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 13px;
}
.et-feed li + li { border-top: 1px solid var(--border); }
.et-feed li > i   { color: var(--success); font-size: 12px; }
.et-feed li img   { width: 20px; height: 20px; border-radius: 50%; flex: none; }
.et-feed time     { font-size: 11px; color: var(--faint); white-space: nowrap; }
.et-feed .grow    { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.et-amt {
  font-family: var(--mono);
  font-size: 12px; font-weight: 700; color: var(--success);
  white-space: nowrap;
}
.et-amt small { font-size: 10px; color: var(--muted); font-weight: 600; }

.et-empty { padding: 30px 18px; text-align: center; font-size: 13px; color: var(--muted); }

/* ----------------------------------------------------------------- STEPS -- */
.et-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  list-style: none; margin: 0; padding: 0;
  counter-reset: step;
}
.et-steps li {
  position: relative;
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.et-step-n {
  display: grid; place-items: center;
  width: 34px; height: 34px; margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent-grad); color: var(--on-accent);
  font-family: var(--mono); font-weight: 700; font-size: 14px;
}
.et-steps b { display: block; font-size: 16px; margin-bottom: 7px; }
.et-steps p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ----------------------------------------------------------------- TILES -- */
.et-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 16px;
}
.et-tile {
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform .18s var(--ease-out), border-color .18s var(--ease);
}
.et-tile:hover { transform: translateY(-3px); border-color: var(--accent-line); }
.et-tile-ico {
  display: grid; place-items: center;
  width: 42px; height: 42px; margin-bottom: 14px;
  border-radius: var(--r);
  background: var(--accent-soft); color: var(--accent);
  font-size: 17px;
}
.et-tile b { display: block; font-size: 15px; margin-bottom: 7px; }
.et-tile p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ------------------------------------------------------------- SPONSORED -- */
.et-sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.et-sponsor {
  padding: 15px 17px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r);
  transition: border-color .16s var(--ease);
}
.et-sponsor:hover { border-color: var(--accent); }
.et-sponsor b     { display: block; font-size: 14px; }
.et-sponsor small { display: block; margin-top: 4px; font-size: 12px; color: var(--muted); }

/* ------------------------------------------------------------- FINAL CTA -- */
.et-final {
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
}
.et-final h2 {
  font-size: clamp(25px, 3.6vw, 38px);
  font-weight: 800; letter-spacing: -.025em;
  max-width: 20ch; margin-inline: auto;
}
.et-final p { margin-top: 14px; color: var(--text-2); }
.et-final-btn { margin-top: 26px; padding: 14px 30px; font-size: 15px; }

.et-final-coins {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 34px;
  opacity: .75;
}
.et-final-coins img { width: 28px; height: 28px; border-radius: 50%; }


/* ------------------------------------------------------------ RESPONSIVE -- */
@media (max-width: 620px) {
  .et-coingrid { grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
  .et-coin     { padding: 16px 8px; }
  .et-coin img { width: 36px; height: 36px; }
  /* The sticky bar would otherwise sit on top of the final call to action. */
  .et-final    { padding-bottom: 110px; }
}
