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

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 100%;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0a0a0a;
  color: #a1a1aa;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.container-narrow {
  max-width: 32rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(39, 39, 42, 0.8);
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}

.logo:hover {
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: #dc2626;
  color: #fff;
}

.btn-primary:hover {
  background: #b91c1c;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: #f87171;
  border: 1px solid #f87171;
}

.btn-outline:hover {
  background: rgba(248, 113, 113, 0.1);
}

@media (min-width: 640px) {
  .btn-block { width: auto; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #18181b, #000, rgba(127, 29, 29, 0.15));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(220, 38, 38, 0.12), transparent);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }
}

.hero-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text { text-align: left; }
}

.hero-badge {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f87171;
  margin: 0 0 0.5rem 0;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1rem 0;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.gradient {
  background: linear-gradient(90deg, #f87171, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.125rem;
  font-weight: 500;
  color: #d4d4d8;
  margin: 0 0 1rem 0;
}

.hero-desc {
  font-size: 1.125rem;
  color: #71717a;
  max-width: 36rem;
  margin: 0 0 2rem 0;
}

@media (min-width: 1024px) {
  .hero-desc { margin-left: 0; margin-right: 0; }
}

.hero-results {
  margin: 0 0 1.25rem 0;
}

.hero-results .contact-link {
  font-size: 1rem;
}

.hero-cta {
  margin-bottom: 0.5rem;
}

.hero-note {
  font-size: 0.875rem;
  color: #52525b;
  margin: 0;
}

.hero-image {
  flex: 1;
  max-width: 28rem;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-dark {
  background: rgba(24, 24, 27, 0.5);
}

.badge {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f87171;
  margin: 0 0 0.5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2rem 0;
}

/* How it works */
.how-intro {
  color: #d4d4d8;
  margin: 0 0 1rem 0;
  max-width: 36rem;
}

.how-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.how-list li {
  color: #d4d4d8;
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}

.how-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #ef4444;
}

.how-tagline {
  color: #f4f4f5;
  font-weight: 600;
  margin: 0;
}

/* How it looks in MT5 */
.how-looks-intro {
  color: #a1a1aa;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.how-it-looks-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #27272a;
  background: #18181b;
  max-width: 900px;
  margin: 0 auto;
}

.how-it-looks-img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .feature-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .feature-list { grid-template-columns: repeat(3, 1fr); }
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #d4d4d8;
}

.feature-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .cards { grid-template-columns: 1fr 1fr; }
}

.card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #27272a;
  background: rgba(24, 24, 27, 0.5);
}

.card-red {
  border-color: rgba(239, 68, 68, 0.3);
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f87171;
  margin: 0 0 1rem 0;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4d4d8;
  margin-bottom: 0.5rem;
}

.card li:last-child {
  margin-bottom: 0;
}

.card-red li::before {
  content: "✓";
  color: #ef4444;
}

.card:not(.card-red) li::before {
  content: "✗";
  color: #f87171;
}

/* Pricing */
.pricing-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #27272a;
  background: rgba(24, 24, 27, 0.5);
  text-align: center;
}

.pricing-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f87171;
  margin: 0 0 0.5rem 0;
}

.pricing-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #71717a;
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4d4d8;
  margin-bottom: 0.75rem;
}

.pricing-includes li::before {
  content: "✓";
  color: #ef4444;
}

.pricing-note {
  font-size: 0.875rem;
  color: #52525b;
  margin: 0 0 1.5rem 0;
}

/* Social proof */
.social-stat {
  font-size: 1.125rem;
  color: #d4d4d8;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.testimonial {
  max-width: 32rem;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(239, 68, 68, 0.2);
  background: rgba(24, 24, 27, 0.5);
}

.testimonial-quote {
  font-size: 1.125rem;
  color: #d4d4d8;
  font-style: italic;
  margin: 0 0 0.75rem 0;
}

.testimonial-author {
  font-size: 0.875rem;
  color: #71717a;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Results / proof */
.results-intro {
  color: #a1a1aa;
  margin: 0 0 1rem 0;
  text-align: center;
}

.results-image-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #27272a;
  background: #18181b;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.results-disclaimer {
  font-size: 0.75rem;
  color: #52525b;
  margin: 1rem 0 0;
  text-align: center;
}

/* Myfxbook performance */
.myfxbook-wrap {
  text-align: center;
  margin-bottom: 1rem;
  max-width: 100%;
  overflow: hidden;
}

.myfxbook-embed {
  width: 100%;
  max-width: 900px;
  height: 400px;
  border: 0;
  border-radius: 0.5rem;
  background: #18181b;
}

.myfxbook-embed[src=""] {
  display: none;
}

.myfxbook-equity-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid #27272a;
  display: block;
  margin-bottom: 1rem;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .results-performance .myfxbook-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.results-cta {
  margin: 1rem 0 0.5rem;
  color: #a1a1aa;
  font-size: 0.9375rem;
}

