/* Bigger + cleaner redesign (still banner-as-image, not background) */
:root{
  --bg0:#0d0010;
  --bg1:#1d0020;
  --text:#ffeaff;
  --muted: rgba(255,234,255,0.74);
  --muted2: rgba(255,234,255,0.60);

  --goldA:#ffe2a4;
  --goldB:#ffb74d;
  --pinkA:#ff73cb;
  --pinkB:#ff2fa6;

  --stroke: rgba(255, 226, 164, 0.16);
  --glass: rgba(255,255,255,0.06);
  --glass2: rgba(255,255,255,0.09);

  --shadow: 0 22px 60px rgba(0,0,0,0.55);
  --shadow2: 0 16px 30px rgba(0,0,0,0.35);

  --r16: 16px;
  --r22: 22px;
  --r30: 30px;

  /* Sticky top bar height (approx.): keeps hero = one full viewport below header */
  --topbar-h: 76px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 15% 5%, rgba(255,115,203,0.28), transparent 55%),
    radial-gradient(900px 520px at 85% 18%, rgba(255,183,77,0.18), transparent 58%),
    radial-gradient(980px 700px at 55% 92%, rgba(180,40,180,0.22), transparent 62%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.4;
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(2px 2px at 18% 12%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 68% 18%, rgba(255,255,255,0.25), transparent 60%),
    radial-gradient(2px 2px at 82% 38%, rgba(255,255,255,0.28), transparent 60%),
    radial-gradient(1px 1px at 26% 54%, rgba(255,255,255,0.22), transparent 60%),
    radial-gradient(2px 2px at 76% 78%, rgba(255,255,255,0.22), transparent 60%);
  opacity: 0.8;
  mix-blend-mode: screen;
}

img{max-width:100%; display:block}

/* Scroll reveal (see initScrollReveal in script.js) — replays when scrolling up or down */
[data-reveal]:not(.is-visible){
  opacity: 0;
  transform: translateY(26px);
}
[data-reveal][data-reveal-from="above"]:not(.is-visible){
  transform: translateY(-26px);
}
[data-reveal][data-reveal-from="below"]:not(.is-visible){
  transform: translateY(26px);
}
[data-reveal]{
  transition:
    opacity 0.68s cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 0.68s cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: calc(var(--reveal-order, 0) * 72ms);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}

a{color:inherit; text-decoration:none}

.container{
  width:min(1240px, calc(100% - 44px));
  margin:0 auto;
}

.skip{
  position:absolute;
  left:-9999px;
  top:10px;
  background:#000;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  z-index: 50;
}
.skip:focus{left:10px}

.topbar{
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(12,0,16,0.62);
  border-bottom: 1px solid var(--stroke);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 160px;
}
.brand__logo{
  width:44px;
  height:44px;
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(0,0,0,0.38);
  border: 1px solid rgba(255,226,164,0.22);
}
.brand__text{
  font-family: "Cinzel Decorative", ui-serif, Georgia, serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 16px;
  color: #ffe8ff;
  text-shadow:
    0 0 14px rgba(255, 115, 203, 0.40),
    0 0 18px rgba(255, 183, 77, 0.20);
}

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,226,164,0.12);
}
.nav a{
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,232,255,0.85);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(255,115,203,0.12);
  color: #fff;
}
.nav a.is-active{
  background: linear-gradient(180deg, rgba(255,115,203,0.20), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,226,164,0.14);
  box-shadow: 0 16px 30px rgba(0,0,0,0.22);
}

.topbar__actions{
  display:flex;
  flex-wrap: wrap;
  gap:10px;
  align-items:center;
  justify-content: flex-end;
}
.topbar__social{
  display: flex;
  gap: 6px;
  align-items: center;
}

