:root{
  --bg: #e9f3f6;
  --ink: #053a37;
  --muted: rgba(3, 52, 48, 0.72);

  --teal: #0a6b62;
  --tealDeep: #064c46;

  --dark: #071a2b;
  --dark2:#0a2237;

  --card: rgba(255,255,255,0.78);
  --card2: rgba(255,255,255,0.92);
  --border: rgba(0,0,0,0.06);

  --shadow: 0 18px 40px rgba(0,0,0,0.10);
  --shadow2: 0 24px 60px rgba(0,0,0,0.18);

  --radius: 18px;
  --radiusLg: 22px;

  --orange: #f39a3d;
  --pillBg:#f3efe9;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

/* --------------------------------
   1) HERO
--------------------------------- */
.hero{
  position:relative;
  padding: 100px 0 30px;
  background:
    radial-gradient(900px 560px at 70% 20%, rgba(255,255,255,0.85), rgba(255,255,255,0.0) 60%),
    radial-gradient(900px 560px at 85% 35%, rgba(10,107,98,0.10), rgba(10,107,98,0.0) 60%),
    var(--bg);
  overflow:hidden;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items:center;
  gap: 28px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 16px;
  border-radius:999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
  font-weight: 600;
  color: #e78a2a;
}
.pill__dot{
  width:7px;height:7px;border-radius:999px;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(243,154,61,0.18);
}

.hero__title{
  margin: 5px 0 10px;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: -0.03em;
  color: #064c46;
  font-weight: 700;
}
.hero__sub{
  margin:0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(3, 52, 48, 0.72);
  max-width: 560px;
}
.hero__sub strong{color: #053a37;font-weight: 600;}

.hero__cta{
  display:flex;
  gap: 18px;
  margin-top: 26px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  text-decoration:none;
  user-select:none;
  width: unset;
  box-shadow: none;
}
.btn--primary{
  background: var(--teal);
  color:#fff;
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}
.btn--primary:hover{ filter: brightness(0.98); }

.btn--ghost{
  background: rgba(255,255,255,0.55);
  border-color: rgba(10,107,98,0.65);
  color: #0a6b62;
}
.playIcon{
  width:0;height:0;
  border-left: 10px solid #0a6b62;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.hero__rule{
  height: 1px;
  width: 100%;
  background: rgba(0,0,0,0.08);
  margin: 30px 0 20px;
  max-width: 620px;
}
.hero__quote{
  margin:0;
  color: #0a6b62;
  font-style: italic;
  font-weight: 600;
}

/* right graphic */
.hero__right{ display:flex; justify-content:center; align-items:center; }
.circleWrap{
  position:relative;
  width: 520px;
  height: 520px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(240px 240px at 50% 50%, rgba(255,255,255,0.92), rgba(255,255,255,0.0) 65%);
}
.circles{
  width: 520px;
  height: 520px;
  opacity: 0.98;
}
.orbit{
  position:absolute;
  pointer-events:none;
}
.orbit--top{ top: 80px; left: 50%; transform: translateX(-50%); }
.orbit--left{ left: 82px; top: 340px; }
.orbit--right{ right: 78px; top: 360px; }

.tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  line-height: 18px;
  padding: 7px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,0,0,0.06);
  color: rgba(3, 52, 48, 0.85);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.tag__tick{
  width:18px;height:18px;border-radius:999px;
  background: rgba(10,107,98,0.12);
  display:inline-grid;place-items:center;
  color:#0a6b62;font-weight:900;font-size:12px;
}
.tag__icon{ opacity:0.6; font-weight:800; }

/* --------------------------------
   2) STATS BAND
--------------------------------- */
.statsBand{
  background: #0a6b62;
  padding: 54px 0;
}
.statsBand__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items:center;
  text-align:center;
  color:#fff;
}
.stat__big{
  font-size: 44px;
  font-weight: 600;
  letter-spacing:-0.02em;
}
.stat__mid{
  margin-top: 0px;
  font-size: 16px;
  font-weight: 700;
  opacity: 0.95;
}
.stat__small{
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.75;
}

