/* ============================================================
   MATCOMMUNITY — style.css
   matcommunity.com
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --bg-primary:    #07090D;
  --bg-secondary:  #0D1117;
  --bg-card:       #131B24;
  --bg-card-hover: #192030;

  --accent-gold:       #F0A500;
  --accent-gold-light: #FFB930;
  --accent-gold-dim:   rgba(240, 165, 0, 0.12);
  --accent-gold-border: rgba(240, 165, 0, 0.28);

  --belt-white:  #F0F0F0;
  --belt-blue:   #2563EB;
  --belt-purple: #7C3AED;
  --belt-brown:  #92400E;
  --belt-black:  #111111;

  --text-primary:   #EFF4FA;
  --text-secondary: #7A8FA6;
  --text-muted:     #3D5166;

  --border:      rgba(255, 255, 255, 0.06);
  --border-gold: rgba(240, 165, 0, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 60px rgba(240, 165, 0, 0.18);

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-width:  1200px;
  --nav-height: 72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
input, select, button, textarea { font-family: inherit; }
section { scroll-margin-top: var(--nav-height); }

/* ---- Shared Layout ---- */
.section-tag {
  display: inline-block;
  background: var(--accent-gold-dim);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(0.5deg); }
  66%       { transform: translateY(-6px) rotate(-0.5deg); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.05); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50%       { transform: translateY(8px); opacity: 0.3; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 165, 0, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(240, 165, 0, 0); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--accent-gold);
  color: #000;
}
.btn--primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(240, 165, 0, 0.38);
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}
.btn--large { padding: 17px 34px; font-size: 16px; }
.btn--full  { width: 100%; }

/* ---- Belt bars ---- */
.belt {
  height: 8px;
  border-radius: 4px;
  flex: 1;
  max-width: 64px;
}
.belt--white  { background: var(--belt-white); }
.belt--blue   { background: var(--belt-blue); }
.belt--purple { background: var(--belt-purple); }
.belt--brown  { background: var(--belt-brown); }
.belt--black  { background: var(--belt-black); border: 1px solid #2a2a2a; }
.belt--sm     { height: 6px; max-width: 42px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.nav.scrolled {
  background: rgba(7, 9, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}
.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.nav__logo-mat        { color: var(--accent-gold); }
.nav__logo-community  { color: var(--text-primary); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text-primary); }
.nav__app-link {
  color: var(--text-secondary) !important;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s !important;
}
.nav__app-link:hover {
  color: var(--text-primary) !important;
  border-color: rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.05);
}
.nav__cta {
  background: var(--accent-gold) !important;
  color: #000 !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav__cta:hover {
  background: var(--accent-gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,165,0,0.3);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.28s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(240,165,0,0.11) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 65%, rgba(37,99,235,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 10% 80%, rgba(124,58,237,0.05) 0%, transparent 50%);
}
.hero__bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}
.hero__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
}
.hero__content { animation: fadeInUp 0.75s ease 0.15s both; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240, 165, 0, 0.08);
  border: 1px solid rgba(240, 165, 0, 0.22);
  color: var(--accent-gold);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: badgePulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(54px, 9vw, 100px);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #FFD47A 50%, var(--accent-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero__belts {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  align-items: center;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__social-proof {
  color: var(--text-muted);
  font-size: 13px;
}
.hero__social-proof strong { color: var(--accent-gold); }