.social-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 226, 164, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 232, 255, 0.94);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 120ms ease,
    box-shadow 160ms ease;
}
.social-btn:hover{
  background: rgba(255, 115, 203, 0.16);
  border-color: rgba(255, 226, 164, 0.32);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
.social-btn:active{
  transform: translateY(1px);
}
.social-btn__svg{
  flex-shrink: 0;
  display: block;
}
.social-btn__label{
  line-height: 1;
}

.topbar__social-btn{
  gap: 8px;
}
.topbar__social-ico{
  flex-shrink: 0;
  display: block;
}

.btn{
  appearance:none;
  border:0;
  cursor:pointer;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 14px;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  background: linear-gradient(180deg, #ff90d9, #ff3aa7);
  color:#240019;
  box-shadow: 0 22px 55px rgba(255, 54, 164, 0.26), 0 10px 22px rgba(0,0,0,0.40);
  border: 1px solid rgba(255,226,164,0.22);
}
.btn--primary:hover{box-shadow: 0 30px 80px rgba(255, 54, 164, 0.30), 0 14px 28px rgba(0,0,0,0.46)}
.btn--secondary{
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,226,164,0.18);
  box-shadow: var(--shadow2);
}
.btn--secondary:hover{background: rgba(255,255,255,0.11)}
.btn--ghost{
  background: rgba(0,0,0,0.0);
  color: rgba(255,232,255,0.92);
  border: 1px solid rgba(255,226,164,0.16);
}
.btn--ghost:hover{background: rgba(255,226,164,0.06)}
.btn--xl{
  padding: 14px 18px;
  font-size: 15px;
}

.hero{
  padding: 54px 0 96px;
}
.hero--home{
  box-sizing: border-box;
  min-height: calc(100vh - var(--topbar-h));
  min-height: calc(100dvh - var(--topbar-h));
  padding: 32px 0 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero--home > .container{
  width: 100%;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items:center;
}
.hero__grid--home{
  grid-template-columns: auto auto;
  justify-content: center;
  justify-items: center;
  gap: 40px min(56px, 5vw);
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.hero__coin,
.hero__content{
  position: relative;
  z-index: 2;
}
.sparkles--hero{
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 0;
}

.hero__coin{
  display:flex;
  justify-content:center;
  align-items:center;
}
.coin{
  width: min(400px, 56vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  padding: 18px;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,226,164,0.20);
  box-shadow: 0 40px 110px rgba(0,0,0,0.55);
  position: relative;
  animation: boobsFloat 3.8s ease-in-out infinite;
}
.coin::before{
  content:"";
  position:absolute;
  inset: -22px;
  border-radius: 999px;
  background:
    radial-gradient(closest-side, rgba(255,183,77,0.22), transparent 62%),
    radial-gradient(closest-side, rgba(255,115,203,0.18), transparent 70%);
  filter: blur(2px);
  z-index: -1;
}
.coin__img{
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 2px solid rgba(40,0,40,0.65);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}
.hero__content{
  text-align: center;
  max-width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.hero__tag{
  display:inline-flex;
  margin-bottom: 14px;
}
.hero__title{
  margin: 0;
  display:flex;
  flex-direction:column;
  align-items: center;
  gap: 8px;
}
.hero__word.title__glow{
  font-size: clamp(58px, 6vw, 92px);
}
.hero__ticker{
  font-weight: 800;
  font-size: 20px;
  color: rgba(255,234,255,0.86);
}
.hero__lead{
  margin: 0 auto;
  max-width: 42ch;
}
.hero__lead.lead{
  margin-top: 18px;
}
.hero__cta{
  margin-top: 18px;
  justify-content: center;
}
.hero__btn{
  border-radius: 999px;
}

@keyframes boobsFloat{
  0%{transform: translateY(0) rotate(-1.2deg) scale(1)}
  50%{transform: translateY(-10px) rotate(1.2deg) scale(1.03)}
  100%{transform: translateY(0) rotate(-1.2deg) scale(1)}
}

@media (prefers-reduced-motion: reduce){
  .coin{animation: none}
  .meme-strip__inner{animation: none}
  .sparkle{animation-duration: 0.01ms; animation-iteration-count: 1}
  [data-reveal]{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .steps--big li{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,226,164,0.14);
  box-shadow: 0 16px 28px rgba(0,0,0,0.28);
  color: rgba(255,234,255,0.86);
  font-weight: 700;
  font-size: 14px;
}
.pill--meme{
  font-weight: 900;
  letter-spacing: 0.02em;
}
.pill__dot{
  width:10px; height:10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--goldA) 40%, var(--pinkB) 75%);
  box-shadow: 0 0 18px rgba(255, 115, 203, 0.55);
}

.title{
  margin: 14px 0 10px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.title__glow{
  font-family: "Cinzel Decorative", ui-serif, Georgia, serif;
  letter-spacing: 0.04em;
  font-weight: 900;
  font-size: clamp(54px, 6vw, 86px);
  line-height: 1;
  background: linear-gradient(180deg, #ffe4ff 0%, #ffb8ea 35%, #ff66c3 70%, #ff2f9d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(70,0,60,0.8),
    0 0 24px rgba(255, 115, 203, 0.40),
    0 0 36px rgba(255, 183, 77, 0.16);
  position:relative;
}
.title__glow--meme{
  font-family: "Luckiest Guy", system-ui, sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgba(40,0,40,0.65);
  text-shadow:
    0 4px 0 rgba(40,0,40,0.65),
    0 0 26px rgba(255, 115, 203, 0.38),
    0 0 40px rgba(255, 183, 77, 0.16);
}
.title__glow::after{
  content:"";
  position:absolute;
  inset: -10px -12px;
  border-radius: 22px;
  background: radial-gradient(40% 60% at 50% 50%, rgba(255,214,122,0.14), transparent 70%);
  filter: blur(6px);
  z-index:-1;
}
.title__sub{
  font-weight: 800;
  font-size: 20px;
  color: rgba(255,234,255,0.86);
}
.lead{
  margin: 0 0 18px;
  color: rgba(255,234,255,0.78);
  font-size: 18px;
  max-width: 62ch;
}
.lead--big{font-size: 19px}
.lead strong{color: rgba(255,232,255,0.95)}

.cta{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin: 14px 0 18px;
}

.meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.meta--big .meta__value{font-size: 16px}

.meme-strip{
  margin-top: 22px;
  border-radius: var(--r22);
  border: 1px solid rgba(255,226,164,0.12);
  background: rgba(255,255,255,0.05);
  overflow:hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}
.meme-strip__inner{
  display:flex;
  gap: 22px;
  padding: 12px 14px;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: 0.03em;
  animation: marquee 18s linear infinite;
}
@keyframes marquee{
  0%{transform: translateX(0)}
  100%{transform: translateX(-50%)}
}
.meta__item{
  border-radius: var(--r22);
  padding: 14px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,226,164,0.12);
  box-shadow: 0 16px 30px rgba(0,0,0,0.26);
}
.meta__label{
  color: rgba(255,232,255,0.65);
  font-size: 12px;
  font-weight: 700;
}
.meta__value{
  margin-top: 4px;
  font-weight: 900;
  color: rgba(255,232,255,0.95);
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 12px;
  word-break: break-all;
}

/* Banner frame removed from pages (kept assets on disk) */
.hero__art{display:none}
.frame{display:none}
.frame__banner{display:none}

.sparkles{
  position:absolute;
  inset: -10px -10px -10px -10px;
  pointer-events:none;
  overflow: hidden;
  border-radius: 30px;
}
.sparkle{
  position:absolute;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,214,122,0.85) 45%, rgba(255,99,192,0.65) 78%, transparent 82%);
  filter: drop-shadow(0 0 10px rgba(255,214,122,0.35));
  opacity: 0;
  animation: pop 2.2s ease-in-out infinite;
}
@keyframes pop{
  0%{opacity:0; transform: translateY(10px) rotate(45deg) scale(0.8)}
  20%{opacity:0.95}
  55%{opacity:0.45}
  100%{opacity:0; transform: translateY(-32px) rotate(45deg) scale(1.2)}
}

.section{
  padding: 68px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border-top: 1px solid rgba(255,226,164,0.10);
  border-bottom: 1px solid rgba(255,226,164,0.10);
}
.section__title{
  margin: 0 0 18px;
  font-family: "Cinzel Decorative", ui-serif, Georgia, serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  font-size: 38px;
  background: linear-gradient(180deg, #fff 0%, var(--goldA) 60%, var(--pinkA) 120%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow: 0 0 20px rgba(255, 115, 203, 0.18);
}
.section__lead{
  margin: -6px 0 22px;
  color: var(--muted);
  font-size: 18px;
  max-width: 70ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,226,164,0.12);
  border-radius: var(--r22);
  padding: 20px 20px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}
.card h3{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: 18px;
}
.card p{
  margin: 0;
  color: rgba(255,234,255,0.74);
  font-size: 16px;
}

.how{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items:start;
}
.steps{
  margin:0;
  padding: 0 0 0 18px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.steps li{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,226,164,0.12);
  border-radius: var(--r22);
  padding: 18px 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
}
.step__head{
  font-weight: 800;
  font-size: 18px;
  color: rgba(255,234,255,0.86);
}
.step__body{margin-top: 8px; color: rgba(255,234,255,0.70); font-size: 15px}

.panel{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,226,164,0.14);
  border-radius: var(--r22);
  padding: 18px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.30);
}
.panel__title{
  margin: 0 0 10px;
}
.panel__title.heading-like-sub{
  margin-bottom: 12px;
}
.linkgrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.linkcard{
  border-radius: 18px;
  padding: 14px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,226,164,0.12);
  transition: transform 120ms ease, background 120ms ease;
}
.linkcard:hover{
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255,115,203,0.12), rgba(255,255,255,0.03));
}
.linkcard__kicker{font-size: 12px; color: var(--muted2); font-weight: 900; letter-spacing: 0.02em}
.linkcard__title{font-size: 18px; font-weight: 900; margin-top: 3px}
.linkcard__sub{font-size: 12px; color: var(--muted2); margin-top: 6px}

