/* ==========================================================================
   POMELLI AUDIO — OFFICIAL PRODUCT & CAMPAIGN LANDING PAGE (styles.css)
   Design System: Luxury Dark Obsidian, Amber Gold Accents, Glassmorphic i18n
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Color Tokens */
  --bg-dark: #0A0A0C;
  --bg-card: rgba(22, 23, 29, 0.7);
  --bg-card-hover: rgba(30, 32, 42, 0.85);
  
  --amber-gold: #FEA000;
  --amber-bright: #FFB703;
  --amber-glow: rgba(254, 160, 0, 0.35);
  --amber-dark: #C67D00;
  
  --text-main: #F4F4F6;
  --text-muted: #9A9AA6;
  --text-dim: #60606E;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(254, 160, 0, 0.3);
  
  --color-green: #2EC4B6;
  --color-red: #E63946;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Effects */
  --shadow-glow: 0 0 35px var(--amber-glow);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.5);
  --blur-glass: blur(16px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background Glowing Orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.bg-orb-1 {
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 160, 0, 0.18) 0%, rgba(0,0,0,0) 70%);
}

.bg-orb-2 {
  top: 40%;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.12) 0%, rgba(0,0,0,0) 70%);
}

/* Header / Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-disc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, #222 30%, #000 70%);
  border: 2px solid var(--amber-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--amber-glow);
}

.logo-disc::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--amber-gold);
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--amber-gold);
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--amber-gold);
}

/* Language Switcher Toggle */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--amber-gold);
  color: #000;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-gold) 0%, var(--amber-bright) 100%);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(254, 160, 0, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-outline:hover {
  border-color: var(--amber-gold);
  color: var(--amber-gold);
  background: rgba(254, 160, 0, 0.08);
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(254, 160, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--amber-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-gold);
  box-shadow: 0 0 10px var(--amber-gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--amber-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.stat-item .stat-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber-gold);
}

.stat-item .stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Live Simulator Component */
.simulator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 32px;
  backdrop-filter: var(--blur-glass);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.simulator-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.simulator-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.simulator-controls {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
}

.sim-btn {
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sim-btn.active {
  background: var(--amber-gold);
  color: #000;
}

/* Canvas Container */
.canvas-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  padding: 10px;
  background: radial-gradient(circle, #252630 0%, #101116 100%);
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

#pomelliCanvas {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: block;
}

.simulator-hint {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(254, 160, 0, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--amber-gold);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* Pricing Tiers Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--amber-gold);
  box-shadow: 0 0 35px rgba(254, 160, 0, 0.25);
  background: rgba(30, 32, 45, 0.9);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--amber-gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 12px;
  text-transform: uppercase;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 44px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 24px;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-features li.active {
  color: var(--text-main);
}

.pricing-features li .check {
  color: var(--amber-gold);
  font-weight: 800;
}

/* VIP Pre-Launch Form */
.form-card {
  background: linear-gradient(135deg, rgba(22, 23, 30, 0.9) 0%, rgba(35, 30, 20, 0.8) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  max-width: 800px;
  margin: 0 auto;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.form-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 20px auto;
}

.form-input {
  flex-grow: 1;
  padding: 14px 20px;
  border-radius: 40px;
  border: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
}

.form-input:focus {
  border-color: var(--amber-gold);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Footer */
footer {
  padding: 60px 0 30px 0;
  border-top: 1px solid var(--border-glass);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions, .hero-stats {
    justify-content: center;
  }

  .features-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }

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