/*
Theme Name: Tachara AI Tools
Theme URI: https://tachara.online
Author: Tachara LLC
Description: Ultra-modern, animated single-page theme for Tachara LLC featuring HiddenPro AI and Resume Refiner.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tachara
*/

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Core palette - cosmic theme */
  --bg-deep: #030014;
  --bg-base: #0a0118;
  --bg-elevated: rgba(15, 5, 35, 0.85);

  /* Accent colors - vibrant neon */
  --accent-primary: #a855f7;
  --accent-primary-glow: rgba(168, 85, 247, 0.5);
  --accent-secondary: #06b6d4;
  --accent-secondary-glow: rgba(6, 182, 212, 0.5);
  --accent-tertiary: #f472b6;
  --accent-success: #34d399;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #a855f7 0%, #06b6d4 50%, #34d399 100%);
  --gradient-glow: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);

  /* Borders & Effects */
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(168, 85, 247, 0.5);
  --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.3);
  --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

  /* Spacing */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  /* Layout */
  --content-max: 1200px;
  --header-height: 80px;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out-expo);
}

a:hover {
  color: var(--accent-primary);
}

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

/* ═══════════════════════════════════════════════════════════════
   ANIMATED BACKGROUND
   ═══════════════════════════════════════════════════════════════ */
.cosmic-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg-deep);
}

.cosmic-bg::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 40% 80%, rgba(244, 114, 182, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 70% 70%, rgba(52, 211, 153, 0.08) 0%, transparent 50%);
  animation: cosmicFloat 25s ease-in-out infinite;
}

.cosmic-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

@keyframes cosmicFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(2%, 2%) rotate(1deg);
  }

  50% {
    transform: translate(-1%, 3%) rotate(-0.5deg);
  }

  75% {
    transform: translate(1%, -2%) rotate(0.5deg);
  }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: orbFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-primary);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  top: 50%;
  right: -15%;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-tertiary);
  bottom: -5%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT CONTAINER
   ═══════════════════════════════════════════════════════════════ */
.site {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: all 0.4s var(--ease-out-expo);
}

.site-header.scrolled {
  background: rgba(3, 0, 20, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-glass);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  color: white;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s var(--ease-out-back);
}

.brand:hover .brand-mark {
  transform: scale(1.1) rotate(5deg);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.menu a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-out-expo);
}

