/* ========================================
   HUMN Landing Page - Standalone Version
   Premium Scrollable Design
   ======================================== */

/* CSS Variables */
:root {
  --gold: #d4af37;
  --gold-dark: #c9a227;
  --gold-light: #e0bc42;
  --navy: #22304c;
  --navy-dark: #1a2538;
  --font-poppins: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-poppins);
  background: #000;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fixed background video */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.fullscreen-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Scrollable overlay content */
.overlay {
  position: relative;
  min-height: 100vh;
  z-index: 10;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 20%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* ========================================
   Site header (public nav)
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 18, 28, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.site-header__wordmark {
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-header__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  margin-left: 3px;
  vertical-align: middle;
}

.site-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
  border-radius: 8px;
  align-items: center;
}

.site-header__toggle:hover,
.site-header__toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__toggle[aria-expanded='true'] .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded='true'] .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded='true'] .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: rgba(12, 18, 28, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.site-header__nav.is-open {
  display: flex;
}

.site-header__link {
  font-family: var(--font-poppins);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 14px 6px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header__link:hover,
.site-header__link:focus-visible {
  color: var(--gold);
  outline: none;
}

.site-header__cta-pill {
  margin-top: 8px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1a1a !important;
  padding: 12px 18px !important;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.site-header__cta-pill:hover,
.site-header__cta-pill:focus-visible {
  color: #1a1a1a !important;
  filter: brightness(1.05);
}

@media (min-width: 1024px) {
  .site-header__toggle {
    display: none;
  }

  .site-header__inner {
    padding: 12px 24px;
  }

  .site-header__nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 18px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .site-header__nav.is-open {
    display: flex !important;
  }

  .site-header__link {
    padding: 8px 4px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .site-header__cta-pill {
    margin-top: 0;
    padding: 10px 20px !important;
  }
}

/* ========================================
   Campaign hero ( /campaign )
   ======================================== */
.campaign-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 72px;
  text-align: center;
}

.campaign-hero__inner {
  max-width: 720px;
  width: 100%;
}

.campaign-hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px 0;
}

.campaign-hero__title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: 0.3px;
}

.campaign-hero__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0 0 40px 0;
}

.campaign-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}

.campaign-hero__actions .btn {
  width: 100%;
}

.campaign-husd {
  padding: 72px 24px 96px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.campaign-husd__title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.campaign-husd__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 28px auto;
}

@media (min-width: 768px) {
  .campaign-hero__title {
    font-size: 3rem;
  }

  .campaign-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }

  .campaign-hero__actions .btn {
    width: auto;
    min-width: 200px;
  }
}

/* Inner static pages (about, Next250, partner, tokenomics) */
.static-page .campaign-hero {
  min-height: auto;
  padding: 100px 20px 40px;
}

.static-stack {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 24px;
}

.static-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 18px;
}

.static-card:last-child {
  margin-bottom: 0;
}

.static-card h2 {
  color: #fff;
  font-size: 1.28rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.static-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.static-cta-wrap {
  text-align: center;
  padding: 28px 24px 72px;
}

.static-cta-wrap .campaign-hero__actions {
  margin: 0 auto;
}

@media (max-width: 480px) {
  .static-page .campaign-hero {
    padding: 88px 16px 32px;
  }

  .static-card {
    padding: 22px 18px;
  }

  .static-card h2 {
    font-size: 1.12rem;
  }
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
  border: none;
  cursor: pointer;
  font-family: var(--font-poppins);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  padding: 0 28px;
  height: 54px;
  font-size: 1rem;
  gap: 8px;
}

.btn ion-icon {
  font-size: 1.2rem;
}

.btn:disabled {
  opacity: 0.8;
  cursor: wait;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1a1a;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1a1a;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  height: 50px;
  font-size: 0.95rem;
  padding: 0 32px;
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.5);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  width: 100%;
}

.logo-wrap {
  margin: 0 auto 32px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 280px;
  height: auto;
}

