/*
Theme Name: VendorVerse
Theme URI: https://vendorverse.co
Author: Playa Park
Description: VendorVerse competitor intelligence platform theme
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: vendorverse
*/

/* ─── Design Tokens ─────────────────────────────────────────────────────────── */

:root {
  --bg: #0a0a0a;
  --fg: #f5f1eb;
  --accent: #e54b2a;
  --accent-dim: #b13a20;
  --muted: #6b6b6b;
  --line: #1f1f1f;
  --card: #121212;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────────── */

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

html,
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--accent);
  color: var(--fg);
}

/* ─── Custom Cursor ──────────────────────────────────────────────────────────── */

.vv-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.vv-cursor.grow {
  width: 48px;
  height: 48px;
  background: var(--accent);
}

@media (hover: none) {
  .vv-cursor { display: none; }
}

/* ─── Ticker Strip ───────────────────────────────────────────────────────────── */

.vv-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: #0a0a0a;
  overflow: hidden;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 101;
}

.vv-ticker-track {
  display: inline-flex;
  animation: vv-ticker 40s linear infinite;
  white-space: nowrap;
}

.vv-ticker-track span {
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.vv-ticker-track span::after {
  content: '●';
  color: rgba(10, 10, 10, 0.5);
}

@keyframes vv-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Scroll Progress Bar ────────────────────────────────────────────────────── */

.vv-scroll-bar {
  position: fixed;
  top: 26px;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 200;
  width: 0;
  transition: width 0.1s linear;
}

/* ─── Navigation ─────────────────────────────────────────────────────────────── */

.vv-nav {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
}

.vv-nav-logo {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.vv-nav-logo .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-left: 1px;
  margin-bottom: 2px;
  align-self: flex-end;
}

.vv-nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  list-style: none;
}

.vv-nav-links li a {
  position: relative;
  color: #fff;
  text-decoration: none;
}

.vv-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.vv-nav-links li a:hover::after {
  width: 100%;
}

.vv-nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.vv-nav-cta:hover {
  background: #fff;
  color: #000;
}

/* ─── Hero ───────────────────────────────────────────────────────────────────── */

.vv-hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.vv-hero-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.vv-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
}

.vv-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: vv-pulse 1.4s ease infinite;
}

@keyframes vv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.vv-headline {
  font-weight: 900;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin-top: auto;
}

.vv-headline .line {
  display: block;
  overflow: hidden;
}

.vv-headline .word {
  display: inline-block;
  /* Visible by default — animation applied only when JS confirms ready */
}

