/* ============================================
   Producer Hub — styles.css  v3.0
   NI × Splice visual level
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Backgrounds */
  --bg:        #0d0d0d;
  --bg2:       #111827;
  --bg3:       #1f2937;
  --card-bg:   rgba(255,255,255,0.03);

  /* Brand colours */
  --accent:    #00d4ff;
  --accent2:   #7c3aed;
  --green:     #10b981;
  --amber:     #f59e0b;

  /* Legacy aliases */
  --accent-purple: #7c3aed;

  /* Text */
  --text:      #f1f5f9;
  --text-muted:#64748b;
  --text-sub:  #94a3b8;

  /* Borders */
  --border:    rgba(255,255,255,0.08);
  --border-hover: rgba(0,212,255,0.35);

  /* Misc */
  --radius:    14px;
  --radius-sm: 8px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', 'Space Grotesk', sans-serif;
  --font:      'Space Grotesk', sans-serif;
  --shadow:    0 8px 32px rgba(0, 212, 255, 0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --glow:      0 0 24px rgba(0, 212, 255, 0.30);
  --glow-lg:   0 0 48px rgba(0, 212, 255, 0.22);
  --trans:     0.3s ease;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

/* Hero headline neon glow pulse */
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(0,212,255,0.4), 0 0 20px rgba(0,212,255,0.2), 0 0 40px rgba(0,212,255,0.1); }
  50%       { text-shadow: 0 0 20px rgba(0,212,255,0.7), 0 0 40px rgba(0,212,255,0.4), 0 0 80px rgba(0,212,255,0.2); }
}

/* Background gradient shift */
@keyframes bgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Shimmer sweep for badges */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Animated gradient border */
@keyframes gradBorder {
  0%   { border-color: rgba(0,212,255,0.5); box-shadow: 0 0 16px rgba(0,212,255,0.15); }
  33%  { border-color: rgba(124,58,237,0.5); box-shadow: 0 0 16px rgba(124,58,237,0.15); }
  66%  { border-color: rgba(16,185,129,0.4); box-shadow: 0 0 16px rgba(16,185,129,0.12); }
  100% { border-color: rgba(0,212,255,0.5); box-shadow: 0 0 16px rgba(0,212,255,0.15); }
}

/* Button pulse glow */
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(0,212,255,0); }
}

/* Floating orbs */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(1deg); }
  66%       { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(14px) rotate(-1deg); }
  66%       { transform: translateY(6px) rotate(1deg); }
}

/* Pulse dot */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Waveform bars */
@keyframes bar1 { 0%,100%{height:8px}  25%{height:28px} 75%{height:14px} }
@keyframes bar2 { 0%,100%{height:20px} 30%{height:40px} 70%{height:10px} }
@keyframes bar3 { 0%,100%{height:14px} 20%{height:38px} 60%{height:20px} }
@keyframes bar4 { 0%,100%{height:30px} 40%{height:12px} 80%{height:36px} }
@keyframes bar5 { 0%,100%{height:10px} 15%{height:32px} 55%{height:18px} }
@keyframes bar6 { 0%,100%{height:24px} 35%{height:8px}  65%{height:38px} }

/* Fade slide up */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Spin (loading) */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   WAVEFORM COMPONENT
   ============================================ */
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}
.waveform-bar {
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.7;
}
.waveform-bar:nth-child(1) { animation: bar1 1.1s ease-in-out infinite; }
.waveform-bar:nth-child(2) { animation: bar2 1.3s ease-in-out infinite 0.1s; }
.waveform-bar:nth-child(3) { animation: bar3 0.9s ease-in-out infinite 0.2s; }
.waveform-bar:nth-child(4) { animation: bar4 1.4s ease-in-out infinite 0.05s; }
.waveform-bar:nth-child(5) { animation: bar5 1.1s ease-in-out infinite 0.15s; }
.waveform-bar:nth-child(6) { animation: bar6 1.2s ease-in-out infinite 0.25s; }

/* ── Top accent line (all pages) ── */
body::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
  background-size: 200% 100%;
  animation: bgShift 4s ease infinite;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.2rem; }

