/* ════════════════════════════════════════════
   $TJR — static translation
   ════════════════════════════════════════════ */

:root {
  --brand-sky: #4ab3f4;
  --brand-sky-deep: #1a8fd1;
  --brand-sky-bg: #c8e9fa;
  --brand-navy: #0a1628;
  --brand-cloud: #ffffff;
  --brand-gold: #f4c651;
  --brand-dark-text: #0d1a2e;

  --font-heading: 'Sora', 'Geist', system-ui, sans-serif;
  --font-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  background-color: var(--brand-sky-bg);
  color-scheme: light;
}

body {
  background-color: var(--brand-sky-bg);
  color: var(--brand-dark-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main {
  position: relative;
  overflow-x: hidden;
  background: #c8e9fa;
}

/* ── Icons ─────────────────────────────────── */
.icon { display: inline-block; vertical-align: middle; }
.icon-3 { width: .75rem; height: .75rem; }
.icon-3-5 { width: .875rem; height: .875rem; }
.icon-4 { width: 1rem; height: 1rem; }
.icon-4-5 { width: 1.125rem; height: 1.125rem; }
.icon-5 { width: 1.25rem; height: 1.25rem; }
.icon-7 { width: 1.75rem; height: 1.75rem; }
.icon-8 { width: 2rem; height: 2rem; }
.rel { position: relative; }

/* ════════════════ NAV ════════════════ */
.site-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: all .4s ease;
}
.site-nav.scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  background: rgba(200, 233, 250, .82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1.25rem;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #000;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: #475569;
  transition: color .2s ease;
}
.nav-link:hover { color: #000; }
.nav-buy {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  border-radius: 9999px;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  transition: transform .2s ease;
  background: linear-gradient(135deg, #1a8fd1 0%, #4ab3f4 100%);
  box-shadow: 0 6px 24px rgba(26, 143, 209, .4);
}
.nav-buy:hover { transform: scale(1.05); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* ════════════════ HERO BANNER ════════════════ */
.hero-banner {
  position: relative;
  overflow: hidden;
  height: 100svh;
  min-height: 560px;
  background-color: #6cb9ec;
  background-image: url('tjr-banner.jpg');
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}
.hero-top-tint {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 11rem;
  background: linear-gradient(to bottom, rgba(100, 190, 240, .38) 0%, transparent 100%);
}
.hero-bottom-fade {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(to bottom, transparent 0%, #d5edf8 100%);
}
/* ════════════════ CTA ════════════════ */
.cta-section {
  position: relative;
  z-index: 10;
  margin-top: -52vh;
  background: linear-gradient(
    180deg,
    rgba(213, 237, 248, 0) 0%,
    rgba(213, 237, 248, 0.5) 16%,
    #d7eef9 34%,
    #c8e9fa 70%,
    #b8e0f7 100%
  );
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.cta-inner {
  max-width: 36rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem;
  text-align: center;
}
.cta-title {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  color: #000;
  text-shadow: 0 2px 20px rgba(255, 255, 255, .5);
}
.cta-sub {
  margin-top: .75rem;
  max-width: 24rem;
  text-wrap: balance;
  font-weight: 500;
  color: #334155;
  font-size: clamp(.9rem, 2.2vw, 1.1rem);
}
.cta-sub strong { font-weight: 800; color: #000; }

.cta-card {
  margin-top: 1.75rem;
  width: 100%;
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid rgba(255, 255, 255, .92);
  box-shadow: 0 10px 60px rgba(74, 179, 244, .22), 0 2px 20px rgba(0, 0, 0, .05);
}
@media (min-width: 640px) {
  .cta-card { padding: 2rem; }
}
.cta-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

/* ── Countdown ─────────────────────────────── */
.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.live-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  background: #ecfdf5;
  padding: .25rem .75rem;
  border: 1px solid #a7f3d0;
  transition: background .15s, border-color .15s;
}
.live-pill:hover {
  background: #d1fae5;
  border-color: #6ee7b7;
}
.live-dot { position: relative; display: flex; height: .5rem; width: .5rem; }
.live-ping {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background: #34d399;
  opacity: .75;
  animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}
.live-core {
  position: relative;
  display: inline-flex;
  height: .5rem;
  width: .5rem;
  border-radius: 9999px;
  background: #10b981;
}
.live-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: #047857;
}
.countdown-digits {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.cd-box {
  position: relative;
  display: grid;
  place-items: center;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: .75rem;
  background: rgba(255, 255, 255, .85);
  border: 1.5px solid rgba(74, 179, 244, .3);
  box-shadow: 0 2px 12px rgba(74, 179, 244, .1);
}
.cd-num {
  font-family: var(--font-heading);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: #000;
  line-height: 1;
}
.cd-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #64748b;
}
.cd-colon {
  padding-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: #000;
  transition: opacity .3s ease;
}
.cd-colon.dim { opacity: .15; }
.countdown-note {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: .01em;
}
@media (min-width: 640px) {
  .cd-box { height: 4rem; width: 4rem; }
}

/* ── Interact button ───────────────────────── */
.interact-button,
.kaC4xqC2.cCDYd6l4 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
  cursor: pointer;
  border-radius: 1rem;
  padding: 15px 36px;
  min-width: 220px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  transition: transform .3s ease;
  background: linear-gradient(135deg, #0e76d8 0%, #4ab3f4 100%);
  box-shadow: 0 8px 36px -4px rgba(14, 118, 216, .55), 0 2px 12px rgba(0, 0, 0, .1);
  letter-spacing: .01em;
}
.interact-button:hover,
.kaC4xqC2.cCDYd6l4:hover { transform: scale(1.04); }
.interact-button:active,
.kaC4xqC2.cCDYd6l4:active { transform: scale(.97); }

/* ── Copy address ──────────────────────────── */
.copy-address {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, .7);
  padding: .5rem 1rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: #334155;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color .2s ease, border-color .2s ease;
}
.copy-address:hover {
  border-color: rgba(74, 179, 244, .5);
  background: rgba(255, 255, 255, .9);
}
.ca-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand-sky-deep);
}
.ca-full { display: none; }
.ca-short { display: inline; }
@media (min-width: 640px) {
  .ca-full { display: inline; }
  .ca-short { display: none; }
}
.ca-icon { display: inline-flex; width: 1rem; height: 1rem; }
.ca-icon svg { width: 1rem; height: 1rem; }
.copy-icon { color: #94a3b8; transition: color .2s ease; }
.copy-address:hover .copy-icon { color: var(--brand-sky-deep); }
.check-icon { color: #10b981; }

/* ════════════════ CHART ════════════════ */
.chart-section {
  padding: 2.5rem 1rem;
  background: linear-gradient(180deg, #dff2fd 0%, #cfe8f8 100%);
}
.chart-inner { max-width: 72rem; margin: 0 auto; }
.chart-head {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.chart-title {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  color: #000;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}
.chart-sub {
  margin-top: .25rem;
  font-size: .875rem;
  font-weight: 500;
  color: #64748b;
}
.chart-dex-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .375rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .6);
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #334155;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all .2s ease;
}
.chart-dex-link:hover { background: rgba(255, 255, 255, .9); color: #000; }
.chart-frame {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  border: 1.5px solid rgba(74, 179, 244, .2);
}
.chart-frame-inner { height: min(600px, 70vw); }
.chart-frame-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (min-width: 640px) {
  .chart-section { padding: 3.5rem 1.5rem; }
  .chart-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* ════════════════ GIVEAWAY ════════════════ */
.giveaway-section {
  padding: 2.5rem 1rem;
  background: linear-gradient(180deg, #cfe8f8 0%, #c4e2f5 100%);
}
.giveaway-inner { max-width: 72rem; margin: 0 auto; }
.giveaway-head {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.giveaway-title {
  text-wrap: balance;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  color: #000;
  font-size: clamp(2.4rem, 7vw, 5rem);
}
.gradient-text {
  background: linear-gradient(90deg, #0e76d8, #4ab3f4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.giveaway-sub {
  margin: .75rem auto 0;
  max-width: 28rem;
  text-wrap: balance;
  font-size: 1rem;
  color: #475569;
}
.steps-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
.step-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform .3s ease;
  background: rgba(255, 255, 255, .6);
  border: 1.5px solid rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(74, 179, 244, .1);
}
.step-card:hover { transform: translateY(-.25rem); }
.step-num {
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  color: rgba(74, 179, 244, .09);
}
.step-icon {
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  color: #fff;
  background: linear-gradient(135deg, #0e76d8, #4ab3f4);
  box-shadow: 0 4px 14px rgba(14, 118, 216, .28);
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
.step-body {
  margin-top: .25rem;
  font-size: .875rem;
  line-height: 1.625;
  color: #64748b;
}
@media (min-width: 640px) {
  .giveaway-section { padding: 3.5rem 1.5rem; }
  .giveaway-sub { font-size: 1.125rem; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.giveaway-cta-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}
.cta-scan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, .58);
  border: 1.5px solid rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 28px rgba(74, 179, 244, .1);
}
.scan-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #000;
}
.scan-card-sub {
  margin-top: .375rem;
  margin-bottom: 1.25rem;
  font-size: .875rem;
  color: #64748b;
}
.announce-wrap { display: block; }
.announce-card {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  transition: transform .3s ease;
  border: 1.5px solid rgba(255, 255, 255, .85);
  box-shadow: 0 4px 28px rgba(74, 179, 244, .12);
}
.announce-card:hover { transform: translateY(-.25rem); }
.announce-img { width: 100%; }
.announce-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: rgba(255, 255, 255, .88);
}
.announce-view {
  font-size: .75rem;
  font-weight: 600;
  color: #475569;
}
.announce-handle {
  border-radius: 9999px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0e76d8, #4ab3f4);
}
@media (min-width: 1024px) {
  .giveaway-cta-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

/* ════════════════ COLLAGE ════════════════ */
.collage-section {
  overflow: hidden;
  padding: 2.5rem 1rem 0;
  background: linear-gradient(180deg, #c4e2f5 0%, #b0d8f0 100%);
}
.collage-inner { max-width: 72rem; margin: 0 auto; }
.collage-label {
  margin-bottom: 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.collage-label.is-visible { opacity: 1; transform: none; }
.collage-handle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #000;
}
.collage-role {
  margin-top: .125rem;
  font-size: .875rem;
  font-weight: 500;
  color: #64748b;
}
.mosaic {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  opacity: 0;
  transform: rotate(var(--rot)) translateY(40px) scale(.95);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--i) * 65ms);
  border: 2.5px solid rgba(255, 255, 255, .75);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
}
.mosaic.is-visible .mosaic-item {
  opacity: 1;
  transform: rotate(var(--rot)) scale(1);
}
.mosaic-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.mosaic-item:hover img { transform: scale(1.04); }
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .1), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.span-1x1 { grid-column: span 1; grid-row: span 1; }
.span-1x2 { grid-column: span 1; grid-row: span 2; }
.span-2x1 { grid-column: span 2; grid-row: span 1; }
@media (min-width: 640px) {
  .collage-section { padding: 3rem 1.5rem 0; }
  .collage-handle { font-size: 1.5rem; }
}

/* ════════════════ FOOTER ════════════════ */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .3);
  padding: 2rem 1.25rem;
  background: #b0d8f0;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #000;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .375rem 1.25rem;
  font-size: .875rem;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-weight: 600;
  color: #475569;
  transition: color .2s ease;
}
.footer-link:hover { color: #000; }
.footer-disclaimer {
  max-width: 24rem;
  font-size: .75rem;
  line-height: 1.625;
  color: #64748b;
}
.footer-copy {
  font-size: .75rem;
  color: #94a3b8;
}

/* ════════════════ REVEAL ════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ════════════════ KEYFRAMES ════════════════ */
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
