/* PaddlePulse - Design System */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pickle: #4ADE80;
  --pickle-dark: #22C55E;
  --neon: #BFFF00;
  --coral: #FF6B6B;
  --navy: #0F172A;
  --slate: #1E293B;
  --mid: #334155;
  --light: #94A3B8;
  --white: #F8FAFC;
  --gold: #FBBF24;
  --blue: #60A5FA;
  --purple: #A78BFA;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-sm: 8px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a { color: var(--pickle); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--neon); }

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

section, main, header, footer, nav { position: relative; z-index: 1; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
nav {
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pickle), var(--neon));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--pickle);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--pickle) 0%, var(--neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--light);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pickle);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--light);
  margin-top: 4px;
}

/* ===== SECTION ===== */
.section {
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.section-title-row h2 {
  font-size: 1.6rem;
}

.view-all {
  color: var(--pickle);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== PADDLE GRID ===== */
.paddle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.paddle-card {
  background: var(--slate);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--mid);
  cursor: pointer;
  display: block;
  color: var(--white);
}

.paddle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--pickle);
  color: var(--white);
}

.paddle-card-image {
  height: 160px;
  background: linear-gradient(135deg, var(--mid) 0%, var(--slate) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.paddle-card-image .brand-initial {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(74, 222, 128, 0.15);
}

.paddle-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(74, 222, 128, 0.2);
  color: var(--pickle);
}

.paddle-card-badge.hot {
  background: rgba(255, 107, 107, 0.2);
  color: var(--coral);
}

.paddle-card-body {
  padding: 20px;
}

.paddle-card-brand {
  font-size: 0.8rem;
  color: var(--pickle);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.paddle-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.paddle-card-scores {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.mini-score {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--light);
}

.mini-score-value {
  font-weight: 700;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
}

.paddle-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--mid);
}

.overall-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pickle);
}

.score-label {
  font-size: 0.75rem;
  color: var(--light);
  line-height: 1.2;
}

.review-count {
  font-size: 0.85rem;
  color: var(--light);
}

.reviewer-dots {
  display: flex;
  gap: -4px;
}

.reviewer-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  border: 2px solid var(--slate);
  margin-left: -6px;
}

.reviewer-dot:first-child { margin-left: 0; }

/* ===== SCORE BARS ===== */
.score-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.score-row-label {
  width: 70px;
  font-size: 0.85rem;
  color: var(--light);
  text-align: right;
  flex-shrink: 0;
}

.score-bar-track {
  flex: 1;
  height: 10px;
  background: var(--mid);
  border-radius: 5px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--pickle-dark), var(--pickle));
  transition: width 0.5s ease;
}

