/*
Theme Name: TechnologyVenturesPlus
Theme URI: https://technologyventuresplus.com
Author: TechnologyVenturesPlus
Author URI: https://technologyventuresplus.com
Description: A cutting-edge, modern WordPress theme for TechnologyVenturesPlus — built with a dark-tech aesthetic, neon accents, cinematic typography, and GPU-accelerated animations. Inspired by Quantum and DeepScan AI design languages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tvp
Tags: dark, technology, modern, animated, full-site-editing, one-column, two-columns, custom-colors, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — TVP DESIGN SYSTEM
   ============================================================ */
:root {
  /* Core palette */
  --tvp-bg:           #040810;
  --tvp-bg-2:         #070d1a;
  --tvp-bg-card:      #0b1424;
  --tvp-bg-glass:     rgba(11, 20, 36, 0.72);
  --tvp-border:       rgba(0, 212, 255, 0.12);
  --tvp-border-hover: rgba(0, 212, 255, 0.40);

  /* Accent system */
  --tvp-cyan:         #00d4ff;
  --tvp-cyan-dim:     rgba(0, 212, 255, 0.15);
  --tvp-cyan-glow:    0 0 20px rgba(0, 212, 255, 0.35), 0 0 60px rgba(0, 212, 255, 0.10);
  --tvp-violet:       #7b2fff;
  --tvp-violet-dim:   rgba(123, 47, 255, 0.18);
  --tvp-green:        #00ff88;
  --tvp-green-dim:    rgba(0, 255, 136, 0.12);
  --tvp-orange:       #ff6b2b;
  --tvp-orange-dim:   rgba(255, 107, 43, 0.15);

  /* Text */
  --tvp-text-primary:   #e8f4ff;
  --tvp-text-secondary: #7a9bb5;
  --tvp-text-muted:     #3d5a72;

  /* Typography */
  --tvp-font-display: 'Orbitron', 'Rajdhani', monospace;
  --tvp-font-body:    'DM Sans', 'Sora', sans-serif;
  --tvp-font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --tvp-space-xs:  0.25rem;
  --tvp-space-sm:  0.5rem;
  --tvp-space-md:  1rem;
  --tvp-space-lg:  2rem;
  --tvp-space-xl:  4rem;
  --tvp-space-2xl: 8rem;

  /* Radii */
  --tvp-radius-sm: 4px;
  --tvp-radius-md: 8px;
  --tvp-radius-lg: 16px;
  --tvp-radius-xl: 24px;

  /* Transitions */
  --tvp-ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --tvp-ease-out:  cubic-bezier(0.0, 0.0, 0.2, 1);
  --tvp-duration:  0.35s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--tvp-bg);
  color: var(--tvp-text-primary);
  font-family: var(--tvp-font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Scanline overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 212, 255, 0.012) 2px,
    rgba(0, 212, 255, 0.012) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--tvp-cyan); text-decoration: none; transition: color var(--tvp-duration) var(--tvp-ease); }
a:hover { color: #fff; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tvp-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--tvp-text-primary);
}

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.tvp-display { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 900; letter-spacing: -0.04em; }
.tvp-h1      { font-size: clamp(2rem, 4vw, 3.5rem); }
.tvp-h2      { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.tvp-h3      { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
.tvp-body    { font-family: var(--tvp-font-body); font-size: 1.0625rem; line-height: 1.75; }
.tvp-small   { font-size: 0.8125rem; letter-spacing: 0.04em; }
.tvp-mono    { font-family: var(--tvp-font-mono); }
.tvp-label   { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.tvp-container {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
}
.tvp-container--wide  { width: min(1440px, 100% - 3rem); margin-inline: auto; }
.tvp-container--tight { width: min(860px, 100% - 3rem); margin-inline: auto; }

.tvp-grid-2  { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr)); gap: var(--tvp-space-lg); }
.tvp-grid-3  { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: var(--tvp-space-lg); }
.tvp-grid-4  { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: var(--tvp-space-md); }
.tvp-flex    { display: flex; align-items: center; gap: var(--tvp-space-md); }
.tvp-flex-col{ display: flex; flex-direction: column; gap: var(--tvp-space-md); }

/* ============================================================
   BUTTONS
   ============================================================ */
.tvp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--tvp-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--tvp-radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--tvp-duration) var(--tvp-ease);
  white-space: nowrap;
  text-decoration: none;
}

