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

/* ================= GLOBAL ================= */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

:root {
  --accent: #e10600; /* PICKR red */
}


/* ================= PAGE SYSTEM ================= */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ================= NAVBAR ================= */
.navbar {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: relative;
  z-index: 10;
}

.logo {
  height: 100px;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 0;
  margin: 0;
  display: block;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;          /* 👈 KEY */
  justify-content: flex-end;
  max-width: 100%;
}
@media (max-width: 600px) {
  .nav-links {
    justify-content: center;
  }
}



.nav-btn {
  background: transparent;
  color: #000;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
}

.nav-btn.primary {
  background: var(--accent);
  color: #000;
  border: none;
}

/* ================= HERO ================= */
.hero {
  min-height: 80vh;
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url("imd/background.png") center/cover no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero > * {
  position: relative;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 900;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  text-decoration: underline;
}

/* ---- Raptors image (SLIGHTLY SMALLER FOR FADE SPACE) ---- */
.hero-image img {
  transform: scale(1.42);
  transform-origin: center center;
  max-height: 455px;
  display: block;
  /* slightly larger and lifted a bit more to overlap the top navbar */
  /* adjusted: move down ~0.1cm from previous position */
  margin-top: -67px;
  position: relative;
  z-index: 20;
}

/* make sure hero container allows visible overflow for the overlap */
.hero {
  overflow: visible;
}

/* ================= CTA / SUBSCRIBE ================= */
.cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.subscribe-btn {
  background: var(--accent);
  color: #000;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 800;
  border: none;
  cursor: pointer;
}

.email-bar {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.email-bar input[type="email"],
.cta-group input[type="email"] {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  min-width: 320px;
}

.subscribe-submit {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

/* ================= RESPONSIVE HERO ================= */
@media (max-width: 900px) {
  .cta-group {
    justify-content: center;
  }

  .email-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .email-bar input[type="email"] {
    width: 100%;
    min-width: 0;
  }

  .subscribe-submit {
    width: 100%;
  }

  .hero-image img {
    transform: scale(0.80);
    max-height: 350px;
    margin-top: -49px;
  }
}

/* ================= ABOUT ================= */
.about {
  padding: 120px 80px;
}

.about-label {
  color: var(--accent);
  font-size: 36px;
  font-weight: 900;
}

.about-title {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 40px;
}

.about-text {
  max-width: 750px;
  line-height: 1.7;
}

.about-text.muted {
  opacity: 0.7;
}

/* ================= FAQ ================= */
.faq {
  padding: 120px 80px;
}

.faq-container {
  max-width: 1100px;
}

.faq-title {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 60px;
}

.faq-title span {
  color: var(--accent);
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.faq-question {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 28px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 26px;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  opacity: 0.85;
  padding-right: 40px;
  font-size: 17px;
  line-height: 1.7;
}

/* ================= VALUES ================= */
.values {
  padding: 120px 0 40px;
}

.values-title {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 60px;
}

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

.value-card {
  background: radial-gradient(
    120% 120% at 10% 10%,
    #151625 0%,
    #0b0c14 60%,
    #07080d 100%
  );
  border-radius: 32px;
  padding: 48px 36px;
  min-height: 360px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,176,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 28px;
}

.value-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.value-card p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
}

/* ================= VALUES RESPONSIVE ================= */
@media (max-width: 1000px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-title {
    font-size: 48px;
  }

  .value-card {
    min-height: auto;
  }
}



/* ================= HOME SCROLL SNAP ================= */
.home-scroll {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

/* Each slide */
.snap-section {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.snap-section {
  background:
    radial-gradient(
      100% 80% at 20% 20%,
      rgba(225, 6, 0, 0.08),
      transparent 60%
    );
}


/* Layout */
.snap-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.snap-text {
  max-width: 520px;
}

.snap-text h2 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}


.snap-text h2 span {
  color: var(--accent);
}

.snap-text p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.75;
}
.snap-image {
  padding: 70px;
  border-radius: 56px;
  background:
    radial-gradient(
      120% 120% at 30% 30%,
      rgba(225, 6, 0, 0.35),
      rgba(0, 0, 0, 0.9) 65%
    );
  box-shadow:
    0 0 120px rgba(225, 6, 0, 0.35),
    inset 0 0 80px rgba(225, 6, 0, 0.15);
}


.snap-image.gold {
  background:
    radial-gradient(
      120% 120% at 30% 30%,
      rgba(225, 6, 0, 0.6),
      rgba(0, 0, 0, 0.95) 70%
    );
}


.snap-image img {
  max-width: 340px;
  display: block;
}

/* Responsive */
@media (max-width: 1000px) {
  .snap-content {
    flex-direction: column;
    text-align: center;
  }

  .snap-text h2 {
    font-size: 48px;
  }
}

/* ================= HOW IT WORKS ================= */
.how-it-works {
  padding: 140px 80px;
  background: radial-gradient(
    120% 120% at 20% 10%,
    rgba(225, 6, 0, 0.08),
    #000 60%
  );
}

.hiw-container {
  max-width: 1000px;
}

.hiw-title {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 80px;
}

.hiw-block {
  margin-bottom: 48px;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}

.hiw-block h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}

.hiw-block p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
}


/* ================= PARTNERS ================= */
.partners {
  padding: 140px 80px;
}

.partners-container {
  max-width: 1100px;
}

.partners-title {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 30px;
}

.partners-intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  opacity: 0.85;
  margin-bottom: 80px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.partner-card {
  background: radial-gradient(
    120% 120% at 20% 20%,
    #151625 0%,
    #0b0c14 65%,
    #07080d 100%
  );
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.partner-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
}

.partner-card p {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  /* Disable scroll snap on mobile */
  .home-scroll {
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .snap-section {
    height: auto;
    min-height: 100vh;
    scroll-snap-align: none;
    padding: 80px 24px;
  }

  /* Stack content vertically */
  .snap-content {
    flex-direction: column;
    gap: 40px;
  }

  /* Fix hero spacing under fixed navbar */
  .hero {
    padding: 120px 24px 80px;
  }

  /* Resize hero image */
  .hero-image img {
    transform: scale(0.9);
    margin-top: 0;
    max-height: 300px;
  }

  /* Reduce big headings */
  .hero-text h1,
  .snap-text h2,
  .hiw-title,
  .partners-title,
  .faq-title {
    font-size: 42px;
  }

  /* Reduce page padding */
  .about,
  .faq,
  .partners,
  .how-it-works {
    padding: 100px 24px;
  }
}


/* ================= MOBILE SAFARI RESET ================= */
@media (max-width: 600px) {

  /* Global spacing fix */
  body {
    padding-top: 110px;
  }

  /* NAVBAR */
  .navbar {
    padding: 14px 16px;
  }

  .logo {
    height: 56px;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* HERO */
  .hero {
    padding: 80px 20px 40px;
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .cta-group input,
  .subscribe-btn {
    width: 100%;
  }

  .hero-image img {
    transform: none;
    max-height: 260px;
    margin-top: 24px;
  }

  /* SCROLL SECTIONS */
  .home-scroll {
    height: auto;
    overflow: visible;
  }

  .snap-section {
    height: auto;
    padding: 60px 20px;
  }

  .snap-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .snap-text h2 {
    font-size: 34px;
  }

  .snap-image {
    padding: 32px;
  }

  .snap-image img {
    max-width: 220px;
  }

  /* CONTENT PAGES */
  .about,
  .faq,
  .partners,
  .how-it-works {
    padding: 80px 20px;
  }

  .about-title,
  .faq-title,
  .hiw-title,
  .partners-title {
    font-size: 36px;
  }

  .values-title {
    font-size: 32px;
  }

  .values-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .partner-card {
    padding: 28px;
  }

}
/* ================= SAFARI BLACK GAP FIX ================= */
@media (max-width: 600px) {

  html, body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
  }

  /* Remove leftover 100vh issues */
  .hero,
  .snap-section {
    min-height: unset;
    height: auto;
  }

  /* Prevent extra scroll space at bottom */
  body {
    padding-bottom: 0;
  }

}
/* ================= MOBILE LANDSCAPE FIX ================= */
@media (max-width: 900px) and (orientation: landscape) {

  body {
    padding-top: 90px;
  }

  /* Navbar tighter in landscape */
  .navbar {
    padding: 10px 14px;
  }

  .logo {
    height: 48px;
  }

  .nav-btn {
    font-size: 11px;
    padding: 5px 8px;
  }

  /* Disable fancy layouts */
  .home-scroll {
    height: auto;
    overflow: visible;
  }

  .snap-section {
    height: auto;
    padding: 40px 20px;
  }

  .snap-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .hero {
    padding: 60px 20px 40px;
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    max-height: 220px;
  }
}

/* ================= PICKS PAGE ================= */
.picks {
  padding: 140px 80px;
}

.picks-title {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 16px;
}

.picks-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 60px;
}

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

.pick-card {
  background: radial-gradient(
    120% 120% at 20% 20%,
    #151625 0%,
    #0b0c14 65%,
    #07080d 100%
  );
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.pick-card h3 {
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.pick-meta {
  margin-top: 10px;
  opacity: 0.7;
}

.picks-disclaimer {
  margin-top: 60px;
  font-size: 14px;
  opacity: 0.6;
  max-width: 700px;
}

/* Mobile */
@media (max-width: 900px) {
  .picks-grid {
    grid-template-columns: 1fr;
  }

  .picks-title {
    font-size: 40px;
  }

  .picks {
    padding: 100px 24px;
  }
}
