/* ==========================================
   The Duncs Review — TDR
   ========================================== */

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

:root {
  --bg:          #050810;
  --bg-card:     rgba(10, 15, 30, 0.75);
  --bg-elevated: rgba(12, 18, 38, 0.9);
  --border:      rgba(80, 140, 255, 0.14);
  --border-glow: rgba(80, 140, 255, 0.4);
  --neon-blue:   #3d8eff;
  --neon-cyan:   #00e5ff;
  --neon-purple: #a259ff;
  --neon-pink:   #ff4dd8;
  --neon-green:  #40ffb0;
  --text:        #e8edf8;
  --text-dim:    #6a7a9b;
  --text-mid:    #9ba8c0;
  --star-on:     #ffd700;
  --radius:      14px;
  --radius-lg:   22px;
  --nav-h:       66px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Particles ── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2.5rem;
  height: var(--nav-h);
  background: rgba(5, 8, 16, 0.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(5, 8, 16, 0.97); }

.nav-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-dot { color: var(--neon-cyan); }

.nav-links {
  display: flex;
  gap: 0.2rem;
  flex: 1;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(61, 142, 255, 0.1);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-social svg { width: 16px; height: 16px; }
.btn-social:hover { color: #ff0000; border-color: rgba(255,0,0,0.3); background: rgba(255,0,0,0.07); }

/* ── Buttons ── */
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--border-glow); color: var(--text); }

.btn-primary {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border: none;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  box-shadow: 0 0 20px rgba(61, 142, 255, 0.25);
  transition: opacity 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { opacity: 0.88; box-shadow: 0 0 35px rgba(61, 142, 255, 0.5); }

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 90px) 2.5rem 100px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ── Search ── */
.hero-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 15, 30, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  max-width: 540px;
  margin: 0 auto 3rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-search:focus-within {
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(61, 142, 255, 0.12);
}
.hero-search svg { width: 18px; height: 18px; color: var(--text-dim); flex-shrink: 0; }
.hero-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.hero-search input::placeholder { color: var(--text-dim); }

/* ── Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-cyan);
  line-height: 1;
}
.stat-label { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 38px; background: var(--border); }

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 18px; height: 18px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Categories ── */
.categories {
  position: relative;
  z-index: 1;
  padding: 0 2.5rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.category-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 0.45rem 1.15rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.cat-pill:hover { color: var(--text); border-color: rgba(61,142,255,0.3); }
.cat-pill.active {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background: rgba(61, 142, 255, 0.1);
  box-shadow: 0 0 16px rgba(61, 142, 255, 0.15);
}

/* ── Products ── */
.products {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-header h2 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.sort-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.sort-controls select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  outline: none;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}

/* ── Product Card ── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(12px);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), border-color 0.3s, box-shadow 0.3s;
  animation: cardIn 0.5s ease both;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,142,255,0.04), rgba(162,89,255,0.04));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-glow);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 35px rgba(61,142,255,0.1);
}
.product-card:hover::before { opacity: 1; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card image */
.card-image-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1128, #0d1640);
}
.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .card-image-wrap img { transform: scale(1.06); }

/* Play overlay */
.card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 16, 0.35);
  opacity: 0;
  transition: opacity 0.25s;
}
.product-card:hover .card-play { opacity: 1; }
.card-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(61, 142, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(61,142,255,0.6);
  backdrop-filter: blur(4px);
}
.card-play-btn svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }

/* Badges */
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(5, 8, 16, 0.8);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  text-transform: uppercase;
}
.badge-tech     { color: var(--neon-cyan);   border-color: rgba(0,229,255,0.22); }
.badge-audio    { color: var(--neon-purple); border-color: rgba(162,89,255,0.22); }
.badge-wear     { color: var(--neon-pink);   border-color: rgba(255,77,216,0.22); }
.badge-gaming   { color: #ff7040;            border-color: rgba(255,112,64,0.22); }
.badge-home     { color: var(--neon-green);  border-color: rgba(64,255,176,0.22); }
.badge-photo    { color: #ffda40;            border-color: rgba(255,218,64,0.22); }

/* TDR Rating stamp */
.card-tdr {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0.35rem 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 50px;
}
.card-tdr-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 0.12em;
  line-height: 1;
}
.card-tdr-score {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

/* Card body */
.card-body { padding: 1rem 1.2rem 1.2rem; position: relative; z-index: 1; }
.card-brand { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.25rem; }
.card-title {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Stars */
.card-stars { display: flex; gap: 3px; margin-bottom: 0.6rem; }
.star { font-size: 0.9rem; }
.star.on  { color: var(--star-on); filter: drop-shadow(0 0 4px rgba(255,215,0,0.45)); }
.star.off { color: rgba(255,215,0,0.18); }
.star.half { position: relative; display: inline-block; color: rgba(255,215,0,0.18); }
.star.half::after { content:'★'; position:absolute; left:0; top:0; width:50%; overflow:hidden; color:var(--star-on); filter:drop-shadow(0 0 4px rgba(255,215,0,0.45)); }

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.card-price {
  font-family: 'Orbitron', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.card-date { font-size: 0.72rem; color: var(--text-dim); }

/* ── Video Strip ── */
.video-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(8,12,30,0.6), transparent);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.video-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), border-color 0.3s, box-shadow 0.3s;
}
.video-thumb:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.video-thumb-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a1128;
}
.video-thumb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-thumb:hover .video-thumb-img img { transform: scale(1.05); }
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,8,16,0.3);
  transition: background 0.25s;
}
.video-thumb:hover .video-play-overlay { background: rgba(5,8,16,0.15); }
.yt-play-btn {
  width: 48px;
  height: 34px;
  background: #ff0000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,0,0,0.4);
  transition: transform 0.2s;
}
.video-thumb:hover .yt-play-btn { transform: scale(1.1); }
.yt-play-btn svg { width: 14px; height: 14px; color: #fff; margin-left: 2px; }
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}
.video-info { padding: 0.85rem 1rem; }
.video-title { font-size: 0.875rem; font-weight: 600; line-height: 1.35; margin-bottom: 0.35rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-meta { font-size: 0.72rem; color: var(--text-dim); }

/* ── Partner Section ── */
.partner {
  position: relative;
  z-index: 1;
  padding: 7rem 2.5rem;
}
.partner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.partner-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.partner-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.partner-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.partner-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.partner-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(61,142,255,0.08);
  border: 1px solid rgba(61,142,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--neon-blue);
}
.partner-icon svg { width: 18px; height: 18px; }
.partner-list li > div:last-child { display: flex; flex-direction: column; gap: 0.15rem; }
.partner-list strong { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.partner-list span { font-size: 0.82rem; color: var(--text-dim); }

/* Form */
.partner-form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.form-title {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  padding: 0.65rem 0.9rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--border-glow);
  box-shadow: 0 0 18px rgba(61,142,255,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(106,122,155,0.7); }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.95rem;
  border-radius: 10px;
  margin-top: 0.5rem;
  box-shadow: 0 0 30px rgba(61,142,255,0.3);
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.85rem;
}
.form-success {
  display: none;
  text-align: center;
  font-size: 0.875rem;
  color: var(--neon-green);
  background: rgba(64,255,176,0.07);
  border: 1px solid rgba(64,255,176,0.2);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-top: 0.75rem;
}
.form-success.show { display: block; }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 5, 12, 0.88);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: rgba(8, 12, 28, 0.97);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.75), 0 0 60px rgba(61,142,255,0.07);
  animation: modalIn 0.35s cubic-bezier(.22,.68,0,1.2);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
