/* ================================================================
   THRIVE HUB — styles.css
   Main stylesheet for the THRIVE HUB website.

   TABLE OF CONTENTS:
   1.  CSS Variables (Theme Colours & Fonts)
   2.  Reset & Base
   3.  Custom Cursor (desktop only)
   4.  Scroll Progress Bar
   5.  Background Decorations (grid + orbs)
   6.  Navigation Bar
   7.  Mobile Hamburger Menu
   8.  Section Base Styles
   9.  Shared Typography (labels, headings, dividers)
   10. Scroll Reveal Animations
   11. Glass Card Component
   12. Buttons (primary + outline)
   13. Section 1 — Hero
   14. Section 2 — About
   15. Section 2B — Vision / Mission / Core Values
   16. Section 3 — Testimonials
   17. Section 4 — Join Us (single membership card)
   18. Section 5 — Support / FAQ
   19. Section 6 — Contact Form
   20. Section 7 — Footer
   21. Toast Notification
   22. Mobile Touch Scroll Indicator
   23. Responsive Breakpoints (tablets + phones)
================================================================ */


/* ================================================================
   1. CSS VARIABLES — THEME COLOURS & FONTS
   Professional palette: Black / White / Gold / Grey only
================================================================ */
:root {
  --navy:   #0a0a0a;          /* deepest black background */
  --steel:  #111111;          /* slightly lighter black section */
  --panel:  #161616;          /* dark panel background */
  --ice:    #c9a84c;          /* gold — primary accent */
  --mint:   #e2c97e;          /* light gold — secondary accent */
  --amber:  #c9a84c;          /* gold highlight (unified) */
  --rose:   #9e9e9e;          /* grey — replaces rose/danger */
  --white:  #f5f5f5;          /* near-white text */
  --muted:  #7a7a7a;          /* mid-grey dimmed text */
  --border: rgba(201, 168, 76, 0.15); /* subtle gold border */
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'DM Sans', sans-serif;
}


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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}


/* ================================================================
   3. CUSTOM CURSOR — DESKTOP ONLY
================================================================ */
#cursor {
  width: 10px;
  height: 10px;
  background: var(--ice);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 14px var(--ice);
  transition: width 0.2s, height 0.2s;
  display: none;
}

#cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  display: none;
}

@media (hover: hover) {
  body { cursor: none; }
  #cursor, #cursor-ring { display: block; }
}


/* ================================================================
   4. SCROLL PROGRESS BAR
================================================================ */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--ice), var(--mint));
  z-index: 500;
  box-shadow: 0 0 8px var(--ice);
  transition: width 0.1s linear;
}


/* ================================================================
   5. BACKGROUND DECORATIONS
================================================================ */
.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: orbDrift 25s ease-in-out infinite;
}

/* Gold-tinted orbs — very subtle */
.orb-1 { width: 600px; height: 600px; top: -200px;  left: -150px; background: rgba(201, 168, 76, 0.06); }
.orb-2 { width: 400px; height: 400px; top: 50%;     right: -100px; background: rgba(201, 168, 76, 0.04); animation-delay: -10s; }
.orb-3 { width: 300px; height: 300px; bottom: -100px; left: 35%;   background: rgba(226, 201, 126, 0.03);  animation-delay: -18s; }

@keyframes orbDrift {
  0%,  100% { transform: translate(0, 0); }
  40%       { transform: translate(30px, -40px); }
  70%       { transform: translate(-25px, 20px); }
}


/* ================================================================
   6. NAVIGATION BAR
================================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--ice);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo::before {
  content: '▮';
  color: var(--mint);
  animation: blink 1.2s step-end infinite;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ice);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ice); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }


/* ================================================================
   7. MOBILE HAMBURGER MENU
================================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ice);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.99);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  z-index: 199;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 18px 24px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--ice);
  background: rgba(201, 168, 76, 0.05);
}


/* ================================================================
   8. SECTION BASE STYLES
================================================================ */
section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 100px 24px 60px;
}


