/*
Theme Name: VibeEcho
Theme URI: https://vibeecho.ai
Author: VibeEcho
Author URI: https://vibeecho.ai
Description: Official VIBEECHO.AI WordPress theme — premium golden bee CRM brand. Scan a card. Echo the vibe.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vibeecho
Tags: one-page, custom-background, custom-logo, featured-images, full-width-template

VIBEECHO.AI — The simplest CRM ever built.
Every connection starts with a vibe. VibeEcho makes sure it never fades.
*/

/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */

:root {
  /* Gold Palette */
  --ve-gold-50: #FFFDF5;
  --ve-gold-100: #FFF9E0;
  --ve-gold-200: #FFF0B8;
  --ve-gold-300: #FFE380;
  --ve-gold-400: #FFD43B;
  --ve-gold-500: #F5B800;
  --ve-gold-600: #D4A017;
  --ve-gold-700: #B8860B;
  --ve-gold-800: #8B6914;
  --ve-gold-900: #6B4F10;

  /* Dark Palette */
  --ve-dark: #0D0B07;
  --ve-dark-card: #1A1610;
  --ve-dark-card-hover: #231F16;
  --ve-dark-border: #2A2518;
  --ve-dark-surface: #151210;

  /* Text */
  --ve-text-primary: #FFF9E0;
  --ve-text-secondary: #B8A67A;
  --ve-text-muted: #7A6D4F;

  /* Functional */
  --ve-success: #28CA41;
  --ve-info: #3B82F6;
  --ve-warning: #FFD43B;
  --ve-danger: #FF5F57;
  --ve-purple: #A855F7;

  /* Spacing */
  --ve-section-pad: 120px;
  --ve-container-max: 1100px;

  /* Typography */
  --ve-font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --ve-font-mono: 'Space Mono', 'Courier New', monospace;

  /* Radius */
  --ve-radius-sm: 8px;
  --ve-radius-md: 12px;
  --ve-radius-lg: 20px;
  --ve-radius-xl: 28px;
  --ve-radius-full: 100px;

  /* Shadows */
  --ve-shadow-gold-sm: 0 4px 20px rgba(245, 184, 0, 0.15);
  --ve-shadow-gold-md: 0 4px 30px rgba(245, 184, 0, 0.25);
  --ve-shadow-gold-lg: 0 8px 40px rgba(245, 184, 0, 0.4);
  --ve-shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --ve-transition: 0.3s ease;
  --ve-transition-slow: 0.4s ease;
}


/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ve-transition);
}

ul, ol {
  list-style: none;
}

button, input {
  font-family: var(--ve-font-primary);
  border: none;
  outline: none;
}

::selection {
  background: var(--ve-gold-500);
  color: var(--ve-dark);
}


/* ==========================================================================
   Background Effects
   ========================================================================== */

.ve-honeycomb-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23F5B800' stroke-width='1'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='%23F5B800' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

.ve-glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.ve-glow-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.12), transparent 70%);
  top: -200px;
  right: -100px;
  animation: ve-float1 12s ease-in-out infinite;
}

.ve-glow-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
  bottom: 100px;
  left: -150px;
  animation: ve-float2 15s ease-in-out infinite;
}

.ve-glow-orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 212, 59, 0.06), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ve-float3 10s ease-in-out infinite;
}

@keyframes ve-float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}

@keyframes ve-float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

@keyframes ve-float3 {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-45%, -55%); }
}


/* ==========================================================================
   Layout
   ========================================================================== */

.ve-container {
  max-width: var(--ve-container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.ve-section {
  position: relative;
  z-index: 1;
  padding: var(--ve-section-pad) 40px;
}

.ve-section--center {
  text-align: center;
}


/* ==========================================================================
   Typography
   ========================================================================== */

.ve-label {
  font-family: var(--ve-font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ve-gold-500);
  margin-bottom: 16px;
  display: block;
}

.ve-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ve-text-primary);
}

