/* SQUDAI — 2026-08 redesign additions (buckets · eligibility · funnel · treasury)
   Additive stylesheet: loads AFTER styles.css, touches no existing selectors. */

/* ================= THE BUCKETS — no cards, artwork at natural size ================= */
.buckets { position: relative; z-index: 1; padding: 90px 24px 80px; }
.buckets .section-head { margin-bottom: 54px; }

.buckets__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 46px; max-width: 1420px; margin: 0 auto;
}
@media (max-width: 1100px) {
  .buckets__grid { grid-template-columns: 1fr; max-width: 620px; gap: 64px; }
}

/* the panel is just a column of content — no border, no panel background, no chrome */
.bucket { position: relative; display: flex; flex-direction: column; }
.bucket--elite   { --bk: var(--gold);   --bk-2: #F5E3A8; --bk-soft: rgba(232,197,106,.16); }
.bucket--xstocks { --bk: var(--indigo); --bk-2: #7FA6FF; --bk-soft: rgba(123,140,255,.16); }
.bucket--burn    { --bk: #2FE6B0;      --bk-2: #B98BFF; --bk-soft: rgba(47,230,176,.16); }

/* header: plain type above the art */
.bucket__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.bucket__icon { width: 26px; height: 26px; flex: none; color: var(--bk); }
.bucket__title { font-weight: 700; font-size: 1.12rem; letter-spacing: .01em; }
.bucket__tag {
  margin-left: auto; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bk); opacity: .8; white-space: nowrap;
}

/* --- the artwork: natural 4:3, edge to edge, no frame --- */
.bucket__scene {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  border-radius: 16px; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 40%, var(--bk-soft), transparent 70%);
  box-shadow: 0 30px 70px -34px var(--bk), 0 0 0 1px rgba(255,255,255,.04);
}
.bucket__art { position: absolute; inset: 0; display: grid; place-items: center; }
.bucket__art svg { width: 84%; height: 84%; }
.bucket__img, .bucket__vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
}
.bucket__vid { display: none; }
.bucket[data-state="goal"] .bucket__art:has(.bucket__vid) .bucket__img { display: none; }
.bucket[data-state="goal"] .bucket__vid { display: block; }

/* melt the bottom edge into the page so it doesn't read as a pasted box */
.bucket__scene::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background: linear-gradient(180deg, transparent 82%, rgba(6,12,24,.35));
}

/* NO on-art progress overlay: the artwork's three states tell the story and the bar
   below carries the precision. Any tide-line/sweep reads as damage on real art. */
.bucket__fill { display: none; }

/* falling coins */
.bucket .coin {
  position: absolute; top: -18px; width: 13px; height: 13px; border-radius: 50%; z-index: 2;
  background: radial-gradient(circle at 35% 30%, var(--gold-2), var(--gold) 55%, var(--gold-dark));
  box-shadow: 0 0 6px rgba(232,197,106,.55);
  animation: coinDrop var(--dur, 1.6s) cubic-bezier(.45,.05,.6,1) forwards; pointer-events: none;
}
.bucket .coin::after {
  content: "\25C6"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 7px; color: rgba(96,64,10,.8);
}
@keyframes coinDrop {
  0%   { transform: translateY(0) rotate(0deg) scaleX(1); opacity: 0; }
  8%   { opacity: 1; }
  78%  { transform: translateY(var(--fall, 180px)) rotate(300deg) scaleX(.35); opacity: 1; }
  100% { transform: translateY(var(--fall, 180px)) rotate(360deg) scaleX(1); opacity: 0; }
}
.ember {
  position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--amber); z-index: 2;
  animation: emberUp var(--dur, 1.8s) ease-out forwards; pointer-events: none; opacity: 0;
}
@keyframes emberUp {
  0% { transform: translateY(0); opacity: 0; } 15% { opacity: 1; }
  100% { transform: translateY(-140px) translateX(var(--sway, 8px)); opacity: 0; }
}