.tvp-btn--primary {
  background: linear-gradient(135deg, var(--tvp-cyan) 0%, var(--tvp-violet) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--tvp-cyan-glow);
}
.tvp-btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.25s;
}
.tvp-btn--primary:hover::after { background: rgba(255,255,255,0.08); }
.tvp-btn--primary:hover { box-shadow: 0 0 36px rgba(0,212,255,0.55), 0 0 80px rgba(0,212,255,0.2); transform: translateY(-2px); color: #fff; }

.tvp-btn--ghost {
  background: transparent;
  color: var(--tvp-cyan);
  border-color: var(--tvp-border-hover);
}
.tvp-btn--ghost:hover { background: var(--tvp-cyan-dim); border-color: var(--tvp-cyan); color: var(--tvp-cyan); }

.tvp-btn--outline {
  background: transparent;
  color: var(--tvp-text-primary);
  border-color: var(--tvp-border);
}
.tvp-btn--outline:hover { border-color: var(--tvp-cyan); color: var(--tvp-cyan); background: var(--tvp-cyan-dim); }

/* ============================================================
   CARDS
   ============================================================ */
.tvp-card {
  background: var(--tvp-bg-card);
  border: 1px solid var(--tvp-border);
  border-radius: var(--tvp-radius-lg);
  padding: var(--tvp-space-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--tvp-duration) var(--tvp-ease),
              box-shadow var(--tvp-duration) var(--tvp-ease),
              transform var(--tvp-duration) var(--tvp-ease);
}
.tvp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tvp-cyan), transparent);
  opacity: 0;
  transition: opacity var(--tvp-duration) var(--tvp-ease);
}
.tvp-card:hover {
  border-color: var(--tvp-border-hover);
  box-shadow: 0 8px 40px rgba(0,212,255,0.08), 0 2px 12px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.tvp-card:hover::before { opacity: 1; }

.tvp-card--glass {
  background: var(--tvp-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ============================================================
   BADGES & TAGS
   ============================================================ */
.tvp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-family: var(--tvp-font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
}
.tvp-badge--cyan   { color: var(--tvp-cyan);   background: var(--tvp-cyan-dim); }
.tvp-badge--violet { color: var(--tvp-violet); background: var(--tvp-violet-dim); }
.tvp-badge--green  { color: var(--tvp-green);  background: var(--tvp-green-dim); }
.tvp-badge--orange { color: var(--tvp-orange); background: var(--tvp-orange-dim); }
.tvp-badge .tvp-badge__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: tvp-pulse 1.8s ease-in-out infinite;
}

/* ============================================================
   DIVIDERS & DECORATIVE
   ============================================================ */
.tvp-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tvp-border-hover), transparent);
  margin: var(--tvp-space-xl) 0;
}
.tvp-glow-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--tvp-cyan), var(--tvp-violet));
  border-radius: 2px;
  margin-bottom: var(--tvp-space-md);
}
.tvp-section-tag {
  font-family: var(--tvp-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tvp-cyan);
  margin-bottom: var(--tvp-space-sm);
}