/* Phone Mockup */
.hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.75s ease 0.35s both;
}
.phone {
  position: relative;
  animation: float 7s ease-in-out infinite;
}
.phone__frame {
  width: 285px;
  background: linear-gradient(160deg, #1E2535 0%, #141B28 100%);
  border-radius: 48px;
  padding: 13px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 48px 96px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
}
.phone__screen {
  background: #0A0E16;
  border-radius: 37px;
  overflow: hidden;
  height: 550px;
}
.phone__status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.phone__island {
  width: 88px; height: 10px;
  background: #000;
  border-radius: 0 0 14px 14px;
  border: 1px solid #222;
}
.phone__status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
}
.phone__app { padding: 10px 15px 15px; }
.phone__app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}
.phone__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #7C3AED);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.phone__user-info { flex: 1; }
.phone__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.phone__belt-tag {
  display: inline-block;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
  margin-top: 2px;
}
.belt-tag--blue { background: rgba(37,99,235,0.2); color: #7AB0FF; }
.phone__notif {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone__stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.phone__stat {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
}
.phone__stat-num {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}
.phone__stat-label {
  font-size: 8px;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.phone__section-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.phone__session {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}
.phone__session-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.phone__session-dot--gi   { background: var(--accent-gold); }
.phone__session-dot--nogi { background: var(--belt-blue); }
.phone__session-dot--open { background: var(--belt-purple); }
.phone__session-info { flex: 1; }
.phone__session-name { font-size: 11px; font-weight: 600; color: var(--text-primary); }
.phone__session-meta { font-size: 9px; color: var(--text-muted); margin-top: 1px; }
.phone__session-time { font-size: 9px; color: var(--text-secondary); flex-shrink: 0; }
.phone__checkin {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.22);
  border-radius: var(--radius-sm);
  font-size: 9px;
  color: var(--accent-gold);
  margin-top: 10px;
  font-weight: 500;
}
.phone__glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(240,165,0,0.18) 0%, transparent 68%);
  animation: pulseGlow 4.5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
.phone__reflection {
  position: absolute;
  top: 13px; left: 13px; right: 13px;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  border-radius: 37px 37px 0 0;
  pointer-events: none;
  z-index: 2;
}

/* Hero scroll hint */
.hero__scroll-hint {
  text-align: center;
  padding-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.2s both;
}
.hero__scroll-arrow {
  font-size: 18px;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 56px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item__num {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-item__label {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 120px 0; }
.features__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,165,0,0.35), transparent);
  opacity: 0;
  transition: opacity 0.28s;
}
.feature-card:hover {
  border-color: rgba(240,165,0,0.22);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(240,165,0,0.06);
}
.feature-card:hover::before { opacity: 1; }
.feature-card--highlight {
  border-color: var(--accent-gold-border);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(240,165,0,0.06) 100%);
}
.feature-card__badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.feature-card__icon {
  width: 50px; height: 50px;
  background: var(--accent-gold-dim);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-gold);
  transition: all 0.28s;
}
.feature-card:hover .feature-card__icon {
  background: rgba(240,165,0,0.18);
  transform: scale(1.05);
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.feature-card__desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.72;
  margin-bottom: 20px;
}
.feature-card__tag {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(240,165,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.how-it-works__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
/* Connecting line */
.steps::before {
  content: '';
  position: absolute;
  top: 56px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold-border), var(--accent-gold-border), transparent);
  pointer-events: none;
}
.step {
  padding: 40px 32px;
  text-align: center;
  position: relative;
}
.step__number {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.step__icon {
  width: 64px; height: 64px;
  background: var(--bg-card);
  border: 1px solid var(--accent-gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent-gold);
  position: relative;
  z-index: 1;
}
.step__icon svg { width: 28px; height: 28px; }
.step__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step__desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.72;
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community { padding: 120px 0; }
.community__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.community__text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 16px;
}
.community__points {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.community__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.check {
  color: var(--accent-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.community__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Belt Showcase */
.belt-showcase {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.belt-showcase__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.22s ease;
  cursor: default;
}
.belt-showcase__item:hover,
.belt-showcase__item--active {
  border-color: var(--accent-gold-border);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.belt-showcase__swatch {
  width: 56px; height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
}
.belt-showcase__swatch--white  { background: var(--belt-white); }
.belt-showcase__swatch--blue   { background: var(--belt-blue); }
.belt-showcase__swatch--purple { background: var(--belt-purple); }
.belt-showcase__swatch--brown  { background: var(--belt-brown); }
.belt-showcase__swatch--black  { background: var(--belt-black); border: 1px solid #2c2c2c; }
.belt-showcase__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.belt-showcase__name {
  font-size: 14px;
  font-weight: 600;
}
.belt-showcase__desc {
  font-size: 12px;
  color: var(--text-muted);
}
.belt-showcase__stripes {
  display: flex;
  gap: 4px;
  align-items: center;
}
.stripe {
  width: 6px; height: 14px;
  background: rgba(0,0,0,0.35);
  border-radius: 2px;
}
.belt-showcase__swatch--white .stripe  { background: rgba(0,0,0,0.2); }
.belt-showcase__swatch--blue .stripe   { background: rgba(255,255,255,0.2); }
.belt-showcase__swatch--purple .stripe { background: rgba(255,255,255,0.2); }
.belt-showcase__swatch--brown .stripe  { background: rgba(255,255,255,0.2); }
.stripe--red { background: #C0392B !important; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--bg-secondary);
}
.testimonials__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  border-color: var(--accent-gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.testimonial--featured {
  border-color: var(--accent-gold-border);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(240,165,0,0.04) 100%);
}
.testimonial__stars {
  color: var(--accent-gold);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial__text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.testimonial__avatar--blue   { background: linear-gradient(135deg, #1D4ED8, #60A5FA); }
.testimonial__avatar--black  { background: linear-gradient(135deg, #1A1A1A, #4A5568); border: 2px solid var(--accent-gold); }
.testimonial__avatar--purple { background: linear-gradient(135deg, #5B21B6, #A78BFA); }
.testimonial__name  { font-weight: 600; font-size: 14px; }
.testimonial__belt  { font-size: 12px; margin-top: 2px; }
.belt-pill--blue   { color: #7AB0FF; }
.belt-pill--black  { color: var(--accent-gold); }
.belt-pill--purple { color: #C4B5FD; }

/* ============================================================
   EARLY ACCESS
   ============================================================ */
.early-access {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.early-access::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(240,165,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.early-access__container {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.access-form { margin-top: 44px; }
.access-form__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.12);
}
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L2 4h8z' fill='%237A8FA6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: #131B24; color: var(--text-primary); }
.access-form.submitted .access-form__fields { display: none; }
.access-form__success {
  display: none;
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.access-form.submitted .access-form__success { display: block; }
.success-icon { font-size: 52px; margin-bottom: 16px; }
.access-form__success h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 10px;
}
.access-form__success p { color: var(--text-secondary); font-size: 16px; }
.access-form__privacy {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer__tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.footer__belts {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.footer__app-btn {
  display: inline-flex;
  font-size: 13px;
  padding: 9px 16px;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--text-primary); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p,
.footer__bottom a { color: var(--text-muted); font-size: 13px; }
.footer__bottom a:hover { color: var(--text-secondary); }
.footer__oss { font-size: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(7, 9, 13, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 99;
  }
  .nav__links.open { transform: translateY(0); opacity: 1; }
  .nav__links li { border-bottom: 1px solid var(--border); }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links a { display: block; padding: 14px 0; font-size: 16px; }
  .nav__links .nav__app-link { border: none; border-radius: 0; padding: 14px 0; }
  .nav__links .nav__cta {
    margin-top: 12px;
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 14px;
    display: block;
  }
  .nav__hamburger { display: flex; }

  .hero__container { grid-template-columns: 1fr; text-align: center; padding: 60px 24px 40px; }
  .hero__subtitle,
  .hero__social-proof { margin-left: auto; margin-right: auto; }
  .hero__belts,
  .hero__ctas { justify-content: center; }
  .hero__mockup { order: -1; }
  .phone__frame { width: 240px; }
  .phone__screen { height: 460px; }

  .stats__container { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { padding: 28px 32px; text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
  .step__icon { margin: 0 0 20px 0; }
  .community__container { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .features__grid { grid-template-columns: 1fr; }
  .stats__container { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .hero__title { font-size: 52px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .testimonials__grid { gap: 14px; }
}