.ve-title--hero {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.ve-title__gradient {
  background: linear-gradient(135deg, var(--ve-gold-300), var(--ve-gold-500), var(--ve-gold-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ve-desc {
  font-size: 18px;
  color: var(--ve-text-secondary);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.ve-desc--center {
  margin-left: auto;
  margin-right: auto;
}

.ve-desc strong {
  color: var(--ve-text-primary);
  font-weight: 600;
}


/* ==========================================================================
   Navigation
   ========================================================================== */

.ve-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 11, 7, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ve-dark-border);
}

.ve-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ve-logo__icon {
  width: 40px;
  height: 40px;
}

.ve-logo__text {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--ve-text-primary);
}

.ve-logo__highlight {
  color: var(--ve-gold-400);
}

.ve-logo__dot-ai {
  color: var(--ve-gold-500);
  font-weight: 600;
  font-size: 18px;
}

.ve-nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.ve-nav__link {
  color: var(--ve-text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--ve-transition);
}

.ve-nav__link:hover {
  color: var(--ve-gold-400);
}

.ve-nav__cta {
  background: linear-gradient(135deg, var(--ve-gold-500), var(--ve-gold-600));
  color: var(--ve-dark) !important;
  padding: 10px 24px;
  border-radius: var(--ve-radius-sm);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: var(--ve-shadow-gold-sm);
  transition: all var(--ve-transition);
}

.ve-nav__cta:hover {
  box-shadow: var(--ve-shadow-gold-lg);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.ve-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 4px;
}

.ve-nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--ve-text-secondary);
  border-radius: 2px;
  transition: all var(--ve-transition);
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.ve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--ve-radius-md);
  font-family: var(--ve-font-primary);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--ve-transition);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.ve-btn--primary {
  background: linear-gradient(135deg, var(--ve-gold-400), var(--ve-gold-600));
  color: var(--ve-dark);
  box-shadow: var(--ve-shadow-gold-md);
}

.ve-btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.ve-btn--primary:hover::after {
  left: 100%;
}

.ve-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--ve-shadow-gold-lg);
}

.ve-btn--secondary {
  background: transparent;
  border: 1px solid var(--ve-dark-border);
  color: var(--ve-text-secondary);
  font-weight: 500;
}

.ve-btn--secondary:hover {
  border-color: var(--ve-gold-500);
  color: var(--ve-gold-400);
  background: rgba(245, 184, 0, 0.05);
}

.ve-btn--ghost {
  background: rgba(245, 184, 0, 0.08);
  color: var(--ve-gold-400);
  border: 1px solid rgba(245, 184, 0, 0.15);
}

.ve-btn--ghost:hover {
  background: rgba(245, 184, 0, 0.15);
}

.ve-btn--full {
  width: 100%;
}


/* ==========================================================================
   Badge / Pill
   ========================================================================== */

.ve-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 184, 0, 0.08);
  border: 1px solid rgba(245, 184, 0, 0.15);
  border-radius: var(--ve-radius-full);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ve-gold-400);
}

.ve-badge__dot {
  width: 6px;
  height: 6px;
  background: var(--ve-gold-400);
  border-radius: 50%;
  animation: ve-pulse 2s ease-in-out infinite;
}

@keyframes ve-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}


/* ==========================================================================
   Hero
   ========================================================================== */

.ve-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
}

.ve-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ve-text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.ve-hero__sub strong {
  color: var(--ve-text-primary);
  font-weight: 600;
}

.ve-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}


/* ==========================================================================
   App Mockup
   ========================================================================== */

.ve-mockup {
  margin-top: 80px;
  width: 100%;
  max-width: 900px;
}

.ve-mockup__container {
  background: var(--ve-dark-card);
  border: 1px solid var(--ve-dark-border);
  border-radius: var(--ve-radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.ve-mockup__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ve-gold-500), transparent);
  opacity: 0.5;
}

.ve-mockup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.ve-mockup__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.ve-mockup__dot--red { background: var(--ve-danger); }
.ve-mockup__dot--yellow { background: #FFBD2E; }
.ve-mockup__dot--green { background: var(--ve-success); }

.ve-mockup__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

/* Scan area */
.ve-scan {
  background: rgba(245, 184, 0, 0.04);
  border: 2px dashed rgba(245, 184, 0, 0.15);
  border-radius: var(--ve-radius-lg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  animation: ve-scanPulse 3s ease-in-out infinite;
}

@keyframes ve-scanPulse {
  0%, 100% { border-color: rgba(245, 184, 0, 0.15); }
  50% { border-color: rgba(245, 184, 0, 0.35); }
}

.ve-scan__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--ve-gold-500), var(--ve-gold-700));
  border-radius: var(--ve-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(245, 184, 0, 0.2);
}

.ve-scan__title {
  font-weight: 700;
  font-size: 16px;
}

.ve-scan__sub {
  font-size: 13px;
  color: var(--ve-text-muted);
  line-height: 1.5;
}

/* Contact list */
.ve-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ve-contact {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ve-dark-border);
  border-radius: var(--ve-radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--ve-transition);
  cursor: pointer;
}