/* Progressive enhancement: hide words only when JS class is present */
.vv-js .vv-headline .word {
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.vv-js.vv-loaded .vv-headline .word {
  transform: translateY(0);
}

.vv-js .vv-headline .w1 { transition-delay: 0.1s; }
.vv-js .vv-headline .w2 { transition-delay: 0.2s; }
.vv-js .vv-headline .w3 { transition-delay: 0.3s; }
.vv-js .vv-headline .w4 { transition-delay: 0.4s; }
.vv-js .vv-headline .w5 { transition-delay: 0.5s; }

.vv-headline .accent {
  color: var(--accent);
  font-style: italic;
}

.vv-headline .big-dot {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  background: var(--accent);
  border-radius: 50%;
  vertical-align: baseline;
  margin-left: 0.02em;
  transform: translateY(0.05em);
}

.vv-hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.vv-hero-sub {
  font-size: 17px;
  line-height: 1.45;
  max-width: 460px;
  color: #cfcbc4;
  font-weight: 400;
}

.vv-hero-sub strong {
  color: var(--fg);
  font-weight: 600;
}

.vv-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.vv-hero-stat-num {
  font-weight: 900;
  font-size: 80px;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.vv-hero-stat-num .pct {
  color: var(--accent);
}

.vv-hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  max-width: 200px;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */

.vv-btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 14px;
  padding: 18px 28px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
  transition: transform 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.vv-btn-primary:hover {
  background: #ff6242;
  transform: translateY(-2px);
  color: #0a0a0a;
}

.vv-btn-primary .arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0a0a0a;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.3s;
}

.vv-btn-primary:hover .arrow {
  transform: rotate(-45deg);
}

.vv-btn-ghost {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.vv-btn-ghost:hover {
  color: var(--fg);
  border-color: var(--accent);
}

/* ─── Marquee Divider ────────────────────────────────────────────────────────── */

.vv-marquee {
  overflow: hidden;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.vv-marquee-track {
  display: inline-flex;
  animation: vv-marquee 30s linear infinite;
  white-space: nowrap;
  font-weight: 900;
  font-size: clamp(60px, 10vw, 140px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.vv-marquee-track span {
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  color: var(--fg);
}

.vv-marquee-track .o    { color: var(--accent); }
.vv-marquee-track .star { color: var(--accent); font-size: 0.6em; }

@keyframes vv-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section Base ───────────────────────────────────────────────────────────── */

section { position: relative; }

.vv-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.vv-section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.vv-section-label .num {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}

.vv-section-title {
  font-weight: 900;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  max-width: 1200px;
}

.vv-section-title .accent { color: var(--accent); }

.vv-wrap { padding: 140px 40px; }

/* ─── Problems ───────────────────────────────────────────────────────────────── */

.vv-problems {
  padding: 140px 40px 0;
}

.vv-problems-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.vv-problems-intro p {
  font-size: 18px;
  line-height: 1.5;
  color: #cfcbc4;
  max-width: 500px;
}

.vv-problem-list {
  border-top: 1px solid var(--line);
}

.vv-problem-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 200px;
  gap: 40px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.3s, padding-left 0.3s;
  cursor: pointer;
}

.vv-problem-row:hover {
  padding-left: 20px;
}

.vv-problem-row:hover .vv-problem-headline {
  color: var(--accent);
}

.vv-problem-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(229, 75, 42, 0.08), transparent);
  transition: width 0.4s ease;
  pointer-events: none;
}

.vv-problem-row:hover::before {
  width: 100%;
}

.vv-problem-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  padding-top: 8px;
}

.vv-problem-headline {
  font-weight: 900;
  font-size: clamp(32px, 3.2vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  transition: color 0.3s;
}

.vv-problem-body {
  font-size: 15px;
  line-height: 1.55;
  color: #a8a49d;
  max-width: 440px;
  padding-top: 6px;
}

.vv-problem-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  padding-top: 8px;
}

.vv-problem-tag .cost {
  display: block;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 6px;
}

/* ─── Solution ───────────────────────────────────────────────────────────────── */

.vv-solution {
  padding: 180px 40px;
  background: var(--bg);
  position: relative;
}

.vv-solution-header {
  margin-bottom: 100px;
}

.vv-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.vv-sol-card {
  background: var(--bg);
  padding: 48px 36px 40px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.vv-sol-card:hover {
  background: #111;
}

.vv-sol-card .corner {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

.vv-sol-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: auto;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s;
}

.vv-sol-card:hover .vv-sol-icon {
  transform: rotate(180deg);
  background: var(--accent);
  color: #0a0a0a;
}

.vv-sol-icon svg {
  width: 28px;
  height: 28px;
}

.vv-sol-step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-top: 64px;
}

.vv-sol-headline {
  font-weight: 900;
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-top: 16px;
  margin-bottom: 20px;
}

.vv-sol-body {
  font-size: 14px;
  line-height: 1.55;
  color: #a8a49d;
}

/* ─── Process ────────────────────────────────────────────────────────────────── */

.vv-process {
  padding: 180px 40px;
  position: relative;
}

.vv-process-track {
  margin-top: 100px;
  position: relative;
}

.vv-process-track::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.vv-process-step {
  display: grid;
  grid-template-columns: 200px 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  padding: 80px 0;
  position: relative;
}

.vv-process-step::before {
  content: '';
  position: absolute;
  left: 95px;
  top: 92px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--bg), 0 0 0 7px var(--line);
}

.vv-process-week {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  padding-top: 8px;
}