/* Corner decorators */
.tvp-corner-tl::before, .tvp-corner-tr::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--tvp-cyan);
  border-style: solid;
  opacity: 0.5;
}
.tvp-corner-tl::before { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.tvp-corner-tr::after  { top: 10px; right: 10px; border-width: 2px 2px 0 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes tvp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}
@keyframes tvp-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tvp-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes tvp-slide-right {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes tvp-glow-pulse {
  0%, 100% { box-shadow: var(--tvp-cyan-glow); }
  50%       { box-shadow: 0 0 40px rgba(0,212,255,0.6), 0 0 100px rgba(0,212,255,0.2); }
}
@keyframes tvp-scan {
  0%   { top: -100%; }
  100% { top: 200%; }
}
@keyframes tvp-orbit {
  from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}
@keyframes tvp-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.tvp-animate { animation: tvp-fade-up 0.7s var(--tvp-ease) both; }
.tvp-animate--delay-1 { animation-delay: 0.1s; }
.tvp-animate--delay-2 { animation-delay: 0.2s; }
.tvp-animate--delay-3 { animation-delay: 0.3s; }
.tvp-animate--delay-4 { animation-delay: 0.4s; }
.tvp-animate--delay-5 { animation-delay: 0.5s; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.tvp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(4, 8, 16, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--tvp-border);
  transition: background 0.3s, border-color 0.3s;
}
.tvp-header.scrolled {
  background: rgba(4, 8, 16, 0.97);
  border-bottom-color: var(--tvp-border-hover);
}
.tvp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.tvp-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.tvp-logo__mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--tvp-cyan), var(--tvp-violet));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tvp-font-display);
  font-weight: 900;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tvp-logo__mark::after {
  content: '';
  position: absolute;
  width: 200%; height: 200%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  top: -50%; left: -50%;
}
.tvp-logo__text {
  font-family: var(--tvp-font-display);
  font-size: 1.0rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--tvp-text-primary);
  line-height: 1.1;
}
.tvp-logo__text span { color: var(--tvp-cyan); }
.tvp-logo__sub {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tvp-text-muted);
  display: block;
}

/* NAV */
.tvp-nav { display: flex; align-items: center; gap: 0.25rem; }
.tvp-nav__item { position: relative; }
.tvp-nav__link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-family: var(--tvp-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tvp-text-secondary);
  border-radius: var(--tvp-radius-sm);
  transition: color var(--tvp-duration), background var(--tvp-duration);
}
.tvp-nav__link:hover, .tvp-nav__item.current-menu-item .tvp-nav__link {
  color: var(--tvp-cyan);
  background: var(--tvp-cyan-dim);
}

/* Dropdown */
.tvp-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--tvp-bg-card);
  border: 1px solid var(--tvp-border);
  border-radius: var(--tvp-radius-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--tvp-ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.tvp-nav__item:hover .tvp-nav__dropdown,
.tvp-nav__item:focus-within .tvp-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tvp-nav__dropdown a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 0.875rem;
  border-radius: var(--tvp-radius-sm);
  font-size: 0.82rem;
  color: var(--tvp-text-secondary);
  transition: all 0.2s;
}
.tvp-nav__dropdown a:hover { color: var(--tvp-cyan); background: var(--tvp-cyan-dim); }

/* Mobile toggle */
.tvp-menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--tvp-border);
  border-radius: var(--tvp-radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--tvp-text-primary);
  transition: border-color 0.2s;
}
.tvp-menu-toggle:hover { border-color: var(--tvp-cyan); color: var(--tvp-cyan); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.tvp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(72px + 4rem) 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Mesh background */
.tvp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.tvp-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.tvp-hero__bg-glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  filter: blur(40px);
}
.tvp-hero__bg-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(123,47,255,0.12) 0%, transparent 70%);
  filter: blur(40px);
}
.tvp-hero__orb {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px; height: 380px;
  opacity: 0.25;
}

