:root {
  --background: #0f1113;
  --secondary: #181b1f;
  --foreground: #ffffff;
  --muted: #bfc3c7;
  --border: #1d2025;
  --primary: #7ed321;
  --primary-hover: #6ab61c;
  --primary-foreground: #0f1113;
  --radius: 16px;
  --shadow: 0 25px 60px rgba(126, 211, 33, 0.16);
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  padding-bottom: 7rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem 0;
}

.container {
  width: min(1080px, 100% - 2.5rem);
  margin: 0 auto;
}

.container.narrow {
  width: min(900px, 100% - 2.5rem);
}

.section {
  padding: clamp(3.5rem, 4vw + 1rem, 6rem) 0;
}

.section-primary {
  background: var(--background);
}

.section-secondary {
  background: var(--secondary);
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-text .subtitle {
  font-size: 1.3rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.lede {
  font-size: 1.1rem;
  color: #ffffff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.eyebrow.primary {
  color: var(--primary);
}

.text-gradient {
  background: linear-gradient(120deg, #7ed321, #a5f55d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.subtitle {
  color: var(--muted);
}

.highlight {
  color: var(--foreground);
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.cta-row .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.9rem 1.3rem;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 0.95rem 1.6rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 15px 35px rgba(126, 211, 33, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(63, 109, 246, 0.08);
}

.hero-cover {
  position: relative;
  max-width: 360px;
  width: 100%;
  justify-self: center;
}

.cover-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #161a1f, #101215);
  box-shadow: var(--shadow);
  padding: 1rem;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cover-shadow {
  position: absolute;
  inset: 12% -12%;
  z-index: -1;
  border-radius: 18px;
  background: rgba(126, 211, 33, 0.12);
}

.section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.center {
  text-align: center;
}

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

.lead {
  font-size: 1.1rem;
}

.copy-stack {
  display: grid;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.copy-stack .highlight {
  color: var(--foreground);
}

@media (max-width: 640px) {
  .copy-stack .highlight {
    text-align: center;
  }
}

.inline-banner {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.inline-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.grid {
  display: grid;
}

.gap {
  gap: 1.4rem;
}

.grid.two-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.bonus-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: #1a1d23;
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.card.soft {
  background: #1a1d23;
}

.card.strong {
  background: #1a1d23;
}

.card.muted {
  background: #101217;
  border-color: #1c2026;
}

.card.border {
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card.border:hover {
  border-color: rgba(126, 211, 33, 0.45);
  transform: translateY(-2px);
}

.card.border:active {
  transform: translateY(0);
  border-color: rgba(126, 211, 33, 0.6);
}
.card.primary-border {
  background: #1a1d23;
  border-color: var(--border);
}

.card-title {
  margin-bottom: 0.75rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.checklist .icon {
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.65rem;
  display: inline-block;
  width: 1.1rem;
}

.checklist.muted-icons .icon {
  color: #a0a0a0;
}

.muted {
  color: var(--muted);
}

.muted.small {
  font-size: 0.95rem;
}

.card.body-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 1.05rem;
}

.card.body-card p {
  color: var(--muted);
}

.card.body-card p.strong-text,
.strong-text {
  font-weight: 600;
  color: #ffffff;
}

.card.body-card .lede {
  color: #ffffff;
}

.pricing {
  border: 2px solid var(--primary);
  background: #15181d;
  display: grid;
  gap: 1rem;
  padding: clamp(1.8rem, 3vw, 2.8rem);
}

.pricing-title {
  margin: 0.3rem 0 0.5rem 0;
  font-size: 1.6rem;
}

.price {
  font-size: clamp(3rem, 2vw + 2rem, 3.8rem);
  font-weight: 700;
  color: var(--primary);
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #15181d;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--foreground);
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-content {
  padding: 0 1.2rem 1rem 1.2rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.faq-trigger .chevron {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 1.1rem;
  color: var(--muted);
}

.faq-trigger.open .chevron {
  transform: rotate(180deg);
}

.faq-trigger:hover .chevron {
  color: var(--primary);
}

.footer {
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 3rem 0 5.5rem 0;
}

.footer .muted {
  margin: 0.2rem 0;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer a:hover {
  color: var(--primary);
}

.divider {
  color: #d1d5db;
}

@media (max-width: 900px) {
  .footer-links {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .footer-links {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .footer-links {
    font-size: 0.85rem;
  }
}

.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1.5rem;
  background: rgba(15, 17, 19, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  z-index: 20;
  justify-content: center;
}

.mobile-cta .btn {
  width: min(1080px, calc(100% - 2rem));
  max-width: 1080px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

body.modal-open {
  overflow: hidden;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.modal-dialog {
  position: relative;
  background: #15181d;
  border-radius: 14px;
  padding: 1rem;
  max-width: min(900px, 90vw);
  max-height: 90vh;
  box-shadow: var(--shadow);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.modal-pdf {
  width: min(90vw, 800px);
  height: 80vh;
  border: none;
  background: #0f1113;
  border-radius: 10px;
}

.modal-dialog-wide {
  max-width: min(800px, 90vw);
}

.modal-image {
  border-radius: 10px;
  max-height: 80vh;
  object-fit: contain;
}

.modal-body {
  max-height: 70vh;
  overflow-y: auto;
  padding: 0.25rem 0.25rem 0.5rem 0.25rem;
  width: 100%;
  color: var(--muted);
}

.modal-body h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--foreground);
}

.modal-body h4 {
  margin: 1rem 0 0.4rem 0;
  color: var(--foreground);
}

.modal-body ul {
  padding-left: 1.1rem;
  margin: 0 0 0.6rem 0;
  display: grid;
  gap: 0.25rem;
}

.modal-body p {
  margin: 0 0 0.75rem 0;
}

.nowrap {
  white-space: nowrap;
}

.modal-close {
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .hero {
    min-height: unset;
  }

  .grid.cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.4rem;
  }

  .cta-row .btn {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 1.1rem;
  }

  h1 {
    font-size: clamp(2.2rem, 5vw + 1rem, 3rem);
  }
}

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

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