.menu a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  margin-left: 16px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.3s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-overlay {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px var(--accent-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px var(--accent-primary-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 20px;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gradient-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Floating shapes in hero */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: var(--radius-lg);
  background: var(--gradient-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  transform: rotate(15deg);
  animation: float1 15s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: -3%;
  transform: rotate(-20deg);
  animation: float2 18s ease-in-out infinite;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 10%;
  transform: rotate(30deg);
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: rotate(15deg) translate(0, 0);
  }

  50% {
    transform: rotate(20deg) translate(20px, -30px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: rotate(-20deg) translate(0, 0);
  }

  50% {
    transform: rotate(-15deg) translate(-25px, 20px);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: rotate(30deg) translate(0, 0);
  }

  50% {
    transform: rotate(35deg) translate(15px, -20px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-reveal>* {
  opacity: 0;
  transform: translateY(40px);
}

.stagger-reveal.active>*:nth-child(1) {
  transition-delay: 0ms;
}

.stagger-reveal.active>*:nth-child(2) {
  transition-delay: 100ms;
}

.stagger-reveal.active>*:nth-child(3) {
  transition-delay: 200ms;
}

.stagger-reveal.active>*:nth-child(4) {
  transition-delay: 300ms;
}

.stagger-reveal.active>* {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s var(--ease-out-expo);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════════════════════════ */
.products-section {
  padding: 120px 24px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent-primary);
  opacity: 0.5;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: var(--content-max);
  margin: 0 auto;
}

/* Product Card */
.product-card {
  position: relative;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.product-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 40px var(--accent-primary-glow);
}

.product-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.product-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card .description {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.2);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.feature-list li::after {
  content: '✓';
  position: absolute;
  margin-left: 6px;
  color: var(--accent-success);
  font-size: 0.75rem;
  font-weight: 700;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all 0.3s;
}

.tag:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* Product badges */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.product-badge.hot {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(244, 114, 182, 0.2) 100%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: var(--accent-tertiary);
}

.product-badge.new {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(52, 211, 153, 0.2) 100%);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--accent-secondary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-tertiary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Product CTA buttons */
.product-cta {
  margin-top: 24px;
  width: 100%;
}

.btn-accent {
  background: linear-gradient(135deg, #06b6d4 0%, #34d399 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
}

.btn-accent:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(6, 182, 212, 0.5);
  color: white;
}

/* Enhanced card hover effects */
.product-card:hover .product-icon {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.4s var(--ease-out-back);
}

.product-card .product-icon {
  transition: transform 0.4s var(--ease-out-expo);
}

/* Product visual */
.product-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gradient-glass);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    linear-gradient(-135deg, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.product-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.product-visual-content .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
}

.product-visual-content .icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   PROOF/STATS SECTION
   ═══════════════════════════════════════════════════════════════ */
.proof-section {
  padding: 120px 24px;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.03) 50%, transparent 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.proof-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out-expo);
}

.proof-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.proof-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.proof-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 120px 24px 160px;
  position: relative;
}

.cta-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 60px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: var(--gradient-primary);
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border-glass);
  background: rgba(3, 0, 20, 0.9);
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-contact a {
  color: var(--accent-primary);
  font-weight: 600;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--accent-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE CONTENT (for blog, pages, etc.)
   ═══════════════════════════════════════════════════════════════ */
.page-content {
  padding: calc(var(--header-height) + 60px) 24px 80px;
  min-height: 70vh;
}

.page-content .container {
  max-width: 800px;
}

.page-header {
  margin-bottom: 48px;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.content-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.content-card h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
}

.content-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-card a {
  color: var(--accent-primary);
}

.content-card a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cosmic-bg::before,
  .orb,
  .shape,
  .hero-badge .dot,
  .pulse-dot {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .stagger-reveal>* {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.blog-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease-out-expo);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.blog-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-actions {
    position: fixed;
    top: 0;
    right: 0;
    width: min(350px, 85vw);
    height: 100vh;
    padding: 100px 32px 40px;
    background: rgba(3, 0, 20, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 90;
  }

  .nav-actions.toggled {
    transform: translateX(0);
  }

  .menu {
    flex-direction: column;
    gap: 8px;
  }

  .menu a {
    padding: 16px;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
  }

  .nav-cta {
    margin: 16px 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 80;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding: calc(var(--header-height) + 40px) 20px 60px;
  }

  .hero-stats {
    gap: 32px;
  }

  .products-section,
  .proof-section,
  .cta-section {
    padding: 80px 20px;
  }

  .product-card {
    padding: 32px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .proof-card {
    padding: 24px 16px;
  }

  .cta-card {
    padding: 48px 28px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .text-gradient {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow {
  box-shadow: var(--shadow-glow);
}

.glass {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
}

/* Parallax layer depths */
[data-parallax] {
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════
   EASITOR PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */
.easitor-page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.easitor-page .hero {
  padding: calc(var(--header-height) + 60px) 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.easitor-page .hero-content {
  max-width: 100%;
}

.easitor-page .hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.easitor-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15), rgba(244, 114, 182, 0.15));
  color: #fb923c;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(251, 146, 60, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.easitor-page .lede {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.easitor-page .muted {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.easitor-page .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.easitor-page .hero-subnote {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.easitor-page .hero-story {
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.easitor-page .hero-story h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.easitor-page .hero-story p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.easitor-page .hero-story ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.easitor-page .hero-story li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-secondary);
}

.easitor-page .hero-story li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-success);
  font-weight: 700;
}

/* Easitor Sections */
.easitor-page .section {
  padding: 80px 0;
}

.easitor-page .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.easitor-page .section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.easitor-page .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  padding: 6px 14px;
  background: rgba(127, 167, 255, 0.15);
  color: var(--accent-secondary);
  border-radius: var(--radius-full);
  border: 1px solid rgba(127, 167, 255, 0.25);
}

.easitor-page .pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Story Body */
.easitor-page .story-body {
  max-width: 800px;
  margin: 0 auto;
}

.easitor-page .story-body>p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  text-align: center;
}

.easitor-page .story-entry {
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease-out-expo);
}

.easitor-page .story-entry:hover {
  border-color: var(--accent-primary);
  transform: translateY(-3px);
}

.easitor-page .story-entry h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.easitor-page .story-entry p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.easitor-page .story-entry ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.easitor-page .story-entry li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-secondary);
}

.easitor-page .story-entry li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

/* Pull Quote */
.easitor-page .pull-quote {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid var(--border-glass);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
}

.easitor-page .pull-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.7;
}

.easitor-page .pull-quote cite {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Story Steps */
.easitor-page .story-steps {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  counter-reset: step;
}

.easitor-page .story-steps li {
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-out-expo);
}

.easitor-page .story-steps li:hover {
  border-color: var(--accent-primary);
}

.easitor-page .story-steps h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.easitor-page .story-steps p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FAQ */
.easitor-page .story-faq {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.easitor-page .story-faq article {
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s var(--ease-out-expo);
}

.easitor-page .story-faq article:hover {
  border-color: var(--accent-primary);
}

.easitor-page .story-faq h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.easitor-page .story-faq p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Easitor CTA */
.easitor-page .cta-band {
  padding: 80px 0 120px;
}

.easitor-page .cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.easitor-page .cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fb923c, #f472b6, transparent);
}

.easitor-page .cta-inner h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.easitor-page .cta-inner>p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.easitor-page .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Easitor Responsive */
@media (max-width: 900px) {
  .easitor-page .hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .easitor-page {
    padding: 0 20px;
  }

  .easitor-page .hero {
    padding-top: calc(var(--header-height) + 40px);
  }

  .easitor-page .section {
    padding: 60px 0;
  }

  .easitor-page .hero-actions {
    flex-direction: column;
  }

  .easitor-page .hero-actions .btn {
    width: 100%;
  }

  .easitor-page .cta-actions {
    flex-direction: column;
  }

  .easitor-page .cta-actions .btn {
    width: 100%;
  }

  .easitor-page .story-entry,
  .easitor-page .story-steps li,
  .easitor-page .story-faq article {
    padding: 24px;
  }

  .easitor-page .cta-inner {
    padding: 40px 24px;
  }
}