.tvp-hero__content { position: relative; z-index: 1; max-width: 750px; }
.tvp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.625rem;
  margin-bottom: 1.5rem;
  animation: tvp-fade-up 0.6s var(--tvp-ease) both;
}
.tvp-hero__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: tvp-fade-up 0.7s 0.1s var(--tvp-ease) both;
}
.tvp-hero__title .accent {
  background: linear-gradient(135deg, var(--tvp-cyan) 0%, var(--tvp-violet) 50%, var(--tvp-cyan) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: tvp-gradient-shift 4s ease infinite;
}
@keyframes tvp-gradient-shift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.tvp-hero__lead {
  font-size: 1.125rem;
  color: var(--tvp-text-secondary);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: tvp-fade-up 0.7s 0.2s var(--tvp-ease) both;
}
.tvp-hero__cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: tvp-fade-up 0.7s 0.3s var(--tvp-ease) both;
}
.tvp-hero__stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--tvp-border);
  animation: tvp-fade-up 0.7s 0.45s var(--tvp-ease) both;
}
.tvp-hero__stat-value {
  font-family: var(--tvp-font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--tvp-cyan);
  letter-spacing: -0.03em;
  line-height: 1;
}
.tvp-hero__stat-label {
  font-size: 0.8rem;
  color: var(--tvp-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.tvp-section { padding: var(--tvp-space-2xl) 0; }
.tvp-section--sm { padding: var(--tvp-space-xl) 0; }
.tvp-section-header { text-align: center; margin-bottom: var(--tvp-space-xl); }
.tvp-section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}
.tvp-section-header p {
  font-size: 1.0625rem;
  color: var(--tvp-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.tvp-services {}
.tvp-service-card {
  position: relative;
  padding: 2rem;
}
.tvp-service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--tvp-radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}
.tvp-service-card__icon--cyan   { background: var(--tvp-cyan-dim);   color: var(--tvp-cyan); }
.tvp-service-card__icon--violet { background: var(--tvp-violet-dim); color: var(--tvp-violet); }
.tvp-service-card__icon--green  { background: var(--tvp-green-dim);  color: var(--tvp-green); }
.tvp-service-card__icon--orange { background: var(--tvp-orange-dim); color: var(--tvp-orange); }
.tvp-service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.tvp-service-card p {
  font-size: 0.9375rem;
  color: var(--tvp-text-secondary);
  line-height: 1.7;
}
.tvp-service-card__link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  margin-top: 1.25rem;
  font-family: var(--tvp-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tvp-cyan);
  transition: gap 0.2s;
}
.tvp-service-card__link:hover { gap: 0.625rem; }

/* ============================================================
   VENTURES / PORTFOLIO SECTION
   ============================================================ */
.tvp-ventures {}
.tvp-venture-card {
  overflow: hidden;
}
.tvp-venture-card__image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--tvp-bg-2) 0%, #0f1e30 100%);
  border-radius: var(--tvp-radius-md);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.tvp-venture-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--tvp-ease);
}
.tvp-venture-card:hover .tvp-venture-card__image img { transform: scale(1.05); }
.tvp-venture-card__image-placeholder {
  font-family: var(--tvp-font-display);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--tvp-cyan), var(--tvp-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tvp-venture-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.tvp-venture-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.tvp-venture-card p { font-size: 0.9rem; color: var(--tvp-text-secondary); }

/* ============================================================
   TECHNOLOGY / STACK SECTION
   ============================================================ */
.tvp-tech {}
.tvp-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.tvp-tech-pill {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: var(--tvp-bg-card);
  border: 1px solid var(--tvp-border);
  border-radius: var(--tvp-radius-lg);
  text-align: center;
  transition: all var(--tvp-duration) var(--tvp-ease);
  cursor: default;
}
.tvp-tech-pill:hover { border-color: var(--tvp-cyan); background: var(--tvp-cyan-dim); transform: translateY(-3px); }
.tvp-tech-pill__icon { font-size: 1.75rem; line-height: 1; }
.tvp-tech-pill__label { font-family: var(--tvp-font-display); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tvp-text-secondary); }

/* ============================================================
   TESTIMONIALS / TRUST
   ============================================================ */
