/**
 * Veiled Vantage Custom Styles
 * Pixel-perfect recreation of the React app design system
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700;900&family=Inter:wght@400;500;600;700&display=swap');

/* Root Variables - Design System */
:root {
  /* Colors - HSL Format */
  --background: 0 0% 4%;
  --foreground: 0 0% 95%;

  --card: 0 0% 11%;
  --card-foreground: 0 0% 95%;

  --primary: 356 87% 19%;
  --primary-foreground: 0 0% 95%;

  --secondary: 0 0% 11%;
  --secondary-foreground: 0 0% 95%;

  --muted: 0 0% 11%;
  --muted-foreground: 0 0% 77%;

  --accent: 22 55% 51%;
  --accent-foreground: 0 0% 95%;

  --border: 0 0% 11%;
  --input: 0 0% 11%;
  --ring: 356 87% 19%;

  /* Custom TSL colors */
  --wine-metallic-start: 356 87% 19%;
  --wine-metallic-end: 355 69% 41%;
  --copper-metallic: 22 55% 51%;
  --text-warm: 0 0% 95%;
  --text-secondary: 0 0% 77%;
  --container-bg: 0 0% 5%;

  --radius: 1rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Utility Classes */
.text-wine-start { color: hsl(var(--wine-metallic-start)); }
.text-wine-end { color: hsl(var(--wine-metallic-end)); }
.text-copper { color: hsl(var(--copper-metallic)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-foreground { color: hsl(var(--foreground)); }

.bg-wine-start { background-color: hsl(var(--wine-metallic-start)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-container { background-color: hsl(var(--container-bg)); }

.font-heading {
  font-family: 'Space Grotesk', sans-serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

/* Animations */
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(201, 114, 61, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(201, 114, 61, 0.8);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out forwards;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Main Container */
.veiled-container {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, rgba(140, 10, 26, 0.12) 0%, rgba(10, 10, 10, 1) 70%);
  position: relative;
  overflow: hidden;
}

/* Background Images Container */
.bg-images-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.parallax-image {
  position: absolute;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Top Abstract Glow */
.bg-abstract-glow {
  top: 0;
  left: 0;
  width: 100%;
  height: 16rem;
  opacity: 0.3;
  filter: blur(4px);
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}

/* Right Silhouette */
.bg-silhouette-right {
  right: 0;
  top: 25%;
  width: 24rem;
  height: 24rem;
  opacity: 0.4;
  filter: blur(12px);
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
  animation-delay: 0s;
}

/* Left Hands */
.bg-hands-left {
  left: 0;
  top: 33%;
  width: 20rem;
  height: 20rem;
  opacity: 0.5;
  filter: blur(4px);
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, transparent 70%);
  animation-delay: 3s;
}

/* Floating Program Images */
.floating-programs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 80rem;
  height: 100%;
  pointer-events: none;
  z-index: 20;
}

.floating-programs img {
  position: absolute;
  width: 12rem;
  height: auto;
}

.prog-1 {
  top: 20%;
  left: -3rem;
}

.prog-2 {
  top: 45%;
  right: -3rem;
}

.prog-3 {
  top: 70%;
  left: -4rem;
}

.prog-bonus {
  top: 95%;
  right: -4rem;
}

/* Main Content Container */
.main-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
}

.content-card {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Logo */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo-container img {
  width: 16rem;
  max-width: 100%;
  height: auto;
}

/* Headings */
.hero-title {
  color: hsl(var(--copper-metallic));
  font-size: 1.875rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

/* TSL Content Styles */
.tsl-content {
  line-height: 1.75;
}

.tsl-content p {
  margin-bottom: 1rem;
}

.tsl-content img {
  max-width: 28rem;
  width: 100%;
  margin: 2rem auto;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tsl-content strong {
  font-weight: 600;
}

.tsl-content .highlight-box {
  background: rgba(140, 10, 26, 0.1);
  border-left: 4px solid hsl(var(--wine-metallic-end));
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 3rem 0;
}

.tsl-content .testimonial {
  background: rgba(28, 28, 28, 0.5);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  margin: 3rem 0;
  border: 1px solid rgba(173, 68, 105, 0.2);
}

.tsl-content .testimonial-quote {
  color: hsl(var(--wine-metallic-end));
  font-size: 1.5rem;
  text-align: center;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.tsl-content .secret-box {
  background: linear-gradient(to bottom, rgba(140, 10, 26, 0.2), transparent);
  padding: 2rem;
  border-radius: 1rem;
  margin: 3rem 0;
}

.tsl-content .secret-title {
  color: hsl(var(--copper-metallic));
  font-size: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  font-style: italic;
}

.tsl-content ul {
  list-style: disc;
  padding-left: 2rem;
  margin: 2rem 0;
  color: hsl(var(--muted-foreground));
}

.tsl-content ul li {
  margin-bottom: 0.75rem;
}

.tsl-content ul li strong {
  color: hsl(var(--foreground));
}

/* CTA Button */
.cta-container {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.cta-button {
  font-size: 1.25rem;
  padding: 2rem 3rem;
  border-radius: 9999px;
  font-weight: 700;
  background: linear-gradient(90deg, hsl(356, 87%, 19%) 0%, hsl(355, 69%, 41%) 100%);
  color: hsl(0, 0%, 95%);
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  animation: pulse-glow 2s ease-in-out infinite;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: linear-gradient(90deg, hsl(22, 55%, 51%) 0%, hsl(355, 69%, 41%) 100%);
  transform: scale(1.05);
}

/* Social Proof */
.social-proof {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.social-proof.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-proof-card {
  background: rgba(28, 28, 28, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(173, 68, 105, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  min-width: 250px;
}

.social-proof-name {
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.social-proof-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Program Image */
.program-image-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.program-image-container img {
  width: 100%;
  max-width: 56rem;
}

/* Footer */
.veiled-footer {
  position: relative;
  z-index: 10;
  background: hsl(var(--background));
  padding: 2rem 0;
  margin-top: 5rem;
  text-align: center;
}

.veiled-footer p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.veiled-footer a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color 0.3s ease;
}

.veiled-footer a:hover {
  color: hsl(var(--copper-metallic));
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bg-silhouette-right,
  .bg-hands-left,
  .floating-programs {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .content-card {
    padding: 2rem 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 1.5rem 2rem;
  }

  .logo-container img {
    width: 12rem;
  }
}

@media (min-width: 768px) {
  .content-card {
    padding: 4rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.veiled-pricing-section {
  position: relative;
  background: linear-gradient(135deg, hsl(0 0% 4%) 0%, hsl(0 0% 11%) 50%, hsl(0 0% 4%) 100%);
  padding: 4rem 1.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .veiled-pricing-section {
    padding: 6rem 2rem;
  }
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Main Title */
.pricing-main-title {
  font-size: 1.75rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
  animation: fade-in-up 0.8s ease-out;
}

@media (min-width: 768px) {
  .pricing-main-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

/* Alert Box */
.pricing-alert {
  background: rgba(156, 31, 46, 0.1);
  border: 1px solid hsl(356 86% 30% / 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  animation: fade-in-up 0.8s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}

.pricing-alert p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.pricing-alert p:last-child {
  margin-bottom: 0;
}

/* Power Statement */
.pricing-statement {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 3rem;
  animation: fade-in-up 0.8s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.pricing-statement p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pricing-statement p:last-child {
  margin-bottom: 0;
}

/* Modules Section */
.pricing-modules {
  margin-bottom: 3rem;
  animation: fade-in-up 0.8s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.modules-title {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .modules-title {
    font-size: 2rem;
  }
}

.modules-subtitle {
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.modules-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.module-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.module-item:hover {
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.module-item.bonus {
  background: linear-gradient(135deg, hsl(356 86% 30% / 0.1) 0%, hsl(24 58% 52% / 0.1) 100%);
  border-color: hsl(var(--accent));
}

.module-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.module-item p {
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.module-item p:last-child {
  margin-bottom: 0;
}

.module-benefit {
  color: hsl(var(--accent)) !important;
  font-weight: 600;
}

/* Pricing Card */
.pricing-card {
  background: hsl(var(--card));
  border: 2px solid hsl(var(--primary));
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-glow);
  animation: fade-in-up 0.8s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 3rem;
  }
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-card-header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--accent));
}

.pricing-price .amount {
  font-size: 4rem;
  font-weight: 900;
  color: #FF6B35;
}

@media (min-width: 768px) {
  .pricing-price .amount {
    font-size: 5rem;
  }
}

.pricing-card-body {
  margin-bottom: 2rem;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pricing-benefits {
  background: hsl(0 0% 0% / 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.pricing-benefits p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.pricing-benefits p:last-child {
  margin-bottom: 0;
}

.pricing-final-statement {
  text-align: center;
  margin-top: 2rem;
}

.pricing-final-statement p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.pricing-final-statement .highlight {
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(var(--accent));
}

/* Pricing CTA */
.pricing-cta-container {
  text-align: center;
}

.pricing-cta-button {
  background: linear-gradient(90deg, hsl(356 86% 30%) 0%, hsl(356 69% 41%) 100%);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  font-weight: 700;
  padding: 1.75rem 3rem;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  width: 100%;
  max-width: 500px;
  animation: breathe 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .pricing-cta-button {
    font-size: 1.125rem;
    padding: 2rem 4rem;
  }
}

.pricing-cta-button:hover {
  background: hsl(24 58% 52%);
  box-shadow: var(--shadow-copper);
  transform: scale(1.05);
}

.pricing-cta-button.final {
  animation: pulse-glow 2s ease-in-out infinite;
}

.pricing-guarantee {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Choices Section */
.pricing-choices {
  margin-bottom: 3rem;
  animation: fade-in-up 0.8s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.pricing-choices h3 {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pricing-choices h3 {
    font-size: 2rem;
  }
}

.choices-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .choices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.choice-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.choice-item.negative {
  border-color: hsl(0 84.2% 60.2% / 0.3);
}

.choice-item.negative:hover {
  border-color: hsl(0 84.2% 60.2%);
  box-shadow: 0 0 30px hsla(0, 84.2%, 60.2%, 0.2);
}

.choice-item.positive {
  border-color: hsl(var(--primary) / 0.3);
}

.choice-item.positive:hover {
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-glow);
}

.choice-number {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.choice-item p {
  line-height: 1.6;
  margin: 0;
}

/* Final CTA Section */
.pricing-final-cta {
  text-align: center;
  animation: fade-in-up 0.8s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}

.final-message {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.final-impact {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-final-cta .pricing-cta-button {
  margin-bottom: 2rem;
}

.final-value {
  background: rgba(156, 31, 46, 0.1);
  border: 1px solid hsl(356 86% 30% / 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.value-price {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.value-statement {
  font-size: 1rem;
  color: hsl(var(--accent));
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* Product Mockup Image */
.pricing-product-mockup {
  text-align: center;
  margin-bottom: 3rem;
  animation: fade-in-up 0.8s ease-out;
}

.pricing-product-mockup img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .pricing-product-mockup {
    margin-bottom: 2rem;
  }

  .pricing-product-mockup img {
    max-width: 100%;
  }
}

/* Guarantee Badge */
.pricing-guarantee-badge {
  text-align: center;
  margin: 1.5rem 0;
  animation: pulse-glow 2s ease-in-out infinite;
}

.pricing-guarantee-badge img {
  max-width: 150px;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .pricing-guarantee-badge img {
    max-width: 180px;
  }
}