.ve-contact:hover {
  background: rgba(245, 184, 0, 0.04);
  border-color: rgba(245, 184, 0, 0.2);
  transform: translateX(4px);
}

.ve-contact__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--ve-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--ve-dark);
  flex-shrink: 0;
}

.ve-contact__avatar--1 { background: linear-gradient(135deg, var(--ve-gold-300), var(--ve-gold-500)); }
.ve-contact__avatar--2 { background: linear-gradient(135deg, #FFE380, #FFD43B); }
.ve-contact__avatar--3 { background: linear-gradient(135deg, #D4A017, #B8860B); }
.ve-contact__avatar--4 { background: linear-gradient(135deg, #FFF0B8, #FFE380); }

.ve-contact__info {
  flex: 1;
  min-width: 0;
}

.ve-contact__name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.ve-contact__role {
  font-size: 12px;
  color: var(--ve-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ve-status {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: var(--ve-radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ve-status--new { background: rgba(245, 184, 0, 0.12); color: var(--ve-gold-400); }
.ve-status--following { background: rgba(40, 202, 65, 0.12); color: var(--ve-success); }
.ve-status--replied { background: rgba(59, 130, 246, 0.12); color: var(--ve-info); }
.ve-status--scheduled { background: rgba(168, 85, 247, 0.12); color: var(--ve-purple); }


/* ==========================================================================
   Flow / How It Works Cards
   ========================================================================== */

.ve-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--ve-container-max);
  margin: 64px auto 0;
}

.ve-flow-card {
  background: var(--ve-dark-card);
  border: 1px solid var(--ve-dark-border);
  border-radius: var(--ve-radius-lg);
  padding: 48px 32px;
  text-align: center;
  transition: all var(--ve-transition-slow);
  position: relative;
  overflow: hidden;
}

.ve-flow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ve-gold-500), transparent);
  opacity: 0;
  transition: opacity var(--ve-transition-slow);
}

.ve-flow-card:hover::before {
  opacity: 1;
}

.ve-flow-card:hover {
  border-color: rgba(245, 184, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--ve-shadow-dark);
}

.ve-flow-card__number {
  font-family: var(--ve-font-mono);
  font-size: 48px;
  font-weight: 700;
  color: rgba(245, 184, 0, 0.1);
  margin-bottom: 16px;
}

.ve-flow-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(245, 184, 0, 0.06);
  border: 1px solid rgba(245, 184, 0, 0.1);
  border-radius: var(--ve-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.ve-flow-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.ve-flow-card__desc {
  font-size: 15px;
  color: var(--ve-text-muted);
  line-height: 1.7;
}


/* ==========================================================================
   Feature Cards
   ========================================================================== */

.ve-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--ve-container-max);
  margin: 64px auto 0;
}

.ve-feature {
  background: var(--ve-dark-card);
  border: 1px solid var(--ve-dark-border);
  border-radius: var(--ve-radius-lg);
  padding: 40px;
  transition: all var(--ve-transition-slow);
}

.ve-feature:hover {
  border-color: rgba(245, 184, 0, 0.15);
  background: var(--ve-dark-card-hover);
}

.ve-feature__icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 184, 0, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.ve-feature__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.ve-feature__desc {
  font-size: 15px;
  color: var(--ve-text-muted);
  line-height: 1.7;
}


/* ==========================================================================
   Channel Pills
   ========================================================================== */

.ve-channels {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 48px auto 0;
}

.ve-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ve-dark-card);
  border: 1px solid var(--ve-dark-border);
  border-radius: var(--ve-radius-full);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ve-text-secondary);
  transition: all var(--ve-transition);
}

.ve-channel:hover {
  border-color: var(--ve-gold-500);
  color: var(--ve-gold-400);
}

.ve-channel__icon {
  font-size: 18px;
}


/* ==========================================================================
   Pricing
   ========================================================================== */

.ve-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 64px auto 0;
}

.ve-pricing {
  background: var(--ve-dark-card);
  border: 1px solid var(--ve-dark-border);
  border-radius: var(--ve-radius-lg);
  padding: 40px 32px;
  text-align: left;
  transition: all var(--ve-transition-slow);
  position: relative;
}

.ve-pricing--featured {
  border-color: var(--ve-gold-500);
  background: linear-gradient(180deg, rgba(245, 184, 0, 0.06) 0%, var(--ve-dark-card) 100%);
  box-shadow: 0 0 40px rgba(245, 184, 0, 0.1);
}

.ve-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ve-gold-400), var(--ve-gold-600));
  color: var(--ve-dark);
  padding: 4px 16px;
  border-radius: var(--ve-radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ve-pricing__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--ve-text-secondary);
  margin-bottom: 8px;
}

