/* Trust Wallet Community — black & white */
:root {
  --bg: #000;
  --bg-elevated: #0d0d0d;
  --bg-card: #1c1c1c;
  --accent: #fff;
  --accent-dim: rgba(255, 255, 255, 0.12);
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.1);
  --font: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* Splitting.js — hero title word reveal */
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.15em;
  line-height: 1.2;
}
.hero-title .word .char {
  display: inline-block;
}

/* Gradient mesh background */
.gradient-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 90%, rgba(255,255,255,0.02) 0%, transparent 50%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header — minimal, no ticker */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  text-decoration: none;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav a:hover { color: var(--text); }
.nav a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width 0.3s ease;
}
.nav a:hover::after { width: 100%; }
.btn-nav {
  background: var(--text);
  color: var(--bg) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Hero — split layout */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content {
  max-width: 540px;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--text);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-subheadline {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.hero-meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-meta .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.hero-meta .price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual — card stack */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-card-stack {
  position: relative;
  width: 280px;
  height: 320px;
}
.hero-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.hero-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.hero-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.hero-card-1 {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
}
.hero-card-2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(3deg);
}
.hero-card-3 {
  bottom: 0;
  right: 0;
  transform: rotate(-3deg);
}

/* Stats bar */
.stats-bar {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Buttons */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--text);
  color: var(--bg);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.btn-large { padding: 1.25rem 2.5rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

/* Sections */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.tag {
  display: inline-block;
  background: transparent;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
}
.section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Benefit cards — 2x2 grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--text);
  transition: height 0.3s ease;
}
.benefit-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.benefit-card:hover::before {
  height: 100%;
}
.benefit-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.benefit-card-icon svg {
  flex-shrink: 0;
}
.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.benefit-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.benefit-tags span {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* How it works */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
}
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.step p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}
.step-arrow {
  color: var(--text-muted);
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 1.5rem;
  opacity: 0.6;
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.3s ease;
}
.event-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}
.event-city {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 0.5rem;
}
.event-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
  max-width: 640px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary:hover {
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-muted);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Pricing — pass with auto 3D rotation */
.pricing-pass-wrap {
  margin: 3rem auto 0;
  perspective: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backface-visibility: hidden;
}
.pricing-pass-3d {
  transform-style: preserve-3d;
  animation: pass-rotate-3d 10s ease-in-out infinite;
  will-change: transform;
}
@keyframes pass-rotate-3d {
  0% { transform: rotateY(-20deg) rotateX(12deg) rotateZ(-1deg); }
  20% { transform: rotateY(-5deg) rotateX(18deg) rotateZ(1deg); }
  40% { transform: rotateY(15deg) rotateX(8deg) rotateZ(-1deg); }
  60% { transform: rotateY(20deg) rotateX(15deg) rotateZ(1deg); }
  80% { transform: rotateY(0deg) rotateX(10deg) rotateZ(-1deg); }
  100% { transform: rotateY(-20deg) rotateX(12deg) rotateZ(-1deg); }
}
@keyframes pass-rotate-3d-mobile {
  0%, 100% { transform: rotateY(-15deg) rotateX(10deg); }
  50% { transform: rotateY(15deg) rotateX(5deg); }
}
.pricing-pass {
  display: flex;
  width: 400px;
  min-height: 320px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.pass-main {
  flex: 1;
  padding: 1.75rem 1.5rem;
  color: #000;
  border-right: 2px dashed rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.pass-header {
  margin-bottom: 1rem;
}
.pass-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  display: block;
  margin-bottom: 0.25rem;
}
.pass-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}
.pass-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.pass-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
}
.pass-period {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
}
.pass-dash {
  height: 2px;
  background: linear-gradient(90deg, rgba(0,0,0,0.3), transparent);
  margin: 0.5rem 0 1rem;
}
.pass-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.pass-features li {
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  color: #333;
  font-size: 0.8rem;
  position: relative;
}
.pass-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000;
  font-weight: 700;
  font-size: 0.7rem;
}
.pass-cta {
  margin-top: auto;
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  font-size: 0.875rem !important;
  padding: 0.75rem 1rem !important;
}
.pass-cta:hover {
  background: #333 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}
.pass-stub {
  width: 90px;
  background: #1c1c1c;
  color: #fff;
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
}
.stub-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stub-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
}
.pricing-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.5rem;
}

/* Final CTA */
.cta-final {
  text-align: center;
  padding: 6rem 2rem;
}
.cta-final h2 {
  margin-bottom: 0.75rem;
}
.cta-final p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.footer nav { display: flex; gap: 2rem; }
.footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}
.footer a:hover { color: var(--text); }
.footer p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* VanillaTilt glare — subtle white */
[data-tilt] .js-tilt-glare {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  border-radius: inherit;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: none;
  }
  .hero-meta {
    justify-content: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .hero {
    padding: 5rem 1.25rem 3rem;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .pricing-pass {
    flex-direction: column;
    width: 340px;
    min-height: auto;
  }
  .pass-main {
    border-right: none;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.2);
  }
  .pass-stub {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
  }
  .pricing-pass-3d {
    animation: pass-rotate-3d-mobile 8s ease-in-out infinite;
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .header { padding: 1rem; }
  .nav { display: none; }
  .hero-cta { flex-direction: column; }
  .events-grid { grid-template-columns: 1fr; }
}