/* --------------------------------
   Shared section headers
--------------------------------- */
.sectionHead{
  text-align:center;
  padding: 30px 0 30px;
}
.sectionHead__title{
  margin:0;
  font-size: 38px;
  font-weight: 600;
  color:#064c46;
  padding: 0px;
  letter-spacing:-0.02em;
}
.sectionHead__sub{
  margin: 10px auto 0;
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(3, 52, 48, 0.70);
}
.sectionHead--center{ text-align:center; }

.framework_video{ padding: 50px 0 50px; }

/* --------------------------------
   3) FRAMEWORK
--------------------------------- */
.framework{ padding: 10px 0 46px; }

.framework__grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.steps{
  display:flex;
  flex-direction:column;
  gap: 16px;
  padding: 10px 0;
}

.stepCard{
  display:flex;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(0,0,0,0.06);
}
.stepCard__icon{
  width:46px;height:46px;border-radius: 12px;
  background: rgba(0,0,0,0.04);
  display:grid;place-items:center;
  color: rgba(3, 52, 48, 0.65);
  flex: 0 0 auto;
}
.stepCard__title{
  font-weight: 600;
  font-size: 16px;
  color: #0d2a3b;
}
.stepCard__text{
  margin-top: 6px;
  font-size: 13.6px;
  color: rgba(3, 52, 48, 0.70);
  line-height: 1.45;
}

.stepCard--active{
  background: rgba(255,255,255,0.80);
  border: 2px solid rgba(10,107,98,0.65);
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}
.stepCard__icon--active{
  background: #0a6b62;
  color:#fff;
}

.iDot{ width:18px;height:18px;border-radius:999px;border:2px solid rgba(3,52,48,0.45); }
.iDb{ width:18px;height:18px;border-radius:4px;border:2px solid rgba(3,52,48,0.45); position:relative;}
.iDb::after{content:""; position:absolute; left:2px; right:2px; top:6px; height:2px; background: rgba(3,52,48,0.35);}
.iSearch{ width:18px;height:18px;border-radius:999px;border:2px solid rgba(255,255,255,0.9); position:relative;}
.iSearch::after{content:""; position:absolute; width:8px;height:2px; background: rgba(255,255,255,0.9); right:-6px; bottom:-2px; transform: rotate(45deg); border-radius:2px;}
.iChart{ width:18px;height:18px;border-left:2px solid rgba(3,52,48,0.45); border-bottom:2px solid rgba(3,52,48,0.45); transform: skewX(-10deg);}
.iTarget{ width:18px;height:18px;border-radius:999px;border:2px solid rgba(3,52,48,0.45); position:relative;}
.iTarget::after{content:""; position:absolute; inset:4px; border-radius:999px; border:2px solid rgba(3,52,48,0.35);}