.hero-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 380px;
  margin: 0 auto;
}

/* ========================================
   Site Navigation
   ======================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(10, 10, 26, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-nav-logo-img {
  height: 32px;
  width: auto;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.site-nav-link:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.site-nav-link.nav-htw {
  color: #1a1a1a;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
  font-weight: 600;
  margin-left: 8px;
}

.site-nav-link.nav-htw:hover {
  color: #1a1a1a;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.55);
  transform: translateY(-1px);
}

.footer-link.footer-htw {
  color: var(--gold);
}

.footer-link.footer-htw:hover {
  color: var(--gold-light);
}

.site-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.site-nav-toggle:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

.site-nav-toggle .nav-icon-close {
  display: none;
}

.site-nav.nav-open .site-nav-toggle .nav-icon-open {
  display: none;
}

.site-nav.nav-open .site-nav-toggle .nav-icon-close {
  display: block;
}

/* Mobile nav */
@media (max-width: 768px) {
  .site-nav {
    padding: 14px 20px;
  }

  .site-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px 16px;
  }

  .site-nav.nav-open .site-nav-links {
    display: flex;
  }

  .site-nav-link {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .site-nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
  }

  .site-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ========================================
   Manifesto Section
   ======================================== */
.manifesto {
  padding: 80px 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.manifesto-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.brand {
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.manifesto-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.manifesto-tagline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.manifesto-tagline strong {
  font-weight: 700;
  color: var(--gold);
}

.manifesto-video-container {
  max-width: 800px;
  margin: 40px auto 0 auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.manifesto-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  object-fit: cover;
}

/* ========================================
   Steps Section
   ======================================== */
.steps {
  padding: 80px 24px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.section-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 48px 0;
  letter-spacing: 0.5px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 48px auto;
}

.step-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.step-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.step-number {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1a1a;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.step-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.step-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.steps-cta {
  text-align: center;
  margin-top: 24px;
}

/* ========================================
   Community Section
   ======================================== */
.community {
  padding: 80px 24px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.community::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: -1;
}

.community-video-feature {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 8px;
}

.community-section__video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  background: rgba(18, 24, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.06),
    0 16px 42px rgba(0, 0, 0, 0.4);
}

.section-title-alt {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.community-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* HUSD / Economy Feed Preview — glass video-style cards (static placeholders). */
.economy-feed-preview {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 8px 0;
}

.economy-feed-preview__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 28px;
  padding: 0 8px;
}

.economy-feed-preview__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
  margin: 0 0 14px;
}

.economy-feed-preview__copy {
  font-family: var(--font-poppins);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 18px;
}

.economy-feed-preview__husd-note {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.economy-feed-preview__husd-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: rgba(255, 245, 220, 0.96);
}

.economy-feed-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

@media (min-width: 720px) {
  .economy-feed-preview__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .economy-feed-preview__husd-note {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }
}

@media (min-width: 980px) {
  .economy-feed-preview__grid {
    gap: 24px;
  }
}

.economy-feed-card {
  display: flex;
  flex-direction: column;
  background: rgba(18, 24, 38, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.06),
    0 16px 42px rgba(0, 0, 0, 0.4);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.economy-feed-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.14),
    0 22px 50px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(212, 175, 55, 0.08);
}

.economy-feed-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.economy-feed-card__thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.economy-feed-card__thumb--watch {
  background-image:
    linear-gradient(155deg, rgba(28, 36, 58, 0.95) 0%, rgba(12, 16, 28, 0.98) 100%),
    radial-gradient(circle at 22% 35%, rgba(212, 175, 55, 0.22) 0%, transparent 52%),
    radial-gradient(circle at 78% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 46%),
    linear-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    auto,
    28px 28px,
    28px 28px;
}

