/* =========================================
   VideTarge Landing Page — Theme CSS
   ========================================= */

/* Fonts */
:root {
  --bg: #0C0C0F;
  --bg-2: #111116;
  --bg-3: #18181F;
  --fg: #F5F5F7;
  --fg-2: #A1A1A6;
  --fg-3: #636366;
  --accent: #FF4D00;
  --accent-2: #FF6B2B;
  --accent-glow: rgba(255, 77, 0, 0.15);
  --border: rgba(255,255,255,0.08);
  --card: #14141A;
  --card-2: #1A1A22;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', -apple-system, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 8vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,77,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid rgba(255,77,0,0.3);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-headline .accent {
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
}

.stat-label {
  font-size: 12px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* PHONE MOCKUP */
.hero-visual { position: relative; display: flex; justify-content: center; }

.phone-mockup {
  position: relative;
  width: 280px;
}

.phone-frame {
  background: #0A0A0E;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 44px;
  padding: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 60px rgba(255,77,0,0.08);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #0A0A0E;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-screen {
  background: #0F0F14;
  border-radius: 36px;
  overflow: hidden;
  height: 560px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 40px 16px 12px;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.app-icon { color: var(--accent); }

.reel-card {
  margin: 8px 10px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a00 0%, #2d1200 50%, #1a0800 100%);
  position: relative;
}

.reel-card.active {
  box-shadow: 0 0 0 1.5px rgba(255,77,0,0.5), 0 8px 32px rgba(255,77,0,0.2);
}

.reel-content { padding: 16px; }

.reel-overlay { display: flex; flex-direction: column; gap: 10px; }

.reel-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.reel-text {
  font-size: 12px;
  color: var(--fg-2);
  line-height: 1.5;
  font-style: italic;
}

.reel-cta {
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  text-align: center;
  width: fit-content;
}

.reel-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0;
}

.bar-progress {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.reel-stack {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reel-thumb {
  background: var(--card-2);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid var(--border);
  position: relative;
}

.thumb-heat, .thumb-views {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 4px;
}

.reel-thumb p {
  font-size: 11px;
  color: var(--fg-2);
  line-height: 1.4;
}

.phone-bottom-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 8px 20px;
  font-size: 18px;
}

.add-btn {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  white-space: nowrap;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}

.hero-badge span {
  font-size: 12px;
  color: var(--fg-2);
  font-weight: 600;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* SECTION SHARED */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--fg);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto;
}

/* PROOF */
.proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 8vw;
}

.proof-inner {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.proof-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
}

.proof-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border: 1px solid rgba(255,77,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.proof-text {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 8px;
  font-style: italic;
}

.proof-source {
  font-size: 11px;
  color: var(--fg-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-sep {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* PROCESS */
.process {
  padding: 120px 8vw;
}

.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s;
}

.process-step:hover {
  border-color: rgba(255,77,0,0.3);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(255,77,0,0.15);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-icon svg { width: 24px; height: 24px; }

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  height: 100%;
  align-self: center;
}

.connector-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--accent), var(--border));
}

/* PACKAGES */
.packages {
  padding: 120px 8vw;
  background: var(--bg-2);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.pkg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s;
}

.pkg-card:hover {
  border-color: rgba(255,77,0,0.3);
}

.pkg-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(255,77,0,0.1);
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pkg-header { margin-bottom: 28px; }

.pkg-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  display: block;
  margin-bottom: 12px;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.price-dollar {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--fg-2);
}

.price-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--fg-3);
  font-weight: 500;
}

.pkg-tagline {
  font-size: 14px;
  color: var(--fg-2);
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pkg-features li {
  font-size: 14px;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  position: relative;
}

.pkg-features li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(255,77,0,0.3);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4D00' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.pkg-cta {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.pkg-cta-featured {
  color: var(--accent);
}

.packages-note {
  text-align: center;
  font-size: 15px;
  color: var(--fg-3);
  max-width: 600px;
  margin: 0 auto;
}

.packages-note span {
  color: var(--fg-2);
  font-weight: 600;
}

/* PLATFORMS */
.platforms {
  padding: 120px 8vw;
  border-top: 1px solid var(--border);
}

.platforms-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.platforms-text { flex-shrink: 0; }

.platforms-title {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.1;
}

.platforms-desc {
  font-size: 16px;
  color: var(--fg-2);
  max-width: 340px;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  flex: 1;
}

.plat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.3s;
}

.plat-card:hover {
  border-color: rgba(255,77,0,0.3);
}

.plat-icon {
  color: var(--accent);
  margin-bottom: 4px;
}

.plat-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.plat-stat {
  font-size: 13px;
  color: var(--fg-3);
}

/* MANIFESTO */
.manifesto {
  padding: 120px 8vw;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.manifesto-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.manifesto-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.manifesto-statement {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.3;
  max-width: 900px;
  font-style: italic;
}

.manifesto-meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.meta-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}

.meta-label {
  font-size: 11px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  max-width: 120px;
}

.meta-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 8vw 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  color: var(--fg-3);
  max-width: 360px;
}

.footer-meta {
  font-size: 13px;
  color: var(--fg-3);
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .process-grid { flex-direction: column; gap: 12px; }
  .step-connector { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; }
  .proof-sep { display: none; }
  .platforms-inner { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 6vw 60px; }
  .proof { padding: 40px 6vw; }
  .process { padding: 80px 6vw; }
  .packages { padding: 80px 6vw; }
  .platforms { padding: 80px 6vw; }
  .manifesto { padding: 80px 6vw; }
  .footer { padding: 40px 6vw 30px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
  .manifesto-meta { flex-direction: column; }
  .meta-sep { display: none; }
  .meta-item { padding: 12px 0; }
}