/* 
   BYN Landing Page Premium Design System
   Sleek Dark Mode, Gold Accents, Apple-like Precision, Responsive Grids.
*/

:root {
  /* Colors */
  --bg-primary: #050505;
  --bg-secondary: #0A0A0A;
  --bg-surface: #111111;
  --bg-surface-glass: rgba(17, 17, 17, 0.7);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  
  --text-primary: #FFFFFF;
  --text-secondary: #8E8E93;
  --text-muted: #555555;
  
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #7A5B10;
  
  /* Rarity Tiers */
  --genesis: #CC66FF;
  --mythic: #E5E5E5;
  --legendary: #D4AF37;
  --elite: #6AB0F5;
  --rare: #C0C0C0;
  --common: #666666;
  
  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --font-sans: 'Inter', -apple-system, sans-serif;
  
  /* Layout */
  --container-width: 1140px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ── RESET & GLOBAL STYLES ────────────────────────────────────────────────── */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── CONTAINER ───────────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── SECTIONS ────────────────────────────────────────────────────────────── */

.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--border);
}

.gold-text {
  color: var(--gold);
}

.tracking-wide {
  letter-spacing: 2px;
}

.max-w-2xl {
  max-width: 42rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.section-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.btn-glass {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 11px;
}

.btn-block {
  width: 100%;
}

/* ── DOWNLOAD BADGES ─────────────────────────────────────────────────────── */

.download-badge {
  display: inline-block;
  width: 135px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

.download-badge:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.badge-svg {
  width: 100%;
  height: 100%;
}

/* ── AMBIENT GLOWS ───────────────────────────────────────────────────────── */

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.4;
}

.glow-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
  top: 10%;
  left: -100px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(106, 176, 245, 0.15) 0%, transparent 70%);
  bottom: 20%;
  right: -100px;
}

.glow-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(204, 102, 255, 0.08) 0%, transparent 70%);
  top: 30%;
  left: 20%;
}

.glow-4 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
}

.glow-5 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232, 69, 69, 0.07) 0%, transparent 70%);
  top: 20%;
  right: 15%;
}

/* ── HEADER & NAVIGATION ──────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background-color: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 120px; /* Decisamente più grande */
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
  mix-blend-mode: screen;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--text-primary);
}

/* ── HERO SECTION ────────────────────────────────────────────────────────── */

.hero-section {
  padding-top: 220px;
  padding-bottom: 80px;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  z-index: 1;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  z-index: 1;
}

/* ── CSS IPHONE MOCKUP ────────────────────────────────────────────────────── */

.phone-mockup {
  position: relative;
  width: 290px;
  height: 590px;
  background-color: #000;
  border-radius: 40px;
  border: 4px solid #1c1c1e;
  box-shadow: 
    0 0 0 2px #3a3a3c,
    0 25px 50px -12px rgba(0, 0, 0, 0.7);
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.phone-flat {
  box-shadow: none;
  border-color: #111;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background-color: #000;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #1c1c1e;
  border-radius: 2px;
  z-index: 11;
}

.phone-screen {
  flex-grow: 1;
  background-color: var(--bg-primary);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

/* Internal Mock screens styling */
.app-screen {
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  padding: 20px 14px 14px 14px;
  font-family: var(--font-sans);
}

.app-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  padding: 0 4px;
}

.bar-logo-img {
  height: 20px;
  mix-blend-mode: screen;
}

/* APP: DETAIL VIEW (Matches Official App Detail Screen) */
.app-detail-view {
  background: #000;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
}

.app-top-bar-detail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 16px 14px 0 14px;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.detail-logo-img {
  height: 18px;
  width: auto;
  mix-blend-mode: screen;
}

.bar-back-btn, .bar-like-btn {
  font-size: 16px;
  cursor: pointer;
  color: var(--text-primary);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
}

.detail-number-container {
  position: relative;
  height: 270px; /* Ingrandito da 230px */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0800; /* Legendary theme background */
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}

.detail-radial-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
}

.detail-diagonal-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 8px);
}

.detail-number-val {
  font-family: var(--font-display);
  font-size: 84px; /* Ingrandito da 72px */
  font-weight: 100;
  color: #fff;
  letter-spacing: -4px;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 50px rgba(212, 175, 55, 0.4);
}

