  /* Anchors */

  .anchors{
    display: block;
    padding: 40px;
    background: none;
}


.planeBannerWrapper{
    position: absolute;
    inset: 12px 0 auto 0;
    height: 120px;
    z-index: 9;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .planeBanner{
    position: relative;
    width: 2280px;
    height: 120px;
    flex: 0 0 auto;
  }

  .planeBanner svg{
    width: 2280px !important;
    height: 120px !important;
    max-width: none !important;
    display: block;
    margin: 0 auto;
  }



  
  /* Main hero container (centered inside 1140px) */
  .heroWrapper{
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 0.67fr minmax(260px, 0.33fr);
    align-items: end;
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 120px;
  }
    

  /* --- Left column (headline + CTA) --- */
  .heroCopy{
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: left;
  }

  .heroTitle{
    color: #fff;
    margin: 0 0 18px 0;
    max-width: 680px;
    line-height: 1;
    text-align: center;  
  }
  .heroLine{ 
    display: block; 
    letter-spacing: -2px;
  }

  .heroLineBrand{
    display: inline-block;
    font-size: 2.5rem;
    line-height: 1;
    background: #005036;
    padding: 16px 24px 12px 24px;
    transform: translateX(20px);
  }
  .heroLineTop{
    font-size: 5.8rem;
    line-height: 1.25;
    letter-spacing: -4px;
  }
  .heroLineMid{
    font-size: 13rem;
    line-height: 0.78;
    letter-spacing: -18px;
  }
  .heroLineBot{
    font-size: 6rem;
  }
  




/* =============================
   Hero CTA two-column layout (refined)
   ============================= */

   .heroCTA {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    transform: translateX(10px); 
    position: relative;
    z-index: 21; 
    margin-top: -50px;
  }

   .ctaGrid {
    display: grid;
    grid-template-columns: 234px auto; 
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 144px;  
    overflow: visible;  
    position: relative;
    z-index: 20;
  }
  
  /* Left column: animation box */
  .ctaAnim {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible; 
  }
  
  .ctaAnim .lottieBox {
    width: 234px;
    height: 204px; 
  }
  
  /* Right column: button */
  .ctaButtonWrap {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    overflow: visible;
  }
  
  /* Remove top margin so the button sits nicely centered */
  .heroCTA .ctaPrimary {
    margin-top: 0;
  }
  
  /* ===== Responsive collapse ===== */
  @media (max-width: 679px) {
    .ctaGrid {
      grid-template-columns: 1fr;
      gap: 16px;
      height: auto;  
    }
    .ctaButtonWrap {
      justify-content: center; 
    }
  }






  /* CTA */
  .ctaPrimary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    background: #FA7D00;
    color: #FFF;
    font-weight: 900;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
    max-width: 300px;
  }
  .ctaPrimary:hover{ transform: translateY(-1px); filter: brightness(1.03); }
  .ctaPrimary:active{ transform: translateY(0); }
  
  /* --- Right column (mascot) --- */
  .heroArt{
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .heroArt img{
    max-width: none; 
    width: clamp(260px, 28vw, 300px);
    height: auto;
    transform: translateY(-20px);
  }
  


  /* Phone tweaks */
  @media (max-width: 600px){
    .heroLineTop,
    .heroLineBot{ transform: translateX(4px); } /* smaller indent on tiny screens */
    .ctaPrimary{ padding: 12px 18px; }
    .planeBannerWrapper{ height: 110px; }
  }
  
  


/* =========================
   INTRO SECTION
   ========================= */

   .caSectionWrapper {
    display: flex;
    justify-content: center;
  }

   .caSection{
    margin: 24px 0 36px;
    overflow: hidden;
    align-items: center;
    position: relative;
    display: inline-block;
    cursor: pointer;
    user-select: none;
   }

  .caSection img{ display:block; height:auto; max-width:100%; }
  
  .caSection:focus-visible{
    outline: 3px solid rgba(255,255,255,.5); outline-offset: 3px;
  }
  
  /* little “Copied!” pill */
  .copyToast{
    position: absolute;
    right: 72px;                   /* move if you want it elsewhere */
    top: 15px;
    background: rgba(0,0,0,.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .85rem;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    opacity: 0;
    transform: translateY(-6px) scale(.98);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
    white-space: nowrap;
  }
  .caSection.is-copied .copyToast{
    opacity: 1;
    transform: translateY(-12px) scale(1);
  }


   .introSection { padding: 20px; z-index: 10; position: relative;}

   .introSection .container {
    padding-inline: 0px;
   }

   .introCard{
     border-radius: 12px;
     overflow: hidden;                  /* rounds both top and base */
     box-shadow: 0 10px 28px rgba(0,0,0,0.12);
   }
   
   /* Top white content area */
   .introTop{
     background: #fff;
     padding: 80px 60px;
   }
   
   .introGrid{
     display: grid;
     grid-template-columns: 1.25fr 0.75fr;
     gap: 56px;
     align-items: start;
   }
   
   /* Heading + body colours */
   .introTitle{
     color: #E17100;                    /* Atma already applied by your font class */
     margin: 0 0 44px;
     line-height: 1.4;
     font-size: 1.8rem;
     letter-spacing: -0.2px;
   }
   .introText,
   .introSideText{ 
    color: #87756A;
   }
   .introText p{ margin: 0 0 12px; }
   .introSideText p{ margin: 0; }
   .introSideText .highlight{ font-weight: 600;}
   
   /* Video placeholder */
   .introVideo{
     margin: 0 0 44px;
     overflow: hidden;
     display: flex;
     justify-content: center;
     align-items: center;
   }
   .introVideo img{ display:block; width: 220px; height: auto; }
   
   /* Bottom green base */
   .introBase{
     background: #016243;
     color: #fff;
   }
   .introBaseInner{
     display: grid;
     grid-template-columns: auto 1fr auto;
     gap: 24px;
     align-items: center;
     padding: 40px 60px;
   }
   
   /* Partner logos (monochrome via currentColor) */
   .logoMono { color: #fff; }
   .logoMono svg{ display:block; height: 28px; width: auto; }
   .logoMono svg [fill],
   .logoMono svg path { fill: currentColor !important; }
   
   .introPartners{
     display: flex; gap: 40px; align-items: center;
   }
   .introPartners .dextools svg{ height: 60px; }
   .introPartners .dexscreener svg{ height: 60px; }

   .introPartners a {
    display: inline-block;
    text-decoration: none;
  }
   
   /* Divider between partners & socials */
   .introDivider{
     height: 40px;
     border-left: 2px solid rgba(255,255,255,0.25);
     margin-inline: 8px;
     justify-self: center;
   }
   
   /* Social icons (circle buttons with green glyphs on white) */
   .introSocials{
     display: flex; gap: 32px;
     list-style: none; padding: 0; margin: 0;
   }
   .iconMono{
     width: 60px; height: 60px; border-radius: 999px;
     background: #016243;
     display: inline-flex; align-items: center; justify-content: center;
     color: #FFF; 
     text-decoration: none;
     transition: transform .12s ease, opacity .12s ease;
   }
   .iconMono svg{ width: 60px; height: 60px; display:block; }
   .iconMono svg [fill],
   .iconMono svg path{ fill: currentColor !important; }
   .iconMono:hover{ transform: translateY(-1px); opacity: 0.95; }
   




/* =========================
WHY BOB
========================= */

.whyBob { padding: 20px 0 40px; }

.whyBob .container{
    padding: 0 40px;
}

.whyTitle{
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 80px;
  color: #765518;
}

/* 40/60 split, alternating via .rowReverse */
.whyRow{
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;   /* text 40%, media 60% */
  gap: 48px;
  align-items: center;
  margin: 0 0 100px;                    /* row spacing */
}


/* Headings & body text */
.whyHeading{
  text-transform: uppercase;
  margin: 0 0 40px;                     /* 40px between heading and body */
  color: #765518;
}
.whyBody{
  margin: 0 0 14px;
  color: #765518;
}

/* Media blocks */
.whyMedia {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .whyMedia img {
    display: block;
    max-width: 100%;
    height: auto;
  }

/* Lottie container scales with column */
.lottieBox{
  width: 100%;
  aspect-ratio: 4 / 3;                  /* safe default; animation will fill */
  position: relative;
}
.lottieBox > svg{ width:100% !important; height:100% !important; display:block; }

/* Dotted/dashed separators */
.whyDivider{
  height: 0;
  border-top: 3px dashed rgba(0,0,0,0.18);
  margin: 0 0 100px;
}

/* Tablet keeps two columns; slightly relax ratio if needed */
@media (max-width: 1024px){
  .whyRow{ grid-template-columns: 0.45fr 0.55fr; }
}




/* =========================
   ROADMAP
   ========================= */

/* Section-level tokens */
.roadmap{
    position: relative;
    padding: 0 0 120px;
    --spineW: 6px;
    --spineCol: 44px;
    --gap: 28px;
    --cardRadius: 12px;
    --bodyCol: #304E0C;
    background-color: #80C929;
    border-bottom: 24px solid #ABFF46;
  }
  
  /* Top divider (3000x60) centered & clipped */
  .rmDividerWrap{
    position: relative;
    height: 56px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative; 
    z-index: 1;
  }
  .rmDivider{ max-width: 3000px; height: 60px; display:block;}

  .rmDivider{ width: 100%;}
  
  /* Subtle lab background behind everything */
  .roadmapBg{
    position: absolute; inset: 0;
    background: url("/images/letBobCook.svg") repeat;
    pointer-events: none;
    z-index: 0;
  }
  
  .roadmap .container{
    position: relative;
    padding-top: 80px;
    z-index: 1;
  }

  /* Head + intro text */
  .roadmapTitle{
    margin: 0 0 10px;
    text-transform: uppercase;
  }
  .roadmapIntro{
    color: #304E0C;
    margin: 0 0 80px;
    max-width: 920px;
  }
  
  /* Content wrapper with continuous spine */
  .roadmapContent{
    position: relative;
    z-index: 1;
  }
  
  /* Continuous vertical spine at container center */
  .rmSpine{
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: var(--spineW);
    transform: translateX(-50%);
    background: #304E0C;
  }
  
  /* Each row: [40% card/media] [spine col] [60% card/media] */
  .rmRow{
    display: grid;
    grid-template-columns: 0.5fr var(--spineCol) 0.5fr;
    gap: var(--gap);
    align-items: center;
    margin-bottom: 20px;
  }
  
  /* Cards */
  .rmCard{
    background: #fff;
    border-radius: var(--cardRadius);
    padding: 48px;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    position: relative;
    color: #304E0C;
  }
  .rmCard .rmHeading{
    text-transform: uppercase;
    margin: 10px 0 14px;
  }
  .rmList{
    margin: 0; 
    padding-left: 18px;
    color: #304E0C;
    font-size: 1rem;
  }
  .rmList li{ margin: 6px 0; }
  
  /* Phase pill */
  .phaseTag{
    display: inline-block;
    font: inherit;
    color: #fff;
    background: #E08A24;      /* small orange label per comp vibe */
    border-radius: 6px;
    padding: 6px 10px;
    font-weight: 600;
    margin-bottom: 24px;
  }
  
  /* Card connectors to spine (meet dot cleanly) */
  .rmCard.rmLeft::after,
  .rmCard.rmRight::after{
    content: "";
    position: absolute;
    top: 50%;
    height: 4px;
    background: rgba(0,0,0,.35);
    transform: translateY(-50%);
  }
  .rmCard.rmLeft::after{
    right: calc(-1 * (var(--gap) + var(--spineCol) / 2));
    width: calc(var(--gap) + var(--spineCol) / 2);
  }
  .rmCard.rmRight::after{
    left: calc(-1 * (var(--gap) + var(--spineCol) / 2));
    width: calc(var(--gap) + var(--spineCol) / 2);
  }
  
  /* Dots: centered in the middle column, sit above spine */
  .rmDot{
    grid-column: 2;
    justify-self: center;
    align-self: center;
    width: 32px; 
    height: 32px;
    border-radius: 50%;
    background: #80C929;
    box-shadow:
      0 0 0 6px #304E0C inset;
    z-index: 2;
  }
  
  /* Media (60% column) */
  .rmMedia{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rmMedia img{
    display: block;
    max-width: 100%;
    height: auto;
  }
  .rmLottie{ width: 100%; aspect-ratio: 4/3; position: relative; }
  .rmLottie > svg{ width:100% !important; height:100% !important; display:block; }
 

  /* =========================
   CRYPTO UNIVERSITY (revised)
   ========================= */

.edu{
    position: relative;
    padding: 0px;
    background: #0067A7;
    overflow: hidden;
  }
  
  /* divider (3000×56) centered & clipped */
  .eduDividerWrap{
    position: relative;
    height: 56px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
  }
  .eduDivider{ width: 3000px; height: 56px; display:block; }
  
 
  .eduBooksBg{
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .eduBooksBg > img{
    position: absolute;
    right: 0;
    top: 50%;
    width: 945px; 
    height: 680px;   
    transform: translateY(-50%); 
    display: block;
  }
  
  /* Container layer with cutout overlay */
  .edu .container{ position: relative; z-index: 2; }
  
  /* The cutout is drawn via a pseudo-element so content stays clean */
  .eduInner{
    position: relative;
    isolation: isolate;
  }
  .eduInner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url("/images/bobsCutout.svg") right center no-repeat; /* 1140px-wide art */
    background-size: 100% auto;            /* fill container width exactly */
    z-index: 0;                             /* behind content, above bookshelf */
    pointer-events: none;
  }
  
  /* Content (above cutout) */
  .eduRow{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.25fr 0.75fr;
    gap: 60px;
    align-items: center;
    min-height: 560px;
  }
  
  .eduMedia{
    display: flex; align-items: center; justify-content: start;
  }
  .eduMedia img{
    width: 100%;
    max-width: 244px;
    height: auto; 
    display: block;
  }
  
  .eduText{ color: #ffffff; }
  .eduPill{
    display: inline-block;
    background: #FFC033;
    color: #1A262E;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 60px;
    margin-bottom: 16px;
    font-size: 0.75rem;
  }
  .eduTitle{
    margin: 0 0 14px;
    line-height: 1.05;
    text-transform: uppercase;
    font-size: 3.3rem;                   /* ≈76px at 20px root */
  }
  .eduBody{
    margin: 0;
    max-width: 480px;
    color: rgba(255,255,255,0.9);
  }
  
  /* Tablet: keep 2-col, slight ratio tweak if needed */
  @media (max-width: 1024px){
    .eduRow{ grid-template-columns: 0.25fr 0.75fr; }
  }
  


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

.faq { padding: 40px 0 140px; background: #0B83CD; color: #fff; } /* tweak bg if needed */
.faqTitle { margin: 0 0 10px; text-transform: uppercase; }
.faqIntro { margin: 0 0 80px; opacity: .9; }

.faqList { display: grid; gap: 24px; margin: 0 0 60px 0; }

/* Card */
.faqItem {
  background:rgba(255,255,255,0.65);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(2px);
}

/* Trigger button */
.faqQuestion {
  width: 100%;
  text-align: left;
  padding: 20px 56px 20px 40px;
  background: transparent;
  border: 0;
  color: #003E64;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Chevron */
.faqChevron {
  width: 18px; height: 18px; flex: 0 0 18px; margin-left: 16px;
  position: relative;
}
.faqChevron::before, .faqChevron::after{
  content:""; position:absolute; inset:0;
  mask: conic-gradient(from 45deg, #000 0 25%, transparent 0 100%) center/100% 100% no-repeat;
  -webkit-mask: conic-gradient(from 45deg, #000 0 25%, transparent 0 100%) center/100% 100% no-repeat;
  background:#fff;
  transform: rotate(45deg);
}
.faqItem.is-open .faqChevron::before{ transform: rotate(225deg); } /* caret up */

.faqPanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .2s ease;
  padding: 0 24px;
  background: #E7F3FA;
}

.faqItem.is-open{
    background: #E7F3FA;
}

.faqItem.is-open .faqPanel {
  padding: 0 24px 60px 40px;
  max-height: 600px; /* big enough for most answers */
}

.faqItem.is-open .faqQuestion {
    padding: 20px 56px 0px 40px;
}

.faqPanel p { color: #003E64; margin: 14px 0 0; }
.faqLink { color: #da7d12; text-decoration: underline; }

/* CTA row under the list */
.faqCta { display:flex; gap:24px; flex-wrap:wrap; margin-top:60px; }
.faqBtn {
  background:#fff; color:#0B6EAE; text-decoration:none;
  padding:14px 20px; border-radius:10px; font-weight:800;
  box-shadow: 0 6px 0 rgba(0,0,0,0.25);
}
.faqBtn:active { transform: translateY(2px); box-shadow: 0 4px 0 rgba(0,0,0,0.25); }



/* =====================================
   FOOTER (reuses introBase layout)
   ===================================== */

   .siteFooter {
    background: #003556;
    color: #fff;
    text-align: center;
    padding: 80px 0 30px;
  }
  
  /* disclaimer text */
  .footerDisclaimer {
    max-width: 1140px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .footerDisclaimer h4 {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
  }
  
  /* reusing introBase, just making it transparent */
  .footerBase {
    background: transparent;
    margin-top: 40px;
  }
  
  /* slightly smaller icons + more breathing room */
  .footerBase .introBaseInner {
    gap: 32px;
  }
  
  .footerBase .introPartners .logoMono,
  .footerBase .introSocials .iconMono {
    opacity: 0.8;
    transition: opacity 0.2s ease;
    background: #003556;
  }
  
  .footerBase .introPartners .logoMono:hover,
  .footerBase .introSocials .iconMono:hover {
    opacity: 1;
  }
  
  /* legal line */
  .footerLegal {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footerLegal p {
    font-size: 0.75rem;
    color: #85c5f5;
    margin: 0;
  }
  
  .footerLegal a {
    color: #85c5f5;
    text-decoration: none;
  }
  
  .footerLegal a:hover {
    text-decoration: underline;
  }
  
  /* responsive adjustments */
  @media (max-width: 768px) {
    .footerDisclaimer {
      padding: 0 20px;
    }
    .footerBase .introBaseInner {
      gap: 20px;
    }
  }






/* =====================================
   MEDIA QUIERIES
   ===================================== */



@media (max-width: 1139px) {

    .planeBanner,
    .planeBanner svg {
      width: 2000px !important;
      height: 105px !important;
    }

    .introSection {
        padding: 20px;
    }

    .layer-hillFront > img {
        transform: translateY(-150px);
        will-change: transform;
      }

    .heroLineBrand {
        font-size: 2.1rem;
    }
    .heroLineTop, .heroLineBot {
        font-size: 4.4rem;
    }
    .heroLineMid {
        font-size: 11rem;
    }

    .heroArt img{
        width: 260px;
        transform: translateY(-30px);
    }

    .caSection img{ max-width:100%; }


    .heroWrapper { position: relative; }
    .heroMascot { position: relative; z-index: 1; pointer-events: none; }

    
/* Hide Lottie animation and related wrappers */
.heroCTA .ctaAnim,
.heroCTA .lottieBox {
  display: none !important;
}

/* Make the CTA button fill the available space neatly */
.heroCTA .ctaGrid {
  grid-template-columns: 1fr;    /* single column */
  justify-content: center;       /* centre button horizontally */
  height: auto;                  /* release fixed height */
}

.heroCTA .ctaButtonWrap {
  justify-content: center;       /* button centred in its area */
}

.heroCTA {
    position: relative; z-index: 3;
    margin: 10px 0 10px 40px;
}

}


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> BELOW 1040 --- */


@media (max-width: 1039px) {


    .planeBanner,
    .planeBanner svg {
      width: 1800px !important;
      height: 95px !important;
    }

    .eduBooksBg{
        display: none;
    }

    .iconMono svg {
        width: 52px;
        height: 52px;
    }

    .introSocials {
        gap: 16px;
    }    

  }



/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> BELOW 900 --- */


@media (max-width: 899px) {

    .planeBanner,
    .planeBanner svg {
      width: 1600px !important;
      height: 85px !important;
    }


    /* Single column with explicit areas */
    .heroWrapper {
      display: grid;                    /* ensure grid at this breakpoint */
      grid-template-columns: 1fr;
      grid-template-areas:
        "copy"
        "art"
        "cta";
      align-items: start;               /* keep your reset */
      text-align: center;
      gap: 8px;
      position: relative;               /* local stacking context */
    }
  
    /* Text block first */
    .heroCopy {
      grid-area: copy;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    /* Bob below the text */
    .heroArt {
      grid-area: art;
      transform: none;
      display: flex;
      justify-content: center;
      position: relative;
      z-index: 1;                       /* below CTA */
      pointer-events: none;             /* never intercepts taps */
    }
  
    .heroArt img {
      width: clamp(240px, 50vw, 260px); /* your smooth scaling */
      max-width: none;                  /* ignore global img max-width */
    }
  
    /* CTA at the bottom */
    .heroCTA {
      grid-area: cta;
      justify-self: center;
      position: relative;
      z-index: 3;
      margin: 0px 0 10px 0px;
    }


  
    /* Keep your top spacing on the button */
    .ctaPrimary { 
      margin: 0 0 20px; 
    }

    .iconMono svg {
        width: 44px;
        height: 44px;
    }

  }


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> BELOW 780 --- */

  @media screen and (max-width: 779px) {

/* ---------- Roadmap */

.rmRow{ grid-template-columns: 1fr; gap: 0px; }
.rmSpine, .rmDot{ display: none; }
.rmRow{ grid-template-columns: 1fr; gap: 0px; }
.rmCard.rmLeft::after,
.rmCard.rmRight::after{ display: none; }

.roadmap {
    padding: 0 0 40px;
}
.rmDivider {
    max-width: 1520px;
}
.rmDividerWrap{
    margin: 0;
}


  }


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> BELOW 680 --- */

@media screen and (max-width: 679px) {

/* Parallax Resizing */
.hero .plx.layer {
    top: 0;
    bottom: auto;
  }
  
  .hero .layer-hillFront,
  .hero .layer-hills,
  .hero .layer-plainCloud,
  .hero .layer-blueClouds {
    top: 0;
    bottom: auto;
  }

  .plx.layer > img {
    transform: scale(0.7);
    transform-origin: center top;
    will-change: transform;
  }


  .anchors {
    padding: 12px;
}


 /* Hero Gradient */
    .hero-content {
        position: relative; 
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.4) 5%,   /* top = 40% opacity black */
          rgba(0, 0, 0, 0) 25%     /* distance */
        );
      }

 /* Hero Area */
    .heroWrapper {
        padding-top: 80px;
        gap: 24px;
    }

    .heroTitle {
        margin: 0px;
    }
    .heroLineBrand {
        font-size: 1.6rem;
        transform: translateX(0px);
    }
    .heroLineTop, .heroLineBot {
        font-size: 3rem;
    }
    .heroLineMid {
        font-size: 6rem;
        letter-spacing: -6px;
        line-height: 0.85;
    }
    .heroArt img{
        width: 140px;
        transform: translateY(0px);
    }

    .ctaPrimary {
        margin-top: 0px;
    }


/* ---------- About Bob */

.introSection .container{
    padding-inline: 0px;
}

.introTop {
    padding: 60px 50px;
}

.introTop .introGrid {
    display: grid; 
    grid-template-columns: 1fr;
    gap: 24px;
  }
  

.introTitle {
    line-height: 1.3;
    font-size: 1.4rem;
}


  .introCopy,
  .introMedia {
    margin: 0 auto;  
  }
  
  .introVideo { 
    max-width: 340px;
    margin: 0 auto;
  }
  .introVideo a{ 
    margin-bottom: 30px;
  }
  .introVideo img {
    width: 160px;
  }

  /* Green base */
  .introBaseInner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: start;
  }
  
  .introPartners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .introPartners a { 
    display: block;
  }
  
  .introPartners .logoMono {
    width: clamp(140px, 60vw, 220px);
    height: auto;
  }
  
  .introPartners .dextools svg,
  .introPartners .dexscreener svg {
    height: 40px;
  }

  .introDivider { display: none; }
  

  .introSocials {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16%;
    flex-wrap: nowrap; 
  }
  
  .introSocials li { list-style: none; }
  
  .introSocials .iconMono {
    display: inline-flex;
    width: 36px; 
    height: 36px;
    align-items: center;
    justify-content: center;
  }




  /* ---------- Why Bob */


  .whyBob {
    padding: 40px 0 0px;
}

    .whyRow{
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .rowReverse .whyText,
    .rowReverse .whyMedia{ grid-column: auto; }
    .whyDivider{ margin: 20px 0 80px; }

    .whyMedia img {
        max-width: 80%;
    }



/* Reverse Order */
.whyRow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center; 
  }
  .whyRow.rowReverse {
    grid-template-areas:
      "media"
      "text";
  }
  .whyRow.rowReverse .whyMedia { grid-area: media; }
  .whyRow.rowReverse .whyText  { grid-area: text; }

  .whyRow .whyMedia img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    height: auto;
  }



/* ---------- Education */

.eduRow{ 
    grid-template-columns: 1fr; 
    gap: 24px; 
    justify-items: center; 
    padding: 80px 0 100px;
}
.eduMedia{ order: -1; }
.eduTitle{ font-size: 2.6rem; }
.eduText{
    text-align: center;
    margin: 0 auto;
  }
.eduMedia img {
    max-width: 140px;
}
.eduPill{
    display: inline-block;
    margin-bottom: 20px;
}
.eduInner::before{
    background:none;
  }
.eduMedia {
    justify-content: center;
}
  
/* ---------- Education */

.faq {
    padding: 80px 0 140px;
}

.faqTitle, .faqIntro{
    text-align: center;
  }


    .faqQuestion { padding: 20px 52px 20px 40px; }
    .faqPanel { padding: 0 20px; }
    .faqItem.is-open .faqPanel { padding: 0 40px 40px; }



}