/* ================================================================
   9. SHARED TYPOGRAPHY
================================================================ */
.label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: var(--ice);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--ice);
}

.heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--white);
}

.heading .accent       { color: var(--ice); }
.heading .accent-green { color: var(--mint); }

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--ice), transparent);
  margin: 20px 0 32px;
}

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.6);
  max-width: 600px;
}


/* ================================================================
   10. SCROLL REVEAL ANIMATIONS
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* ================================================================
   11. GLASS CARD COMPONENT
================================================================ */
.glass {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--border);
  border-radius: 4px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.glass:hover::before,
.glass:focus-within::before { opacity: 1; }


/* ================================================================
   12. BUTTONS
================================================================ */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ice);
  color: #0a0a0a;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.25);
  font-weight: 700;
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--white);
  color: #0a0a0a;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 13px 36px;
  background: transparent;
  color: var(--ice);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover,
.btn-outline:active {
  border-color: var(--ice);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}


/* ================================================================
   13. SECTION 1 — HERO
================================================================ */
#home {
  flex-direction: column;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  opacity: 0.2;
  animation: scan 5s ease-in-out infinite;
}

@keyframes scan {
  0%   { top: 0%;   opacity: 0; }
  10%  { opacity: 0.2; }
  90%  { opacity: 0.2; }
  100% { top: 100%; opacity: 0; }
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: var(--mint);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 16px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  background: rgba(201, 168, 76, 0.05);
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ice);
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 6px rgba(201, 168, 76, 0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline .line-ice  { color: var(--ice);  display: block; }
.hero-headline .line-mint { color: var(--mint); display: block; }

.hero-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.6);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-hud {
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  backdrop-filter: blur(20px);
}

.hud-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--ice);
  margin-bottom: 24px;
}

.hud-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.hud-row:last-child { border-bottom: none; }

.hud-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hud-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--ice);
  margin-bottom: 4px;
}

.hud-value { font-size: 0.9rem; color: rgba(245, 245, 245, 0.7); }

.stats-strip {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.stat-block {
  padding: 24px 16px;
  background: rgba(20, 20, 20, 0.6);
  text-align: center;
}

.stat-block + .stat-block { border-left: 1px solid var(--border); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 1px;
  color: var(--ice);
  display: block;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--muted);
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  stroke: var(--muted);
}

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


/* ================================================================
   14. SECTION 2 — ABOUT
================================================================ */
#about {
  flex-direction: column;
  background: var(--steel);
}

.about-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-quote {
  border-left: 2px solid var(--ice);
  padding: 20px 24px;
  background: rgba(201, 168, 76, 0.04);
  margin: 28px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.75);
  font-style: italic;
}

.terminal {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.terminal-bar {
  padding: 10px 16px;
  background: rgba(201, 168, 76, 0.05);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  overflow-x: auto;
}

.t-line {
  font-size: 0.78rem;
  line-height: 2;
  color: rgba(245, 245, 245, 0.55);
  white-space: nowrap;
}

/* Terminal colour roles mapped to gold palette */
.t-line .t-cmd { color: var(--mint); }
.t-line .t-val { color: var(--ice); }
.t-line .t-str { color: #e0c070; }

.t-cursor::after {
  content: '█';
  color: var(--ice);
  animation: blink 1s step-end infinite;
}


/* ================================================================
   15. SECTION 2B — VISION / MISSION / CORE VALUES
================================================================ */
#vision {
  flex-direction: column;
  background: var(--panel);
}

.vision-wrapper {
  max-width: 1100px;
  width: 100%;
}

.vision-motto {
  text-align: center;
  margin-bottom: 60px;
}

.vision-motto .divider {
  margin: 20px auto 32px;
}

.vision-motto .body-text {
  margin: 0 auto;
  text-align: center;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}

.vision-card {
  padding: 36px 32px;
}

.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.vision-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.6);
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  color: var(--ice);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.values-label {
  justify-content: center;
  margin-bottom: 32px;
}

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