.accent  { color: var(--accent); }
.accent2 { color: var(--accent2); }

/* Gradient text util */
.grad-text {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header p {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-body);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  animation: btnGlow 3s ease-in-out infinite;
}
.btn-primary:hover {
  background: #19dbff;
  box-shadow: var(--glow);
  transform: translateY(-2px);
  animation: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(0,212,255,0.45);
}
.btn-outline:hover {
  background: rgba(0,212,255,0.08);
  border-color: var(--accent);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--accent2);
  color: #fff;
}
.btn-purple:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(124,58,237,0.35);
}

/* ============================================
   TAGS / BADGES
   ============================================ */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.tag-blue   { background: rgba(0,212,255,0.12);   color: var(--accent);  border: 1px solid rgba(0,212,255,0.2); }
.tag-purple { background: rgba(124,58,237,0.15);  color: #a78bfa;        border: 1px solid rgba(124,58,237,0.2); }
.tag-green  { background: rgba(16,185,129,0.14);  color: var(--green);   border: 1px solid rgba(16,185,129,0.2); }
.tag-orange { background: rgba(245,158,11,0.15);  color: var(--amber);   border: 1px solid rgba(245,158,11,0.2); }

/* Shimmer badges */
.badge-shimmer {
  background: linear-gradient(90deg, rgba(245,158,11,0.85) 0%, rgba(255,200,50,0.95) 40%, rgba(245,158,11,0.85) 100%);
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
  color: #000;
  font-weight: 800;
}
.badge-shimmer-free {
  background: linear-gradient(90deg, rgba(16,185,129,0.85) 0%, rgba(52,211,153,0.95) 40%, rgba(16,185,129,0.85) 100%);
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
  color: #fff;
  font-weight: 800;
}

/* Stars */
.stars { color: var(--amber); font-size: 0.95rem; letter-spacing: 2px; }

/* ============================================
   NAVIGATION
   ============================================ */
#site-nav {
  position: fixed;
  top: 3px; left: 0; right: 0; /* below top accent bar */
  z-index: 1000;
  background: rgba(13,13,13,0.75);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: all var(--trans);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  position: relative;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  letter-spacing: -0.02em;
}
.nav-logo-text-sub { color: var(--accent); }
.nav-logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li { position: relative; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--trans);
  padding: 8px 12px;
  border-radius: 7px;
  display: block;
  font-family: var(--font-head);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav-links a.active { color: var(--accent); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform var(--trans);
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(17,24,39,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-dropdown-menu a .dd-icon { font-size: 1rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--trans);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px 24px 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--trans);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--accent); }

/* ============================================
   FOOTER (4-column)
   ============================================ */
#site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.75;
  font-family: var(--font-body);
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--trans);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-sub);
  margin-bottom: 18px;
  font-family: var(--font-head);
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 11px;
  transition: color var(--trans);
  font-family: var(--font-body);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; font-family: var(--font-body); }
.footer-bottom a { color: var(--text-muted); font-size: 0.82rem; transition: color var(--trans); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 148px 0 88px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,212,255,0.04) 0%, transparent 60%),
    linear-gradient(135deg, #0d0d0d 0%, #0a1628 50%, #0d0d1f 100%);
  background-size: 200% 200%;
  animation: bgShift 12s ease infinite;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero h1 {
  animation: neonPulse 4s ease-in-out infinite;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 18px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-body);
  line-height: 1.75;
}

/* ============================================
   HOMEPAGE HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 88px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #0d0d0d 0%, #0a1628 50%, #0d0d1f 100%);
  background-size: 400% 400%;
  animation: bgShift 14s ease infinite;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 560px; height: 560px;
  background: rgba(0,212,255,0.07);
  top: -220px; right: -120px;
  animation: float 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 340px; height: 340px;
  background: rgba(124,58,237,0.08);
  bottom: -60px; left: -120px;
  animation: floatReverse 11s ease-in-out infinite;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: rgba(16,185,129,0.06);
  top: 50%; left: 55%;
  animation: float 13s ease-in-out infinite 2s;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.22);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: var(--font-head);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero h1 { margin-bottom: 26px; animation: neonPulse 5s ease-in-out infinite; }
.hero h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.82;
  font-family: var(--font-body);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 68px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-num { font-size: 1.9rem; font-weight: 700; color: var(--accent); font-family: var(--font-head); }
.hero-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 3px; font-family: var(--font-body); }

/* ============================================
   FEATURE CARDS
   ============================================ */