.economy-feed-card__thumb--earn {
  background-image:
    linear-gradient(135deg, rgba(34, 48, 72, 0.96) 0%, rgba(15, 20, 32, 0.99) 100%),
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.28) 0%, transparent 45%),
    repeating-linear-gradient(
      -8deg,
      transparent,
      transparent 22px,
      rgba(212, 175, 55, 0.05) 22px,
      rgba(212, 175, 55, 0.05) 23px
    );
}

.economy-feed-card__thumb--build {
  background-image:
    linear-gradient(195deg, rgba(26, 34, 52, 0.97) 0%, rgba(10, 12, 20, 0.99) 100%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 35%);
}

.economy-feed-card__play-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(8, 10, 16, 0.55);
  border: 2px solid rgba(212, 175, 55, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 28px rgba(212, 175, 55, 0.12);
}

.economy-feed-card__play-icon {
  font-size: 1.65rem;
  color: var(--gold-light);
}

.economy-feed-card__body {
  padding: 18px 18px 22px;
  text-align: left;
}

.economy-feed-card__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
  margin-bottom: 8px;
}

.economy-feed-card__title {
  font-family: var(--font-poppins);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.economy-feed-card__action {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.community-videos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  margin: 3rem auto 0 auto;
  width: 100%;
}

.video-card {
  background: transparent;
  backdrop-filter: none;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  position: relative;
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video-card--coming-soon {
  opacity: 0.7;
}

.community-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background: rgba(34, 48, 76, 0.5);
  min-height: 200px;
  object-fit: cover;
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(34, 48, 76, 0.9);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   HUMN Token Section
   ======================================== */
.humn-token {
  padding: 80px 24px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.humn-token::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.humn-token-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.humn-token-tagline {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 12px 0 20px;
}

.humn-token-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 40px;
}

.humn-token-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.humn-token-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.humn-token-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

/* Featured card */
.humn-token-card--featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
  border-color: rgba(212, 175, 55, 0.4);
  transform: scale(1.04);
}

.humn-token-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: rgba(212, 175, 55, 0.6);
}

.humn-token-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Tier label */
.humn-token-tier {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Price block */
.humn-token-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.humn-token-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.humn-token-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.humn-token-card h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 16px;
}

/* Feature list */
.humn-token-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  width: 100%;
  text-align: left;
  flex-grow: 1;
}

.humn-token-features li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.humn-token-features li ion-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.humn-token-btn {
  width: 100%;
  margin-top: auto;
}

.helio-checkout-container {
  width: 100%;
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
}

.helio-checkout-container button[type="submit"],
.helio-checkout-container button:last-of-type {
  color: #000 !important;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45) !important;
}

.helio-checkout-container button[type="submit"]:hover,
.helio-checkout-container button:last-of-type:hover {
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.6) !important;
}