.detail-scroll-area {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding: 0 14px 14px 14px;
  scrollbar-width: none;
}

.detail-scroll-area::-webkit-scrollbar {
  display: none;
}

.detail-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-category-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.detail-score-display {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

.detail-story-card, .detail-owner-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-section-title {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.story-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story-label {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--text-secondary);
}

.story-value {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.detail-owner-card {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.owner-avatar-detail {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}

.owner-meta-detail {
  display: flex;
  flex-direction: column;
}

.owner-lbl {
  font-size: 7px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.owner-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.detail-btn-buy {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 12px 0;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.detail-btn-buy:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.detail-stats-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.detail-stat-col {
  flex: 1;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-stat-col .stat-icon {
  font-size: 10px;
  color: var(--gold);
  margin-bottom: 2px;
}

.detail-stat-col .stat-val {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.detail-stat-col .stat-lbl {
  font-size: 6px;
  color: var(--text-secondary);
}

/* APP: DAILY HUB (Official Daily Screen Mockup) */
.app-daily-screen {
  background: #000;
  display: flex;
  flex-direction: column;
  padding: 16px 14px;
}

.app-top-bar-daily {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 24px;
  margin-bottom: 12px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.daily-logo-img {
  height: 20px;
  width: auto;
  mix-blend-mode: screen;
}

.daily-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.daily-scroll-area {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding-right: 2px;
}

.daily-scroll-area::-webkit-scrollbar {
  width: 3px;
}
.daily-scroll-area::-webkit-scrollbar-thumb {
  background-color: var(--border);
  border-radius: 2px;
}

.daily-live-stats-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  flex-shrink: 0;
}

.live-indicator-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-indicator 2s infinite;
}

@keyframes pulse-indicator {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.live-stats-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.daily-sub-lbl {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: -6px;
  flex-shrink: 0;
}

.daily-discovery-box {
  background: var(--bg-surface);
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
}

.discovery-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1.2;
}

.discovery-tag {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  background-color: rgba(212, 175, 55, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.discovery-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 100;
  color: var(--gold);
  letter-spacing: -1.5px;
}

.discovery-score {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--text-secondary);
}

.discovery-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex: 0.8;
}

.discovery-price-lbl {
  font-size: 8px;
  color: var(--text-secondary);
}

.discovery-price-val {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.discovery-btn-details {
  background-color: #fff;
  color: #000;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  margin-top: 4px;
}

.daily-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
  flex-shrink: 0;
}

.daily-tabs-row {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.daily-chip {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.daily-chip.active {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

.daily-popular-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.daily-popular-tile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  animation: fadeInUp 0.3s ease forwards;
}

.daily-popular-tile .tile-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.daily-popular-tile .tile-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.daily-popular-tile .tile-badge {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}

.daily-popular-tile .tile-metric {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.daily-purchases-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.daily-purchase-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.daily-purchase-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-family: var(--font-display);
  font-weight: 700;
}

.daily-purchase-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.daily-purchase-text {
  font-size: 9px;
  color: #fff;
}

.daily-purchase-text strong {
  color: var(--gold);
}

.daily-purchase-time {
  font-size: 7px;
  color: var(--text-muted);
}

/* OFFICIAL NUMBER CARD MOCKUP DESIGN */
.byn-card {
  position: relative;
  width: 100%;
  aspect-ratio: 2.5 / 3.5;
  border-radius: 16px;
  padding: 3px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

/* Sizing the card on the Home Screen mockup specifically to match padding in the App */
.app-home-screen .byn-card {
  width: 86%;
  margin: 0 auto;
}

.byn-card-inner {
  height: 100%;
  width: 100%;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.byn-card-header {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-tier-text {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
}

.card-score-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
}

.byn-card-artwork {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-diagonal-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 8px);
}

.card-radial-glow {
  position: absolute;
  width: 120%;
  height: 120%;
}

.card-number-text {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: 48px;
  letter-spacing: -3px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.byn-card-owner {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
}

.owner-status {
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
}

.owner-val {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1px;
}

.byn-card-stats {
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-lbl {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.price-val {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
}

/* Card Rarity Specific Styles */
.legendary-theme-card {
  background: linear-gradient(135deg, #7a5b10, #D4AF37, #f3e5ab, #D4AF37, #7a5b10);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}
.legendary-theme-card .byn-card-inner { background: #0a0800; }
.legendary-theme-card .card-tier-text,
.legendary-theme-card .card-score-text,
.legendary-theme-card .owner-val,
.legendary-theme-card .price-val { color: var(--gold); }
.legendary-theme-card .card-radial-glow { background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%); }
.legendary-theme-card .card-number-text { text-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }


.genesis-theme-card {
  background: linear-gradient(135deg, #1a0030, #6600cc, #ff00ff, #00ffff, #6600cc, #1a0030);
  box-shadow: 0 10px 40px rgba(102, 0, 204, 0.3);
}
.genesis-theme-card .byn-card-inner { background: #04000a; }
.genesis-theme-card .card-tier-text,
.genesis-theme-card .card-score-text,
.genesis-theme-card .owner-val,
.genesis-theme-card .price-val { color: var(--genesis); }
.genesis-theme-card .card-radial-glow { background: radial-gradient(circle, rgba(204, 102, 255, 0.25) 0%, transparent 70%); }
.genesis-theme-card .card-number-text { text-shadow: 0 0 20px rgba(204, 102, 255, 0.6); }

/* Other card sizes / variations */
.card-mini-show {
  aspect-ratio: auto;
  height: 70px;
  padding: 6px 12px;
}

/* Guide Banner inside Mockup Home Screen */
.home-guide-banner {
  background-color: var(--bg-surface);
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px; /* Allineato a 20px dell'App */
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.home-guide-banner::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.04);
  border-radius: 50%;
}

.guide-banner-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.guide-icon {
  font-size: 10px;
  color: var(--gold);
}

.guide-banner-title {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
}

.guide-banner-desc {
  font-size: 8px;
  color: #fff;
  line-height: 1.4;
}

.guide-banner-btn {
  align-self: flex-start;
  background-color: #fff;
  color: #000;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.genesis-color { color: var(--genesis); }
.legendary-color { color: var(--legendary); }
.elite-color { color: var(--elite); }

/* ── RARITY TIERS GRID ───────────────────────────────────────────────────── */

.rarity-intro {
  text-align: left;
  margin-bottom: 60px;
}

.rarity-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tier-card {
  position: relative;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.tier-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.tier-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
}

.tier-score {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-secondary);
}

.tier-val {
  font-size: 24px;
  margin-bottom: 12px;
  color: #FFF;
}

.tier-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.tier-examples {
  display: flex;
  gap: 8px;
}

.ex-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Tier specific visuals */
.genesis-tier-card {
  border-color: rgba(204, 102, 255, 0.2);
}
.genesis-tier-card .tier-badge {
  background-color: rgba(204, 102, 255, 0.1);
  color: var(--genesis);
}

.mythic-tier-card {
  border-color: rgba(229, 229, 229, 0.15);
}
.mythic-tier-card .tier-badge {
  background-color: rgba(229, 229, 229, 0.1);
  color: var(--mythic);
}

.legendary-tier-card {
  border-color: rgba(212, 175, 55, 0.2);
}
.legendary-tier-card .tier-badge {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--legendary);
}

.elite-tier-card {
  border-color: rgba(106, 176, 245, 0.2);
}
.elite-tier-card .tier-badge {
  background-color: rgba(106, 176, 245, 0.1);
  color: var(--elite);
}

.rare-tier-card {
  border-color: rgba(192, 192, 192, 0.2);
}
.rare-tier-card .tier-badge {
  background-color: rgba(192, 192, 192, 0.1);
  color: var(--rare);
}

.common-tier-card .tier-badge {
  background-color: rgba(102, 102, 102, 0.1);
  color: var(--common);
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ── THE CONCEPT ─────────────────────────────────────────────────────────── */

.concept-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.concept-visual {
  display: flex;
  justify-content: center;
}

/* ── BUILD YOUR IDENTITY (HOME MOCKUP) ────────────────────────────────────── */

.identity-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.identity-visual {
  display: flex;
  justify-content: center;
}

.app-home-screen {
  background-color: var(--bg-primary);
}

.home-scroll-area {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto; /* Abilita lo scroll verticale per non rompere la schermata */
  padding-right: 2px;
  scrollbar-width: none;
}

.home-scroll-area::-webkit-scrollbar {
  display: none;
}

.home-section-label {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.card-small {
  aspect-ratio: auto;
  height: 100px;
  padding: 10px;
}

.card-mini-show {
  aspect-ratio: auto;
  height: 70px;
  padding: 6px 12px;
}

.card-mini-show .card-number-val {
  font-size: 32px;
  margin: 0;
}

.bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bar-username {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.bar-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
}

.byn-card-footer {
  padding: 6px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background-color: rgba(0, 0, 0, 0.3);
  text-align: left;
}

.card-footer-lbl {
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 1px;
  color: #2A2A2A;
  font-weight: 400;
}

.home-collection-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px; /* Allineato a 16px dell'App */
  padding: 14px 16px;
  margin-bottom: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.collection-banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.collection-icon-box {
  font-size: 14px;
  color: var(--gold);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.collection-lbl {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.collection-val {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.collection-arrow {
  font-size: 14px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.horizontal-scroll-mock {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  flex-shrink: 0;
}

.horizontal-scroll-mock::-webkit-scrollbar {
  display: none;
}

.mini-card-mock {
  flex-shrink: 0;
  width: 115px;
}

.mini-card-mock .byn-card-inner {
  height: 100%;
}

.mini-card-mock .card-number-text {
  font-size: 32px;
}

.genesis-theme {
  background-color: rgba(204, 102, 255, 0.05);
  border-color: rgba(204, 102, 255, 0.2);
  color: var(--genesis);
}

.legendary-theme {
  background-color: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  color: var(--legendary);
}

.elite-theme {
  background-color: rgba(106, 176, 245, 0.05);
  border-color: rgba(106, 176, 245, 0.2);
  color: var(--elite);
}

.rare-theme {
  background-color: rgba(192, 192, 192, 0.05);
  border-color: rgba(192, 192, 192, 0.2);
  color: var(--rare);
}

.common-theme {
  background-color: rgba(102, 102, 102, 0.05);
  border-color: rgba(102, 102, 102, 0.2);
  color: var(--common);
}

.identity-highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 24px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
}

.highlight-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: #FFF;
}

.highlight-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.identity-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-primary);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

/* ── PREMIUM VAULT / USER COLLECTION ─────────────────────────────────────── */

.vault-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.vault-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.vault-features-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-secondary);
}

.list-check {
  color: var(--gold);
  font-weight: bold;
}

.vault-visual {
  display: flex;
  justify-content: center;
}

/* App Screen: user Profile page layout */
/* APP SCREEN: PREMIUM VAULT (STORE SCREEN) */
.app-store-screen {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  padding: 20px 16px 14px 16px;
}

.app-top-bar-store {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  margin-bottom: 12px;
}

.store-logo-img {
  height: 24px;
  width: auto;
  mix-blend-mode: screen;
}

.store-bar-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.store-scroll-area {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: none;
}

.store-scroll-area::-webkit-scrollbar {
  display: none;
}

.store-promo-banner {
  display: flex;
  gap: 14px;
  background-color: #0C0C0C;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 14px 16px;
  align-items: flex-start;
}

.promo-icon-wrapper {
  color: var(--gold);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.promo-icon-svg {
  width: 22px;
  height: 22px;
}

.promo-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.promo-desc {
  font-size: 9px;
  color: var(--text-secondary);
  line-height: 1.35;
}

.promo-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
}

.guide-icon-svg {
  width: 10px;
  height: 10px;
}

.store-tabs-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.store-tab {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 0;
  color: var(--text-secondary);
  cursor: pointer;
}

.store-tab.active {
  color: #fff;
  border-bottom: 2.5px solid #fff; /* White line to match AppTheme.primary */
}

.store-search-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-input-box {
  flex-grow: 1;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

.search-icon-wrapper {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon-svg {
  width: 14px;
  height: 14px;
}

.search-placeholder {
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.8;
}

.filter-btn-box {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.filter-icon-svg {
  width: 16px;
  height: 16px;
}

.store-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 6px;
  padding: 0 4px;
}

.results-lbl {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
}

.results-count {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}

.store-results-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* PREMIUM NUMBER TILE STYLE (Official app style) */
.premium-number-tile {
  background-color: #0c0c0c;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.05);
  flex-shrink: 0;
}

.legendary-tile {
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.tile-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tile-number-display {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: 28px;
  letter-spacing: -1.5px;
  line-height: 1;
}

.tile-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.tile-badge-category {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 5px;
  border-radius: 4px;
}

.gold-bg-trans {
  background-color: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.tile-score-text {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.tile-action-btn {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gold-bg-btn {
  background-color: #fff; /* Bianco nell'App */
  color: #000;
}

.gold-bg-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}



/* ── WHY BYN GRID ────────────────────────────────────────────────────────── */

.why-byn-intro {
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.why-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.why-title {
  font-size: 16px;
  color: #FFF;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.why-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.why-item:hover .why-icon-wrapper {
  background-color: rgba(212, 175, 55, 0.1);
  color: #FFF;
}

/* ── FAQ ACCORDION ───────────────────────────────────────────────────────── */

.faq-intro {
  margin-bottom: 40px;
}

.faq-list {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background-color: var(--bg-surface);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  transition: var(--transition-fast);
}

.faq-icon-arrow {
  color: var(--gold);
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(45deg);
}

/* ── CONTACT US FORM ─────────────────────────────────────────────────────── */

.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-form-wrapper {
  background-color: var(--bg-surface-glass);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.form-group input, 
.form-group textarea {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: #FFF;
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.05);
}

.form-status {
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  margin-top: 8px;
}

.form-status.success {
  color: #4cd964;
}

.form-status.error {
  color: #ff3b30;
}



/* ── FOOTER ──────────────────────────────────────────────────────────────── */

.site-footer {
  background-color: #000;
  border-top: 1px solid var(--border);
  padding-top: 60px;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: row; /* Affianca il logo e i testi orizzontalmente */
  align-items: center; /* Centra verticalmente */
  gap: 32px;
  max-width: 600px;
}

.footer-brand-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .logo-img {
  height: 180px; /* Molto più grande per rendere leggibile la scritta sotto BYN */
}

.brand-tagline {
  font-size: 13px;
  line-height: 1.5;
}

.footer-links-group {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFF;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-link {
  font-size: 13px;
}

.footer-link:hover {
  color: #FFF;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-bottom-container {
  display: flex;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
}

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.delay-100 { transition-delay: 0.1s; }
.fade-in-up.delay-200 { transition-delay: 0.2s; }
.fade-in-up.delay-300 { transition-delay: 0.3s; }

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-pulse-subtle {
  animation: pulse-subtle 4s ease-in-out infinite;
}

@keyframes pulse-subtle {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
  }
  50% {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
  }
}

/* ── RESPONSIVE MEDIA QUERIES ────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-title { font-size: 46px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .rarity-tiers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  
  .concept-container {
    grid-template-columns: 1fr;
  }
  
  .identity-container {
    grid-template-columns: 1fr;
  }
  .identity-container .identity-visual {
    order: 2;
  }
  
  .vault-container {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .main-nav {
    display: none; /* simple hidden layout for mobile */
  }
}

@media (max-width: 600px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-title { font-size: 36px; }
  .section-title { font-size: 32px; }
  .rarity-tiers-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  
  .form-row {
    flex-direction: column;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-links-group {
    gap: 40px;
    width: 100%;
    justify-content: space-between;
  }
  .footer-brand {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
}

/* ── NEW ADDITIONS FROM REFINEMENTS ───────────────────────────────────────── */

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
  margin-top: 24px;
  max-width: 500px;
}

/* ── WHY NUMBERS SECTION ─────────────────────────────────────────────────── */
.why-numbers-section {
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.why-numbers-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 48px;
}

.why-number-card {
  background: rgba(12, 12, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 200px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.why-number-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.05);
}

.why-number-val {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 200;
  color: var(--gold);
  letter-spacing: -1px;
}

.why-number-meaning {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meaning-line {
  display: block;
}

/* Footer Socials */
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--gold);
}

/* Responsive why-numbers-grid */
@media (max-width: 1024px) {
  .why-numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .why-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .why-numbers-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .why-numbers-grid {
    grid-template-columns: 1fr;
  }
}

/* ── GDPR COOKIE BANNER ───────────────────────────────────────────────────── */
.cookie-banner-overlay {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  z-index: 10000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-overlay.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-banner-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-content h3 {
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.cookie-content p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.cookie-policy-link {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (min-width: 768px) {
  .cookie-banner-overlay {
    left: auto;
    right: 24px;
    bottom: 24px;
  }
}