.ca{
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,226,164,0.12);
}
.ca__label{font-weight: 900; font-size: 12px; color: rgba(255,234,255,0.74)}
.ca__row{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top: 8px;
}
.ca__value{
  flex: 1;
  padding: 13px 13px;
  border-radius: 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,226,164,0.14);
}
.ca__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.ca__actions .btn{
  flex: 1 1 148px;
  justify-content: center;
}

.tiny{font-size: 12px; color: var(--muted2); margin-top: 10px; min-height: 16px}

.tok{
  display:grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}
.tok .panel{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.tok .panel .bullets{
  margin-top: auto;
}
.tok__table{
  border-radius: var(--r22);
  overflow:hidden;
  border: 1px solid rgba(255,226,164,0.12);
  box-shadow: 0 24px 55px rgba(0,0,0,0.30);
}
.row{
  display:grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 12px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,226,164,0.10);
}
.row:nth-child(odd){background: rgba(255,255,255,0.04)}
.row:last-child{border-bottom:0}
.k{color: rgba(255,234,255,0.68); font-weight: 900}
.v{font-weight: 900; font-size: 16px}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,232,255,0.74);
}
.bullets li{margin: 8px 0}

.footer{
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255,226,164,0.10);
  background: rgba(0,0,0,0.10);
}
.footer--page{
  background: transparent;
  border-top: 1px solid rgba(255,226,164,0.10);
  margin-top: 44px;
  padding: 26px 0 0;
}
.footer--page .footer__inner{padding-top: 18px}

