/* ================================================================
   SYSTEM FONT STACK — no Google Fonts, no layout shift, no stretch
   ================================================================ */
:root {
  /* Fonts — system-ui first, then platform-specific fallbacks */
  --font-head:
    "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Arial, sans-serif;
  --font-body:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;

  /* Colours */
  --navy: #070d1f;
  --navy-mid: #0d1a35;
  --navy-light: #112244;
  --green: #1fc46d;
  --green-dim: #17a35a;
  --gold: #f0a500;
  --gold-light: #ffc930;
  --orange: #e85d20;
  --white: #f5f8ff;
  --muted: #8a9abf;
  --border: rgba(240, 165, 0, 0.18);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-bd: rgba(255, 255, 255, 0.09);
  --radius: 16px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.35s;
}

/* ================================================================
   RESET
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* ================================================================
   CIRCUIT CANVAS
   ================================================================ */
#circuit-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.14;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

nav.scrolled {
  background: rgba(7, 13, 31, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav-logo .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.nav-logo em {
  color: var(--green);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--dur) var(--ease);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--green), #18b862);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(31, 196, 109, 0.35);
  color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 4px;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 31, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a.mobile-link {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--muted);
  padding: 0.6rem 0;
  display: block;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
  letter-spacing: -0.01em;
}

.mobile-menu a.mobile-link:hover {
  color: var(--green);
  transform: scale(1.05);
}

.mobile-menu .mob-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 280px;
}

.mob-btn-wa {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #25d366, #1aad52);
  color: #fff;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.mob-btn-ev {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 13px 24px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

/* ================================================================
   LAYOUT BASE
   ================================================================ */
section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad {
  padding: 90px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--green);
}

.section-sub {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.78;
}

.center-block {
  text-align: center;
  margin-bottom: 3rem;
}

.center-block .section-label {
  justify-content: center;
}

.center-block .section-sub {
  margin: 0 auto;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-wa {
  background: linear-gradient(135deg, #25d366, #1aad52);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.btn-event {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(240, 165, 0, 0.25);
}

.btn-event:hover {
  box-shadow: 0 8px 32px rgba(240, 165, 0, 0.4);
}

.btn-video {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #e50000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.btn-video:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

.btn-video svg {
  flex-shrink: 0;
}

/* ================================================================
   TIKTOK VIDEO MODAL
   ================================================================ */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}

.video-modal-close:hover {
  background: rgba(255,255,255,.15);
}

.video-modal-box video {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  background: #000;
}

.btn-green {
  background: linear-gradient(135deg, var(--green), #18b862);
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(31, 196, 109, 0.25);
}

.btn-green:hover {
  box-shadow: 0 8px 32px rgba(31, 196, 109, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--glass-bd);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ================================================================
   KENTE STRIP
   ================================================================ */
.kente {
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0 10px,
    var(--gold) 10px 20px,
    var(--orange) 20px 30px,
    var(--navy-light) 30px 40px
  );
  opacity: 0.7;
}

/* ================================================================
   HERO
   ================================================================ */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgba(10,14,20,.93) 40%, rgba(10,14,20,.6) 100%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 60px 0 50px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 196, 109, 0.1);
  border: 1px solid rgba(31, 196, 109, 0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.hero-title .tg {
  color: var(--green);
}

.hero-title .tgo {
  color: var(--gold);
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
  max-width: 500px;
}

.hero-micro {
  font-size: 0.82rem;
  color: rgba(138, 154, 191, 0.7);
  margin-bottom: 1.8rem;
  font-style: italic;
}

/* Dual CTA hero buttons */
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.hero-cta-row .cta-primary {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: 10px;
  width: fit-content;
}

.cta-note-sep {
  color: rgba(138, 154, 191, 0.35);
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}

.stat-num span {
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(31, 196, 109, 0.12) 0%,
    rgba(240, 165, 0, 0.06) 50%,
    transparent 75%
  );
  border: 1px solid rgba(31, 196, 109, 0.1);
  animation: orb-spin 20s linear infinite;
}

.hero-orb-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 165, 0, 0.15);
  animation: orb-spin 30s linear infinite reverse;
}