@media (max-width: 900px) {
  .humn-token-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .humn-token-grid::-webkit-scrollbar {
    display: none;
  }

  .humn-token-card {
    min-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .humn-token-card--featured {
    transform: none;
  }

  .humn-token-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* HUMN Token Dots */
.humn-token-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.humn-token-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.humn-token-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .humn-token-dots {
    display: flex;
  }
}

@media (max-width: 480px) {
  .humn-token {
    padding: 60px 16px;
  }

  .humn-token-tagline {
    font-size: 1rem;
  }

  .humn-token-description {
    font-size: 1rem;
  }

  .humn-token-amount {
    font-size: 2.2rem;
  }

  .humn-token-card {
    min-width: 280px;
    padding: 28px 20px;
  }

  .humn-token-grid {
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ========================================
   CoLab Intro Section
   ======================================== */
.colab-intro {
  padding: 80px 24px;
  background: linear-gradient(
    to bottom,
    rgba(34, 48, 76, 0.3) 0%,
    rgba(34, 48, 76, 0.5) 100%
  );
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.colab-intro-tagline {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.colab-intro-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.colab-intro-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.colab-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.colab-feature ion-icon {
  font-size: 1.3rem;
  color: var(--gold);
}

/* Small screens */
@media (max-width: 480px) {
  .colab-intro {
    padding: 60px 16px;
  }

  .colab-intro-tagline {
    font-size: 0.85rem;
  }

  .colab-intro-description {
    font-size: 1rem;
  }

  .colab-intro-features {
    gap: 12px;
  }

  .colab-feature {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* ========================================
   Upcoming Events Section
   ======================================== */
.events {
  padding: 80px 24px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.events-carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.events-carousel {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.events-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.event-card {
  flex: 0 0 calc(100% - 16px);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.event-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.08) 100%);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  width: fit-content;
}

.event-date-badge ion-icon {
  font-size: 1rem;
  color: var(--gold);
}

.event-date-badge span {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.event-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.event-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.btn-event {
  align-self: flex-start;
  height: 44px;
  font-size: 0.9rem;
  padding: 0 24px;
}

.events-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.events-arrow:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.events-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.events-arrow ion-icon {
  font-size: 1.2rem;
}

.events-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.events-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.events-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Tablet: 2 cards visible */
@media (min-width: 768px) {
  .event-card {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Desktop: 3 cards visible */
@media (min-width: 1024px) {
  .event-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

/* Small screens */
@media (max-width: 480px) {
  .events {
    padding: 60px 16px;
  }

  .events-arrow {
    display: none;
  }

  .events-carousel-wrap {
    gap: 0;
  }

  .event-card {
    padding: 24px;
    flex: 0 0 calc(100% - 8px);
  }

  .event-title {
    font-size: 1.2rem;
  }

  .event-description {
    font-size: 0.9rem;
  }
}

/* Event recurring badge */
.event-recurring-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

/* ========================================
   Event Registration Modal
   ======================================== */
.event-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.event-modal-overlay.active {
  display: flex;
}

.event-modal {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.event-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.event-modal-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  padding-right: 40px;
}

.event-modal-subtitle {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 28px 0;
}

.event-form-group {
  margin-bottom: 20px;
}

.event-form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-form-group input[type="text"],
.event-form-group input[type="email"],
.event-form-group input[type="tel"],
.event-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-poppins);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.event-form-group input::placeholder,
.event-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.event-form-group input:focus,
.event-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.event-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.event-radio-group {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.event-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  cursor: pointer;
}

.event-radio-group input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.event-submit-btn {
  width: 100%;
  margin-top: 8px;
}

.event-form-message {
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 24px;
}

.event-form-message.success {
  color: #4ade80;
}

.event-form-message.error {
  color: #ff6b6b;
}

@media (max-width: 480px) {
  .event-modal {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .event-modal-title {
    font-size: 1.25rem;
  }
}

/* ========================================
   Movement Section
   ======================================== */
.movement {
  padding: 80px 24px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.movement-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.movement-challenge {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.hashtag {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.movement-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 48px 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.challenge-steps {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.challenge-steps::-webkit-scrollbar {
  display: none;
}

.challenge-step {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 200px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.challenge-step:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.challenge-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.challenge-icon {
  font-size: 1.6rem;
  color: var(--gold);
}

.challenge-step-number {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.challenge-step-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-step-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
  padding: 80px 24px;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.final-cta-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 48px 0;
  line-height: 1.3;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}

.download-btn {
  position: relative;
}

.download-btn--apple {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.download-btn--apple:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 255, 255, 0.3);
}

.download-btn--android {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.download-btn--android:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 255, 255, 0.3);
}

.download-btn--web {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.download-btn--web:hover {
  border-color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Support Section (Partner + Donate) */
.support-section {
  padding: 80px 24px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 40px auto 0 auto;
  align-items: stretch;
}

.support-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.support-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.25);
}

.support-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.support-card-icon ion-icon {
  font-size: 1.8rem;
  color: var(--gold);
}

.support-card-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.support-card-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 24px 0;
  max-width: 340px;
}

.support-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  width: 100%;
  text-align: left;
}

.support-card-benefits li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-card-benefits li:last-child {
  border-bottom: none;
}

.support-card-benefits ion-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.support-card-btn {
  margin-top: auto;
  width: 100%;
  max-width: 260px;
}

.support-share-btn {
  margin-top: 16px;
  width: 100%;
  max-width: 300px;
  height: 44px;
  font-size: 0.9rem;
}

.support-card--donate .helio-checkout-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: auto;
}

/* donation payment toggle and stripe form */
.payment-toggle {
  display: flex;
  gap: 16px;
  margin: 16px 0 8px;
}
.payment-toggle label {
  font-size: 0.9rem;
  cursor: pointer;
}
.payment-toggle input {
  margin-right: 4px;
}

.stripe-form {
  display: none;
  margin-top: 12px;
}

.preset-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.preset-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.preset-button {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.preset-button:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}

.preset-button.active {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  font-weight: 600;
}

/* vertical column layout for form inputs */
.donation-form-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.donation-form-column input[type="email"],
.donation-form-column input[type="number"] {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.donation-form-column input[type="email"]::placeholder,
.donation-form-column input[type="number"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.donation-form-column input[type="email"]:focus,
.donation-form-column input[type="number"]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.stripe_response_message {
  color: #ff6b6b;
  margin-top: 8px;
  font-size: 0.85rem;
}

.stripe-card-element {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: all 0.2s ease;
  background: rgba(10,10,10,0.6);
  color: #fff;
  min-width: 220px;
}


.coming-soon-text {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .support-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .support-section {
    padding: 60px 16px;
  }

  .support-card-title {
    font-size: 1.15rem;
  }

  .support-card-text {
    font-size: 0.9rem;
  }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 60px 24px 40px 24px;
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  width: 100px;
  height: auto;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
  margin: 0 auto 28px;
  max-width: 600px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablets and up */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: row;
    max-width: 500px;
  }

  .hero-buttons .btn {
    flex: 1;
  }

  .manifesto-title {
    font-size: 2.2rem;
  }

  .section-title-alt {
    font-size: 2.2rem;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .challenge-steps {
    overflow-x: visible;
    scroll-snap-type: none;
    flex-wrap: nowrap;
  }

  .challenge-step {
    flex: 1 1 0;
    min-width: 0;
  }

  .download-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .footer-links {
    gap: 32px;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .manifesto-title {
    font-size: 2.5rem;
  }

  .section-title,
  .section-title-alt {
    font-size: 2.5rem;
  }

}

/* Small screens */
@media (max-width: 480px) {
  .hero {
    padding: 88px 16px 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .logo {
    width: 220px;
    height: auto;
  }

  .btn {
    height: 48px;
    font-size: 0.9rem;
  }

  .manifesto {
    padding: 60px 16px;
  }

  .manifesto-title {
    font-size: 1.5rem;
  }

  .manifesto-text {
    font-size: 1rem;
  }

  .community-description {
    font-size: 1rem;
  }

  .steps,
  .community,
  .movement,
  .final-cta {
    padding: 60px 16px;
  }

  .section-title,
  .section-title-alt {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .step-card {
    padding: 24px;
  }

  .step-image {
    margin-bottom: 16px;
  }

  .step-title {
    font-size: 1.25rem;
  }

  .movement-challenge {
    font-size: 1.8rem;
  }

  .final-cta-title {
    font-size: 1.8rem;
  }

  .campaign-hero__title {
    font-size: 1.85rem;
  }

  .campaign-hero__text {
    font-size: 1rem;
  }

  .challenge-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .challenge-step {
    min-width: 180px;
    padding: 24px 16px;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero {
    min-height: auto;
    padding: 72px 20px 40px;
  }

  .campaign-hero {
    min-height: auto;
    padding: 72px 20px 48px;
  }

  .logo-wrap {
    margin-bottom: 20px;
  }

  .logo {
    width: 180px;
    height: auto;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .btn {
    height: 44px;
    font-size: 0.85rem;
  }
}