/* goal state: the artwork carries it — just deepen the glow, no siren sweep */
.bucket--goal .bucket__scene { box-shadow: 0 30px 90px -30px var(--bk), 0 0 0 1px var(--bk-soft); }
.bucket__siren { display: none !important; }
.bucket__goalflag {
  display: none; position: absolute; top: 14px; left: 14px; z-index: 5;
  font-size: .6rem; letter-spacing: .18em; color: var(--cyan-ink);
  background: var(--bk); padding: 5px 12px; border-radius: 999px; font-weight: 700;
  animation: goalPulse 1.2s ease-in-out infinite alternate;
}
.bucket--goal .bucket__goalflag { display: block; }
@keyframes goalPulse { from { box-shadow: 0 0 6px var(--bk); } to { box-shadow: 0 0 24px var(--bk); } }

/* xstocks vote ring — floats on the art */
.voteRing { position: absolute; top: 12px; right: 12px; width: 62px; height: 62px; z-index: 5; }
.voteRing svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.voteRing__label {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  font-size: .55rem; line-height: 1.2; color: var(--text-dim);
  text-shadow: 0 1px 4px rgba(0,0,0,.9);
}
.voteRing__label b { color: var(--bk-2, var(--indigo)); font-size: .82rem; display: block; }

/* --- data below the art: editorial, no boxes --- */
.bucket__data { padding: 18px 2px 0; }
.bucket__meter { display: flex; align-items: baseline; gap: 9px; }
.bucket__now {
  font-family: 'JetBrains Mono', monospace; font-size: 1.85rem; font-weight: 700;
  color: var(--bk-2, var(--bk)); text-shadow: 0 0 24px var(--bk-soft); letter-spacing: -.01em;
}
.bucket__goal { color: var(--text-mute); font-size: .9rem; }
.bucket__pct {
  margin-left: auto; color: var(--bk); font-weight: 700;
  font-family: 'JetBrains Mono', monospace; font-size: 1rem;
}
.bucket__bar {
  height: 3px; margin: 14px 0 16px; border-radius: 999px;
  background: rgba(255,255,255,.07); overflow: hidden;
}
.bucket__bar i {
  display: block; height: 100%; width: calc(var(--fill, 0) * 1%); border-radius: 999px;
  background: linear-gradient(90deg, var(--bk-soft), var(--bk));
  box-shadow: 0 0 12px -2px var(--bk); transition: width 1.4s var(--ease);
}
.bucket__life {
  display: flex; justify-content: space-between; gap: 12px;
  color: var(--text-dim); font-size: .82rem; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.bucket__life b { color: var(--text); font-weight: 600; white-space: nowrap; }
.bucket__sub { margin-top: 10px; color: var(--text-mute); font-size: .7rem; line-height: 1.5; }

/* ================= ELIGIBILITY EXPLORER ================= */
.elig { position: relative; z-index: 1; padding: 90px 24px; }
.elig__wrap { max-width: 1040px; margin: 0 auto; }

.elig__controls {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  justify-content: center; margin-bottom: 26px;
}
.elig__input {
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: var(--radius);
  color: var(--text); font-family: 'JetBrains Mono', monospace; font-size: .95rem;
  padding: 12px 16px; width: 240px; outline: none; transition: border-color .25s;
}
.elig__input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(77,224,249,.12); }
.elig__pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.elig__pill {
  border: 1px solid var(--line-strong); background: transparent; color: var(--text-dim);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .86rem;
  padding: 10px 18px; border-radius: 999px; cursor: pointer; transition: all .25s var(--ease);
}
.elig__pill:hover { color: var(--text); border-color: var(--cyan); }
.elig__pill.is-on {
  color: var(--cyan-ink); background: var(--cyan); border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(77,224,249,.35);
}
.elig__pill--elite.is-on { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 20px rgba(232,197,106,.5); }

/* fire meter v2: LIVING turbulence fire (red inferno → blue plasma), a blade across the
   strip, and a darkness veil that burns away left→right as the tier rises. */