.features { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.feature-card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.05);
}
.feature-card.featured-card {
  animation: gradBorder 3.5s ease-in-out infinite;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-icon-blue   { background: rgba(0,212,255,0.1);   border: 1px solid rgba(0,212,255,0.15); }
.feature-icon-purple { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.15); }
.feature-icon-green  { background: rgba(16,185,129,0.1);  border: 1px solid rgba(16,185,129,0.15); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.72; font-family: var(--font-body); }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-section { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex; flex-direction: column;
  backdrop-filter: blur(10px);
}
.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.blog-thumb {
  height: 188px;
  background: linear-gradient(135deg, var(--bg2), #16213e);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
}
.blog-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.04), rgba(124,58,237,0.04));
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-date { color: var(--text-muted); font-size: 0.78rem; font-family: var(--font-body); }
.blog-card h3 { margin-bottom: 12px; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-excerpt { color: var(--text-muted); font-size: 0.875rem; line-height: 1.65; flex: 1; font-family: var(--font-body); }
.blog-card-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.read-more {
  font-size: 0.875rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--trans);
  font-family: var(--font-head);
}
.read-more:hover { gap: 10px; }
.read-more::after { content: '→'; }
.blog-view-all { text-align: center; margin-top: 48px; }

/* ============================================
   GEAR (homepage cards)
   ============================================ */
.gear-section { background: var(--bg2); }
.gear-grid-home { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.gear-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex; flex-direction: column;
  backdrop-filter: blur(10px);
}
.gear-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.gear-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--bg2), #16213e);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid var(--border);
}
.gear-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.gear-category { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 8px; font-family: var(--font-head); }
.gear-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.gear-card .stars { margin-bottom: 12px; display: block; }
.gear-price { font-size: 1.25rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; font-family: var(--font-head); }
.gear-card-footer { margin-top: auto; }
.gear-card-footer .btn { width: 100%; justify-content: center; font-size: 0.82rem; padding: 10px 14px; }

/* ============================================
   EMAIL SIGNUP
   ============================================ */
.email-section {
  background: linear-gradient(135deg, #0d0d1a 0%, #0d0d0d 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.email-section::before {
  content: '';
  position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.email-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; text-align: center; }
.email-inner h2 { margin-bottom: 12px; }
.email-inner p { color: var(--text-muted); margin-bottom: 32px; font-size: 0.98rem; font-family: var(--font-body); }
.email-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto 16px; }
.email-form input[type="email"] {
  flex: 1; padding: 13px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--trans);
  outline: none;
  backdrop-filter: blur(10px);
}
.email-form input[type="email"]:focus { border-color: var(--accent); }
.email-form input[type="email"]::placeholder { color: var(--text-muted); }
.email-note {
  font-size: 0.78rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-body);
}
.email-note::before { content: '🔒'; font-size: 0.72rem; }

/* ============================================
   GEAR REVIEWS PAGE
   ============================================ */