@keyframes orb-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-card-main {
  position: relative;
  z-index: 2;
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 2rem;
  width: 300px;
  max-width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-ph {
  width: 100%;
  height: 170px;
  background: linear-gradient(
    135deg,
    rgba(31, 196, 109, 0.15),
    rgba(240, 165, 0, 0.1)
  );
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.1rem;
  border: 1px dashed rgba(31, 196, 109, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-img-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(31, 196, 109, 0.03) 10px,
    rgba(31, 196, 109, 0.03) 20px
  );
}

.hero-img-ph .img-icon {
  font-size: 1.9rem;
  opacity: 0.45;
}

.hero-img-ph .img-txt {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  padding: 0 0.5rem;
}

.hero-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hero-card-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 7px;
}

.hero-card-body {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.floating-chips {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}

.chip {
  position: absolute;
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  animation: float-chip 6s ease-in-out infinite;
}

.chip:nth-child(1) {
  top: 5%;
  right: -2%;
  animation-delay: 0s;
}

.chip:nth-child(2) {
  top: 35%;
  left: -5%;
  animation-delay: 1.5s;
}

.chip:nth-child(3) {
  bottom: 22%;
  right: -2%;
  animation-delay: 3s;
}

.chip:nth-child(4) {
  bottom: 5%;
  left: 5%;
  animation-delay: 4.5s;
}

@keyframes float-chip {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ================================================================
   ABOUT
   ================================================================ */
#about {
  background: linear-gradient(
    180deg,
    transparent,
    var(--navy-mid) 20%,
    var(--navy-mid) 80%,
    transparent
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  padding-bottom: 50px;
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.glass-card.top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--orange));
}

.about-img-wrap {
  margin-top: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-bd);
  line-height: 0;
}

.about-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(.85) saturate(.9);
  transition: filter var(--dur) var(--ease);
}

.about-img-wrap:hover .about-img {
  filter: brightness(.95) saturate(1.05);
}

.about-accent-card {
  position: absolute;
  bottom: 0;
  right: -15px;
  background: linear-gradient(
    135deg,
    rgba(240, 165, 0, 0.12),
    rgba(31, 196, 109, 0.08)
  );
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  min-width: 175px;
}

.accent-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.accent-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3px;
}

.tags-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.tag {
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid;
}

.tag-green {
  background: rgba(31, 196, 109, 0.1);
  border-color: rgba(31, 196, 109, 0.2);
  color: var(--green);
}

.tag-gold {
  background: rgba(240, 165, 0, 0.1);
  border-color: rgba(240, 165, 0, 0.2);
  color: var(--gold);
}

.tag-org {
  background: rgba(232, 93, 32, 0.1);
  border-color: rgba(232, 93, 32, 0.2);
  color: var(--orange);
}

.tag-muted {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--glass-bd);
  color: var(--white);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: 12px;
  font-size: 0.87rem;
  font-weight: 500;
  transition:
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.pillar:hover {
  border-color: rgba(31, 196, 109, 0.3);
  background: rgba(31, 196, 109, 0.05);
}

