/* Hunter Biden 2028 — Democratic Campaign Theme */

:root {
  --dem-blue: #002868;
  --dem-blue-light: #1a4a9e;
  --dem-blue-bright: #3b7ddd;
  --dem-red: #e4002b;
  --dem-red-dark: #b8001f;
  --dem-white: #ffffff;
  --dem-gold: #ffd700;
  --dem-silver: #c0c5ce;
  --bg-dark: #0a1628;
  --bg-mid: #0f2240;
  --text-muted: #a8b8d8;
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --shadow-glow: 0 0 40px rgba(59, 125, 221, 0.35);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--dem-white);
  overflow-x: hidden;
  line-height: 1.6;
}

body.loaded {
  opacity: 1;
}

body:not(.loaded) {
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Stars background canvas */
#stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Patriotic stripe overlay */
.stripe-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 80px,
    rgba(228, 0, 43, 0.03) 80px,
    rgba(228, 0, 43, 0.03) 82px
  );
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59, 125, 221, 0.2);
  transition: var(--transition);
}

.nav.scrolled {
  padding: 0.5rem 2rem;
  background: rgba(10, 22, 40, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.nav__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dem-blue-bright);
  box-shadow: 0 0 20px rgba(59, 125, 221, 0.5);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(59, 125, 221, 0.5); }
  50% { box-shadow: 0 0 35px rgba(59, 125, 221, 0.8), 0 0 60px rgba(228, 0, 43, 0.3); }
}

.nav__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.nav__title span {
  color: var(--dem-red);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dem-red), var(--dem-blue-bright));
  transition: width 0.3s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--dem-white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  background: linear-gradient(135deg, var(--dem-red), var(--dem-red-dark));
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(228, 0, 43, 0.4);
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(228, 0, 43, 0.6);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  width: 26px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

/* Sections common */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dem-red);
  margin-bottom: 0.75rem;
  animation: tagGlow 2s ease-in-out infinite alternate;
}

@keyframes tagGlow {
  from { text-shadow: 0 0 5px rgba(228, 0, 43, 0.3); }
  to { text-shadow: 0 0 15px rgba(228, 0, 43, 0.6); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--dem-white) 0%, var(--dem-blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--dem-red), var(--dem-red-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(228, 0, 43, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(228, 0, 43, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--dem-blue-bright);
}

.btn-secondary:hover {
  background: rgba(59, 125, 221, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-blue {
  background: linear-gradient(135deg, var(--dem-blue-bright), var(--dem-blue));
  color: white;
  box-shadow: 0 4px 20px rgba(59, 125, 221, 0.4);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59, 125, 221, 0.6);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 40, 104, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(228, 0, 43, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 22, 40, 0.4) 0%, var(--bg-dark) 100%);
}

.hero__stripes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--dem-red) 0px,
    var(--dem-red) 40px,
    var(--dem-white) 40px,
    var(--dem-white) 80px,
    var(--dem-blue) 80px,
    var(--dem-blue) 120px
  );
  animation: stripeSlide 20s linear infinite;
}

@keyframes stripeSlide {
  from { background-position: 0 0; }
  to { background-position: 480px 0; }
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 40, 104, 0.6);
  border: 1px solid rgba(59, 125, 221, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero__badge .star {
  color: var(--dem-gold);
  animation: starSpin 4s linear infinite;
}

@keyframes starSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero__headline .year {
  color: var(--dem-red);
  display: block;
  text-shadow: 0 0 40px rgba(228, 0, 43, 0.5);
}

.hero__headline .symbol {
  font-size: 0.5em;
  color: var(--dem-blue-bright);
  vertical-align: super;
}

.hero__bio {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  border-left: 3px solid var(--dem-red);
  padding-left: 1rem;
}

.hero__bio em {
  color: var(--dem-white);
  font-style: normal;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__ca {
  background: rgba(0, 40, 104, 0.45);
  border: 1px solid rgba(59, 125, 221, 0.35);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  max-width: 520px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero__ca label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.hero__ca-box {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero__ca-input {
  flex: 1;
  min-width: 200px;
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid rgba(59, 125, 221, 0.35);
  color: var(--dem-gold);
  font-family: monospace;
  font-size: 0.8rem;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
}

.hero__ca .copy-ca-btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--dem-gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__logo-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}

.hero__logo-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--dem-red);
  border-right-color: var(--dem-blue-bright);
  animation: ringRotate 6s linear infinite;
}

.hero__logo-ring:nth-child(2) {
  inset: -35px;
  border-top-color: var(--dem-blue-bright);
  border-right-color: var(--dem-gold);
  animation-direction: reverse;
  animation-duration: 8s;
}

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

.hero__logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--dem-white);
  box-shadow: 0 0 60px rgba(59, 125, 221, 0.5), 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: heroLogoFloat 4s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

.hero__stars-deco {
  position: absolute;
  font-size: 1.5rem;
  color: var(--dem-gold);
  animation: twinkle 2s ease-in-out infinite;
}