.detailCard{
  background: linear-gradient(135deg, #0a2237 0%, #061a2b 75%);
  border-radius: 18px;
  padding: 26px 26px 24px;
  color:#e8f2f6;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 48px;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detailCard__label{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: rgba(243,154,61,0.95);
}
.magnifier{
  width: 18px; height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(243,154,61,0.9);
  position: relative;
  display:inline-block;
}
.magnifier::after{
  content:"";
  position:absolute;
  width: 8px;height:2px;
  background: rgba(243,154,61,0.9);
  right:-6px; bottom:-2px;
  transform: rotate(45deg);
  border-radius:2px;
}

.detailCard__title{
  margin: 0px 0 8px;
  font-size: 34px;
  font-weight: 600;
  letter-spacing:-0.02em;
  color:#fff;
}
.detailCard__sub{
  margin:0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}
.detailCard__rule{
  height:1px;
  background: rgba(255,255,255,0.10);
  margin: 18px 0 18px;
}
.detailCard__cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.detailCard__kicker{
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(79, 193, 182, 0.65);
  margin-bottom: 10px;
}
.detailList{
  list-style:none;
  margin:0;padding:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
}
.detailList li{ display:flex; align-items:center; gap:10px; }
.dot{
  width:6px;height:6px;border-radius:999px;
  background: rgba(243,154,61,0.95);
  box-shadow: 0 0 0 3px rgba(243,154,61,0.14);
}
.quoteBlock{
  display:flex;
  gap: 12px;
  margin-top: 4px;
}
.quoteBlock__bar{
  width:3px;
  background: rgba(243,154,61,0.95);
  border-radius:999px;
}
.quoteBlock__text{
  color: rgba(255,255,255,0.80);
  font-style: italic;
  line-height: 1.6;
  font-size: 14px;
}

/* --------------------------------
   4) REAL EXAMPLES
--------------------------------- */
.realExamples{
  padding: 58px 0 70px;
  background: #eaf5fb; /* light blue like screenshot */
}

.realExamples__title{
  text-align: center;
  margin: 0 0 28px;
  font-size: 32px;
 font-weight: 600;
  color: #083f3b;
  letter-spacing: -0.02em;
}

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

/* Card */
.exCard{
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  min-height: 250px;
}

/* Tag */
.exTag{
  display: inline-block;
  font-size: 11px;
 font-weight: 600;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.exTag--blue{
  background: rgba(64,117,255,0.12);
  color: #2d63ff;
}
.exTag--purple{
  background: rgba(143,87,255,0.12);
  color: #7a3cff;
}
.exTag--green{
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}

/* Text */
.exCard__title{
  margin: 0 0 8px;
  font-size: 18px;
 font-weight: 600;
  color: #0b2b3a;
}

.exCard__desc{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(3,52,48,0.64);
  max-width: 270px;
}

/* Divider */
.exDivider{
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 18px 0 14px;
}

/* Outcome */
.exOutcomeLabel{
  font-size: 12px;
  color: rgba(3,52,48,0.55);
  margin-bottom: 6px;
}

.exOutcomeValue{
  font-size: 18px;
 font-weight: 600;
  color: #0a6b62; /* teal result */
}

/* Link bottom-right */
.exLink{
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-size: 12.5px;
  font-weight: 800;
  color: #f39a3d; /* orange */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.exLink:hover{
  text-decoration: underline;
}

.exLink .arrow{
  font-size: 16px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 980px){
  .examplesGrid{
    grid-template-columns: 1fr;
  }
  .exCard{
    min-height: auto;
    padding-bottom: 44px; /* space for bottom link */
  }
}




/* ---------- Deep Dive Section ---------- */
.deepDive{
  padding: 64px 0 40px;
  background: #ffffff;
}

.pillTop{
  width: fit-content;
  margin: 0 auto 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10,107,98,0.10);
  color: #0a6b62;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.deepDive__title{
  padding: 0px;
  text-align: center;
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  color: #083f3b;
  letter-spacing: -0.02em;
}

.deepDive__sub{
  text-align: center;
  margin: 10px auto 0;
  max-width: 640px;
  color: rgba(3,52,48,0.65);
  line-height: 1.6;
  font-size: 14px;
}

.ddRow{
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.05fr 1.7fr;
  gap: 26px;
  align-items: start;
}

.ddRow--gapTop{ margin-top: 40px; }

.ddLeft__title{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #083f3b;
}

.ddLeft__text{
  margin: 0;
  color: rgba(3,52,48,0.65);
  line-height: 1.65;
  font-size: 14px;
  max-width: 340px;
}

.ddCards2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.miniInfoCard{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.miniInfoCard--active{
  background: rgba(10,107,98,0.08);
  border-color: rgba(10,107,98,0.20);
}

.miniInfoCard__kicker{
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: rgba(3,52,48,0.55);
  margin-bottom: 8px;
}

.miniInfoCard__kicker--green{
  color: #0a6b62;
}

.miniInfoCard__line{
  color: rgba(3,52,48,0.85);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.miniInfoCard__muted{
  color: rgba(3,52,48,0.55);
  font-size: 12.5px;
  line-height: 1.5;
}

.ddNote{
  margin-top: 14px;
  background: rgba(243,154,61,0.14);
  border-left: 4px solid #f39a3d;
  border-radius: 10px;
  padding: 10px 12px;
  color: rgba(3,52,48,0.78);
  font-size: 12.5px;
  line-height: 1.5;
}

.ddNote__label{
  font-weight: 600;
  color: #f39a3d;
}

/* Diagnostic Process card */
.diagCard{
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  overflow: hidden;
}

.diagCard__head{
  background: #0a6b62;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.diagIcon{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.diagCard__body{
  padding: 14px 16px 16px;
}

.diagRow{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.diagRow:last-child{ border-bottom: none; }

.diagRow__tag{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(3,52,48,0.35);
}

.diagRow__q{
  font-weight: 600;
  color: rgba(3,52,48,0.86);
  font-size: 13.5px;
  margin-bottom: 4px;
}

.diagRow__a{
  color: rgba(3,52,48,0.60);
  font-size: 13px;
  line-height: 1.5;
}

/* ---------- AI Perspective Section ---------- */
.aiPerspective{
  padding: 40px 0 75px;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.apRow{
  display: grid;
  grid-template-columns: 1.05fr 1.7fr;
  gap: 26px;
  align-items: start;
}

.apRow--gapTop{ margin-top: 36px; }

.apLeft__title{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #083f3b;
}

.apLeft__text{
  margin: 0;
  color: rgba(3,52,48,0.65);
  line-height: 1.65;
  font-size: 14px;
  max-width: 360px;
}

/* Why card (dark) */
.whyCard{
  background: linear-gradient(135deg, #0a2237 0%, #061a2b 78%);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

.whyList{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.whyTick{
  color: #f39a3d;
  font-weight: 600;
  margin-right: 8px;
}

.whyQuote{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.72);
  font-style: italic;
  line-height: 1.6;
  font-size: 12.5px;
}

/* Split card (AI vs Humans) */
.splitCard{
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  background: #fff;
}

.splitCard__col{
  padding: 25px 25px 25px;
}

.splitCard__col--green{
  background: #0a6b62;
}

.splitCard__head{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: rgba(3,52,48,0.75);
  margin-bottom: 10px;
}

.humansTitle{ color: #f39a3d; }

.miniBox{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(0,0,0,0.06);
  display: grid;
  place-items: center;
}
.miniBox--white{ background: rgba(255,255,255,0.18); }

.splitList{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  color: rgba(3,52,48,0.65);
  font-size: 13px;
  line-height: 1.45;
}

.splitList--white{
  color: rgba(255,255,255,0.85);
}

.apExample{
  margin-top: 20px;
  color: rgba(3,52,48,0.55);
  font-size: 12.5px;
  line-height: 1.6;
  /* max-width: 740px; */
}

/* big quote strip */
.apBigQuote{
  margin-top: 70px;
  background: #0a6b62;
  border-radius: 16px;
  padding: 18px 20px;
  color: rgba(255,255,255,0.90);
  text-align: center;
  font-weight: 700;
  line-height: 1.65;
  box-shadow: 0 22px 55px rgba(0,0,0,0.16);
  margin-left: 100px;
  margin-right: 100px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .ddRow, .apRow{
    grid-template-columns: 1fr;
  }
  .ddLeft__text, .apLeft__text{ max-width: 100%; }
  .ddCards2{ grid-template-columns: 1fr; }
  .splitCard{ grid-template-columns: 1fr; }
}

/* --------------------------------
   6) AGE OF AI
--------------------------------- */
.ageAI{
  padding: 70px 0 60px;
  background: rgba(255,255,255,0.35);
}
.ageAI__card{
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.15);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.ageAI__topPill{
  position:absolute;
  margin: 18px auto 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.86);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  z-index: 2;
}
.ageAI__card{
  position:relative;
}
.ageAI__card::before{
  content:"";
  position:absolute;
  inset:0;
  height: 220px;
  background: #064c46;
}
.ageAI__title{
  position:relative;
  z-index:1;
  margin: 50px 0 5px;
  text-align:center;
  color:#fff;
  font-weight: 600;
  font-size: 40px;
  letter-spacing:-0.02em;
}
.ageAI__sub{
  position:relative;
  z-index:1;
  margin: 0 auto 22px;
  text-align:center;
  color: rgba(255,255,255,0.80);
  max-width: 720px;
  line-height: 1.6;
  padding: 0 18px;
}
.accent{color: rgba(243,154,61,0.95);font-weight: 600;}

.ageAI__body{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  margin-top: 26px;
}
.ageCol{
  padding: 28px 30px 30px;
}
.ageCol--left{ border-right: 1px solid rgba(0,0,0,0.06); }
.ageCol__head{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 600;
  color: rgba(3,52,48,0.85);
  margin-bottom: 14px;
}
.ageCol__icon{
  width: 30px;height:30px;border-radius: 10px;
  background: rgba(0,0,0,0.06);
  display:grid;place-items:center;
  color: rgba(3,52,48,0.65);
}
.ageCol__icon--green{
  background: rgba(10,107,98,0.10);
  color:#0a6b62;
}
.ageBadge{
  position:absolute;
  right: 20px;
  top: 18px;
  background: rgba(10,107,98,0.10);
  border: 1px solid rgba(10,107,98,0.22);
  color:#0a6b62;
  font-weight: 600;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
}

.ageList{
  margin:0;
  padding-left: 18px;
  color: rgba(3,52,48,0.74);
  line-height: 2.05;
  font-size: 14px;
}
.ageList--checks{
  list-style:none;
  padding-left: 0;
  margin-top: 2px;
}
.ageList--checks li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 6px 0;
}
.chk{
  width:18px;
  height:18px;
  border-radius:999px;
  border: 2px solid rgba(243,154,61,0.85);
  display:grid;
  place-items:center;
  color: rgba(243,154,61,0.95);
  font-weight: 600;
  font-size: 9px;
  margin-top: 5px;
}

.ageAI__quote{
  margin: 50px 0 0;
  text-align:center;
  font-weight: 600;
  color: #0a6b62;
  line-height: 1.55;
}

/* --------------------------------
   7) DARK "WHAT YOU'LL GET"
--------------------------------- */
.darkGet{
  padding: 58px 0 60px;
  background: #f4f4f4;
}
.darkGet__grid{
  display:grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 26px;
  align-items:center;
}
.darkGet__title{
  margin:0;
  color: #009688;
  font-size: 46px;
  font-weight: 600;
  letter-spacing:-0.02em;
}
.darkGet__sub{
  margin-top: 10px;
  color: rgb(37 37 37 / 70%);
  line-height: 1.7;
  max-width: 460px;
}
.btn--orange{
  margin-top: 18px;
  background: #f39a3d;
  color: #1b1b1b;
  box-shadow: 0 18px 40px rgba(0,0,0,0.30);
}
.btn--orange:hover{ filter: brightness(0.98); }

.darkCards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.darkCard{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.20);
}
.darkCard__head{
  display:flex;
  align-items:center;
  gap: 10px;
  color: #009688;
  font-weight: 600;
}
.checkDot{
  width:20px;height:20px;border-radius:999px;
  border: 2px solid rgba(60,200,140,0.75);
  display:grid;place-items:center;
  color: rgba(60,200,140,0.9);
  font-weight: 600;
  font-size: 12px;
}
.darkCard__text{
  margin-top: 8px;
  color: rgb(0 0 0 / 70%);
  font-size: 13px;
  line-height: 1.55;
}

/* footer */
.footer{
  background: #000;
  padding: 0px 0;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.footer__inner{ display:flex; justify-content:center; }

/* --------------------------------
   RESPONSIVE
--------------------------------- */
@media (max-width: 1100px){
  .hero__title{ font-size: 54px; }
  .circleWrap, .circles{ width: 460px; height: 460px; }
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr;}
  .hero__right{order: 0;}
  .circleWrap{ margin: 0 auto 6px; }

  .statsBand__grid{ grid-template-columns: 1fr 1fr; row-gap: 34px; }

  .framework__grid{ grid-template-columns: 1fr; }
  .cards3{ grid-template-columns: 1fr; }

  .psBlock__grid{ grid-template-columns: 1fr; }
  .psBlock__bottom{ grid-template-columns: 1fr; }

  .ageAI__body{ grid-template-columns: 1fr; }
  .ageCol--left{ border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.06); }

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

@media (max-width: 560px){
  /*.container{ width: min(1160px, calc(100% - 28px)); }*/
  .hero__title{margin: 0px; font-size: 35px;line-height: 40px;}
  .circleWrap, .circles{ width: 360px; height: 360px; }
  .orbit--left{ left: 65px; top: 250px; }
  .orbit--right{ right: 65px; top: 270px; }
  .darkCards{ grid-template-columns: 1fr; }
  .orbit--top {
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
    
    .framework_video {
        padding: 15px 0 15px;
    }
    
    .deepDive__title {
        padding: 0px;
        text-align: center;
        margin: 0;
        font-size: 30px;
        font-weight: 600;
        color: #083f3b;
        letter-spacing: -0.02em;
    }
    
    .sectionHead__title {
        margin: 0;
        font-size: 30px;
        font-weight: 600;
        color: #064c46;
        padding: 0px;
        letter-spacing: -0.02em;
    }
    
    .hero {
        position: relative;
        padding: 80px 0 30px;
        background: radial-gradient(900px 560px at 70% 20%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.0) 60%), radial-gradient(900px 560px at 85% 35%, rgba(10, 107, 98, 0.10), rgba(10, 107, 98, 0.0) 60%), var(--bg);
        overflow: hidden;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 10px;
        padding: 10px 10px;
        font-weight: 600;
        font-size: 11px;
        border: 1px solid transparent;
        text-decoration: none;
        user-select: none;
        width: unset;
        box-shadow: none;
    }

    .orbit--left{ left: 65px; top: 250px; }
    .orbit--right{ right: 65px; top: 270px; }
    .darkCards{ grid-template-columns: 1fr; }
    .orbit--top {
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
    }
    .tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 20px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(0, 0, 0, 0.06);
        color: rgba(3, 52, 48, 0.85);
        font-weight: 700;
        font-size: 11px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }
    .darkGet {
        padding: 20px 0 60px;
        background: #f4f4f4;
    }
    .darkGet__title {
        margin: 0;
        color: #000000;
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: -0.02em;
    }
    .aiPerspective {
        padding: 10px 0 55px;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
    }
    .testimonials {
        background: #ffffff;
        padding: 5px 0 65px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
    }
    .stat__big {
        font-size: 30px;
        font-weight: 600;
        letter-spacing: -0.02em;
    }
    .stat__mid {
        margin-top: 0px;
        font-size: 14px;
        font-weight: 700;
        opacity: 0.95;
    }
    .stat__small {
        margin-top: 0px;
        font-size: 13px;
        opacity: 0.75;
    }
    .apBigQuote {
        margin-top: 70px;
        background: #0a6b62;
        border-radius: 16px;
        padding: 18px 20px;
        color: rgba(255, 255, 255, 0.90);
        text-align: center;
        font-weight: 600;
        line-height: 1.65;
        font-size: 14px;
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}

.stepCard {
  cursor: pointer;
  text-align: left;
  border: none;
}

.stepCard.active {
  background: rgba(255,255,255,0.85);
  border: 2px solid rgba(10,107,98,0.65);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.stepCard:hover {
  transform: translateY(-1px);
}

/* Make the step cards behave like tabs (buttons) */
.steps .stepCard{
  width: 100%;
  cursor: pointer;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.58);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}

/* Hover effect (light lift) */
.steps .stepCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}

/* ✅ ACTIVE = the highlighted one (matches screenshot) */
.steps .stepCard.active{
  background: rgba(255,255,255,0.80);
  border: 2px solid rgba(10,107,98,0.65);
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}

/* default icon tile */
.steps .stepCard__icon{
  width:46px;height:46px;border-radius: 12px;
  background: rgba(0,0,0,0.04);
  color: rgba(3, 52, 48, 0.65);
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}

/* ✅ active icon tile like screenshot */
.steps .stepCard.active .stepCard__icon{
  background: #0a6b62;
  color: #fff;
}

/* If your icons use borders (like search circle), force them to white in active */
.steps .stepCard.active .iSearch,
.steps .stepCard.active .iDot,
.steps .stepCard.active .iDb,
.steps .stepCard.active .iTarget{
  border-color: rgba(255,255,255,0.9) !important;
}
.steps .stepCard.active .iDb::after{
  background: rgba(255,255,255,0.55) !important;
}

/* ------------------------------
   TESTIMONIALS (matches screenshot)
------------------------------ */
.testimonials{
  background: #ffffff;
  padding: 0px 0 60px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.tGrid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tCard{
  background: rgba(233,243,246,0.85); /* light blue tint */
  border-radius: 18px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  min-height: 190px;
}

.tStars{
  color: #f39a3d;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 600;
}
.tStarDim{ color: rgba(0,0,0,0.20); }

.tQuote{
  margin: 12px 0 18px;
  color: rgba(3,52,48,0.72);
  line-height: 1.65;
  font-style: italic;
  font-size: 14px;
  max-width: 320px;
}

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

.tAvatar{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #0a6b62;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.tName{
  font-weight: 600;
  color: #0d2a3b;
  font-size: 14px;
}
.tRole{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(3,52,48,0.55);
}

/* ------------------------------
   CTA BANNER (green with subtle pattern)
------------------------------ */
.ctaBanner{
  padding: 54px 0;
  background:
    radial-gradient(900px 380px at 50% 30%, rgba(255,255,255,0.08), rgba(255,255,255,0.0) 60%),
    linear-gradient(0deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05)),
    #0a6b62;
  position: relative;
  overflow: hidden;
}

/* subtle hex-ish pattern */
.ctaBanner::before{
  content:"";
  position:absolute;
  inset:0;
  opacity: 0.14;
  background-image:
    linear-gradient(60deg, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(-60deg, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: 0 0, 0 0, 0 0;
  pointer-events: none;
}

.ctaBanner__inner{
  position: relative;
  text-align: center;
}

.ctaBanner__title{
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.ctaBanner__sub{
  margin: 14px auto 0;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  line-height: 1.6;
  font-size: 16px;
}

.ctaBanner__actions{
  margin-top: 22px;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* white outline button like screenshot */
.btn--white{
  background: #ffffff;
  color: #0a6b62;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* responsive */
@media (max-width: 980px){
  .tGrid{ grid-template-columns: 1fr; }
  .ctaBanner__title{padding: 0px;font-size: 25px;line-height: 35px;}
}

/* Outer dotted ring rotation */
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.orbit__ring{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(10,107,98,0.35);
  animation: ringRotate 28s linear infinite; /* slow & premium */
}

/* rotate ONLY the dotted ring */
.ringRun{
  transform-origin: 280px 280px; /* center of viewBox */
  animation: ringRotate 60s linear infinite;
}

@keyframes ringRotate{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

.ringRun circle{
  animation: dashShift 2.5s linear infinite;
}

@keyframes dashShift{
  from{ stroke-dashoffset: 0; }
  to{ stroke-dashoffset: -16; }
}

/* Base orbit badge positioning stays as-is */
.orbit{
  position: absolute;
  animation: floatY 2.5s ease-in-out infinite;
}

/* staggered timing for natural motion */
.orbit--top{
  animation-delay: 0s;
}
.orbit--left{
  animation-delay: 1.2s;
}
.orbit--right{
  animation-delay: 2.4s;
}

/* vertical floating animation */
@keyframes floatY{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-10px);
  }
  100%{
    transform: translateY(0);
  }
}


/* ---------- Framework mobile layout ---------- */
@media (max-width: 820px){
  .framework__grid{
    grid-template-columns: 1fr;     /* stack */
    gap: 18px;
  }

  /* Tabs row becomes horizontal scroll */
  .steps{
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 2px 10px;
    margin: 0 -2px;                 /* allow edge-to-edge feel */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .steps::-webkit-scrollbar{ height: 8px; }
  .steps::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,0.12);
    border-radius: 999px;
  }

  /* Each step becomes a compact tab card */
  .steps .stepCard{
    flex: 0 0 auto;
    min-width: 270px;               /* nice for thumb scrolling */
    scroll-snap-align: start;
    padding: 14px 14px;
  }

  /* Hide the long description inside tabs on phone (cleaner) */
  .steps .stepCard__text{
    display: block;
  }

  /* Make title slightly smaller */
  .steps .stepCard__title{
    font-size: 14px;
  }

  /* Detail card becomes full width below tabs */
  .detailCard{
    min-height: auto;
    padding: 20px 18px;
  }

  .detailCard__title{
    font-size: 28px;
  }

  .detailCard__cols{
    grid-template-columns: 1fr;     /* action items then example */
  }

  .detailCard__example{
    margin-top: 6px;
  }
}


/* Trigger button demo (optional) */
.videoBtn{
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #0a6b62;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
}
.videoBtn:hover{ filter: brightness(1.05); }

/* Modal wrapper */
.videoModal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;              /* hidden by default */
}

/* Show state */
.videoModal.isOpen{
  display: block;
}

/* Overlay */
.videoModal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(3, 24, 36, 0.65);
  backdrop-filter: blur(8px);
}

/* Dialog */
.videoModal__dialog{
  position: relative;
  width: min(920px, calc(100% - 36px));
  margin: 7vh auto 0;
  border-radius: 18px;
  background: #071b2c;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  overflow: hidden;

  transform: translateY(10px);
  opacity: 0;
  transition: transform 250ms ease, opacity 250ms ease;
}

.videoModal.isOpen .videoModal__dialog{
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
.videoModal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  cursor: pointer;
}
.videoModal__close:hover{
  background: rgba(255,255,255,0.14);
}

/* Header */
.videoModal__header{
  padding: 18px 18px 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.00) 80%);
}

.videoModal__title{
  font-size: 16px;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.videoModal__sub{
  margin-top: 4px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.70);
}

/* Video frame (16:9) */
.videoModal__frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.videoModal__frame iframe,
.videoModal__frame video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Mobile */
@media (max-width: 640px){
  .videoModal__dialog{
    margin-top: 10vh;
    border-radius: 16px;
  }
}

/* Accordion detail panel (same dark detail card feel) */
.mDetail{
  margin: 10px 0 6px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a2237 0%, #061a2b 78%);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 18px 18px 16px;
  color: #fff;
}

/* Label row like desktop detail card */
.mDetail__label{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(243,154,61,0.95);
}

.mDetail__title{
  margin: 12px 0 6px;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}

.mDetail__desc{
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}

.mDetail__rule{
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 14px 0;
}

.mDetail__kicker{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(79,193,182,0.55);
  margin-bottom: 10px;
}

.mDetail__cols{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mDetail__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 13.5px;
}

.mDetail__list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mDetail__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(243,154,61,0.95);
  flex: 0 0 auto;
}

/* Real example with orange bar */
.mDetail__quote{
  display: flex;
  gap: 12px;
}

.mDetail__bar{
  width: 3px;
  border-radius: 999px;
  background: rgba(243,154,61,0.95);
}

.mDetail__qtext{
  color: rgba(255,255,255,0.80);
  font-style: italic;
  line-height: 1.6;
  font-size: 13.5px;
}

/* Mobile layout: hide desktop right card, keep accordion */
@media (max-width: 820px){
  #ps-detail{ display:none; }

  .steps{
    gap: 12px;
  }

  .steps .stepCard{
    width: 100%;
  }

  /* Clear active state */
  .steps .stepCard[aria-expanded="true"]{
    background: rgba(255,255,255,0.84);
    border: 2px solid rgba(10,107,98,0.65);
  }
}

.toggleIcon{
  display: inline-block;
  transition: transform 0.25s ease, opacity 0.25s ease;
  font-weight: 900;
}

/* when step is active/open */
.stepCard.active .toggleIcon{
  transform: rotate(45deg); /* + becomes × */
}

@media (hover: none) {
  .stepCard:hover {
    background: inherit !important;
    border-color: inherit !important;
  }
}

/* Step card layout fix */
.stepCard{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

/* Content wrapper */
.stepCard__content{
  text-align: left;
}

/* Toggle arrow icon */
.toggleIcon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  color: #0a6b62;
  background: rgba(10,107,98,0.12);
  border: 1px solid rgba(10,107,98,0.25);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

/* Closed state → down arrow */
.stepCard .toggleIcon{
  transform: rotate(0deg);
}

/* Open state → up arrow */
.stepCard.active .toggleIcon{
  transform: rotate(180deg); /* ▼ becomes ▲ */
  background: #0a6b62;
  color: #ffffff;
}

.stepCard .toggleIcon{
  transform: rotate(0deg);
}

/* Desktop: hide toggle icon (optional but recommended) */
@media (hover: hover) and (min-width: 821px){
  .toggleIcon{
    opacity: 0;
    pointer-events: none;
  }
}