.value-card {
  padding: 28px 20px;
  text-align: center;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.value-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.5);
}

.belief-quote {
  margin-top: 56px;
  text-align: center;
}

.belief-quote blockquote {
  border-left: none;
  padding: 36px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.7);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}


/* ================================================================
   16. SECTION 3 — TESTIMONIALS
================================================================ */
#testimonials { flex-direction: column; }

.testimonials-inner { max-width: 1100px; width: 100%; }

.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.t-card {
  padding: 32px;
  border-radius: 4px;
  transition: transform 0.4s, box-shadow 0.4s;
}

.t-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.2);
}

.t-quote {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--ice);
  opacity: 0.4;
  margin-bottom: 8px;
  display: block;
}

.t-stars { color: var(--ice); font-size: 0.85rem; margin-bottom: 12px; }

.t-text { font-size: 0.93rem; line-height: 1.75; color: rgba(245, 245, 245, 0.65); margin-bottom: 24px; }

.t-author { display: flex; align-items: center; gap: 14px; }

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #0a0a0a;
}

.t-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.t-role { font-size: 0.8rem; color: var(--muted); }


/* ================================================================
   17. SECTION 4 — JOIN US
================================================================ */
#joinus {
  flex-direction: column;
  background: var(--steel);
}

.join-inner { max-width: 900px; width: 100%; }

.movement-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.movement-item {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.movement-item::before {
  content: '→';
  color: var(--ice);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.member-card-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.member-card {
  padding: 48px 40px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  width: 100%;
  border-color: rgba(201, 168, 76, 0.4) !important;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.07);
}

.member-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: #0a0a0a;
  background: var(--ice);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 28px;
  align-self: flex-start;
  font-weight: 700;
}

.member-icon  { font-size: 2.5rem; margin-bottom: 20px; }
.member-name  { font-family: var(--font-display); font-size: 2rem; letter-spacing: 2px; color: var(--white); margin-bottom: 12px; }
.member-desc  { font-size: 1rem; line-height: 1.7; color: rgba(245, 245, 245, 0.6); margin-bottom: 28px; flex: 1; }

.member-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.member-features li {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.65);
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-features li::before {
  content: '✓';
  color: var(--ice);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  flex-shrink: 0;
}


/* ================================================================
   18. SECTION 5 — SUPPORT / FAQ
================================================================ */
#support { flex-direction: column; }

.support-inner {
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.support-sidebar { position: sticky; top: 100px; align-self: start; }

.support-channels { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

.channel-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: rgba(245, 245, 245, 0.55);
  text-decoration: none;
  transition: all 0.3s;
}

.channel-chip:hover,
.channel-chip:active {
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--ice);
}

.channel-chip .ch-icon { font-size: 1.1rem; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(201, 168, 76, 0.4); }

.faq-q {
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(20, 20, 20, 0.7);
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.85);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
  gap: 16px;
  min-height: 60px;
}

.faq-q:hover,
.faq-q:active { background: rgba(201, 168, 76, 0.05); }

.faq-icon {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--ice);
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(10, 10, 10, 0.5);
}

.faq-a.open { max-height: 400px; }

.faq-a p {
  padding: 20px 20px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.55);
}


/* ================================================================
   19. SECTION 6 — CONTACT FORM
================================================================ */
#contact {
  flex-direction: column;
  background: var(--steel);
}

.contact-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.c-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }

.c-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.05);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.c-detail-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--ice);
  margin-bottom: 4px;
}

.c-detail-val { font-size: 0.9rem; color: rgba(245, 245, 245, 0.6); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

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

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  appearance: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.07);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122, 122, 122, 0.5); }

.form-group textarea { min-height: 130px; resize: vertical; }