.gear-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.gear-review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex; flex-direction: column;
  backdrop-filter: blur(10px);
}
.gear-review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.review-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--bg2), #16213e);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  border-bottom: 1px solid var(--border);
}
.review-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.review-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 6px; }
.review-body h3 { margin-bottom: 6px; font-size: 1.08rem; }
.review-body .stars { margin-bottom: 16px; }
.review-rating-label { color: var(--text-muted); font-size: 0.78rem; margin-left: 8px; font-family: var(--font-body); }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.pros h4, .cons h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 8px; font-family: var(--font-head); }
.pros h4 { color: var(--green); }
.cons h4 { color: #f87171; }
.pros li, .cons li { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; display: flex; align-items: flex-start; gap: 6px; line-height: 1.4; font-family: var(--font-body); }
.pros li::before { content: '✓'; color: var(--green); flex-shrink: 0; font-weight: 700; }
.cons li::before { content: '✗'; color: #f87171; flex-shrink: 0; font-weight: 700; }
.review-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.review-price { font-size: 1.2rem; font-weight: 700; color: var(--accent); font-family: var(--font-head); }
.review-footer .btn { font-size: 0.8rem; padding: 10px 16px; }

/* ============================================
   RESOURCES PAGE
   ============================================ */
.resources-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 80px; }
.resource-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.resource-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity var(--trans);
}
.resource-card:hover::before { opacity: 1; }
.resource-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.05);
}
.resource-icon { font-size: 3.5rem; margin-bottom: 20px; display: block; }
.resource-card h3 { margin-bottom: 12px; }
.resource-card p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 8px; line-height: 1.72; font-family: var(--font-body); }
.resource-free {
  display: inline-block; font-size: 0.74rem; font-weight: 700; color: var(--green);
  background: rgba(16,185,129,0.1); padding: 4px 12px; border-radius: 20px;
  margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.6px;
  border: 1px solid rgba(16,185,129,0.2);
}
.resource-card .btn { width: 100%; justify-content: center; }

.email-gate {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center; max-width: 600px; margin: 0 auto;
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.email-gate::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.email-gate h2 { margin-bottom: 12px; }
.email-gate p { color: var(--text-muted); margin-bottom: 28px; font-family: var(--font-body); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-placeholder {
  aspect-ratio: 1; max-width: 460px;
  background: linear-gradient(135deg, var(--bg2), #16213e);
  border-radius: var(--radius); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 8rem;
  position: relative; overflow: hidden;
}
.about-image-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.04), rgba(124,58,237,0.06));
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.82; margin-bottom: 16px; font-family: var(--font-body); }
.about-text .highlight {
  padding: 20px 24px;
  background: rgba(0,212,255,0.05);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--text); margin: 24px 0;
  font-family: var(--font-body);
}
.covers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cover-item {
  padding: 28px 24px; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.35s ease; backdrop-filter: blur(10px);
}
.cover-item:hover { border-color: var(--border-hover); transform: translateY(-6px); }
.cover-item-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.cover-item h3 { margin-bottom: 8px; font-size: 1.05rem; }
.cover-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; font-family: var(--font-body); }

.contact-section { background: var(--bg2); border-top: 1px solid var(--border); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.82; margin-bottom: 24px; font-family: var(--font-body); }
.contact-ways { display: flex; flex-direction: column; gap: 16px; }
.contact-way {
  display: flex; align-items: center; gap: 14px; padding: 16px;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
}
.contact-way-icon { font-size: 1.4rem; }
.contact-way-label { font-size: 0.78rem; color: var(--text-muted); font-family: var(--font-body); }
.contact-way-value { font-size: 0.9rem; font-weight: 600; color: var(--accent); font-family: var(--font-head); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-muted);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.6px; font-family: var(--font-head);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-family: var(--font-body);
  font-size: 0.9rem; outline: none; transition: border-color var(--trans);
  backdrop-filter: blur(10px);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg2); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .gear-grid-home   { grid-template-columns: repeat(2,1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .about-story      { grid-template-columns: 1fr; gap: 40px; }
  .about-image-placeholder { max-width: 100%; aspect-ratio: 16/9; font-size: 5rem; }
  .contact-inner    { grid-template-columns: 1fr; gap: 48px; }
  .gear-reviews-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: auto; padding: 108px 0 64px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .features-grid    { grid-template-columns: 1fr; }
  .blog-grid        { grid-template-columns: 1fr; }
  .gear-grid-home   { grid-template-columns: 1fr; }
  .gear-reviews-grid{ grid-template-columns: 1fr; }
  .resources-grid   { grid-template-columns: 1fr; }
  .covers-grid      { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .email-form .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2.1rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .email-gate { padding: 40px 20px; }
}
