/* ==========================================================================
   PLOTPOINT MARKETING LANDING PAGE STYLES
   Theme: Cinematic Noir Glassmorphism & Gold/Purple Accents
   ========================================================================== */

:root {
  --bg-dark: #07090e;
  --bg-card: rgba(15, 23, 42, 0.65);
  --bg-card-border: rgba(255, 255, 255, 0.12);
  --primary-gold: #e8b86d;
  --primary-purple: #8b5cf6;
  --accent-green: #00E054;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --font-main: 'Outfit', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --glow-purple: rgba(139, 92, 246, 0.25);
  --glow-gold: rgba(232, 184, 109, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
}

body {
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Ambient Glow Lights */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.15) 0%, transparent 70%);
  top: 30%;
  right: -150px;
}

.glow-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 224, 84, 0.12) 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
}

/* Glassmorphism Panel Utility */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* Typography Helpers */
.gradient-text {
  background: linear-gradient(135deg, #fff 20%, var(--primary-gold) 70%, #ff8a65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #e8b86d 0%, #c29347 100%);
  color: #0b0d14;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 184, 109, 0.4);
}

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

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 16px;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(232, 184, 109, 0.25);
}

.full-width { width: 100%; justify-content: center; }

/* Header & Nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0d14;
  font-size: 1.3rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
}

.logo-text span {
  color: var(--primary-gold);
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

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

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c084fc;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

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

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-gold);
}

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

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual Card Stack */
.hero-visual {
  position: relative;
}

.cinema-card-stack {
  position: relative;
  width: 100%;
  height: 440px;
}

.stack-card {
  position: absolute;
  width: 100%;
  padding: 32px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-back {
  top: -20px;
  right: -20px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  transform: rotate(4deg);
}

.card-back .mode-tag {
  color: #c084fc;
  font-size: 0.8rem;
  font-weight: 700;
}

.card-back h3 {
  font-size: 1.4rem;
  margin-top: 12px;
  color: #fff;
}

.card-front {
  top: 20px;
  left: 0;
  transform: rotate(-2deg);
}

.card-front:hover {
  transform: rotate(0deg) scale(1.02);
}

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

.card-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 1px;
}

.card-id {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.profile-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.avatar-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #0b0d14;
}

.profile-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
}

.profile-info .tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.stat-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-purple));
  border-radius: 10px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-badge {
  color: var(--primary-gold);
}

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

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

.section-tag {
  color: var(--primary-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 50px;
}

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

.feature-card {
  padding: 36px 28px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 184, 109, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

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

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Interactive Quiz Demo */
.demo-section {
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
}

.demo-box {
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.quiz-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.quiz-fill {
  height: 100%;
  background: var(--primary-gold);
  transition: width 0.4s ease;
}

.step-label {
  font-size: 0.8rem;
  color: var(--primary-gold);
  font-weight: 700;
  text-transform: uppercase;
}

.question-card h3 {
  font-size: 1.6rem;
  margin: 10px 0 28px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.option-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 24px;
  border-radius: 14px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.option-btn:hover {
  background: rgba(232, 184, 109, 0.12);
  border-color: var(--primary-gold);
  transform: translateX(6px);
}

.hidden { display: none; }

.quiz-result-card {
  text-align: center;
  padding: 20px 0;
}

.result-badge {
  display: inline-block;
  background: rgba(0, 224, 84, 0.15);
  color: var(--accent-green);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.quiz-result-card h2 {
  font-size: 2.2rem;
  color: var(--primary-gold);
  margin-bottom: 12px;
}

.quiz-result-card p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 24px;
}

.result-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tag {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #fff;
}

/* Cine-Receipt Section */
.receipt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.receipt-form {
  padding: 32px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.form-group input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
}

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

.form-row {
  display: flex;
  gap: 16px;
}

/* Thermal Receipt Styling */
.receipt-preview-wrap {
  display: flex;
  justify-content: center;
}

.thermal-receipt {
  background: #f4efdf;
  color: #1a1a1a;
  width: 320px;
  padding: 24px 20px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.4;
  position: relative;
  animation: printAnim 0.6s ease-out;
}

@keyframes printAnim {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.receipt-perf {
  color: #a09885;
  text-align: center;
  font-size: 0.7rem;
}

.receipt-brand {
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 8px;
}

.receipt-tagline {
  font-size: 0.7rem;
  text-align: center;
  color: #555;
}

.receipt-date {
  font-size: 0.65rem;
  text-align: center;
  color: #777;
  margin-bottom: 6px;
}

.receipt-dash {
  color: #999;
  text-align: center;
  margin: 4px 0;
}

.receipt-sec {
  font-weight: 700;
  color: #666;
  font-size: 0.65rem;
  letter-spacing: 1px;
  margin-top: 6px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
}

.receipt-row.bold {
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 4px;
}

.receipt-film-list div {
  padding-left: 4px;
}

.receipt-footer {
  text-align: center;
  color: #888;
  font-size: 0.65rem;
}

/* CTA Section */
.cta-section {
  padding-bottom: 120px;
}

.cta-box {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
  background: #040508;
}

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

.footer-brand p {
  color: var(--text-dim);
  max-width: 400px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container, .receipt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .nav-links {
    display: none;
  }
}

/* Coming Soon Screen */
.coming-soon-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark);
  overflow: hidden;
  margin: 0;
}

.coming-soon-container {
  width: 100%;
  max-width: 520px;
  padding: 24px;
  text-align: center;
  z-index: 10;
}

.coming-soon-card {
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(232, 184, 109, 0.1);
  border: 1px solid rgba(232, 184, 109, 0.25);
  color: var(--primary-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-gold);
  box-shadow: 0 0 10px var(--primary-gold);
  animation: pulseAnim 2s infinite ease-in-out;
}

@keyframes pulseAnim {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.coming-soon-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 30%, #e8b86d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.6;
  font-weight: 400;
  max-width: 400px;
}

