/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #07070a;
  --bg-card: rgba(18, 18, 24, 0.85);
  --bg-card-solid: #121218;
  --gold: #f5c518;
  --gold-light: #ffe566;
  --gold-dark: #c9a000;
  --yellow: #ffd700;
  --accent: #ff6b35;
  --purple: #9b59b6;
  --teal: #1abc9c;
  --text: #f0f0f5;
  --text-muted: #a0a0b0;
  --border: rgba(255, 215, 0, 0.15);
  --sidebar-w: 260px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --glow: 0 0 40px rgba(245, 197, 24, 0.25);
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ===== INTRO OVERLAY ===== */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.intro-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
}

.intro-bg-video .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(7,7,10,0.85) 100%);
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 2rem;
}

.missed-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.missed-item {
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  color: #ff6b6b;
  text-shadow: 0 0 20px rgba(255, 50, 50, 0.4);
}

.missed-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dont-miss {
  margin: 2.5rem 0 2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.dont-miss.show {
  opacity: 1;
  transform: scale(1);
}

.dont-miss .green {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: #2ecc71;
  text-shadow: 0 0 30px rgba(46, 204, 113, 0.5);
  letter-spacing: -0.02em;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(245, 197, 24, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-more-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.learn-more-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(245, 197, 24, 0.55);
}

.learn-more-btn i {
  transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
  transform: translateX(5px);
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: rgba(10, 10, 14, 0.95);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--glow);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.sidebar-nav {
  flex: 1;
  padding: 1.25rem 0.85rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.nav-item i {
  width: 22px;
  text-align: center;
  font-size: 1.05rem;
}

.nav-item:hover {
  background: rgba(245, 197, 24, 0.08);
  color: var(--text);
}

.nav-item.active {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.18), rgba(245, 197, 24, 0.08));
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(245, 197, 24, 0.25);
}

.sidebar-footer {
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(18, 18, 24, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  position: relative;
}

/* Background video + canvas */
.bg-video-layer {
  position: fixed;
  top: 0;
  left: var(--sidebar-w);
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-video-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: blur(2px) saturate(1.3);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(245, 197, 24, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(155, 89, 182, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(7,7,10,0.75) 0%, rgba(7,7,10,0.92) 100%);
}

#flow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  display: none;
  min-height: 100vh;
  padding: 3.5rem 3rem 4rem;
  animation: fadeInUp 0.5s ease;
}

.section.active {
  display: block;
}

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

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO ===== */
.hero-section {
  display: none;
  align-items: center;
  padding-top: 2.5rem;
}

.hero-section.active {
  display: flex;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #ff9f1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(245, 197, 24, 0.3);
}

.title-sub {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tag {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

.hero-cta-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0088cc, #00a0e3);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 136, 204, 0.45);
}

.btn-secondary {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: #222;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 197, 24, 0.5);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Hero video */
.hero-video-wrap {
  position: relative;
  max-width: 640px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.hero-video {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.video-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-text .lead {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-text .highlight {
  color: var(--gold);
  font-weight: 500;
  margin: 1.5rem 0;
}

.about-quotes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.75rem 0;
}

.about-quotes blockquote {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.kingdom {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 1.5rem;
}

.about-visual {
  position: relative;
}

.about-img {
  border-radius: 24px;
  box-shadow: var(--shadow), var(--glow);
  border: 2px solid rgba(245, 197, 24, 0.25);
}

.floating-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.4);
  white-space: nowrap;
}

/* ===== PROFILE ===== */
.profile-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.profile-img-wrap {
  position: relative;
}

.profile-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--glow);
}

.profile-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid transparent;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--gold), var(--purple), var(--teal)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateRing 8s linear infinite;
  pointer-events: none;
}

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

.profile-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.profile-tagline {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.profile-info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.profile-traits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.trait {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trait-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}

.trait-value {
  color: var(--text);
  font-weight: 500;
}

.profile-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
}

.perk i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.profile-end {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.profile-end strong {
  color: var(--gold);
}

/* ===== TOKENOMICS ===== */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.token-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.token-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 197, 24, 0.1);
}

.token-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.12);
  border-radius: 12px;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.token-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.token-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== ROADMAP ===== */
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  padding-left: 1rem;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.roadmap-phase {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.phase-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.35);
  position: relative;
  z-index: 1;
}

.phase-content {
  flex: 1;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}

.phase-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.phase-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.phase-content li {
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.phase-content li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.roadmap-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== COMMUNITY ===== */
.community-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.community-content .lead {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.community-content p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}

.no-bots {
  color: var(--gold) !important;
  font-weight: 600;
  margin: 1.5rem 0 !important;
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.come-noise {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}

/* ===== PARTNERSHIP ===== */
.partnership-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}

.partnership-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.partnership-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.partner-emoji {
  font-size: 1.75rem;
}

.partner-text {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.partner-join {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(245, 197, 24, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 197, 24, 0.15);
}

.partner-join h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.partner-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.partner-link:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.partner-footer {
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1.5rem;
}

/* ===== CONTACT ===== */
.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.contact-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-note {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-note strong {
  color: var(--gold);
}

/* ===== SUPPORT ===== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.support-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 24, 0.3);
}

.support-card i {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.support-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.support-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 3rem 3rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-taglines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.15rem;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-visual {
    max-width: 360px;
    margin: 0 auto;
  }
  
  .profile-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .profile-img-wrap {
    max-width: 240px;
    margin: 0 auto;
  }
  
  .profile-traits, .profile-perks {
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --sidebar-w: 0px;
  }
  
  .sidebar {
    transform: translateX(-100%);
    width: 280px;
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .bg-video-layer {
    left: 0;
  }
  
  .section {
    padding: 2.5rem 1.5rem 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    justify-content: center;
  }
  
  .roadmap-timeline::before {
    left: 20px;
  }
  
  .phase-number {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
  
  .site-footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}

/* end */