.tvp-testimonial-card {
  padding: 2rem;
}
.tvp-testimonial-card__quote {
  font-size: 1rem;
  color: var(--tvp-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding-left: 1.25rem;
}
.tvp-testimonial-card__quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -0.25rem;
  font-size: 2rem;
  color: var(--tvp-cyan);
  font-family: var(--tvp-font-display);
  line-height: 1;
}
.tvp-testimonial-card__author { display: flex; align-items: center; gap: 0.875rem; }
.tvp-testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tvp-cyan), var(--tvp-violet));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tvp-font-display); font-weight: 900; font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}
.tvp-testimonial-card__name { font-weight: 600; font-size: 0.9375rem; }
.tvp-testimonial-card__role { font-size: 0.8rem; color: var(--tvp-text-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.tvp-cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tvp-cta-section__inner {
  position: relative;
  background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, rgba(123,47,255,0.06) 100%);
  border: 1px solid var(--tvp-border);
  border-radius: var(--tvp-radius-xl);
  padding: 5rem 2rem;
  overflow: hidden;
}
.tvp-cta-section__glow {
  position: absolute;
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.tvp-cta-section h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1rem; }
.tvp-cta-section p { color: var(--tvp-text-secondary); margin-bottom: 2rem; font-size: 1.0625rem; max-width: 520px; margin-inline: auto; margin-bottom: 2rem; }
.tvp-cta-section .tvp-flex { justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BLOG / INSIGHTS
   ============================================================ */
.tvp-post-card {}
.tvp-post-card__thumb {
  width: 100%; height: 200px;
  border-radius: var(--tvp-radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--tvp-bg-2);
}
.tvp-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--tvp-ease); }
.tvp-post-card:hover .tvp-post-card__thumb img { transform: scale(1.05); }
.tvp-post-card__meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.tvp-post-card__date { font-size: 0.8rem; color: var(--tvp-text-muted); }
.tvp-post-card h3 { font-size: 1.1rem; margin-bottom: 0.625rem; line-height: 1.35; }
.tvp-post-card p  { font-size: 0.9rem; color: var(--tvp-text-secondary); }

/* ============================================================
   FOOTER
   ============================================================ */
.tvp-footer {
  background: var(--tvp-bg-2);
  border-top: 1px solid var(--tvp-border);
  padding: 5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.tvp-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--tvp-cyan) 50%, transparent 100%);
}
.tvp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.tvp-footer__brand p {
  color: var(--tvp-text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}
.tvp-footer__social {
  display: flex; gap: 0.5rem;
  margin-top: 1.5rem;
}
.tvp-footer__social-link {
  width: 36px; height: 36px;
  border-radius: var(--tvp-radius-sm);
  border: 1px solid var(--tvp-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--tvp-text-muted);
  font-size: 0.875rem;
  transition: all 0.2s;
}
.tvp-footer__social-link:hover { border-color: var(--tvp-cyan); color: var(--tvp-cyan); background: var(--tvp-cyan-dim); }
.tvp-footer__col-title {
  font-family: var(--tvp-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tvp-text-primary);
  margin-bottom: 1.25rem;
}
.tvp-footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.tvp-footer__links a { font-size: 0.9rem; color: var(--tvp-text-muted); transition: color 0.2s; }
.tvp-footer__links a:hover { color: var(--tvp-cyan); }
.tvp-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--tvp-border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.tvp-footer__copy { font-size: 0.8rem; color: var(--tvp-text-muted); }
.tvp-footer__legal { display: flex; gap: 1.5rem; }
.tvp-footer__legal a { font-size: 0.8rem; color: var(--tvp-text-muted); transition: color 0.2s; }
.tvp-footer__legal a:hover { color: var(--tvp-cyan); }

/* ============================================================
   SINGLE POST / PAGE CONTENT
   ============================================================ */
.tvp-content-wrap { padding-top: calc(72px + 3rem); }
.tvp-single-header { padding: 5rem 0 3rem; }
.tvp-single-header h1 { font-size: clamp(1.75rem, 4vw, 3.25rem); margin-bottom: 1.25rem; }
.tvp-entry-content {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--tvp-text-primary);
}
.tvp-entry-content p  { margin-bottom: 1.5rem; }
.tvp-entry-content h2 { font-size: 1.75rem; margin: 3rem 0 1.25rem; }
.tvp-entry-content h3 { font-size: 1.35rem; margin: 2.5rem 0 1rem; }
.tvp-entry-content ul, .tvp-entry-content ol { list-style: revert; padding-left: 2rem; margin-bottom: 1.5rem; }
.tvp-entry-content blockquote {
  border-left: 3px solid var(--tvp-cyan);
  padding: 1.25rem 1.75rem;
  background: var(--tvp-cyan-dim);
  border-radius: 0 var(--tvp-radius-md) var(--tvp-radius-md) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--tvp-text-secondary);
}
.tvp-entry-content code {
  font-family: var(--tvp-font-mono);
  background: var(--tvp-bg-card);
  padding: 0.2em 0.45em;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--tvp-cyan);
  border: 1px solid var(--tvp-border);
}
.tvp-entry-content pre {
  background: var(--tvp-bg-card);
  border: 1px solid var(--tvp-border);
  border-radius: var(--tvp-radius-md);
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}
.tvp-entry-content pre code { background: none; border: none; padding: 0; font-size: 0.875rem; }
.tvp-entry-content a { color: var(--tvp-cyan); border-bottom: 1px solid rgba(0,212,255,0.3); }
.tvp-entry-content a:hover { border-bottom-color: var(--tvp-cyan); }