/* ---- the blade: one image, lit left-to-right as the bag grows ---- */
.sword {
  position: relative; width: 100%; max-width: 980px; margin: 30px auto 6px;
  aspect-ratio: 1600 / 558; --lit: 52%; --edge: #B24DFF;
}
.sword__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
}
.sword__img--cold {
  /* faint cold steel, not dark smoke: lift the greys and drop the whole ghost back */
  filter: grayscale(1) brightness(1.35) contrast(.78); opacity: .3;
}
.sword__img--hot {
  clip-path: inset(0 calc(100% - var(--lit)) 0 0);
  transition: clip-path 1.1s var(--ease);
  filter: saturate(1.12);
}
.sword__edge {                    /* the advancing ignition front */
  position: absolute; top: 34%; bottom: 34%; left: var(--lit); width: 2px;
  background: var(--edge); border-radius: 2px;
  box-shadow: 0 0 10px 1px var(--edge), 0 0 26px 5px var(--edge);
  transition: left 1.1s var(--ease), background .6s linear, box-shadow .6s linear;
  animation: edgeFlicker 1.5s ease-in-out infinite alternate;
}
@keyframes edgeFlicker { from { opacity: .55; } to { opacity: .95; } }
/* at Elite the whole blade is lit, so there is no front left to draw. The animation
   would win over a plain `opacity: 0`, so it has to be cancelled too. */
.sword--max .sword__edge { animation: none; opacity: 0; }

/* tier notches under the blade */
.sword__ticks { position: absolute; left: 0; right: 0; bottom: -6px; height: 34px; }
.sword__tick {
  position: absolute; transform: translateX(-50%); text-align: center;
  font-size: .58rem; letter-spacing: .14em; color: var(--text-mute);
  transition: color .4s var(--ease);
}
.sword__tick::before {
  content: ""; display: block; width: 1px; height: 9px; margin: 0 auto 5px;
  background: currentColor; opacity: .55;
}
.sword__tick.is-reached { color: var(--tc); text-shadow: 0 0 12px var(--tc); }
.sword__tick:last-child { transform: translateX(-88%); }
.sword__tick:last-child::before { margin-right: 4px; }

/* ---- feature grid: fixed geometry, nothing reflows ---- */
.elig__cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 46px;
}
.ecard {
  --tc: var(--cyan);
  position: relative; display: flex; flex-direction: column; gap: 9px;
  padding: 18px 16px 14px; text-align: left; cursor: pointer;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.ecard::before {                  /* tier rail */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--tc); opacity: .35; transition: opacity .3s var(--ease);
}
.ecard:hover, .ecard:focus-visible {
  transform: translateY(-3px); outline: none;
  border-color: color-mix(in srgb, var(--tc) 55%, transparent);
  box-shadow: 0 18px 40px -22px var(--tc);
}
.ecard.is-unlocked::before { opacity: 1; box-shadow: 0 0 14px var(--tc); }
.ecard__top { display: flex; align-items: center; gap: 10px; }
.ecard__icon {
  width: 34px; height: 34px; flex: none; display: grid; place-items: center;
  font-size: 1.02rem; border-radius: 10px;
  background: color-mix(in srgb, var(--tc) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--tc) 34%, transparent);
  filter: grayscale(.85); opacity: .6; transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.ecard.is-unlocked .ecard__icon { filter: none; opacity: 1; }
.ecard__tier {
  font-size: .56rem; letter-spacing: .16em; color: var(--tc);
  border: 1px solid color-mix(in srgb, var(--tc) 30%, transparent);
  padding: 3px 7px; border-radius: 999px; white-space: nowrap;
}
.ecard__soon { margin-left: auto; font-size: .54rem; letter-spacing: .14em; color: var(--text-mute); }
.ecard__title { margin: 0; font-size: .95rem; font-weight: 650; color: var(--text); line-height: 1.3; }
.ecard__metric { font-size: .74rem; color: var(--tc); letter-spacing: .02em; }
.ecard__short { margin: 0; font-size: .78rem; line-height: 1.5; color: var(--text-dim); }
.ecard__foot {
  margin-top: auto; padding-top: 11px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: .6rem; letter-spacing: .1em;
}
.ecard__lock { color: var(--text-mute); }
.ecard.is-unlocked .ecard__lock { color: var(--mint); }
.ecard__cta { color: var(--tc); opacity: .75; }
.ecard:hover .ecard__cta { opacity: 1; }