.pillar-icon {
  width: 33px;
  height: 33px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ================================================================
   WHY IT MATTERS
   ================================================================ */
#why {
  background-image:
    linear-gradient(180deg, rgba(10,14,20,.96) 0%, rgba(10,14,20,.94) 100%),
    url('images/why-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.challenges-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.7rem 0;
}

.challenge-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px;
  background: rgba(232, 93, 32, 0.06);
  border: 1px solid rgba(232, 93, 32, 0.15);
  border-radius: 12px;
  font-size: 0.88rem;
  color: rgba(245, 248, 255, 0.85);
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.challenge-item:hover {
  background: rgba(232, 93, 32, 0.1);
  border-color: rgba(232, 93, 32, 0.3);
}

.challenge-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.sl-green {
  color: var(--green);
}

.sl-green::before {
  background: var(--green);
}

.solution-items {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.4rem;
}

.solution-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.sol-check {
  width: 25px;
  height: 25px;
  background: rgba(31, 196, 109, 0.15);
  border: 1px solid rgba(31, 196, 109, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 3px;
}

.sol-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.sol-text p {
  font-size: 0.84rem;
  color: var(--muted);
}

/* ================================================================
   BENEFITS
   ================================================================ */
#benefits {
  background: linear-gradient(
    180deg,
    transparent,
    var(--navy-mid) 15%,
    var(--navy-mid) 85%,
    transparent
  );
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.benefit-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 196, 109, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.ben-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.95rem;
}

.ben-title {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--white);
}

.ben-body {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ================================================================
   WHO CAN JOIN
   ================================================================ */
#join-who {
  background-image:
    linear-gradient(135deg, rgba(10,14,20,.96) 0%, rgba(10,14,20,.94) 100%),
    url('images/who-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.who-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.95rem;
  margin-top: 2.5rem;
}

.who-card {
  flex: 0 0 calc(25% - 0.72rem);
  min-width: 155px;
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  text-align: center;
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.who-card:hover {
  transform: translateY(-4px);
  background: rgba(31, 196, 109, 0.06);
  border-color: rgba(31, 196, 109, 0.25);
}

.who-icon {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}

.who-title {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
}

/* ================================================================
   FOCUS AREAS
   ================================================================ */
#focus {
  background: linear-gradient(
    180deg,
    transparent,
    var(--navy-mid) 15%,
    var(--navy-mid) 85%,
    transparent
  );
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.focus-item {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius);
  padding: 1.7rem 1.3rem;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.focus-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(31, 196, 109, 0.08), transparent);
  transition: opacity var(--dur) var(--ease);
  opacity: 0;
}

.focus-item:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 196, 109, 0.2);
}

.focus-item:hover::after {
  opacity: 1;
}

.focus-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: rgba(31, 196, 109, 0.1);
  line-height: 1;
  position: absolute;
  top: 13px;
  right: 13px;
}

.focus-icon {
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
}

.focus-title {
  font-family: var(--font-head);
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.focus-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
#how {
  background-image:
    linear-gradient(180deg, rgba(10,14,20,.96) 0%, rgba(10,14,20,.94) 100%),
    url('images/how-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
  position: relative;
}

.steps-wrap::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green),
    var(--gold),
    var(--green),
    transparent
  );
  opacity: 0.28;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.25rem;
  position: relative;
}

.step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 21px;
  height: 21px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: var(--font-head);
  font-size: 0.93rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.step-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================================
   UPCOMING EVENT
   ================================================================ */
.event-section {
  background-image:
    linear-gradient(135deg, rgba(10,14,20,.96) 0%, rgba(10,14,20,.94) 100%),
    url('images/event-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.event-card {
  background: var(--glass);
  border: 1px solid rgba(31,196,109,.3);
  border-radius: calc(var(--radius) * 1.5);
  padding: 3rem 3.5rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 60px rgba(31,196,109,.08);
}

.event-badge-row {
  margin-bottom: 1.25rem;
}

.event-badge {
  display: inline-block;
  background: rgba(31,196,109,.15);
  border: 1px solid rgba(31,196,109,.35);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.event-name {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.event-name span { color: var(--green); }

.event-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 1.6rem;
}

.event-details {
  display: inline-flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: left;
  margin: 0 auto 2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  min-width: 300px;
}

.event-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.5;
}

.event-detail-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

.event-cta {
  font-size: 1.05rem;
  padding: 0.9rem 2.4rem;
  display: inline-block;
}

.event-seats-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: .75;
}

/* ================================================================
   JOIN / CTA  (dual links)
   ================================================================ */
