@charset "UTF-8";
/* CSS Document */
 /* Inspired by the provided AI page styling (dark hero, glow orbs, bold cards) */
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #111827;
      background: #ffffff;
      font-size: 16px;
      overflow-x: hidden;
    }
    img { max-width:100%; height:auto; display:block; }
    a { color: inherit; text-decoration:none; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* Animations */
    @keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
    @keyframes pulse-glow { 0%,100% { opacity: 0.35; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.05); } }
    @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
    @keyframes fade-in-up { from { opacity:0; transform: translateY(26px); } to { opacity:1; transform: translateY(0); } }

    .animate-on-scroll { opacity:0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
    .animate-on-scroll.visible { opacity:1; transform: translateY(0); }
    .stagger-1 { transition-delay: .08s; }
    .stagger-2 { transition-delay: .16s; }
    .stagger-3 { transition-delay: .24s; }

    /* Sticky header */
    .sticky-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: rgba(15, 15, 26, 0.92);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 12px 0;
      transform: translateY(-110%);
      transition: transform 0.28s ease;
    }
    .sticky-header.visible { transform: translateY(0); }
    .sticky-header-content {
      display:flex;
      justify-content: space-between;
      align-items:center;
      gap: 16px;
    }
    .sticky-logo {
      color: #fff;
      font-weight: 800;
      letter-spacing: -0.01em;
      font-size: 1.0rem;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .sticky-logo .dot {
      width:10px; height:10px; border-radius:50%;
      background: #e53e3e;
      box-shadow: 0 0 18px rgba(229,62,62,0.6);
    }
    .sticky-cta {
      background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
      color:#fff;
      padding: 10px 18px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.95rem;
      transition: transform .2s, box-shadow .2s;
      white-space: nowrap;
    }
    .sticky-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(229,62,62,0.35);
    }

    /* Top launch banner */
    .launch-banner {
      background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 100%);
      border-bottom: 1px solid #fecaca;
      padding: 14px 0;
    }
    .launch-banner p {
      text-align:center;
      color: #7f1d1d;
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.5;
    }
    .launch-banner strong { color: #991b1b; }

    /* Hero */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%);
      position: relative;
      overflow:hidden;
      display:flex;
      align-items:center;
    }
    .hero-particles {
      position:absolute; inset:0; overflow:hidden;
    }
    .particle {
      position:absolute;
      width:4px; height:4px;
      background: rgba(229, 62, 62, 0.55);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }
    .particle:nth-child(1) { top: 18%; left: 10%; animation-delay: 0s; }
    .particle:nth-child(2) { top: 62%; left: 18%; animation-delay: 1s; width: 6px; height: 6px; }
    .particle:nth-child(3) { top: 30%; left: 72%; animation-delay: 2s; }
    .particle:nth-child(4) { top: 74%; left: 80%; animation-delay: .5s; width: 5px; height: 5px; }
    .particle:nth-child(5) { top: 40%; left: 92%; animation-delay: 1.5s; }
    .particle:nth-child(6) { top: 82%; left: 50%; animation-delay: 2.5s; width: 3px; height: 3px; }

    .glow-orb {
      position:absolute;
      border-radius:50%;
      filter: blur(60px);
      animation: pulse-glow 4s ease-in-out infinite;
    }
    .glow-orb-1 {
      width: 420px; height: 420px;
      background: rgba(229,62,62,0.14);
      top: 18%;
      left: 50%;
      transform: translateX(-50%);
    }
    .glow-orb-2 {
      width: 320px; height: 320px;
      background: rgba(229,62,62,0.10);
      bottom: 6%;
      left: 10%;
      animation-delay: 2s;
    }
    .glow-orb-3 {
      width: 220px; height: 220px;
      background: rgba(100,100,255,0.10);
      top: 10%;
      right: 10%;
      animation-delay: 1s;
    }

    .hero-content {
      position: relative;
      z-index: 5;
      width:100%;
      padding: 90px 0 60px;
    }

    .hero-grid {
      display:grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 44px;
      align-items:center;
    }

    .hero-badge {
      display:inline-flex;
      align-items:center;
      gap: 10px;
      background: rgba(229,62,62,0.16);
      border: 1px solid rgba(229,62,62,0.32);
      color: #ff8a8a;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: .2px;
      margin-bottom: 18px;
      animation: fade-in-up .8s ease forwards;
    }
    .hero-badge svg { width:18px; height:18px; }

    .hero h1 {
      font-size: clamp(2.2rem, 4.8vw, 4.1rem);
      font-weight: 900;
      color:#fff;
      line-height: 1.06;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
      animation: fade-in-up .8s ease .08s forwards;
      opacity:0;
    }
    .hero h1 span {
      background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      color: rgba(255,255,255,0.82);
      font-size: 1.15rem;
      line-height: 1.75;
      max-width: 54ch;
      margin-bottom: 22px;
      animation: fade-in-up .8s ease .16s forwards;
      opacity:0;
    }

    .hero-bullets {
      display:grid;
      gap: 10px;
      margin-bottom: 28px;
      animation: fade-in-up .8s ease .22s forwards;
      opacity:0;
    }
    .hero-bullets li {
      list-style:none;
      display:flex;
      gap:10px;
      align-items:flex-start;
      color: rgba(255,255,255,0.82);
      font-weight: 600;
    }
    .hero-bullets .check {
      width: 22px; height: 22px;
      border-radius: 8px;
      background: rgba(255,255,255,0.12);
      display:flex;
      align-items:center;
      justify-content:center;
      flex: 0 0 22px;
      margin-top: 2px;
    }
    .hero-bullets svg { width: 16px; height: 16px; color: #fff; }

    /* Opt-in card (form) */
    .optin-card {
      background: linear-gradient(135deg, #e53e3e 0%, #c53030 55%, #9b2c2c 100%);
      border-radius: 26px;
      padding: 34px 30px;
      box-shadow:
        0 30px 60px -15px rgba(229,62,62,0.5),
        0 0 0 1px rgba(255,255,255,0.10) inset,
        0 0 110px rgba(229,62,62,0.28);
      position: relative;
      overflow:hidden;
      animation: fade-in-up .8s ease .28s forwards;
      opacity:0;
    }
    .optin-card::before {
      content:'';
      position:absolute;
      top:0; left:-100%;
      width:100%; height:100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
      animation: shimmer 3s ease-in-out infinite;
    }
/*
    .optin-card::after {
      content:'';
      position:absolute;
      top:-44px; right:-44px;
      width: 140px; height: 140px;
      background: rgba(255,255,255,0.06);
      border-radius: 50%;
    }
*/
    .optin-top {
      position: relative;
      display:flex;
      gap: 18px;
      align-items:center;
      margin-bottom: 16px;
    }
    .book-cover {
      width: 124px;
      border-radius: 12px;
      box-shadow: 0 18px 45px rgba(0,0,0,0.28);
      overflow:hidden;
      flex-shrink:0;
    }
    .optin-title {
      position: relative;
      color:#fff;
      font-weight: 900;
      line-height: 1.1;
      font-size: 1.35rem;
      letter-spacing: -0.01em;
      margin-bottom: 4px;
    }
    .optin-sub {
      position: relative;
      color: rgba(255,255,255,0.88);
      font-weight: 600;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .launch-window {
      position: relative;
      margin-top: 10px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.18);
      padding: 12px 14px;
      border-radius: 14px;
      color: rgba(255,255,255,0.92);
      font-weight: 700;
      font-size: 0.95rem;
    }

    form {
      position: relative;
      display:grid;
      gap: 12px;
      margin-top: 18px;
    }
    label {
      position: relative;
      color: rgba(255,255,255,0.92);
      font-size: 0.9rem;
      font-weight: 700;
    }
    .field {
      position: relative;
      display:grid;
      gap: 8px;
    }
    input, select {
      width: 100%;
      padding: 14px 14px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.24);
      background: rgba(255,255,255,0.12);
      color: #fff;
      outline: none;
      font-size: 1rem;
      font-weight: 600;
    }
    input::placeholder { color: rgba(255,255,255,0.65); font-weight: 600; }
    select option { color: #111827; }
    input:focus, select:focus {
      border-color: rgba(255,255,255,0.5);
      box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
    }

    .submit-btn {
      margin-top: 6px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      background: #ffffff;
      color: #991b1b;
      font-size: 1.1rem;
      font-weight: 900;
      padding: 16px 18px;
      border-radius: 14px;
      border: 0;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease;
      box-shadow: 0 14px 28px rgba(0,0,0,0.22);
    }
    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    }
    .submit-btn svg { width: 20px; height: 20px; }

    .microcopy {
      position: relative;
      margin-top: 10px;
      color: rgba(255,255,255,0.75);
      font-size: 0.85rem;
      line-height: 1.5;
    }

    /* Sections */
    section { padding: 90px 0; }
    .section-header {
      text-align:center;
      max-width: 760px;
      margin: 0 auto 54px;
    }
    .section-label {
      display:inline-block;
      background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
      color: #c53030;
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.4px;
      margin-bottom: 14px;
    }
    .section-header h2 {
      font-size: 2.6rem;
      font-weight: 900;
      color: #111827;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }
    .section-header p {
      font-size: 1.15rem;
      color: #4b5563;
      line-height: 1.75;
    }

    .card-grid {
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .info-card {
      background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
      border: 1px solid #e5e7eb;
      border-radius: 20px;
      padding: 28px;
      position: relative;
      overflow:hidden;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 48px rgba(17,24,39,0.08);
      border-color: rgba(229,62,62,0.25);
    }
    .icon {
      width: 52px; height: 52px;
      border-radius: 16px;
      background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom: 16px;
      font-size: 1.35rem;
    }
    .info-card h3 {
      font-size: 1.15rem;
      font-weight: 900;
      color: #111827;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }
    .info-card p {
      color: #4b5563;
      font-weight: 550;
      font-size: 0.98rem;
      line-height: 1.75;
    }

    .split {
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items:start;
    }
    .panel {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 22px;
      padding: 30px;
    }
    .panel h3 {
      font-size: 1.25rem;
      font-weight: 900;
      margin-bottom: 10px;
      letter-spacing:-0.01em;
    }
    .panel p {
      color:#4b5563;
      font-weight: 550;
      line-height: 1.8;
    }
    .panel ul {
      margin-top: 14px;
      display:grid;
      gap: 10px;
      padding-left: 18px;
      color:#374151;
      font-weight: 600;
    }

    /* A little spacing when multiple paragraphs are used inside panels */
    .panel .stack { display:grid; gap: 14px; }

    /* FAQ */
    .faq {
      display:grid;
      gap: 12px;
      max-width: 920px;
      margin: 0 auto;
    }
    details {
      background:#ffffff;
      border:1px solid #e5e7eb;
      border-radius: 18px;
      padding: 18px 18px;
    }
    summary {
      cursor:pointer;
      font-weight: 900;
      color:#111827;
      list-style:none;
    }
    summary::-webkit-details-marker { display:none; }
    details p {
      margin-top: 10px;
      color:#4b5563;
      font-weight: 550;
      line-height: 1.8;
    }

    /* Footer */
    .site-footer {
      background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
      color: #fff;
      padding: 70px 0 40px;
    }
    .footer-grid {
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 34px;
      align-items:start;
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .footer-brand h4 {
      font-size: 1.2rem;
      font-weight: 900;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }
    .footer-brand h4 span { color: #e53e3e; }
    .footer-brand p {
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      font-weight: 550;
      max-width: 46ch;
    }
    .footer-col h5 {
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #ff8a8a;
      font-size: 0.85rem;
      font-weight: 900;
      margin-bottom: 12px;
    }
    .footer-col a {
      color: rgba(255,255,255,0.7);
      font-weight: 650;
      display:inline-block;
      padding: 6px 0;
    }
    .footer-col a:hover { color:#fff; }
    .footer-bottom {
      text-align:center;
      color: rgba(255,255,255,0.5);
      font-weight: 550;
      font-size: 0.92rem;
    }

    /* Responsive */
    @media (max-width: 980px) {
      .hero-grid { grid-template-columns: 1fr; }
      .optin-top { justify-content:center; }
      .hero-content { padding-top: 80px; }
      .card-grid { grid-template-columns: 1fr; }
      .split { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 520px) {
      .optin-top { flex-direction: column; text-align:center; }
      .book-cover { width: 150px; }
      .section-header h2 { font-size: 2.0rem; }
    }










/* Bonus Section (ROW LAYOUT) */
.bonus-list{
  display: grid;
  gap: 18px;
}

/* Each bonus is a single row card */
.bonus-row{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
}

/* Media column */
.bonus-media{
  position: relative;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  overflow: visible;
}

/* Image placeholder */
.bonus-image{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Value pill overlay */
.bonus-value{
  position: absolute;
  top: -20px;
  left: -20px;

  /* SAME RED SYSTEM AS YOUR SITE */
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: #ffffff;

  padding: 8px 12px;
  border-radius: 999px;

  font-weight: 900;
  font-size: 0.85rem;
  line-height: 1;

  /* No border, no stroke, no halo */
  box-shadow:
    0 8px 20px rgba(197,48,48,0.28);
}

/* Content column */
.bonus-content{
  display: grid;
  gap: 12px;
}

.bonus-content h3{
  margin-bottom: 0;
}

/* Includes box */
.bonus-includes{
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border: 1px solid #fed7d7;
  border-radius: 16px;
  padding: 14px 14px;
}

.bonus-includes-title{
  font-weight: 900;
  color: #111827;
  margin-bottom: 8px;
}

.bonus-includes ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #374151;
  font-weight: 600;
}

/* Note under Bonus 1 */
.bonus-note{
  color: #4b5563;
  font-weight: 550;
  line-height: 1.8;
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .bonus-row{
    grid-template-columns: 1fr;
  }
  .bonus-image{
    height: 240px;
  }
}

/* Allow badge to overflow */
.optin-card{
  position: relative;
  overflow: visible;
  padding-top: 96px; /* space so content never collides with badge */
}

/* Bonus badge – centered horizontally */
.optin-bonus-badge{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55%); /* center + lift upward */
  width: min(240px, 55%);
  height: auto;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.38));
}


/* Tablet */
@media (max-width: 980px){
  .optin-card{
    padding-top: 104px;
  }

  .optin-bonus-badge{
    width: 210px;
    transform: translate(-50%, -50%);
  }
}

/* Mobile */
@media (max-width: 520px){
  .optin-card{
    padding-top: 120px;
  }

  .optin-bonus-badge{
    width: 180px;
    transform: translate(-50%, -48%);
  }
}