/* ---- detail modal: opens in front, page never moves ---- */
.fmodal {
  width: min(620px, calc(100vw - 32px)); max-height: min(86vh, 780px);
  padding: 0; border: 1px solid var(--line-strong); border-radius: 18px;
  background: #0A1220; color: var(--text); overflow: hidden;
  box-shadow: 0 40px 120px -30px #000, 0 0 0 1px rgba(255,255,255,.03);
}
.fmodal::backdrop { background: rgba(3,7,14,.78); backdrop-filter: blur(7px); }
.fmodal[open] { animation: fmodalIn .28s var(--ease) both; }
@keyframes fmodalIn { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
.fmodal__head {
  display: flex; align-items: flex-start; gap: 13px; padding: 22px 22px 17px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--tc) 11%, transparent), transparent);
}
.fmodal__icon {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center; font-size: 1.35rem;
  border-radius: 13px; background: color-mix(in srgb, var(--tc) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--tc) 38%, transparent);
}
.fmodal__titles { flex: 1; min-width: 0; }
.fmodal__titles h3 { margin: 0 0 6px; font-size: 1.16rem; line-height: 1.25; }
.fmodal__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.fmodal__chip {
  font-size: .56rem; letter-spacing: .14em; padding: 3px 8px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--tc) 32%, transparent); color: var(--tc);
}
.fmodal__chip--ok { color: var(--mint); border-color: rgba(47,230,176,.4); background: rgba(47,230,176,.1); }
.fmodal__chip--no { color: var(--text-mute); border-color: var(--line-strong); }
.fmodal__x {
  flex: none; width: 30px; height: 30px; border-radius: 9px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--text-dim); font-size: .95rem;
}
.fmodal__x:hover { color: var(--text); border-color: var(--line-strong); }
.fmodal__body { padding: 20px 22px 24px; overflow-y: auto; }
.fmodal__metric {
  font-size: 1.5rem; font-weight: 700; color: var(--tc); letter-spacing: -.01em;
  text-shadow: 0 0 26px color-mix(in srgb, var(--tc) 45%, transparent);
}
.fmodal__metric small { display: block; font-size: .6rem; font-weight: 500; letter-spacing: .14em;
  color: var(--text-mute); text-shadow: none; margin-top: 4px; }
.fmodal__lede { margin: 16px 0 0; font-size: .87rem; line-height: 1.68; color: var(--text-dim); }
.fmodal__h { margin: 22px 0 10px; font-size: .58rem; letter-spacing: .17em; color: var(--text-mute); }
.fmodal__steps { margin: 0; padding: 0; list-style: none; counter-reset: s; display: grid; gap: 9px; }
.fmodal__steps li {
  counter-increment: s; position: relative; padding-left: 30px;
  font-size: .82rem; line-height: 1.55; color: var(--text-dim);
}
.fmodal__steps li::before {
  content: counter(s); position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; display: grid; place-items: center; border-radius: 6px;
  font-size: .6rem; font-weight: 700; color: var(--tc);
  background: color-mix(in srgb, var(--tc) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--tc) 30%, transparent);
}
.fmodal__need {
  margin-top: 20px; padding: 13px 15px; border-radius: 11px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,.025);
  font-size: .79rem; line-height: 1.55; color: var(--text-dim);
}
.fmodal__need b { color: var(--text); }

/* ================= FUNNEL STRIP (inside vault section) ================= */
.funnel { max-width: 1180px; margin: 0 auto 26px; }
.funnel__steps {
  display: grid; grid-template-columns: repeat(5, 1fr) 1.35fr;
  gap: 10px; align-items: stretch;
}
@media (max-width: 900px) { .funnel__steps { grid-template-columns: repeat(3, 1fr); } }
.fstep {
  position: relative; background: rgba(15,30,54,.7); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 13px 12px 11px; text-align: left;
}
.fstep span { display: block; font-size: .6rem; letter-spacing: .14em; color: var(--text-mute); }
.fstep b { display: block; font-size: 1.35rem; font-weight: 700; margin-top: 3px; color: var(--text); }
.fstep i { display: block; font-style: normal; font-size: .62rem; color: var(--text-mute); margin-top: 2px; }
.fstep::after {
  content: "›"; position: absolute; right: -9px; top: 50%; transform: translateY(-50%);
  color: rgba(77,224,249,.5); font-size: 1rem; z-index: 2;
}
.fstep:last-child::after, .fstep--sol::after { content: none; }
.fstep--sol {
  background: linear-gradient(135deg, rgba(47,230,176,.1), rgba(15,30,54,.75));
  border-color: rgba(47,230,176,.35);
}
.fstep--sol b { color: var(--mint); }
@media (max-width: 900px) { .fstep::after { content: none; } }