/* Page layouts */
.page{
  padding: 44px 0 24px;
}
.page__head{
  margin: 16px 0 22px;
}
.page__tag{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,226,164,0.12);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}
/* Section titles = same treatment as hero “BOOBS” (title__glow + title__glow--meme) */
.page__title.title__glow{
  font-size: clamp(40px, 5.5vw, 68px);
  margin: 12px 0 10px;
}
.page__lead{
  margin: 0;
  max-width: 52ch;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255,234,255,0.86);
}
.page__lead strong{
  color: rgba(255,234,255,0.96);
}

/* About: simple centered column (larger) */
#about.section{
  padding-top: 88px;
  padding-bottom: 96px;
}
.about-simple{
  max-width: 920px;
  margin: 0 auto;
}
.about-simple .page__head{
  margin-bottom: 40px;
}
.about-simple .page__tag{
  font-size: 13px;
  padding: 10px 16px;
}
.about-simple .page__title.title__glow{
  font-size: clamp(48px, 6.5vw, 84px);
}
.about-simple .page__lead{
  max-width: 62ch;
  font-size: 22px;
  line-height: 1.5;
}
.about-simple__body{
  font-size: 20px;
  line-height: 1.68;
  color: rgba(255,234,255,0.78);
}
.about-simple__body p{
  margin: 0 0 1.15em;
}
.about-simple__body p:last-child{
  margin-bottom: 0;
}
.about-simple__body strong{
  color: rgba(255,234,255,0.95);
}
.about-simple__list{
  margin: 1.4em 0 0;
  padding-left: 1.4em;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,234,255,0.76);
}
.about-simple__list li{
  margin: 0.55em 0;
}

/* Pump.fun deploy proof (under About) */
.pump-proof__inner{
  max-width: 920px;
  margin: 0 auto;
}
.pump-proof .page__head{
  margin-bottom: 28px;
}
.pump-proof .page__title.title__glow{
  font-size: clamp(40px, 5.2vw, 72px);
}
.pump-proof__body{
  font-size: 20px;
  line-height: 1.68;
  color: rgba(255, 234, 255, 0.78);
}
.pump-proof__body p{
  margin: 0 0 1.1em;
}
.pump-proof__body strong{
  color: rgba(255, 234, 255, 0.95);
}
.pump-proof__note{
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 234, 255, 0.68);
  padding: 14px 18px;
  border-radius: var(--r22);
  border: 1px solid rgba(255, 226, 164, 0.14);
  background: rgba(0, 0, 0, 0.22);
  margin-bottom: 1.35em !important;
}
.pump-proof__figure{
  margin: 1.5em 0 1.25em;
  padding: 0;
  border-radius: var(--r22);
  overflow: hidden;
  border: 1px solid rgba(255, 226, 164, 0.14);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.25);
}
.pump-proof__figure img{
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.pump-proof__caption{
  margin: 0;
  padding: 12px 16px 14px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 234, 255, 0.62);
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 226, 164, 0.10);
}
.pump-proof__links{
  margin-top: 8px;
}
.pump-proof__links .btn{
  margin-bottom: 12px;
}
.pump-proof__hint{
  margin: 0;
  max-width: 62ch;
  line-height: 1.5;
}