#join {
  position: relative;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  overflow: hidden;
}

#join::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(31, 196, 109, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.join-big-head {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.join-big-head span {
  color: var(--green);
}

.join-text p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 1.6rem;
}

.join-dual-btns {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.join-dual-btns .btn {
  justify-content: flex-start;
  width: fit-content;
}

.join-btn-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
  padding-left: 4px;
}

.join-action-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* QR PLACEHOLDER — replace with <img src="your-qr.png" ...> */
.qr-ph {
  width: 165px;
  height: 165px;
  margin: 0 auto 1.2rem;
  border: 2px dashed rgba(240, 165, 0, 0.4);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(240, 165, 0, 0.04);
  font-size: 0.73rem;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
  position: relative;
}

.qr-corners::before,
.qr-corners::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  border-color: var(--gold);
  border-style: solid;
}

.qr-corners::before {
  top: 8px;
  left: 8px;
  border-width: 3px 0 0 3px;
  border-radius: 4px 0 0 0;
}

.qr-corners::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 4px 0;
}

.qr-icon {
  font-size: 2.1rem;
  opacity: 0.38;
}

.join-card-title {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.join-card-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.join-or {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.9rem 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.join-or::before,
.join-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--glass-bd);
}

.url-chip {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.75rem;
  color: var(--green);
  background: rgba(31, 196, 109, 0.08);
  border: 1px solid rgba(31, 196, 109, 0.2);
  border-radius: 50px;
  padding: 4px 12px;
}

/* ================================================================
   PARTNERS
   ================================================================ */