/* ================= FLOW OF VALUE (no-commitment rewrite) ================= */
.vflow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px; align-items: stretch; max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.vflow__step {
  padding: 20px 18px; border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}
.vflow__step > span { font-size: .6rem; letter-spacing: .18em; color: var(--cyan); }
.vflow__step h5 { margin: 8px 0 8px; font-size: .98rem; color: var(--text); }
.vflow__step p { margin: 0; font-size: .78rem; line-height: 1.55; color: var(--text-dim); }
.vflow__arrow { align-self: center; color: var(--text-mute); font-size: 1.2rem; }
@media (max-width: 980px) {
  .vflow { grid-template-columns: 1fr; }
  .vflow__arrow { transform: rotate(90deg); justify-self: center; }
}

/* ================= DISTRIBUTION LEADERBOARD ================= */
.distro { position: relative; z-index: 1; padding: 90px 24px; }
.distro__wrap { max-width: 1180px; margin: 0 auto; }
.distro__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 0 26px;
}
.dstat {
  padding: 15px 17px; border: 1px solid var(--line); border-radius: 13px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
}
.dstat b { display: block; font-size: 1.32rem; font-weight: 700; letter-spacing: -.01em; color: var(--text); }
.dstat span { display: block; margin-top: 5px; font-size: .58rem; letter-spacing: .15em; color: var(--text-mute); }
.dstat--paid b { color: var(--mint); text-shadow: 0 0 24px rgba(47,230,176,.4); }

/* the table scrolls inside itself; the page never scrolls sideways */
.distro__scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 15px; }
.dtable { width: 100%; min-width: 940px; border-collapse: collapse; font-size: .82rem; }
.dtable thead th {
  position: sticky; top: 0; z-index: 2; text-align: left; white-space: nowrap;
  padding: 13px 16px; font-size: .56rem; letter-spacing: .16em; font-weight: 600;
  color: var(--text-mute); background: #0A1220; border-bottom: 1px solid var(--line-strong);
}
.dtable tbody td {
  padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: middle;
  color: var(--text-dim); white-space: nowrap;
}
.dtable tbody tr:last-child td { border-bottom: 0; }
.dtable tbody tr { transition: background .18s var(--ease); }
.dtable tbody tr:hover { background: rgba(255,255,255,.028); }
.dtable tbody tr.is-top td { background: rgba(232,197,106,.045); }

.drank { font-size: .72rem; color: var(--text-mute); width: 46px; }
.dtable tr.is-top .drank { color: var(--gold); font-weight: 700; }
.daddr { color: var(--text); letter-spacing: .04em; }
.dholder {
  display: inline-block; padding: 3px 9px; border-radius: 999px;
  font-size: .56rem; letter-spacing: .13em; border: 1px solid transparent;
}
.dholder--y { color: var(--mint); border-color: rgba(47,230,176,.36); background: rgba(47,230,176,.1); }
.dholder--n { color: var(--text-mute); border-color: var(--line-strong); }
.dtok { color: var(--text); font-weight: 600; }
.dtok small { display: block; margin-top: 3px; font-size: .6rem; font-weight: 400; color: var(--text-mute); letter-spacing: .04em; }
.dtop__sym { color: var(--text); }
.dgain {
  margin-left: 7px; font-weight: 700; color: #3DFFA8;
  text-shadow: 0 0 10px rgba(61,255,168,.85), 0 0 26px rgba(61,255,168,.45);
}
.dpot { color: var(--cyan); font-weight: 600; }
.dpot__u { font-size: .62rem; color: var(--text-mute); font-weight: 400; letter-spacing: .1em; }
.dpot small { display: block; margin-top: 3px; font-size: .62rem; font-weight: 400; color: var(--text-mute); letter-spacing: .04em; }
.dbag { color: var(--text); }
.dbag small { color: var(--text-mute); font-size: .62rem; }
.dage { color: var(--text-dim); }
.dage--max { color: var(--cyan); text-shadow: 0 0 12px rgba(77,224,249,.5); }
.dage--new { color: var(--text-mute); }
.distro__note {
  margin: 15px 2px 0; font-size: .62rem; letter-spacing: .05em; color: var(--text-mute); line-height: 1.7;
}

