/* PnL AI — Master Product Page Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* PnL AI Exact Logo Palette & Obsidian Theme */
  --pnl-obsidian: #0A0C16;
  --pnl-dark-panel: #0E1222;
  --pnl-card-bg: rgba(18, 24, 46, 0.75);
  --pnl-card-border: rgba(16, 185, 129, 0.22);
  
  /* Candlestick & Neon Green Indicators */
  --pnl-green: #10B981;
  --pnl-green-bright: #00FF88;
  --pnl-green-glow: rgba(16, 185, 129, 0.35);
  --pnl-red: #F43F5E;
  --pnl-red-glow: rgba(244, 63, 94, 0.35);
  
  /* Golden Swooping Arrow & Expectancy Tokens */
  --pnl-gold: #D4AF37;
  --pnl-gold-bright: #FFD700;
  --pnl-gold-glow: rgba(212, 175, 55, 0.3);
  
  /* Cyan Neural & AI Accent */
  --pnl-cyan: #06B6D4;
  --pnl-cyan-glow: rgba(6, 182, 212, 0.3);
  
  /* Text & Utility */
  --pnl-white: #FFFFFF;
  --pnl-neutral: #94A3B8;
  --pnl-slate: #1E293B;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--pnl-obsidian);
  color: var(--pnl-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Neural & Candlestick Glows */
.pnl-ambient-green {
  position: fixed;
  top: -15%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16) 0%, rgba(10, 12, 22, 0) 70%);
  z-index: 0;
  pointer-events: none;
}
.pnl-ambient-gold {
  position: fixed;
  bottom: -15%;
  left: -10%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(10, 12, 22, 0) 70%);
  z-index: 0;
  pointer-events: none;
}
.pnl-ambient-cyan {
  position: fixed;
  top: 40%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, rgba(10, 12, 22, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header & Back Navigation */
.product-header {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 22, 0.88);
}

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

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pnl-neutral);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.back-link:hover {
  color: var(--pnl-gold-bright);
  transform: translateX(-4px);
}

.product-brand-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(18, 24, 46, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.product-brand-pill img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}
.product-brand-pill span {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--pnl-white);
}
.product-brand-pill small {
  color: var(--pnl-gold);
  font-weight: 600;
  font-size: 11px;
}

/* Hero Section */
.pnl-hero {
  padding: 70px 0 60px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

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

.pnl-badge-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

@media (max-width: 992px) {
  .pnl-badge-wrap {
    justify-content: center;
  }
}

.pnl-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.tag-ai {
  background: rgba(6, 182, 212, 0.15);
  color: var(--pnl-cyan);
  border: 1px solid rgba(6, 182, 212, 0.4);
}
.tag-android {
  background: rgba(16, 185, 129, 0.15);
  color: var(--pnl-green-bright);
  border: 1px solid rgba(16, 185, 129, 0.4);
}
.tag-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--pnl-gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.pnl-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.pnl-hero h1 span.green {
  color: var(--pnl-green-bright);
}
.pnl-hero h1 span.gold {
  background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pnl-hero h1 span.cyan {
  color: var(--pnl-cyan);
}

.pnl-hero p {
  font-size: 18px;
  color: var(--pnl-neutral);
  margin-bottom: 36px;
  max-width: 600px;
}

@media (max-width: 992px) {
  .pnl-hero p {
    margin: 0 auto 36px;
  }
}

/* CTA Buttons */
.app-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .app-cta-group {
    justify-content: center;
  }
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #0A0C16;
  font-family: var(--font-main);
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 25px var(--pnl-green-glow);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #00FF88 0%, #10B981 100%);
}
.btn-play svg {
  width: 26px;
  height: 26px;
}

.btn-sim {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(18, 24, 46, 0.85);
  color: var(--pnl-gold-bright);
  font-family: var(--font-main);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: all 0.25s ease;
}
.btn-sim:hover {
  background: rgba(30, 41, 75, 0.95);
  border-color: var(--pnl-gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--pnl-gold-glow);
}

/* Interactive AI Vision OCR Simulator Card */
.ai-sim-card {
  background: var(--pnl-card-bg);
  border: 1px solid var(--pnl-card-border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(25px);
  position: relative;
  overflow: hidden;
}
.ai-sim-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pnl-cyan) 0%, var(--pnl-green-bright) 50%, var(--pnl-gold) 100%);
}

