/* ==========================================================================
   EL TAYR - ARTISANAL FORGE SYSTEM DESIGN (LEATHER, EMBERS, FIRE)
   ========================================================================== */

/* Color Tokens & Reset */
:root {
  --bg-color: #0b0a09; /* Deep Charcoal/Soot */
  --text-color: #f4f4f5;
  --text-muted: #a1a1aa;
  
  /* Artisanal Warm Palette */
  --primary-color: #ea580c; /* Fire Orange */
  --primary-hover: #c2410c;
  --primary-glow: rgba(234, 88, 12, 0.15);
  
  --secondary-color: #d97706; /* Embers Amber */
  --secondary-glow: rgba(217, 119, 6, 0.15);
  
  --leather-color: #78350f; /* Warm Leather */
  
  --card-bg: rgba(24, 20, 18, 0.75);
  --card-border: rgba(234, 88, 12, 0.08);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.font-outfit { font-family: var(--font-title); }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Background Ambient Glows - Warm Embers and Sparks */
.glow-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.3;
}

.glow-1 {
  top: -10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.glow-2 {
  bottom: -10%;
  right: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--leather-color) 0%, transparent 70%);
}

/* Header & Navigation with high-end typography */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(11, 10, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

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

.header-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(234, 88, 12, 0.4));
}

.logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.logo-accent {
  color: var(--primary-color);
  font-weight: 900;
  text-shadow: 0 0 15px rgba(234, 88, 12, 0.6);
}

.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
}

.lang-selector-nav {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.lang-select-input {
  background: #181412;
  border: 1px solid var(--card-border);
  color: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-select-input option {
  background-color: #181412;
  color: #fff;
}

.lang-select-input:focus, .lang-select-input:hover {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.09);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #f97316);
  color: #fff;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.45);
}

.btn-secondary-sm {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.btn-secondary-sm:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.header-cta-btn {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.2);
}

.header-cta-btn:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: #fff;
}

/* Aranda Cards Button */
.btn-aranda-text {
  background: linear-gradient(135deg, var(--secondary-color), #b45309);
  color: #fff;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.2);
  margin-top: 10px;
}

.btn-aranda-text:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.35);
}

/* Hero Section */
.hero-brand {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.badge {
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.18);
  color: #fdba74;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}

.brand-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.brand-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.arrow-down {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* Product Showcase - Revelator */
.product-showcase {
  padding: 100px 0;
  position: relative;
}

.product-hero {
  max-width: 800px;
  margin: 0 auto 80px;
}

.product-badge {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.product-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 850;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 40%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.product-tagline {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.product-intro-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Pricing Card */
.pricing-card {
  background: rgba(24, 20, 18, 0.6);
  border: 1px solid var(--card-border);
  padding: 24px 40px;
  border-radius: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.price-old {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--text-muted);
}

.price-current {
  font-size: 44px;
  font-weight: 800;
  font-family: var(--font-title);
  color: #fff;
  text-shadow: 0 0 20px rgba(234, 88, 12, 0.35);
}

.price-label {
  font-size: 12px;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Alternating Feature Rows Styles - Clean Transparent Frameless Look */
.real-showcase-section {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.feature-row.row-reverse {
  flex-direction: row-reverse;
}

.feature-image-col {
  flex: 1.1;
  max-width: 55%;
}

.feature-text-col {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Video Performance row styling */
.performance-video-row {
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.video-container-wrapper {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: #000;
}

.revelator-performance-video {
  width: 100%;
  height: auto;
  display: block;
}

.text-center-video {
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.showcase-image-wrapper {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.showcase-image-wrapper:hover {
  transform: translateY(-4px) scale(1.01);
}

.showcase-img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.65));
}

.showcase-tag {
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.feature-text-col h3 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.feature-text-col p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* Tech Highlights - Homogeneized tag circles */
.tech-highlight {
  background: radial-gradient(circle at top, rgba(234, 88, 12, 0.08), transparent 60%);
  border: 1px solid var(--card-border);
  padding: 80px 40px;
  border-radius: 32px;
  margin-bottom: 80px;
  backdrop-filter: blur(10px);
}

.tech-icon-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tech-icon {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  white-space: nowrap;
}

.tech-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.tech-text {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Centered Download & Purchase Section */
.download-purchase-section-centered {
  background: linear-gradient(135deg, rgba(20, 18, 16, 0.9) 0%, rgba(11, 10, 9, 0.9) 100%);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 60px 40px;
  margin-bottom: 40px;
}

.purchase-centered-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.license-links-centered, .download-stores-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.license-links-centered h4, .download-stores-centered h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.download-stores-centered h4 {
  color: var(--text-muted);
}

.store-buttons-centered {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 640px;
}

.store-btn {
  max-width: 280px;
  width: 100%;
  background: #181412;
  border: 1px solid rgba(234, 88, 12, 0.15);
  border-radius: 12px;
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: var(--transition-smooth);
}

.btn-aranda-text {
  max-width: 420px; /* Ensure MXN price text fits on one single line */
  width: 100%;
}

.store-icon-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary-color);
}

.store-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.store-btn:hover .store-icon-svg {
  color: #000;
}

.store-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-small {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.6;
}

.store-large {
  font-size: 18px;
  font-weight: 700;
}

/* About Section - Forge Themed */
.about-section {
  padding: 100px 0;
  border-top: 1px solid var(--card-border);
  background: radial-gradient(circle at top right, rgba(234, 88, 12, 0.05), transparent 50%);
}

.about-visual {
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, #181412, #0d0b09);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-glow-orb {
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  filter: blur(80px);
  border-radius: 50%;
  animation: floatOrb 6s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.15); }
}

.brand-watermark {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 6px;
  opacity: 0.12;
  position: absolute;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-paragraph {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  border-top: 1px solid var(--card-border);
  background: radial-gradient(circle at bottom, rgba(217, 119, 6, 0.05), transparent 50%);
}

/* Direct Contact Section */
.direct-contact-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-link-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 24px 36px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #fff;
  min-width: 320px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  color: var(--secondary-color);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card-value {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
}

.contact-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.12);
}

.contact-link-card:hover .contact-card-icon {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Footer */
.main-footer {
  padding: 50px 0;
  border-top: 1px solid var(--card-border);
  background: #09090b;
}

.footer-logo {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #fff;
}

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

.footer-copy-small {
  font-size: 12px;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
  .grid-2-col {
    grid-template-cols: 1fr;
    gap: 40px;
  }
  
  .form-grid {
    grid-template-cols: 1fr;
  }
  
  .nav-menu {
    display: none;
  }
  
  .feature-row, .feature-row.row-reverse {
    flex-direction: column;
    gap: 30px;
  }
  
  .feature-image-col {
    max-width: 100%;
    width: 100%;
  }
  
  .showcase-image-wrapper {
    padding: 0;
  }
  
  .showcase-img {
    max-height: 380px;
  }
  
  .store-btn, .btn-aranda-text {
    max-width: 100%;
  }
  
  .store-buttons-centered {
    flex-direction: column;
    align-items: center;
  }
}