/* ============================================================
   WIDGETS / SIDEBAR
   ============================================================ */
.tvp-widget { margin-bottom: 2.5rem; }
.tvp-widget__title {
  font-family: var(--tvp-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tvp-text-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--tvp-border);
}

/* ============================================================
   FORMS
   ============================================================ */
.tvp-form {}
.tvp-field { margin-bottom: 1.25rem; }
.tvp-label {
  display: block;
  font-family: var(--tvp-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tvp-text-secondary);
  margin-bottom: 0.5rem;
}
.tvp-input, .tvp-textarea, .tvp-select {
  width: 100%;
  background: var(--tvp-bg-card);
  border: 1px solid var(--tvp-border);
  border-radius: var(--tvp-radius-sm);
  padding: 0.75rem 1rem;
  color: var(--tvp-text-primary);
  font-family: var(--tvp-font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.tvp-input:focus, .tvp-textarea:focus, .tvp-select:focus {
  border-color: var(--tvp-cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}
.tvp-textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.tvp-scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--tvp-bg-card);
  border: 1px solid var(--tvp-border);
  border-radius: var(--tvp-radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--tvp-text-secondary);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all var(--tvp-duration) var(--tvp-ease);
  z-index: 900;
}
.tvp-scroll-top.visible { opacity: 1; visibility: visible; }
.tvp-scroll-top:hover { border-color: var(--tvp-cyan); color: var(--tvp-cyan); background: var(--tvp-cyan-dim); }

/* ============================================================
   SEARCH
   ============================================================ */
.tvp-search-form { display: flex; gap: 0.5rem; }
.tvp-search-form input {
  flex: 1;
  background: var(--tvp-bg-card);
  border: 1px solid var(--tvp-border);
  border-radius: var(--tvp-radius-sm);
  padding: 0.625rem 1rem;
  color: var(--tvp-text-primary);
  font-family: var(--tvp-font-body);
  outline: none;
  transition: border-color 0.2s;
}
.tvp-search-form input:focus { border-color: var(--tvp-cyan); }
.tvp-search-form button {
  background: var(--tvp-cyan);
  border: none;
  border-radius: var(--tvp-radius-sm);
  padding: 0.625rem 1rem;
  color: var(--tvp-bg);
  cursor: pointer;
  font-weight: 700;
  font-family: var(--tvp-font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.tvp-search-form button:hover { background: #00b8d9; }

/* ============================================================
   PAGINATION
   ============================================================ */
.tvp-pagination {
  display: flex; justify-content: center; align-items: center; gap: 0.5rem;
  margin-top: var(--tvp-space-xl);
  flex-wrap: wrap;
}
.tvp-pagination a, .tvp-pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--tvp-border);
  border-radius: var(--tvp-radius-sm);
  font-family: var(--tvp-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tvp-text-secondary);
  transition: all 0.2s;
}
.tvp-pagination a:hover { border-color: var(--tvp-cyan); color: var(--tvp-cyan); background: var(--tvp-cyan-dim); }
.tvp-pagination .current { border-color: var(--tvp-cyan); color: var(--tvp-cyan); background: var(--tvp-cyan-dim); }

/* ============================================================
   COMMENTS
   ============================================================ */
.tvp-comments { padding-top: 3rem; }
.tvp-comment { margin-bottom: 2rem; }
.tvp-comment .tvp-card { padding: 1.5rem; }
.comment-author { font-weight: 600; color: var(--tvp-cyan); }
.comment-meta { font-size: 0.8rem; color: var(--tvp-text-muted); }

/* ============================================================
   WP ALIGN CLASSES
   ============================================================ */
.alignleft  { float: left; margin: 0.5rem 1.5rem 1rem 0; }
.alignright { float: right; margin: 0.5rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1rem auto; text-align: center; }
.alignwide  { margin-left: -4vw; margin-right: -4vw; }
.alignfull  { margin-left: calc(50% - 50vw); width: 100vw; }
.wp-caption-text { font-size: 0.8rem; color: var(--tvp-text-muted); text-align: center; margin-top: 0.5rem; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tvp-footer__grid { grid-template-columns: 1fr 1fr; }
  .tvp-hero__orb { display: none; }
}

@media (max-width: 768px) {
  .tvp-nav { display: none; }
  .tvp-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(4, 8, 16, 0.98);
    backdrop-filter: blur(24px);
    padding: 2rem;
    gap: 0.5rem;
    overflow-y: auto;
    z-index: 999;
    align-items: stretch;
  }
  .tvp-nav.open .tvp-nav__link { padding: 1rem 1.25rem; font-size: 1rem; border-bottom: 1px solid var(--tvp-border); }
  .tvp-nav.open .tvp-nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; box-shadow: none; padding: 0; }
  .tvp-menu-toggle { display: flex; }
  .tvp-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .tvp-hero__stats { gap: 1.5rem; }
  .tvp-hero__stat-value { font-size: 1.75rem; }
  .tvp-footer__bottom { flex-direction: column; text-align: center; }
}