#partners {
  background-image:
    linear-gradient(180deg, rgba(10,14,20,.96) 0%, rgba(10,14,20,.94) 100%),
    url('images/partners-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.partner-card {
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
  text-align: center;
  flex: 1;
  min-width: 195px;
  max-width: 290px;
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.partner-card:hover {
  border-color: rgba(240, 165, 0, 0.3);
  transform: translateY(-3px);
}

.partner-logo {
  width: 68px;
  height: 68px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(240, 165, 0, 0.04);
}

.partner-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.partner-name {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.partner-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3.5rem 5% 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.footer-brand .brand-name span {
  color: var(--green);
}

.footer-brand p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 290px;
}

.social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 37px;
  height: 37px;
  border-radius: 9px;
  background: var(--glass);
  border: 1px solid var(--glass-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.social-btn:hover {
  background: rgba(31, 196, 109, 0.12);
  border-color: rgba(31, 196, 109, 0.3);
  transform: translateY(-2px);
}

.hashtag-tag {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--green);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 0.86rem;
  color: var(--muted);
  transition: color var(--dur) var(--ease);
}

.footer-col ul a:hover {
  color: var(--green);
}

.footer-contact p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.8;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-contact-btns {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-cta-btn {
  font-size: 0.82rem;
  padding: 10px 20px;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.footer-contact a {
  color: var(--green);
  transition: color var(--dur) var(--ease);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom .ft-hash {
  color: var(--green);
  font-weight: 700;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
#back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 43px;
  height: 43px;
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  color: var(--navy);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease);
  box-shadow: 0 4px 20px rgba(31, 196, 109, 0.3);
  -webkit-tap-highlight-color: transparent;
}

#back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-top:hover {
  transform: translateY(-3px);
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

/* ================================================================
   RESPONSIVE — 1024px (tablet)
   ================================================================ */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.1rem;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .hero-card-main {
    width: 260px;
    padding: 1.5rem;
  }

  .hero-orb {
    width: 300px;
    height: 300px;
  }

  .hero-orb-2 {
    width: 220px;
    height: 220px;
  }

  .about-grid {
    gap: 2.5rem;
  }

  .about-accent-card {
    right: -8px;
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-wrap::before {
    display: none;
  }

  .join-inner {
    gap: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ================================================================
   RESPONSIVE — 768px (mobile)
   ================================================================ */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav {
    padding: 0 5%;
  }

  #home {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 0 50px;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-sub {
    font-size: 0.94rem;
    max-width: 100%;
  }

  .hero-cta-row .cta-primary {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta-row .btn {
    width: 100%;
    max-width: 320px;
  }

  .cta-note {
    font-size: 0.74rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    width: 100%;
    max-width: 320px;
  }

  .cta-note-sep {
    display: none;
  }

  .section-pad {
    padding: 65px 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    padding-bottom: 0;
  }

  .about-accent-card {
    position: static;
    margin-top: 1rem;
    right: auto;
    bottom: auto;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 1.45rem;
  }

  .who-grid {
    gap: 0.8rem;
  }

  .who-card {
    flex: 0 0 calc(50% - 0.4rem);
    padding: 1.15rem 0.85rem;
  }

  .focus-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .focus-item {
    padding: 1.25rem 1rem;
  }

  .steps-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }

  .steps-wrap::before {
    display: none;
  }

  .step-circle {
    width: 57px;
    height: 57px;
    font-size: 1.05rem;
  }

  .event-card {
    padding: 2rem 1.5rem;
  }

  .event-details {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 1rem 1.1rem;
  }

  .join-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .join-text {
    text-align: center;
  }

  .join-dual-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .join-dual-btns {
    align-items: center;
  }

  .join-btn-label {
    text-align: center;
  }

  .join-action-card {
    padding: 2rem 1.5rem;
    max-width: 380px;
    margin: 0 auto;
  }

  .partners-row {
    flex-direction: column;
    align-items: center;
  }

  .partner-card {
    max-width: 100%;
    width: 100%;
    min-width: unset;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav {
    display: none;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  #back-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
}

/* ================================================================
   RESPONSIVE — 480px (small mobile)
   ================================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 4%;
  }

  .section-pad {
    padding: 55px 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .hero-micro {
    font-size: 0.78rem;
  }

  .hero-cta-row .btn {
    max-width: 100%;
    font-size: 0.86rem;
  }

  .hero-stats {
    gap: 0.9rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .glass-card {
    padding: 1.2rem;
  }

  .pillar {
    padding: 9px 11px;
    font-size: 0.82rem;
  }

  .pillar-icon {
    width: 30px;
    height: 30px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-item {
    padding: 1.15rem;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .step-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .step-circle {
    margin: 0;
    flex-shrink: 0;
  }

  .step-text {
    flex: 1;
  }

  .nav-logo {
    font-size: 0.83rem;
  }

  .nav-logo .logo-mark {
    width: 32px;
    height: 32px;
  }

  .join-action-card {
    padding: 1.5rem 1.1rem;
  }

  .qr-ph {
    width: 148px;
    height: 148px;
  }

  .challenge-item {
    font-size: 0.83rem;
    padding: 11px;
  }

  .benefit-card {
    padding: 1.25rem;
  }

  .who-card {
    flex: 0 0 calc(50% - 0.475rem);
    min-width: 0;
    padding: 0.95rem 0.55rem;
  }

  .who-title {
    font-size: 0.8rem;
  }

  .mobile-menu a.mobile-link {
    font-size: 1.15rem;
    padding: 0.4rem 0;
  }

  .mobile-menu .mob-btns {
    margin-top: 1.2rem;
    gap: 0.6rem;
  }

  .partner-card {
    padding: 1.3rem 1.1rem;
  }

  .footer-bottom p {
    font-size: 0.76rem;
  }
}

/* ================================================================
   RESPONSIVE — 360px (tiny)
   ================================================================ */
@media (max-width: 360px) {
  .container {
    padding: 0 3.5%;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .who-grid {
    gap: 0.6rem;
  }

  .who-card {
    flex: 0 0 calc(50% - 0.3rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .mobile-menu {
    padding: 1.25rem 1.5rem;
  }

  .mobile-menu a.mobile-link {
    font-size: 1rem;
    padding: 0.35rem 0;
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.84rem;
  }
}