.hero__stars-deco:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.hero__stars-deco:nth-child(2) { top: 20%; right: 0; animation-delay: 0.5s; }
.hero__stars-deco:nth-child(3) { bottom: 15%; left: 10%; animation-delay: 1s; }
.hero__stars-deco:nth-child(4) { bottom: 5%; right: 15%; animation-delay: 1.5s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--dem-blue-bright);
  border-bottom: 2px solid var(--dem-blue-bright);
  transform: rotate(45deg);
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about__card {
  background: rgba(0, 40, 104, 0.3);
  border: 1px solid rgba(59, 125, 221, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.about__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dem-red), var(--dem-white), var(--dem-blue));
}

.about__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.about__card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--dem-blue-bright);
}

.about__card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about__card p:last-child {
  margin-bottom: 0;
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about__pillar {
  text-align: center;
  padding: 1.25rem;
  background: rgba(228, 0, 43, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(228, 0, 43, 0.2);
  transition: transform 0.3s;
}

.about__pillar:hover {
  transform: scale(1.05);
  background: rgba(228, 0, 43, 0.15);
}

.about__pillar-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about__pillar h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.about__typing {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dem-gold);
  min-height: 2em;
  border-left: 3px solid var(--dem-gold);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

.about__typing .cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--dem-gold);
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ===== HOW TO BUY ===== */
.howtobuy {
  background: var(--bg-mid);
  position: relative;
}

.howtobuy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59, 125, 221, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.howtobuy__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.howtobuy__step {
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(59, 125, 221, 0.15);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}

.howtobuy__step:hover {
  border-color: var(--dem-blue-bright);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.howtobuy__step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--dem-red), var(--dem-red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(228, 0, 43, 0.4);
}

.howtobuy__step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

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

.howtobuy__ca {
  background: rgba(0, 40, 104, 0.4);
  border: 1px solid rgba(59, 125, 221, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.howtobuy__ca label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.howtobuy__ca-box {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.howtobuy__ca-input {
  flex: 1;
  min-width: 280px;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(59, 125, 221, 0.3);
  color: var(--dem-gold);
  font-family: monospace;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  text-align: center;
}

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

/* ===== CHART ===== */
.chart {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}

.chart__wrapper {
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(59, 125, 221, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.chart__wrapper::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--dem-red), var(--dem-blue-bright), var(--dem-red));
  z-index: -1;
  animation: borderGlow 4s linear infinite;
  background-size: 300% 300%;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.chart__iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.chart__link {
  text-align: center;
  margin-top: 1.5rem;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--bg-mid);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery__item:hover {
  border-color: var(--dem-blue-bright);
  box-shadow: var(--shadow-glow);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 40, 104, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(59, 125, 221, 0.3);
  transform: scale(0.8);
  transition: transform 0.4s;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: 2px solid white;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox__close:hover {
  background: var(--dem-red);
  border-color: var(--dem-red);
}

/* ===== JOIN US ===== */
.joinus {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #061020 100%);
  position: relative;
  overflow: hidden;
}

.joinus__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.joinus__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.joinus__banner {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: bannerGlow 3s ease-in-out infinite alternate;
}

@keyframes bannerGlow {
  from { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 125, 221, 0.2); }
  to { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(228, 0, 43, 0.3); }
}

.joinus__text h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.joinus__text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.joinus__hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.joinus__hashtag {
  background: rgba(59, 125, 221, 0.15);
  border: 1px solid rgba(59, 125, 221, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dem-blue-bright);
  transition: all 0.3s;
}

.joinus__hashtag:hover {
  background: rgba(228, 0, 43, 0.2);
  border-color: var(--dem-red);
  color: var(--dem-red);
  transform: scale(1.05);
}

.joinus__socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--dem-blue);
  border-color: var(--dem-blue-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== FOOTER ===== */
.footer {
  background: #050d18;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--dem-red), var(--dem-white), var(--dem-blue)) 1;
  padding: 3rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer__brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--dem-blue-bright);
}

.footer__brand h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.footer__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 350px;
}

.footer__links h5 {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--dem-blue-bright);
}

.footer__links ul {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--dem-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer__disclaimer {
  font-size: 0.75rem !important;
  max-width: 500px;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__content,
  .about__grid,
  .joinus__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__bio {
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-top: 3px solid var(--dem-red);
    padding-left: 0;
    padding-top: 1rem;
  }

  .hero__actions,
  .hero__stats {
    justify-content: center;
  }

  .hero__ca {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__visual {
    order: -1;
  }

  .hero__logo-wrap {
    width: 240px;
    height: 240px;
  }

  .howtobuy__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__pillars {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 22, 40, 0.98);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(59, 125, 221, 0.2);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__burger {
    display: flex;
  }

  section {
    padding: 4rem 1.25rem;
  }

  .howtobuy__steps {
    grid-template-columns: 1fr;
  }

  .chart__iframe {
    height: 450px;
  }
}
