/* ============================================ */
/* PickRAW Landing Page — Dark Theme            */
/* Matches the app's aesthetic: #1E1E1E bg,     */
/* #E8524A accent, clean and modern.            */
/* ============================================ */

/* ---- RESET & BASE ---- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #111111;
  color: #E0E0E0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #E8524A;
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
}

/* ---- LAYOUT HELPERS ---- */

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 17px;
  color: #999999;
  text-align: center;
  margin-bottom: 48px;
}

/* ---- LOGO ---- */

.logo-pick {
  font-weight: 300;
  color: #FFFFFF;
}

.logo-raw {
  font-weight: 700;
  color: #E8524A;
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: #E8524A;
  color: #FFFFFF;
}

/* Ensure button text stays white even when it's an <a> tag */
a.btn-primary {
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #D04440;
  color: #FFFFFF;
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: #AAAAAA;
  border: 1px solid #444444;
}

.btn-secondary:hover {
  border-color: #777777;
  color: #FFFFFF;
  opacity: 1;
}

.btn-large {
  padding: 16px 40px;
  font-size: 17px;
}

/* ============================================ */
/* NAV BAR                                      */
/* ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #222222;
}

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

.nav-logo {
  font-size: 22px;
}

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

.nav-links a {
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
  opacity: 1;
}

.nav-cta {
  background: #E8524A;
  color: #FFFFFF !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px !important;
}

.nav-cta:hover {
  background: #D04440;
}

/* ============================================ */
/* HERO                                         */
/* ============================================ */

.hero {
  padding: 160px 24px 100px;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 19px;
  color: #999999;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-platforms {
  font-size: 13px;
  color: #666666;
}

/* ============================================ */
/* TRUST BAR                                    */
/* ============================================ */

.trust-bar {
  background: #1A1A1A;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  padding: 20px 24px;
}

.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #AAAAAA;
}

.trust-icon {
  font-size: 18px;
}

/* ============================================ */
/* PROBLEM / SOLUTION                           */
/* ============================================ */

.problem-solution {
  padding: 80px 24px;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.problem-card,
.solution-card {
  background: #1A1A1A;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 28px 24px;
}

.problem-card h3,
.solution-card h3 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.problem-card h3 {
  color: #888888;
}

.solution-card h3 {
  color: #E8524A;
}

.problem-card p,
.solution-card p {
  font-size: 15px;
  color: #AAAAAA;
  line-height: 1.6;
}

/* ============================================ */
/* FEATURES                                     */
/* ============================================ */

.features {
  padding: 100px 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #1A1A1A;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 32px 24px;
  transition: border-color 0.2s ease;
}

.feature-card:hover {
  border-color: #3A3A3A;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #999999;
  line-height: 1.5;
}

/* ============================================ */
/* SUPPORTED CAMERAS                            */
/* ============================================ */

.cameras {
  padding: 80px 24px;
  background: #1A1A1A;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
}

.camera-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.camera-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.camera-brand strong {
  font-size: 14px;
  color: #E8524A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.camera-brand span {
  font-size: 14px;
  color: #888888;
  line-height: 1.5;
}

/* ============================================ */
/* HOW IT WORKS                                 */
/* ============================================ */

.how-it-works {
  padding: 100px 24px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.step {
  text-align: center;
  max-width: 240px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #E8524A;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #999999;
  line-height: 1.5;
}

.step-arrow {
  font-size: 24px;
  color: #444444;
  padding-top: 12px;
}

/* ============================================ */
/* WHO IT'S FOR / AUDIENCE                      */
/* ============================================ */

.audience {
  padding: 80px 24px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.audience-card {
  background: #1A1A1A;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 24px;
}

.audience-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 14px;
  color: #999999;
  line-height: 1.5;
}

/* ============================================ */
/* PRICING                                      */
/* ============================================ */

.pricing {
  padding: 100px 24px;
  background: #1A1A1A;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
}

.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: #222222;
  border: 1px solid #333333;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  background: rgba(232, 82, 74, 0.15);
  color: #E8524A;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pricing-dollar {
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  padding-top: 8px;
}

.pricing-amount {
  font-size: 64px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

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

.pricing-features li {
  font-size: 15px;
  color: #AAAAAA;
  padding: 8px 0;
  border-bottom: 1px solid #2A2A2A;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '\2713  ';
  color: #4CAF50;
}

/* ============================================ */
/* FAQ                                          */
/* ============================================ */

.faq {
  padding: 80px 24px;
  background: #1A1A1A;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #2A2A2A;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

/* Hide the default disclosure triangle */
.faq-question::-webkit-details-marker {
  display: none;
}

/* Custom arrow indicator */
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 20px;
  color: #666666;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
  color: #E8524A;
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 15px;
  color: #AAAAAA;
  line-height: 1.7;
}

/* ============================================ */
/* DOWNLOAD                                     */
/* ============================================ */

.download {
  padding: 100px 24px;
  text-align: center;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #222222;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 14px 24px;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.btn-download:hover {
  border-color: #E8524A;
  opacity: 1;
}

.download-icon {
  font-size: 28px;
}

.download-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.download-label {
  font-size: 11px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-platform {
  font-size: 18px;
  font-weight: 600;
}

.download-note {
  font-size: 13px;
  color: #666666;
}

.text-link {
  color: #E8524A;
  text-decoration: underline;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */

.footer {
  padding: 60px 24px;
  border-top: 1px solid #222222;
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 13px;
  color: #888888;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-copyright {
  font-size: 12px;
  color: #444444;
}

/* ============================================ */
/* RESPONSIVE — Mobile & Tablet                 */
/* ============================================ */

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

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

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

  .camera-list {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .problem-solution-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 16px 60px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .pricing-card {
    padding: 32px 20px;
  }
}