.ve-pricing__price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.ve-pricing__currency {
  font-size: 24px;
  color: var(--ve-text-muted);
}

.ve-pricing__period {
  font-size: 16px;
  color: var(--ve-text-muted);
  font-weight: 400;
}

.ve-pricing__desc {
  font-size: 14px;
  color: var(--ve-text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.ve-pricing__features {
  margin-bottom: 32px;
}

.ve-pricing__features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ve-text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ve-pricing__check {
  color: var(--ve-gold-400);
  font-size: 16px;
}


/* ==========================================================================
   CTA Section
   ========================================================================== */

.ve-cta {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(245, 184, 0, 0.08) 0%, rgba(245, 184, 0, 0.02) 100%);
  border: 1px solid rgba(245, 184, 0, 0.15);
  border-radius: var(--ve-radius-xl);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ve-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ve-gold-400), transparent);
}

.ve-email-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.ve-email-input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--ve-radius-md);
  border: 1px solid var(--ve-dark-border);
  background: var(--ve-dark-card);
  color: var(--ve-text-primary);
  font-size: 15px;
  transition: border-color var(--ve-transition);
}

.ve-email-input::placeholder {
  color: var(--ve-text-muted);
}

.ve-email-input:focus {
  border-color: var(--ve-gold-500);
}


/* ==========================================================================
   Footer
   ========================================================================== */

.ve-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--ve-dark-border);
  padding: 48px 40px;
}

.ve-footer__inner {
  max-width: var(--ve-container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ve-footer__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ve-footer__logo {
  font-weight: 800;
  font-size: 18px;
}

.ve-footer__copy {
  font-size: 13px;
  color: var(--ve-text-muted);
}

.ve-footer__links {
  display: flex;
  gap: 24px;
}

.ve-footer__link {
  font-size: 13px;
  color: var(--ve-text-muted);
  transition: color var(--ve-transition);
}

.ve-footer__link:hover {
  color: var(--ve-gold-400);
}


/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes ve-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ve-fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.ve-animate-up {
  animation: ve-fadeInUp 0.8s ease-out both;
}

.ve-animate-up--d1 { animation-delay: 0.1s; }
.ve-animate-up--d2 { animation-delay: 0.2s; }
.ve-animate-up--d3 { animation-delay: 0.3s; }
.ve-animate-up--d4 { animation-delay: 0.4s; }

.ve-animate-down {
  animation: ve-fadeInDown 0.8s ease-out both;
}


/* ==========================================================================
   WordPress Specific: Posts, Pages, Comments, Widgets
   ========================================================================== */

/* Single post / page content */
.ve-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 40px 80px;
  position: relative;
  z-index: 1;
}

.ve-content h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.ve-content h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 48px 0 16px;
  color: var(--ve-gold-400);
}

.ve-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.ve-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ve-text-secondary);
  margin-bottom: 24px;
}

.ve-content a {
  color: var(--ve-gold-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ve-content a:hover {
  color: var(--ve-gold-300);
}

.ve-content img {
  border-radius: var(--ve-radius-md);
  margin: 32px 0;
}

.ve-content blockquote {
  border-left: 3px solid var(--ve-gold-500);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(245, 184, 0, 0.04);
  border-radius: 0 var(--ve-radius-sm) var(--ve-radius-sm) 0;
  font-style: italic;
  color: var(--ve-text-secondary);
}

.ve-content ul,
.ve-content ol {
  margin: 16px 0 24px 24px;
  list-style: disc;
}

.ve-content ol {
  list-style: decimal;
}

.ve-content li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ve-text-secondary);
  margin-bottom: 8px;
}

.ve-content code {
  background: var(--ve-dark-card);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--ve-font-mono);
  font-size: 14px;
  color: var(--ve-gold-400);
}

.ve-content pre {
  background: var(--ve-dark-card);
  border: 1px solid var(--ve-dark-border);
  border-radius: var(--ve-radius-md);
  padding: 24px;
  overflow-x: auto;
  margin: 24px 0;
}

.ve-content pre code {
  background: none;
  padding: 0;
}

/* Post meta */
.ve-post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--ve-text-muted);
}

.ve-post-meta__date {
  font-family: var(--ve-font-mono);
}

.ve-post-meta__cat {
  background: rgba(245, 184, 0, 0.08);
  color: var(--ve-gold-400);
  padding: 4px 12px;
  border-radius: var(--ve-radius-full);
  font-size: 12px;
  font-weight: 600;
}