.vv-process-num-big {
  font-weight: 900;
  font-size: clamp(80px, 10vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  padding-left: 60px;
}

.vv-process-content h3 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.vv-process-content ul {
  list-style: none;
}

.vv-process-content ul li {
  font-size: 15px;
  color: #a8a49d;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.vv-process-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.vv-process-content .deliverable {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vv-process-content .deliverable span {
  color: var(--accent);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Results ────────────────────────────────────────────────────────────────── */

.vv-results {
  padding: 180px 40px;
  background: var(--fg);
  color: #0a0a0a;
}

.vv-results .vv-section-label {
  color: #666;
}

.vv-results .vv-section-label::before {
  background: var(--accent);
}

.vv-results .vv-section-label .num {
  color: var(--accent);
}

.vv-results .vv-section-title {
  color: #0a0a0a;
}

.vv-results .vv-section-title .accent {
  color: var(--accent);
}

.vv-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 100px;
  background: #0a0a0a;
  border: 1px solid #0a0a0a;
}

.vv-result-card {
  background: var(--fg);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.vv-result-metric {
  font-weight: 900;
  font-size: clamp(80px, 9vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: #0a0a0a;
}

.vv-result-metric .pct {
  color: var(--accent);
}

.vv-result-desc {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-top: 32px;
  color: #0a0a0a;
}

.vv-result-exp {
  font-size: 14px;
  line-height: 1.55;
  color: #555;
  margin-top: auto;
  padding-top: 32px;
  max-width: 360px;
}

.vv-results-note {
  margin-top: 40px;
  font-size: 12px;
  color: #666;
  font-style: italic;
}

/* ─── Services ───────────────────────────────────────────────────────────────── */

.vv-services {
  padding: 180px 40px;
}

.vv-service-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  padding: 100px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.vv-service-block:last-of-type {
  border-bottom: 1px solid var(--line);
}

.vv-service-left {
  position: sticky;
  top: 120px;
}

.vv-service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 16px;
}

.vv-service-name {
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.vv-service-tagline {
  font-size: 15px;
  color: #a8a49d;
  line-height: 1.5;
  max-width: 380px;
}

.vv-service-right h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.vv-service-right p {
  font-size: 16px;
  line-height: 1.55;
  color: #cfcbc4;
  margin-bottom: 32px;
}

.vv-service-features {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 24px 0 32px;
}

.vv-service-features li {
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.vv-service-features li:hover {
  border-color: var(--accent);
  background: #121212;
}

.vv-service-features li .mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.vv-service-outcome {
  margin-top: 24px;
  padding: 20px 24px;
  background: #121212;
  border-left: 3px solid var(--accent);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.5;
}

.vv-service-outcome strong {
  color: var(--accent);
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */

.vv-faq {
  padding: 180px 40px;
}

.vv-faq-list {
  margin-top: 80px;
}

.vv-faq-item {
  border-top: 1px solid var(--line);
}

.vv-faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.vv-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.vv-faq-q:hover {
  color: var(--accent);
}

.vv-faq-q .plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}

.vv-faq-item.open .vv-faq-q .plus {
  transform: rotate(45deg);
  background: var(--accent);
  color: #0a0a0a;
}

.vv-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 16px;
  line-height: 1.6;
  color: #cfcbc4;
  max-width: 760px;
}

.vv-faq-item.open .vv-faq-a {
  max-height: 400px;
  padding: 0 0 32px;
}

/* ─── Final CTA ──────────────────────────────────────────────────────────────── */

.vv-cta-final {
  padding: 180px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vv-cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 75, 42, 0.15), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vv-cta-final h2 {
  font-weight: 900;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.vv-cta-final h2 .accent {
  color: var(--accent);
  font-style: italic;
}

.vv-cta-final p {
  font-size: 18px;
  max-width: 560px;
  margin: 32px auto 0;
  color: #cfcbc4;
  line-height: 1.55;
  position: relative;
}

.vv-cta-final .ctas {
  margin-top: 48px;
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */

.vv-footer {
  padding: 100px 40px 40px;
  border-top: 1px solid var(--line);
}

.vv-footer-big {
  font-weight: 900;
  font-size: clamp(80px, 16vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 60px;
}

.vv-footer-big .dot {
  color: var(--accent);
}

.vv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.vv-footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.vv-footer-col a,
.vv-footer-col p {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--fg);
  transition: color 0.2s;
  text-decoration: none;
}

.vv-footer-col a:hover {
  color: var(--accent);
}

.vv-footer-tag {
  font-size: 14px;
  color: #a8a49d;
  line-height: 1.5;
  max-width: 340px;
  margin-top: 8px;
}

.vv-footer-legal {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

/* ─── Reveal Animations ──────────────────────────────────────────────────────── */

/* Content visible by default — animations only engage when .vv-js is on <html> */
.vv-reveal {
  /* no hiding — progressive enhancement only */
}

.vv-js .vv-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.vv-js .vv-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.vv-reveal-lines span {
  display: block;
  overflow: hidden;
}

.vv-reveal-lines span i {
  display: block;
  font-style: inherit;
  /* Visible by default */
}

.vv-js .vv-reveal-lines span i {
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.vv-js .vv-reveal-lines.in span i {
  transform: translateY(0);
}

.vv-js .vv-reveal-lines.in span:nth-child(2) i { transition-delay: 0.1s; }
.vv-js .vv-reveal-lines.in span:nth-child(3) i { transition-delay: 0.2s; }

/* Counter */
.vv-counter-num { font-variant-numeric: tabular-nums; }

/* ─── Blog ───────────────────────────────────────────────────────────────────── */

.vv-blog-header {
  padding: 180px 40px 60px;
  border-bottom: 1px solid var(--line);
}

.vv-page-title {
  font-weight: 900;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.vv-page-title .accent {
  color: var(--accent);
  font-style: italic;
}

.vv-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vv-post-card {
  background: var(--bg);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.35s;
  min-height: 460px;
  position: relative;
  text-decoration: none;
  color: var(--fg);
}

.vv-post-card:hover {
  background: #111;
  color: var(--fg);
}

.vv-post-card .vv-post-thumb {
  aspect-ratio: 4/3;
  background: #121212;
  border: 1px solid var(--line);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vv-post-card .vv-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vv-post-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.vv-post-meta .cat {
  color: var(--accent);
}

.vv-post-title-small {
  font-weight: 800;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.vv-post-card:hover .vv-post-title-small {
  color: var(--accent);
}

.vv-post-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: #a8a49d;
  flex: 1;
}

.vv-post-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

.vv-post-footer .arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}

.vv-post-card:hover .vv-post-footer .arrow {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
  transform: rotate(-45deg);
}

/* ─── Single Post ────────────────────────────────────────────────────────────── */

.vv-single-header {
  padding: 180px 40px 80px;
  border-bottom: 1px solid var(--line);
  max-width: 900px;
}

.vv-single-header .vv-post-meta {
  margin-bottom: 32px;
}

.vv-single-title {
  font-weight: 900;
  font-size: clamp(44px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.vv-single-content {
  padding: 80px 40px 140px;
  max-width: 760px;
}

.vv-single-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #cfcbc4;
  margin-bottom: 24px;
}

.vv-single-content h2 {
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 56px 0 24px;
}

.vv-single-content h3 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
}

.vv-single-content ul,
.vv-single-content ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 24px;
}

.vv-single-content ul li,
.vv-single-content ol li {
  font-size: 18px;
  line-height: 1.7;
  color: #cfcbc4;
  padding: 6px 0 6px 24px;
  position: relative;
}

.vv-single-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}

.vv-single-content ol {
  counter-reset: list-counter;
}

.vv-single-content ol li {
  counter-increment: list-counter;
}

.vv-single-content ol li::before {
  content: counter(list-counter) '.';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.vv-single-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 40px 0;
  padding: 20px 24px;
  background: #121212;
  border-radius: 2px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--fg);
  font-weight: 500;
}

.vv-single-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vv-single-content img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin: 40px 0;
}

/* ─── Contact ────────────────────────────────────────────────────────────────── */

.vv-contact {
  padding: 180px 40px;
}

.vv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 80px;
  align-items: start;
}

.vv-contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.vv-contact-form input,
.vv-contact-form textarea,
.vv-contact-form select {
  width: 100%;
  background: #121212;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 18px;
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 24px;
  appearance: none;
}

.vv-contact-form input:focus,
.vv-contact-form textarea:focus {
  border-color: var(--accent);
}

.vv-contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.vv-contact-info h3 {
  font-weight: 900;
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.vv-contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcbc4;
  margin-bottom: 40px;
}

.vv-contact-detail {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.vv-contact-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.vv-contact-detail .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 80px;
}

.vv-contact-detail a {
  color: var(--fg);
  transition: color 0.2s;
}

.vv-contact-detail a:hover {
  color: var(--accent);
}

/* ─── Subscribe / Newsletter ─────────────────────────────────────────────────── */

.vv-subscribe {
  padding: 140px 40px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.vv-subscribe::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 75, 42, 0.12), transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}

.vv-sub-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.vv-sub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.vv-sub-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.vv-subscribe h2 {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.vv-subscribe h2 .accent {
  color: var(--accent);
  font-style: italic;
}

.vv-subscribe p.tag {
  font-size: 16px;
  line-height: 1.55;
  color: #cfcbc4;
  margin-top: 20px;
  max-width: 460px;
}

.vv-sub-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vv-sub-form .row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  padding: 8px 8px 8px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #0d0d0d;
  transition: border-color 0.2s;
}

.vv-sub-form .row:focus-within {
  border-color: var(--accent);
}

.vv-sub-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  padding: 10px 0;
}

.vv-sub-form input::placeholder {
  color: var(--muted);
}

.vv-sub-form button {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 14px;
  padding: 0 24px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}

.vv-sub-form button:hover {
  background: #ff6242;
  transform: translateX(2px);
}

.vv-sub-form .fine {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  padding: 0 4px;
}

.vv-sub-form .fine span {
  color: var(--accent);
}

/* ─── Crumbs ─────────────────────────────────────────────────────────────────── */

.vv-crumbs {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.vv-crumbs a {
  color: var(--muted);
  transition: color 0.2s;
}

.vv-crumbs a:hover { color: var(--fg); }

.vv-crumbs .sep {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}

.vv-crumbs .here { color: var(--fg); }

/* ─── WordPress Core Block Overrides ─────────────────────────────────────────── */

.wp-block-post-content > * {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: #cfcbc4;
}

.wp-block-post-content h2,
.wp-block-post-content h3 {
  color: var(--fg);
}

.wp-site-blocks {
  background: var(--bg);
}

/* Remove default WordPress block margins that interfere */
.wp-block-group {
  margin-top: 0;
  margin-bottom: 0;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 820px) {
  .vv-nav { padding: 18px 24px; }
  .vv-nav-links { display: none; }

  .vv-hero,
  .vv-problems,
  .vv-solution,
  .vv-process,
  .vv-results,
  .vv-services,
  .vv-faq,
  .vv-cta-final,
  .vv-footer,
  .vv-blog-header,
  .vv-contact,
  .vv-subscribe,
  .vv-single-header,
  .vv-single-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .vv-hero { padding-top: 120px; }
  .vv-hero-bottom { grid-template-columns: 1fr; gap: 30px; }
  .vv-hero-ctas { align-items: flex-start; }

  .vv-problems-intro,
  .vv-solution-grid,
  .vv-results-grid,
  .vv-footer-grid,
  .vv-contact-grid,
  .vv-sub-grid {
    grid-template-columns: 1fr;
  }

  .vv-problem-row,
  .vv-process-step,
  .vv-service-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vv-process-track::before,
  .vv-process-step::before { display: none; }
  .vv-process-num-big { padding-left: 0; font-size: 72px; }
  .vv-service-left { position: static; }

  .vv-posts-grid { grid-template-columns: 1fr; }

  .vv-cursor { display: none; }
}

@media (max-width: 640px) {
  .vv-blog-header { padding-top: 130px; }
  .vv-single-header { padding-top: 130px; }
  .vv-contact { padding-top: 130px; }
}