@keyframes modalIn {
  from { transform: scale(0.93) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-overlay:not(.open) .modal { animation: none; }

.modal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem 0 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dim);
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.modal-close svg { width: 16px; height: 16px; }
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text); }

.modal-content { padding: 1rem 2rem 2rem; }

/* Video embed */
.modal-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  margin-bottom: 1.75rem;
}
.modal-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.modal-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #0a1128, #0d1640);
  border-radius: var(--radius);
  color: var(--text-dim);
}
.modal-video-placeholder .yt-play-btn { width: 64px; height: 44px; border-radius: 10px; box-shadow: 0 8px 30px rgba(255,0,0,0.45); }
.modal-video-placeholder .yt-play-btn svg { width: 18px; height: 18px; }
.modal-video-placeholder span { font-size: 0.85rem; }

/* Modal hero layout */
.modal-product-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
  align-items: start;
}
.modal-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.modal-img img { width: 100%; display: block; }

.modal-brand { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.4rem; }
.modal-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.modal-tdr-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.modal-tdr-badge {
  background: linear-gradient(135deg, rgba(61,142,255,0.12), rgba(162,89,255,0.12));
  border: 1px solid rgba(61,142,255,0.3);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  text-align: center;
}
.modal-tdr-badge-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neon-cyan);
  line-height: 1;
  display: block;
}
.modal-tdr-badge-score {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.modal-stars-row { display: flex; flex-direction: column; gap: 0.25rem; }
.modal-stars { display: flex; gap: 3px; font-size: 1rem; }
.modal-stars-label { font-size: 0.75rem; color: var(--text-dim); }

.modal-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; }

.modal-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.25rem; }
.tag {
  background: rgba(61,142,255,0.07);
  border: 1px solid rgba(61,142,255,0.18);
  color: var(--neon-blue);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.22rem 0.65rem;
  border-radius: 6px;
}

.modal-cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.modal-price {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.btn-buy {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border: none;
  color: #fff;
  padding: 0.7rem 1.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 0 25px rgba(61,142,255,0.3);
  transition: box-shadow 0.2s, opacity 0.2s;
}
.btn-buy:hover { box-shadow: 0 0 40px rgba(61,142,255,0.5); opacity: 0.9; }
.btn-buy svg { width: 14px; height: 14px; }

.modal-divider { height: 1px; background: var(--border); margin: 1.75rem 0; }

/* Verdict */
.modal-verdict { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.verdict-box { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.25rem; }
.verdict-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; margin-bottom: 0.75rem; }
.verdict-label.pros { color: var(--neon-green); }
.verdict-label.cons { color: var(--neon-pink); }
.verdict-list { list-style: none; }
.verdict-list li { font-size: 0.85rem; color: var(--text-mid); padding: 0.28rem 0; display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.4; }
.verdict-list li::before { flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.verdict-list.pros-list li::before { content: '+'; color: var(--neon-green); }
.verdict-list.cons-list li::before { content: '−'; color: var(--neon-pink); }

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem 2.5rem;
}
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.footer-brand p { font-size: 0.82rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 0.25rem; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; padding: 0.3rem 0.75rem; border-radius: 6px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-legal { font-size: 0.72rem; color: rgba(106,122,155,0.55); max-width: 500px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .partner-inner { grid-template-columns: 1fr; gap: 3rem; }
  .modal-product-row { grid-template-columns: 1fr; }
  .modal-img { display: none; }
  .modal-verdict { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hero { padding: calc(var(--nav-h) + 50px) 1.25rem 60px; }
  .categories, .products, .partner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .video-strip-inner { padding: 0 1.25rem; }
  .product-grid, .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal-content { padding: 0.5rem 1.25rem 1.5rem; }
}