/* Blog archive / post list */
.ve-posts {
  max-width: var(--ve-container-max);
  margin: 0 auto;
  padding: 140px 40px 80px;
  position: relative;
  z-index: 1;
}

.ve-posts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ve-post-card {
  background: var(--ve-dark-card);
  border: 1px solid var(--ve-dark-border);
  border-radius: var(--ve-radius-lg);
  overflow: hidden;
  transition: all var(--ve-transition-slow);
}

.ve-post-card:hover {
  border-color: rgba(245, 184, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--ve-shadow-dark);
}

.ve-post-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ve-post-card__body {
  padding: 28px;
}

.ve-post-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.ve-post-card__title a:hover {
  color: var(--ve-gold-400);
}

.ve-post-card__excerpt {
  font-size: 14px;
  color: var(--ve-text-muted);
  line-height: 1.7;
}

/* Sidebar / Widgets */
.ve-sidebar {
  position: relative;
  z-index: 1;
}

.ve-widget {
  background: var(--ve-dark-card);
  border: 1px solid var(--ve-dark-border);
  border-radius: var(--ve-radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.ve-widget__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ve-gold-400);
}

/* Comments */
.ve-comments {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--ve-dark-border);
}

.ve-comment {
  padding: 24px 0;
  border-bottom: 1px solid var(--ve-dark-border);
}

.ve-comment__author {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.ve-comment__date {
  font-size: 12px;
  color: var(--ve-text-muted);
  font-family: var(--ve-font-mono);
  margin-bottom: 12px;
}

.ve-comment__text {
  font-size: 15px;
  color: var(--ve-text-secondary);
  line-height: 1.7;
}

/* Comment form */
.ve-comment-form textarea,
.ve-comment-form input[type="text"],
.ve-comment-form input[type="email"],
.ve-comment-form input[type="url"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--ve-radius-md);
  border: 1px solid var(--ve-dark-border);
  background: var(--ve-dark-card);
  color: var(--ve-text-primary);
  font-family: var(--ve-font-primary);
  font-size: 15px;
  margin-bottom: 12px;
  transition: border-color var(--ve-transition);
}

.ve-comment-form textarea:focus,
.ve-comment-form input:focus {
  border-color: var(--ve-gold-500);
}

.ve-comment-form textarea {
  min-height: 120px;
  resize: vertical;
}


/* ==========================================================================
   Utility Classes
   ========================================================================== */

.ve-text-gold { color: var(--ve-gold-400); }
.ve-text-muted { color: var(--ve-text-muted); }
.ve-text-secondary { color: var(--ve-text-secondary); }
.ve-text-center { text-align: center; }
.ve-mt-0 { margin-top: 0; }
.ve-mt-16 { margin-top: 16px; }
.ve-mt-32 { margin-top: 32px; }
.ve-mt-48 { margin-top: 48px; }
.ve-mt-64 { margin-top: 64px; }
.ve-mb-0 { margin-bottom: 0; }
.ve-mb-16 { margin-bottom: 16px; }
.ve-mb-32 { margin-bottom: 32px; }
.ve-mb-48 { margin-bottom: 48px; }
.ve-hidden { display: none; }
.ve-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .ve-flow-grid { grid-template-columns: repeat(2, 1fr); }
  .ve-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --ve-section-pad: 80px; }

  .ve-nav { padding: 16px 20px; }
  .ve-nav__links { display: none; }
  .ve-nav__toggle { display: flex; }

  .ve-nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 11, 7, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--ve-dark-border);
  }

  .ve-hero { padding: 120px 20px 60px; }

  .ve-mockup__content { grid-template-columns: 1fr; }
  .ve-scan { padding: 24px; }

  .ve-section { padding: var(--ve-section-pad) 20px; }

  .ve-flow-grid { grid-template-columns: 1fr; }
  .ve-features-grid { grid-template-columns: 1fr; }
  .ve-pricing-grid { grid-template-columns: 1fr; }
  .ve-posts__grid { grid-template-columns: 1fr; }

  .ve-cta { padding: 48px 24px; }
  .ve-email-form { flex-direction: column; }

  .ve-hero__actions { flex-direction: column; width: 100%; }
  .ve-btn { width: 100%; text-align: center; }

  .ve-footer__inner { flex-direction: column; gap: 24px; text-align: center; }
  .ve-footer__left { flex-direction: column; }
}

@media (max-width: 480px) {
  .ve-title--hero { letter-spacing: -2px; }
  .ve-pricing__price { font-size: 36px; }
}