.form-group select option { background: var(--navy); color: var(--white); }

.form-panel { padding: 36px 32px; }


/* ================================================================
   20. SECTION 7 — FOOTER
================================================================ */
#footer {
  min-height: auto;
  padding: 72px 24px 40px;
  border-top: 1px solid var(--border);
  flex-direction: column;
}

.footer-inner { max-width: 1100px; width: 100%; }

.f-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.f-brand-name {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--ice);
  display: block;
  margin-bottom: 16px;
}

.f-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.35);
  max-width: 280px;
}

.f-socials { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }

.f-social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.f-social:hover,
.f-social:active { border-color: var(--ice); color: var(--ice); }

.f-col-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--ice);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.f-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.f-links a {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.38);
  text-decoration: none;
  transition: color 0.3s;
}

.f-links a:hover,
.f-links a:active { color: var(--ice); }

.f-newsletter {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.f-nl-text { flex: 1; min-width: 200px; }
.f-nl-text h3 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 1px; color: var(--white); margin-bottom: 6px; }
.f-nl-text p  { font-size: 0.9rem; color: var(--muted); }

.f-nl-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 260px;
}

.f-nl-form input {
  flex: 1;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  min-height: 48px;
}

.f-nl-form input:focus { border-color: rgba(201, 168, 76, 0.4); }
.f-nl-form input::placeholder { color: rgba(122, 122, 122, 0.5); }

.f-nl-form button {
  padding: 13px 24px;
  background: var(--ice);
  color: #0a0a0a;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  min-height: 48px;
  font-weight: 700;
}

.f-nl-form button:hover,
.f-nl-form button:active { background: var(--white); color: #0a0a0a; box-shadow: 0 0 20px rgba(201, 168, 76, 0.3); }

.f-copy {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.f-copy p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: rgba(245, 245, 245, 0.18);
}


/* ================================================================
   21. TOAST NOTIFICATION
================================================================ */
#toast {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 999;
  background: rgba(20, 20, 20, 0.97);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 4px;
  padding: 16px 22px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--ice);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.12);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: calc(100vw - 40px);
  backdrop-filter: blur(20px);
}

#toast.show { transform: translateY(0); opacity: 1; }


/* ================================================================
   22. MOBILE TOUCH SCROLL INDICATOR
================================================================ */
#touch-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ice) 0%, rgba(201, 168, 76, 0.3) 60%, transparent 100%);
  box-shadow: 0 0 16px var(--ice), 0 0 32px rgba(201, 168, 76, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: none;
}

#touch-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: none;
}

@media (hover: none) {
  #touch-indicator,
  #touch-ring { display: block; }
}


/* ================================================================
   23. RESPONSIVE BREAKPOINTS
================================================================ */

/* ── TABLET: 900px and below ── */
@media (max-width: 900px) {

  .hero-inner,
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .hero-hud { display: none; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .stat-block:nth-child(3) { border-left: none; }

  .support-inner { grid-template-columns: 1fr; gap: 40px; }
  .support-sidebar { position: static; }

  .f-top { grid-template-columns: 1fr 1fr; }

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

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

/* ── MOBILE: 640px and below ── */
@media (max-width: 640px) {

  nav { padding: 0 16px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 90px 16px 56px; }

  .hero-headline { font-size: clamp(2.8rem, 14vw, 4.5rem); }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; text-align: center; }

  .stats-strip { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .f-top { grid-template-columns: 1fr; gap: 32px; }
  .f-copy { flex-direction: column; text-align: center; }

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

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

  .member-card { max-width: 100%; }

  .form-panel { padding: 24px 20px; }

  #footer { padding: 60px 16px 36px; }

  #toast { left: 16px; right: 16px; bottom: 16px; }

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

/* ── SMALL PHONES: 380px and below ── */
@media (max-width: 380px) {
  .hero-headline { font-size: 2.6rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