.score-bar-fill.low { background: linear-gradient(90deg, var(--coral), #FF8E8E); }
.score-bar-fill.mid { background: linear-gradient(90deg, var(--gold), #FCD34D); }
.score-bar-fill.high { background: linear-gradient(90deg, var(--pickle-dark), var(--pickle)); }
.score-bar-fill.elite { background: linear-gradient(90deg, var(--pickle), var(--neon)); }

.score-row-value {
  width: 36px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: right;
  flex-shrink: 0;
}

/* ===== PADDLE DETAIL PAGE ===== */
.paddle-detail {
  padding: 40px 24px 80px;
}

.paddle-detail-header {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.paddle-detail-image {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--mid) 0%, var(--slate) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--mid);
}

.paddle-detail-image .brand-initial {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(74, 222, 128, 0.12);
}

.paddle-detail-info {
  flex: 1;
  min-width: 280px;
}

.paddle-detail-brand {
  color: var(--pickle);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.paddle-detail-name {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.paddle-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.meta-tag {
  padding: 6px 16px;
  background: var(--mid);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.paddle-detail-desc {
  color: var(--light);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Aggregate scores card */
.aggregate-scores {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--mid);
  margin-bottom: 48px;
}

.aggregate-scores-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.aggregate-scores-header h3 {
  font-size: 1.3rem;
}

.aggregate-overall {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aggregate-overall .score-big {
  font-size: 2.5rem;
}

/* ===== REVIEWER COMPARISON ===== */
.reviewer-section {
  margin-bottom: 48px;
}

.reviewer-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.reviewer-review-card {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--mid);
}

.reviewer-review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pickle), var(--neon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.reviewer-review-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.reviewer-review-info .channel {
  font-size: 0.85rem;
  color: var(--light);
}

.reviewer-review-verdict {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(74, 222, 128, 0.15);
  color: var(--pickle);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: auto;
}

.reviewer-review-scores {
  margin-bottom: 20px;
}

.reviewer-review-overall {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pickle);
  margin-bottom: 12px;
}

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.review-pros h5, .review-cons h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.review-pros h5 { color: var(--pickle); }
.review-cons h5 { color: var(--coral); }

.review-pros li, .review-cons li {
  font-size: 0.85rem;
  color: var(--light);
  margin-bottom: 4px;
  list-style: none;
  padding-left: 16px;
  position: relative;
}

.review-pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--pickle);
  font-weight: 700;
}

.review-cons li::before {
  content: '-';
  position: absolute;
  left: 2px;
  color: var(--coral);
  font-weight: 700;
}

.review-summary {
  font-size: 0.9rem;
  color: var(--light);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.5;
}

.review-video-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--pickle);
  font-weight: 500;
}

/* ===== REVIEWER CARDS ===== */
.reviewer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.reviewer-card {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--mid);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.reviewer-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pickle), var(--neon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  flex-shrink: 0;
}

.reviewer-card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.reviewer-card-channel {
  color: var(--pickle);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.reviewer-card-subs {
  color: var(--light);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.reviewer-card-bio {
  color: var(--light);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  border: 1px solid var(--mid);
}

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

.step {
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  background: rgba(74, 222, 128, 0.1);
  border: 2px solid var(--pickle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pickle);
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== SEARCH & FILTER BAR ===== */
.filter-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 20px;
  background: var(--slate);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: var(--pickle);
}

.search-input::placeholder {
  color: var(--light);
}

.filter-select {
  padding: 12px 20px;
  background: var(--slate);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  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 fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.filter-select:focus {
  border-color: var(--pickle);
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--mid);
  text-align: center;
  color: var(--light);
  font-size: 0.85rem;
}

footer p { margin-bottom: 8px; }
footer a { color: var(--pickle); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--light);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--pickle); }
.breadcrumb span { color: var(--mid); }

/* ===== SPECS TABLE ===== */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.spec-item {
  background: var(--mid);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.spec-label {
  font-size: 0.75rem;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.spec-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(180deg, transparent, rgba(74, 222, 128, 0.05));
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--light);
  margin-bottom: 24px;
}

/* ===== BACK LINK ===== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--light);
  font-size: 0.9rem;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.back-link:hover { color: var(--pickle); }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--light);
}

.empty-state h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

/* ===== IMAGE DISPLAY ===== */

/* Paddle card with actual product photo */
.paddle-card-image.has-photo {
  background: #fff;
  padding: 12px;
}

.paddle-card-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

/* Paddle detail image with actual photo */
.paddle-detail-image.has-photo {
  background: #fff;
  padding: 20px;
}

.paddle-detail-image.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

/* Reviewer avatar with actual photo */
.reviewer-avatar.has-photo,
.reviewer-card-avatar.has-photo {
  overflow: hidden;
  background: var(--mid);
  padding: 0;
}

.reviewer-avatar.has-photo img,
.reviewer-card-avatar.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero {
    padding: 40px 16px 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

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

  .paddle-detail-header {
    flex-direction: column;
  }

  .paddle-detail-image {
    width: 100%;
    height: 200px;
  }

  .reviewer-comparison {
    grid-template-columns: 1fr;
  }

  .review-pros-cons {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 16px;
  }

  .how-it-works {
    padding: 40px 20px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .filter-bar {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .paddle-detail-name { font-size: 1.5rem; }
  .aggregate-overall .score-big { font-size: 2rem; }
}