/* ================= TREASURY (coming soon, mock) ================= */
.treasury { position: relative; z-index: 1; padding: 90px 24px; }
.treasury__wrap { max-width: 1040px; margin: 0 auto; }
.treasury__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; margin-top: 34px; }
@media (max-width: 900px) { .treasury__grid { grid-template-columns: 1fr; } }

.tsy-vault {
  background: var(--panel); border: 1px solid rgba(123,140,255,.3); border-radius: var(--radius-lg);
  padding: 22px; position: relative; overflow: hidden;
}
.tsy-vault::before {
  content: "COMING SOON"; position: absolute; top: 18px; right: -34px; transform: rotate(38deg);
  background: var(--indigo); color: var(--cyan-ink); font-weight: 700; font-size: .64rem;
  letter-spacing: .22em; padding: 5px 44px; z-index: 3;
}
.tsy-vault h3 { margin: 0 0 4px; }
.tsy-vault .mono { color: var(--text-mute); font-size: .72rem; }
.tsy-rows { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.tsy-row {
  display: grid; grid-template-columns: 44px 1fr auto auto; gap: 12px; align-items: center;
  background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 12px;
}
.tsy-row__logo {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(123,140,255,.14); color: var(--indigo); font-weight: 700; font-size: .62rem;
}
.tsy-row b { font-size: .92rem; }
.tsy-row .mono { font-size: .72rem; }
.tsy-row__qty { color: var(--text-dim); }
.tsy-row__usd { color: var(--text); font-weight: 600; }

.tsy-rules { display: flex; flex-direction: column; gap: 12px; }
.tsy-rule {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 15px 16px; display: flex; gap: 13px; align-items: flex-start;
}
.tsy-rule__num {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(123,140,255,.16); color: var(--indigo); font-weight: 700; font-size: .78rem;
}
.tsy-rule h5 { margin: 0 0 3px; font-size: .9rem; }
.tsy-rule p { margin: 0; color: var(--text-dim); font-size: .78rem; line-height: 1.5; }
.tsy-countdown { display: flex; gap: 10px; margin-top: 16px; }
.tsy-cd {
  flex: 1; text-align: center; background: rgba(123,140,255,.08);
  border: 1px solid rgba(123,140,255,.25); border-radius: 10px; padding: 10px 4px;
}
.tsy-cd b { display: block; font-size: 1.4rem; color: var(--indigo); }
.tsy-cd span { font-size: .58rem; letter-spacing: .14em; color: var(--text-mute); }

/* count-up number effect helper */
.rollup { font-variant-numeric: tabular-nums; }

/* reduced motion: kill all decorative animation */
@media (prefers-reduced-motion: reduce) {
  .bucket .coin, .ember, .bucket__siren::before, .sword__edge,
  .aurora, .bucket__fill::after { animation: none !important; }
}

/* ================= MOBILE (redesign sections) ================= */
/* The page must NEVER scroll sideways — wide content scrolls inside its own box. */
@media (max-width: 900px) {
  .elig__cards { grid-template-columns: repeat(2, 1fr); }
  .distro__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .elig__cards { grid-template-columns: 1fr; }
  .funnel__steps { grid-template-columns: repeat(2, 1fr); }
  .sword { margin-top: 18px; }
  .sword__tick { font-size: .5rem; letter-spacing: .08em; }
  .elig__input { width: 100%; max-width: 340px; }
  .bucket__now { font-size: 1.5rem; }
  .fmodal__metric { font-size: 1.2rem; }
  .dstat b { font-size: 1.05rem; }
  .vflow { padding: 0 16px; }
}
/* belt-and-braces: if any element still forces width, clip it at the page level
   rather than handing the whole viewport a horizontal scrollbar */
html, body { overflow-x: clip; }