/* ── ABOUT PAGE ─────────────────────────────────────── */
.tvp-about-hero {
    position: relative;
    overflow: hidden;
    background: var(--tvp-bg-2);
    border-bottom: 1px solid var(--tvp-border);
}

/* ── PARTNER PILLS ──────────────────────────────────── */
.tvp-partner-pill:hover {
    color: var(--tvp-cyan) !important;
    border-color: var(--tvp-cyan) !important;
}

/* ── CONTACT FORM ───────────────────────────────────── */
.tvp-contact-grid { align-items: start; }
select.tvp-select option {
    background: var(--tvp-bg-card);
    color: var(--tvp-text-primary);
}
select.tvp-select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9bb5' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ── VENTURE HERO RESPONSIVE ────────────────────────── */
@media (max-width: 900px) {
    .tvp-venture-hero-grid  { grid-template-columns: 1fr !important; }
    .tvp-venture-content-grid { grid-template-columns: 1fr !important; }
    .tvp-contact-grid       { grid-template-columns: 1fr !important; }
}

/* ── TEAM CARD ──────────────────────────────────────── */
.tvp-team-card { padding: 1.5rem; }

/* ── FAQ ACTIVE STATE ───────────────────────────────── */
.tvp-faq-item.is-open {
    border-color: var(--tvp-border-hover);
}

/* ── TIMELINE ───────────────────────────────────────── */
.tvp-timeline__track {
    margin-left: 0.75rem;
}

/* ── SERVICE GRID HOVER ─────────────────────────────── */
.tvp-service-card__icon svg {
    width: 24px; height: 24px;
}

/* ── CODE BLOCK in entry content ───────────────────── */
.tvp-entry-content pre code {
    line-height: 1.7;
}

/* ── BACK TO TOP BTN ────────────────────────────────── */
.tvp-scroll-top svg {
    transition: transform 0.2s;
}
.tvp-scroll-top:hover svg {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