/* Gallery / “bounce room”: Ken Burns, glow, shine (toned down when prefers-reduced-motion) */
.tits-section{
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 226, 164, 0.10);
  border-bottom: 1px solid rgba(255, 226, 164, 0.10);
  background:
    radial-gradient(700px 420px at 20% 30%, rgba(255, 115, 203, 0.14), transparent 55%),
    radial-gradient(640px 400px at 88% 70%, rgba(255, 183, 77, 0.10), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}
.sparkles--tits{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.tits-section .container{
  position: relative;
  z-index: 1;
}
.tits-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}
button.tits-card{
  appearance: none;
  width: 100%;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.tits-card{
  position: relative;
  display: block;
  border-radius: var(--r22);
  overflow: hidden;
  border: 1px solid rgba(255, 226, 164, 0.18);
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 115, 203, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.45);
  transform: translateZ(0);
  transition:
    transform 1.85s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 2s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 1.6s cubic-bezier(0.33, 1, 0.68, 1);
  animation: tits-card-in 720ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}
.tits-card:nth-child(1){ animation-delay: 0ms; }
.tits-card:nth-child(2){ animation-delay: 70ms; }
.tits-card:nth-child(3){ animation-delay: 140ms; }
.tits-card:nth-child(4){ animation-delay: 210ms; }
.tits-card:nth-child(5){ animation-delay: 280ms; }
.tits-card:nth-child(6){ animation-delay: 350ms; }
@keyframes tits-card-in{
  from{
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.tits-card:hover,
.tits-card:focus-visible{
  transform: translateY(-2px) scale(1.006);
  border-color: rgba(255, 183, 77, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 115, 203, 0.22),
    0 0 48px rgba(255, 54, 164, 0.16),
    0 26px 58px rgba(0, 0, 0, 0.5);
  outline: none;
}
.tits-card:focus-visible{
  outline: 2px solid rgba(255, 226, 164, 0.55);
  outline-offset: 3px;
}
.tits-card__frame{
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 2.1s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}
.tits-card:hover .tits-card__frame,
.tits-card:focus-visible .tits-card__frame{
  transform: scale(1.045);
}
.tits-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: tits-ken 26s ease-in-out infinite alternate;
  will-change: transform;
}
.tits-card:nth-child(even) .tits-card__img{
  animation-name: tits-ken-alt;
  animation-duration: 30s;
}
@keyframes tits-ken{
  0%{ transform: scale(1.06) translate(0%, 0%); }
  100%{ transform: scale(1.11) translate(-1.6%, -1.2%); }
}
@keyframes tits-ken-alt{
  0%{ transform: scale(1.06) translate(0%, 0%); }
  100%{ transform: scale(1.1) translate(1.6%, 1.2%); }
}
.tits-card__shine{
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.14) 48%,
    rgba(255, 214, 122, 0.12) 52%,
    transparent 62%
  );
  transform: translateX(-30%) rotate(8deg);
  animation: tits-shine 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0.65;
}
.tits-card:nth-child(3n) .tits-card__shine{
  animation-duration: 17s;
  animation-delay: 1.2s;
}
@keyframes tits-shine{
  0%, 100%{ transform: translateX(-45%) rotate(8deg); opacity: 0.35; }
  50%{ transform: translateX(35%) rotate(8deg); opacity: 0.85; }
}
.tits-card:hover .tits-card__img,
.tits-card:focus-visible .tits-card__img{
  animation-duration: 42s;
}
.tits-card:hover .tits-card__shine,
.tits-card:focus-visible .tits-card__shine{
  animation-duration: 22s;
}
@media (prefers-reduced-motion: reduce){
  .tits-card{
    animation: none;
    opacity: 1;
    transform: none;
  }
  .tits-card:hover,
  .tits-card:focus-visible{
    transform: none;
  }
  .tits-card__frame{
    transition: none;
  }
  .tits-card:hover .tits-card__frame,
  .tits-card:focus-visible .tits-card__frame{
    transform: none;
  }
  .tits-card__img{
    animation: none;
    transform: scale(1.04);
  }
  .tits-card__shine{
    animation: none;
    opacity: 0.2;
    transform: translateX(0) rotate(8deg);
  }
}