.sim-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sim-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--pnl-white);
}
.ocr-badge {
  background: rgba(6, 182, 212, 0.2);
  color: var(--pnl-cyan);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-mono);
  animation: pulseCyan 2s infinite;
}
@keyframes pulseCyan {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.chart-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.chart-btn {
  flex: 1;
  background: rgba(10, 12, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--pnl-neutral);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.chart-btn.active {
  background: rgba(16, 185, 129, 0.18);
  border-color: var(--pnl-green-bright);
  color: var(--pnl-green-bright);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
}

.chart-screen-mockup {
  background: #060810;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  margin-bottom: 18px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scanner-laser {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--pnl-cyan);
  box-shadow: 0 0 14px var(--pnl-cyan), 0 0 4px var(--pnl-white);
  animation: scanLaser 3s infinite ease-in-out;
}
@keyframes scanLaser {
  0% { top: 10px; opacity: 0.8; }
  50% { top: 130px; opacity: 1; }
  100% { top: 10px; opacity: 0.8; }
}
.mockup-chart-title {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--pnl-neutral);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.mockup-chart-body {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--pnl-white);
  background: rgba(18, 24, 46, 0.5);
  padding: 10px;
  border-radius: 6px;
  border-left: 3px solid var(--pnl-cyan);
}

/* Extracted Data Grid */
.extracted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.ext-box {
  background: rgba(10, 12, 22, 0.75);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ext-label {
  font-size: 10px;
  color: var(--pnl-neutral);
  font-family: var(--font-mono);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.ext-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--pnl-white);
}
.ext-val.long { color: var(--pnl-green-bright); }
.ext-val.short { color: var(--pnl-red); }
.ext-val.profit { color: var(--pnl-green-bright); }

/* How It Works Section */
.pnl-workflow {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--pnl-neutral);
  max-width: 700px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 850px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
.step-card {
  background: rgba(18, 24, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 26px;
  position: relative;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--pnl-green-bright);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.step-num.gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--pnl-gold-bright);
  border-color: rgba(212, 175, 55, 0.35);
}
.step-num.cyan {
  background: rgba(6, 182, 212, 0.15);
  color: var(--pnl-cyan);
  border-color: rgba(6, 182, 212, 0.35);
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--pnl-neutral);
  font-size: 15px;
}

/* Feature Breakdown Grid (7 Pillars) */
.pnl-features {
  padding: 80px 0;
  background: rgba(14, 18, 34, 0.5);
}
.feature-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 992px) {
  .feature-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .feature-grid-3 {
    grid-template-columns: 1fr;
  }
}

.feat-item {
  background: rgba(18, 24, 46, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feat-item:hover {
  transform: translateY(-6px);
  border-color: var(--pnl-green-bright);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.12);
}
.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--pnl-green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-icon.gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--pnl-gold-bright);
}
.feat-icon.cyan {
  background: rgba(6, 182, 212, 0.15);
  color: var(--pnl-cyan);
}
.feat-icon.red {
  background: rgba(244, 63, 94, 0.15);
  color: var(--pnl-red);
}

.feat-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feat-item p {
  color: var(--pnl-neutral);
  font-size: 15px;
  line-height: 1.6;
}

/* Security Section */
.pnl-security {
  padding: 80px 0;
  position: relative;
}
.sec-card {
  background: linear-gradient(135deg, rgba(18, 24, 46, 0.9) 0%, rgba(10, 12, 22, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .sec-card {
    grid-template-columns: 1fr;
  }
}

.sec-list {
  list-style: none;
  display: grid;
  gap: 20px;
}
.sec-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sec-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--pnl-gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.sec-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--pnl-white);
  margin-bottom: 4px;
}
.sec-item p {
  font-size: 14px;
  color: var(--pnl-neutral);
}

/* Pricing Table Section */
.pnl-pricing {
  padding: 80px 0;
  background: rgba(14, 18, 34, 0.6);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.price-card {
  background: rgba(18, 24, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}
.price-card:hover {
  transform: translateY(-8px);
}
.price-card.featured {
  background: rgba(18, 24, 46, 0.95);
  border: 2px solid var(--pnl-green-bright);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.25);
}
.featured-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pnl-green-bright);
  color: var(--pnl-obsidian);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-header {
  text-align: center;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.price-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 40px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--pnl-white);
}
.price-amount span {
  font-size: 15px;
  color: var(--pnl-neutral);
  font-weight: 500;
}
.price-best-for {
  font-size: 13px;
  color: var(--pnl-gold);
  margin-top: 6px;
  font-weight: 600;
}

.price-features {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--pnl-neutral);
}
.price-features li.unlocked {
  color: var(--pnl-white);
  font-weight: 600;
}
.price-features li i {
  color: var(--pnl-green-bright);
  font-style: normal;
  font-weight: 800;
}

/* FAQ Accordion Section */
.pnl-faq {
  padding: 80px 0;
}
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-item {
  background: rgba(18, 24, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}
.faq-question {
  padding: 22px 26px;
  font-size: 18px;
  font-weight: 700;
  color: var(--pnl-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  padding: 0 26px 22px;
  color: var(--pnl-neutral);
  font-size: 15px;
  line-height: 1.7;
}

/* Android Download & QR Section */
.android-banner {
  padding: 80px 0;
  margin: 40px 0;
  background: linear-gradient(135deg, rgba(18, 24, 46, 0.95) 0%, rgba(10, 12, 22, 1) 100%);
  border-top: 1px solid var(--pnl-green-bright);
  border-bottom: 1px solid var(--pnl-green-bright);
}
.android-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .android-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.qr-card {
  background: var(--pnl-obsidian);
  border: 2px solid var(--pnl-green-bright);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(16, 185, 129, 0.2);
  max-width: 320px;
  margin: 0 auto;
}
.qr-frame {
  background: var(--pnl-white);
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}
.qr-frame svg {
  width: 170px;
  height: 170px;
  display: block;
}

/* Footer & Legal Disclaimer */
.pnl-footer {
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #060810;
}
.legal-disclaimer {
  background: rgba(18, 24, 46, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 20px;
  font-size: 12px;
  color: var(--pnl-neutral);
  line-height: 1.6;
  margin-bottom: 40px;
}
.legal-disclaimer strong {
  color: var(--pnl-gold-bright);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--pnl-neutral);
}
.footer-bottom a {
  color: var(--pnl-gold-bright);
  text-decoration: none;
  font-weight: 600;
}
