/* ==========================================================================
   PTS Primo Charts — Marketing Design System
   Dark trading-SaaS aesthetic · purple→amber accents
   ========================================================================== */

:root {
  --bg: #050506;
  --bg-elevated: #0c0c0f;
  --bg-card: #111116;
  --bg-card-hover: #16161d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --purple: #7b2ff7;
  --purple-light: #9b5cff;
  --amber: #f7931e;
  --amber-light: #ffb347;
  --gradient: linear-gradient(135deg, #7b2ff7 0%, #c45c2a 50%, #f7931e 100%);
  --gradient-soft: linear-gradient(135deg, rgba(123, 47, 247, 0.2), rgba(247, 147, 30, 0.15));
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --max: 1120px;
  --nav-h: 72px;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Grid texture */
.bg-grid {
  position: relative;
}
.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Gradient text */
.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-pill {
  position: relative;
  background: transparent;
  color: var(--text);
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(var(--bg), var(--bg)),
    var(--gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.25);
}
.btn-pill:hover {
  box-shadow: 0 0 28px rgba(247, 147, 30, 0.35);
}

.btn-solid {
  background: var(--gradient);
  color: #fff;
  border: none;
  box-shadow: 0 8px 28px rgba(123, 47, 247, 0.35);
}
.btn-solid:hover {
  box-shadow: 0 12px 36px rgba(247, 147, 30, 0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* ========== NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 5, 6, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-text span { color: var(--text-muted); font-weight: 500; font-size: 0.85em; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  padding: 0.5rem 0.9rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.nav-menu .nav-cta { margin-left: 0.5rem; }
.nav-menu .nav-cta a {
  padding: 0.65rem 1.25rem;
  color: var(--text);
  background: transparent;
}
.nav-menu .nav-cta a:hover { background: transparent; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  padding: 5.5rem 0 4rem;
  text-align: center;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: rgba(123, 47, 247, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto 1.25rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90vw);
  height: 400px;
  background: radial-gradient(ellipse, rgba(123, 47, 247, 0.22) 0%, rgba(247, 147, 30, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ========== STATS ========== */
.stats {
  padding: 0 0 4.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.stat-card:hover {
  border-color: rgba(123, 47, 247, 0.35);
  background: var(--bg-card-hover);
}
.stat-value {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.grad-divider {
  height: 1px;
  border: none;
  background: var(--gradient);
  opacity: 0.4;
  margin: 0 auto;
  max-width: var(--max);
  width: calc(100% - 2.5rem);
}

/* ========== PRODUCT VISUAL ========== */
.product-visual {
  padding: 2rem 0 5rem;
}
.chart-mock {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow), 0 0 80px rgba(123, 47, 247, 0.12);
  overflow: hidden;
  position: relative;
}
.chart-mock::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
}
.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.chart-tabs {
  display: flex;
  gap: 0.35rem;
}
.chart-tab {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 6px;
  background: transparent;
}
.chart-tab.active {
  background: rgba(123, 47, 247, 0.2);
  color: var(--purple-light);
}
.chart-symbol {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.chart-symbol strong { color: var(--text); }
.chart-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.legend-dot.petd { background: var(--purple); }
.legend-dot.steps { background: var(--amber); }
.legend-dot.scanner { background: #22c55e; }

/* ========== FEATURE CARDS ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.feature-card:hover {
  border-color: rgba(123, 47, 247, 0.4);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-soft);
  border: 1px solid rgba(123, 47, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  font-size: 1.25rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== LEARN / SIMPLICITY ========== */
.learn-section {
  background: linear-gradient(180deg, transparent, rgba(123, 47, 247, 0.04), transparent);
}
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.learn-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.learn-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.learn-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.learn-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gradient);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/14px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/14px no-repeat;
  background-size: cover;
}
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; }

.learn-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.learn-visual::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(247, 147, 30, 0.15), transparent 70%);
  pointer-events: none;
}
.mini-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.mini-stat:last-child { border-bottom: none; }
.mini-stat-label { color: var(--text-dim); font-size: 0.9rem; }
.mini-stat-value { font-weight: 700; font-size: 1.05rem; }

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.testimonial-card blockquote {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* ========== PRICING TEASER / CARDS ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 47, 247, 0.4);
}
.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    var(--gradient) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 12px 40px rgba(123, 47, 247, 0.2);
}
.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price-tier {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.price-amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
}
.price-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  min-height: 2.4em;
}
.price-features {
  flex: 1;
  margin-bottom: 1.5rem;
}
.price-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.35rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.8rem;
}
.price-card .btn { width: 100%; margin-top: auto; }

.pricing-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.35rem;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.is-open .faq-q::after {
  content: '−';
  color: var(--amber);
}
.faq-a {
  display: none;
  padding: 0 1.35rem 1.15rem;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-item.is-open .faq-a { display: block; }

/* ========== CTA BAND ========== */
.cta-band {
  padding: 4rem 0;
  text-align: center;
}
.cta-band-inner {
  background: var(--gradient-soft);
  border: 1px solid rgba(123, 47, 247, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* ========== FOOTER ========== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  background: var(--bg-elevated);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-col a,
.footer-col li {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 0.3rem 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 900px;
}
.copyright {
  font-size: 0.8rem;
  color: var(--text-dim);
}


/* ========== REAL CHART SHOTS ========== */
.chart-shot {
  margin: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(123, 47, 247, 0.35);
  box-shadow: 0 0 40px rgba(123, 47, 247, 0.18), 0 0 80px rgba(247, 147, 30, 0.08);
  background: #0a0a0c;
}
.chart-shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.chart-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(transparent, rgba(5, 5, 6, 0.85));
}
.chart-mock--shot .chart-toolbar {
  margin-bottom: 0.85rem;
}

.shot-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.shot-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.shot-card:hover {
  border-color: rgba(123, 47, 247, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(123, 47, 247, 0.15);
}
.shot-card img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top center;
  background: #0a0a0c;
}
.shot-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.learn-shot {
  margin: 0 0 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(123, 47, 247, 0.3);
  box-shadow: 0 0 30px rgba(123, 47, 247, 0.12);
}
.learn-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shot-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(5, 5, 6, 0.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    align-items: stretch;
    overflow-y: auto;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
  }
  .nav-menu .nav-cta { margin-left: 0; margin-top: 0.75rem; }
  .nav-menu .nav-cta a { text-align: center; display: block; }

  .hero { padding: 3.5rem 0 3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .features-grid,
  .testimonials-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .shot-gallery { grid-template-columns: 1fr; }
  .shot-card img { height: 180px; }
  .learn-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .container { width: min(100% - 1.5rem, var(--max)); }
}

/* WP header: nav.primary-nav wraps .nav-menu */
.primary-nav { display: contents; }