/* Gallery lightbox: same-page zoom */
.tits-lightbox{
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(24px, 4vw);
}
.tits-lightbox[hidden]{
  display: none !important;
}
body.tits-lightbox-open{
  overflow: hidden;
}
.tits-lightbox__backdrop{
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(3, 0, 8, 0.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1);
}
.tits-lightbox.is-open .tits-lightbox__backdrop{
  opacity: 1;
}
.tits-lightbox__dialog{
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1100px);
  max-height: min(92vh, 1400px);
  margin: auto;
  border-radius: var(--r22);
  border: 1px solid rgba(255, 226, 164, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 115, 203, 0.2),
    0 28px 90px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(255, 54, 164, 0.12);
  background: rgba(12, 0, 16, 0.5);
  transform: scale(0.96) translateY(14px);
  opacity: 0;
  transition:
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 580ms cubic-bezier(0.22, 1, 0.36, 1);
}
.tits-lightbox.is-open .tits-lightbox__dialog{
  transform: scale(1) translateY(0);
  opacity: 1;
}
.tits-lightbox__img{
  display: block;
  width: 100%;
  height: auto;
  max-height: min(88vh, 1320px);
  object-fit: contain;
  vertical-align: middle;
  border-radius: calc(var(--r22) - 2px);
  opacity: 0;
  transition: opacity 480ms cubic-bezier(0.22, 1, 0.36, 1) 90ms;
}
.tits-lightbox.is-open .tits-lightbox__img{
  opacity: 1;
}
.tits-lightbox__close{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 226, 164, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.tits-lightbox__close:hover{
  background: rgba(255, 115, 203, 0.35);
}
.tits-lightbox__close:active{
  transform: scale(0.96);
}
@media (prefers-reduced-motion: reduce){
  .tits-lightbox__backdrop{
    transition: opacity 220ms ease;
  }
  .tits-lightbox__dialog{
    transition: opacity 240ms ease;
    transform: none;
  }
  .tits-lightbox.is-open .tits-lightbox__dialog{
    transform: none;
  }
  .tits-lightbox__img{
    transition: opacity 200ms ease;
  }
}

/* Video section: animated mesh + gradient ring frame */
.video-section{
  position: relative;
  overflow: hidden;
  padding: 88px 0 100px;
  border-top: 1px solid rgba(255, 226, 164, 0.12);
}
.video-section__mesh{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% 22%, rgba(255, 115, 203, 0.35), transparent 58%),
    radial-gradient(780px 480px at 88% 78%, rgba(255, 183, 77, 0.22), transparent 55%),
    radial-gradient(600px 420px at 50% 50%, rgba(180, 40, 160, 0.18), transparent 62%),
    linear-gradient(165deg, rgba(8, 0, 12, 0.96) 0%, rgba(26, 0, 32, 0.98) 45%, rgba(8, 0, 14, 0.96) 100%);
}
.video-section__mesh::before{
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0.55;
  background: conic-gradient(
    from 120deg at 50% 50%,
    rgba(255, 115, 203, 0.22),
    rgba(255, 226, 164, 0.14),
    rgba(255, 54, 164, 0.18),
    rgba(255, 183, 77, 0.16),
    rgba(255, 115, 203, 0.22)
  );
  animation: video-mesh-rotate 42s linear infinite;
  filter: blur(42px);
}
.video-section__mesh::after{
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(2px 2px at 12% 18%, rgba(255, 255, 255, 0.45), transparent 55%),
    radial-gradient(2px 2px at 72% 42%, rgba(255, 214, 122, 0.35), transparent 55%),
    radial-gradient(1px 1px at 48% 68%, rgba(255, 255, 255, 0.28), transparent 55%);
  background-size: 100% 100%;
  animation: video-stars-drift 22s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
@keyframes video-mesh-rotate{
  to{ transform: rotate(360deg); }
}
@keyframes video-stars-drift{
  from{ transform: translate(0, 0) scale(1); opacity: 0.28; }
  to{ transform: translate(-2%, 1.5%) scale(1.03); opacity: 0.42; }
}
.video-section__orb{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.45;
  animation: video-orb-float 18s ease-in-out infinite alternate;
}
.video-section__orb--a{
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  left: -12%;
  top: 8%;
  background: radial-gradient(circle, rgba(255, 115, 203, 0.55), transparent 68%);
}
.video-section__orb--b{
  width: min(440px, 48vw);
  height: min(440px, 48vw);
  right: -8%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 183, 77, 0.42), transparent 68%);
  animation-delay: -6s;
  animation-duration: 22s;
}
@keyframes video-orb-float{
  from{ transform: translate(0, 0) scale(1); }
  to{ transform: translate(4%, -3%) scale(1.08); }
}
.video-section__inner{
  position: relative;
  z-index: 1;
}
.video-shell{
  position: relative;
  width: min(920px, 100%);
  margin: 12px auto 0;
  padding: 4px;
  border-radius: calc(var(--r30) + 6px);
  background: linear-gradient(
    124deg,
    var(--goldA),
    var(--pinkB),
    var(--goldB),
    var(--pinkA),
    var(--goldA)
  );
  background-size: 280% 280%;
  animation: video-border-flow 10s ease infinite;
  box-shadow:
    0 0 0 1px rgba(255, 226, 164, 0.25),
    0 0 60px rgba(255, 54, 164, 0.22),
    0 30px 70px rgba(0, 0, 0, 0.55);
}
.video-shell__ring{
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    145deg,
    rgba(255, 226, 164, 0.75),
    rgba(255, 115, 203, 0.35),
    rgba(255, 183, 77, 0.45),
    rgba(255, 226, 164, 0.65)
  );
  opacity: 0.35;
  animation: video-ring-pulse 4.5s ease-in-out infinite;
  z-index: 0;
}
@keyframes video-border-flow{
  0%, 100%{ background-position: 0% 40%; }
  50%{ background-position: 100% 60%; }
}
@keyframes video-ring-pulse{
  0%, 100%{ opacity: 0.22; transform: scale(1); }
  50%{ opacity: 0.45; transform: scale(1.008); }
}
.video-shell__frame{
  position: relative;
  z-index: 1;
  border-radius: var(--r30);
  overflow: hidden;
  background: #050008;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 226, 164, 0.12);
}
.video-shell__media{
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (prefers-reduced-motion: reduce){
  .video-section__mesh::before,
  .video-section__mesh::after,
  .video-section__orb{
    animation: none !important;
  }
  .video-shell{
    animation: none;
    background-position: 50% 50%;
  }
  .video-shell__ring{
    animation: none;
    opacity: 0.28;
    transform: none;
  }
}

.heading-like-sub{
  font-weight: 800;
  font-size: 20px;
  color: rgba(255,234,255,0.86);
  letter-spacing: 0.01em;
}

/* Buy page */
.buy{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items:start;
}
.steps--big li{padding: 20px 18px}
.panel--sticky{
  position: sticky;
  top: 86px;
}

/* Centered animated steps (no outside list numbers) */
.buy{
  grid-template-columns: 1fr;
  justify-items: center;
}
.steps--big{
  list-style: none;
  padding: 0;
  width: min(860px, 100%);
}
.steps--big li{
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(.2,.9,.2,1),
    box-shadow 180ms ease,
    border-color 180ms ease;
  will-change: transform, opacity;
}
.steps--big li[data-reveal-from="above"]:not(.is-visible){
  transform: translateY(-18px) scale(0.98);
}
.steps--big li[data-reveal-from="below"]:not(.is-visible){
  transform: translateY(18px) scale(0.98);
}
.steps--big li.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.steps--big li:hover{
  border-color: rgba(255,226,164,0.22);
  box-shadow: 0 26px 70px rgba(0,0,0,0.34);
}
.steps--big .step__head{
  font-size: 18px;
  letter-spacing: 0.01em;
  color: rgba(255,234,255,0.86);
}
.steps--big .step__body{
  font-size: 16px;
}

/* How to buy: single-column guide cards */
.how-buy{
  position: relative;
  overflow: hidden;
}
.how-buy__sol-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(720px 460px at 8% 18%, rgba(20, 241, 149, 0.08), transparent 58%),
    radial-gradient(620px 420px at 94% 52%, rgba(153, 69, 255, 0.11), transparent 58%),
    radial-gradient(900px 520px at 50% 100%, rgba(255, 115, 203, 0.05), transparent 62%);
}
.how-buy__grid-lines{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 226, 164, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 226, 164, 0.28) 1px, transparent 1px);
  background-size: 100% 48px, 64px 100%;
}
.how-buy__wrap{
  position: relative;
  z-index: 1;
}
.how-buy__head .page__lead{
  max-width: 44ch;
}
.how-buy .buy.how-buy__flow{
  width: 100%;
}
.how-buy .steps--big{
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.how-buy .steps--big li.how-buy__card{
  padding: 26px 26px 26px 28px;
  border-radius: var(--r30);
  border: 1px solid rgba(255, 226, 164, 0.13);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(12, 0, 18, 0.72) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 28px 56px rgba(0, 0, 0, 0.42);
  position: relative;
  backdrop-filter: blur(10px);
}
.how-buy .steps--big li.how-buy__card::before{
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(
    90deg,
    rgba(153, 69, 255, 0.95),
    rgba(20, 241, 149, 0.85),
    rgba(255, 115, 203, 0.8)
  );
  opacity: 0.92;
}
.how-buy__step-num{
  position: absolute;
  right: 6px;
  top: 4px;
  font-family: "Luckiest Guy", system-ui, sans-serif;
  font-size: clamp(52px, 11vw, 88px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: rgba(255, 115, 203, 0.14);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.how-buy__card-head{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.how-buy__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  color: rgba(255, 226, 164, 0.98);
  background: rgba(255, 115, 203, 0.1);
  border: 1px solid rgba(255, 226, 164, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.how-buy__title{
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(255, 234, 255, 0.94);
}
.how-buy__text{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: rgba(255, 234, 255, 0.76);
}
.how-buy__text strong{
  color: rgba(255, 234, 255, 0.94);
}
.how-buy__foot{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  justify-content: center;
  margin-top: 36px;
  padding-top: 8px;
  text-align: center;
}
.how-buy__foot-link{
  font-weight: 900;
  font-size: 14px;
  color: var(--pinkA);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.how-buy__foot-link:hover{
  color: #fff;
}
.how-buy__foot-sep{
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 226, 164, 0.35);
}
.how-buy__foot-hint{
  margin: 0 !important;
  min-height: 0 !important;
}

/* Callouts */
.callout{
  margin-top: 16px;
  border-radius: var(--r22);
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,183,77,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,226,164,0.14);
}
.callout__title{
  font-weight: 900;
  letter-spacing: 0.02em;
}
.callout__text{
  margin-top: 6px;
  color: rgba(255,234,255,0.74);
}
.callout--small{margin-top: 14px; padding: 14px}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__logo{
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,210,120,0.20);
  box-shadow: 0 12px 22px rgba(0,0,0,0.32);
}
.footer__name.title__glow{
  font-size: clamp(20px, 2.8vw, 28px);
  letter-spacing: 0.06em;
}
.footer__cluster{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 22px;
}
.footer__links{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,232,255,0.75);
  font-weight: 700;
  font-size: 13px;
}
.footer__links a:hover{color:#fff}
.footer__social{
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Age gate (18+): layout like classic warning screen, BOOBS colors & fonts */
.age-gate{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #030008;
  font-family: Inter, system-ui, sans-serif;
}
.age-gate[hidden]{
  display: none !important;
}
body.age-gate-open{
  overflow: hidden;
}
body.age-gate-open .skip{
  display: none !important;
}
.age-gate__box{
  width: min(520px, 100%);
  padding: 36px 28px 28px;
  border: 1px solid rgba(255, 226, 164, 0.28);
  border-radius: 12px;
  background: rgba(18, 0, 22, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 115, 203, 0.12),
    0 24px 80px rgba(0, 0, 0, 0.65);
  text-align: center;
}
.age-gate__brand{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.age-gate__logo{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 226, 164, 0.35);
  box-shadow: 0 8px 28px rgba(255, 54, 164, 0.2);
}
.age-gate__wordmark.title__glow{
  font-size: clamp(36px, 9vw, 52px);
  line-height: 1;
}
.age-gate__title{
  margin: 0 0 16px;
  font-size: clamp(20px, 4.5vw, 26px);
  font-weight: 800;
  color: rgba(255, 245, 255, 0.96);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.age-gate__eyebrow{
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 183, 77, 0.55);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 226, 164, 0.95);
  background: rgba(0, 0, 0, 0.25);
}
.age-gate__text{
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 234, 255, 0.78);
  text-align: left;
}
.age-gate__text strong{
  color: rgba(255, 234, 255, 0.95);
}
.age-gate__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.age-gate__btn{
  flex: 1 1 200px;
  cursor: pointer;
  padding: 16px 18px;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.age-gate__btn:active{
  transform: translateY(1px);
}
.age-gate__btn--enter{
  color: #240019;
  border: 2px solid rgba(255, 226, 164, 0.45);
  background: linear-gradient(180deg, #ff90d9, #ff3aa7);
  box-shadow: 0 12px 32px rgba(255, 54, 164, 0.25);
}
.age-gate__btn--enter:hover{
  box-shadow: 0 16px 40px rgba(255, 54, 164, 0.35);
}
.age-gate__btn--exit{
  color: rgba(255, 234, 255, 0.92);
  border: 2px solid rgba(255, 226, 164, 0.45);
  background: transparent;
}
.age-gate__btn--exit:hover{
  background: rgba(255, 226, 164, 0.08);
}
.age-gate__fine{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 234, 255, 0.55);
}
.age-gate__copy{
  margin: 0;
  font-size: 12px;
  color: rgba(255, 234, 255, 0.4);
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; gap: 18px}
  .hero__art{min-height: unset}
  .hero__grid--home{grid-template-columns: 1fr; gap: 28px}
  .hero__content{text-align:center; margin: 0 auto}
  .coin{width: min(320px, 72vw); padding: 16px}
  .hero__cta{justify-content:center; flex-wrap:wrap}
  .cards{grid-template-columns: 1fr}
  .how{grid-template-columns: 1fr}
  .tok{grid-template-columns: 1fr}
  .meta{grid-template-columns: 1fr}
  .nav{display:none}
  .linkgrid{grid-template-columns: 1fr}
  .footer__inner{flex-direction:column; align-items:flex-start}
  .footer__cluster{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
  .buy{grid-template-columns: 1fr}
  .panel--sticky{position: static}
  .tits-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (max-width: 520px){
  .tits-grid{
    grid-template-columns: 1fr;
  }
}