/* Results section: grid on desktop */
.results-section .section-title {
  text-align: center;
}

.results-grid {
  display: block;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .results-grid {
    margin-top: 2rem;
  }
  .results-slideshow-block {
    margin-top: 3rem;
  }
}

.results-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f87171;
  margin: 0 0 0.5rem 0;
}

.results-performance .results-intro {
  margin-bottom: 1rem;
}

/* Results slideshow */
.slideshow-intro {
  text-align: center;
  color: #a1a1aa;
  margin: 0 0 1rem 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .results-slideshow-block .slideshow-intro {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

.slideshow {
  position: relative;
  max-width: 480px;
  margin: 0 auto 1rem;
  padding: 0 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slideshow-track {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #27272a;
  background: #18181b;
  aspect-ratio: 9/16;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.slideshow-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slideshow-slide img,
.slideshow-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #27272a;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.slideshow-btn:hover {
  background: rgba(39, 39, 42, 0.95);
}

.slideshow-prev { left: 0; }
.slideshow-next { right: 0; }

@media (min-width: 640px) {
  .slideshow {
    max-width: 560px;
    padding: 0 3rem;
  }
  .slideshow-prev { left: 0.25rem; }
  .slideshow-next { right: 0.25rem; }
}

@media (min-width: 1024px) {
  .slideshow {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 3.25rem;
  }
  .slideshow-track {
    min-height: 420px;
    aspect-ratio: 9/16;
    max-height: 520px;
  }
  .slideshow-prev { left: 0.25rem; }
  .slideshow-next { right: 0.25rem; }
  .slideshow-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.75rem;
  }
}

.slideshow-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.slideshow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: #3f3f46;
  cursor: pointer;
  padding: 0;
}

.slideshow-dot:hover {
  background: #52525b;
}

.slideshow-dot.active {
  background: #f87171;
}

/* Why DMY Reaper stands out */
.stands-out-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .stands-out-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .stands-out-grid { grid-template-columns: repeat(4, 1fr); }
}

.stands-out-item {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #27272a;
  background: rgba(24, 24, 27, 0.5);
}

.stands-out-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f87171;
  margin: 0 0 0.5rem 0;
}

.stands-out-desc {
  font-size: 0.9375rem;
  color: #a1a1aa;
  margin: 0;
  line-height: 1.5;
}

/* Designed for long-term */
.designed-for-p {
  color: #d4d4d8;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.refund-policy-prose {
  color: #a1a1aa;
  font-size: 1rem;
  line-height: 1.65;
}

.refund-policy-prose p {
  margin: 0 0 1rem 0;
}

.refund-policy-prose p:last-child {
  margin-bottom: 0;
}

.designed-for-cta {
  font-size: 1.125rem;
  color: #fff;
  margin: 1.5rem 0 0.5rem 0;
}

.designed-for-cta strong {
  color: #f87171;
}

.designed-for-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: #a1a1aa;
  letter-spacing: 0.02em;
  margin: 0;
}

/* FAQ */
.faq-list {
  margin: 0;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid #27272a;
  padding: 1rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.faq-a {
  font-size: 0.9375rem;
  color: #a1a1aa;
  margin: 0;
  line-height: 1.5;
}

/* Contact */
.contact-intro {
  color: #a1a1aa;
  text-align: center;
  margin: 0 0 1.5rem 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.contact-link {
  color: #f87171;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid #27272a;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #71717a;
  text-decoration: none;
  font-size: 0.875rem;
}

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

.footer-text {
  font-size: 0.875rem;
  color: #52525b;
  margin: 0;
  text-align: center;
}

/* Mobile: full width, tap targets, spacing */
@media (max-width: 639px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .btn, .btn-lg {
    min-height: 2.75rem;
    padding: 0.75rem 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: 5rem;
    min-height: auto;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-text {
    width: 100%;
  }

  .hero-image {
    max-width: 100%;
    width: 100%;
  }

  .hero-desc,
  .hero-title,
  .section-title,
  .how-intro,
  .stands-out-item,
  .card,
  .pricing-card,
  .testimonial,
  .faq-item,
  .contact-intro,
  .results-intro,
  .slideshow-intro,
  .how-looks-intro {
    max-width: 100%;
  }

  .container-narrow {
    max-width: 100%;
  }

  /* Results: full width, stacked */
  .results-performance,
  .results-slideshow-block {
    width: 100%;
    min-width: 0;
  }

  .myfxbook-wrap {
    width: 100%;
  }

  .myfxbook-equity-img {
    width: 100%;
    max-width: 100%;
  }

  /* Slideshow: use full width on mobile */
  .slideshow {
    max-width: 100%;
    width: 100%;
    padding: 0 2.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .slideshow-track {
    width: 100%;
  }

  /* How it looks in MT5: full width image */
  .how-it-looks-wrap {
    max-width: 100%;
    margin: 0;
  }

  .how-it-looks-img {
    width: 100%;
  }

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