:root{
  --navy-950:#020617;
  --navy-900:#0b1220;
  --navy-800:#0f1b34;
  --navy-700:#132447;

  --accent:#020617;     /* deep navy */
  --accent2:#020617;    /* same – no gradient */

  --text:#ffffff;
  --muted:rgba(255,255,255,0.74);
  --muted2:rgba(255,255,255,0.60);

  --border:rgba(255,255,255,0.10);
  --border2:rgba(255,255,255,0.14);

  --panel:rgba(255,255,255,0.04);
  --panel2:rgba(255,255,255,0.06);

  --radius-lg:18px;
  --radius-md:14px;
  --radius-sm:10px;

  --max:1120px;

  /* carousel speed */
  --marquee-speed: 80s;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  background:var(--navy-950);
  color:var(--text);
  font-family:"Times New Roman", Times, serif;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{ max-width:var(--max); margin:0 auto; padding:0 1.5rem; }
.muted{ color:var(--muted); }

/* =========================
   NAV
   ========================= */

nav{
  position:sticky; top:0; z-index:200;
  background:rgba(2,6,23,0.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0.9rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.brand img{ height:38px; width:auto; }

.nav-links{
  display:flex;
  gap:0.6rem;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-links a{
  font-weight:600;
  font-size:0.95rem;
  padding:0.45rem 0.7rem;
  border-radius:10px;
  color:rgba(255,255,255,0.82);
  border:1px solid transparent;
}
.nav-links a:hover{
  background:rgba(255,255,255,0.06);
}
.nav-links a.active{
  color:#fff;
  border-color:rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.04);
}
.nav-cta{
  padding:0.5rem 0.95rem !important;
  border-radius:10px !important;
  background:#020617;
  border:1px solid #020617;
  color:#ffffff !important;
  font-weight:700;
}

.nav-cta:hover{ opacity:0.95; }

/* =========================
   HERO
   ========================= */

.hero{
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(109,94,252,0.22), transparent 60%),
    radial-gradient(900px 520px at 88% 12%, rgba(139,92,246,0.16), transparent 62%),
    linear-gradient(180deg, rgba(2,6,23,0.55), rgba(2,6,23,0.98));
  border-bottom:1px solid var(--border);
}
.hero-inner{
  max-width:960px;
  margin:0 auto;
  padding:4rem 1.5rem 3rem;
  text-align:center;
}
.hero-eyebrow{
  display:inline-flex;
  padding:0.35rem 0.75rem;
  border-radius:999px;
  border:1px solid var(--border2);
  background:rgba(255,255,255,0.05);
  font-weight:600;
  font-size:0.86rem;
  color:rgba(255,255,255,0.86);
}
h1{
  margin:1rem 0 0.6rem;
  font-size:clamp(2.2rem,4.2vw,3.2rem);
  line-height:1.12;
  font-weight:700;
  letter-spacing:-0.01em;
}
.hero-sub{
  margin:0.4rem auto 0;
  max-width:880px;
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.75;
}
.hero-actions{
  margin-top:1.35rem;
  display:flex;
  justify-content:center;
  gap:0.85rem;
  flex-wrap:wrap;
}
.hero-footnote{
  margin-top:1.1rem;
  color:rgba(255,255,255,0.68);
  font-weight:600;
  font-size:0.95rem;
}

/* =========================
   BUTTONS
   ========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  padding:0.7rem 1.2rem;
  border-radius:100px; /* square-ish */
  font-weight:700;
  font-size:0.95rem;
  border:1px solid transparent;
  cursor:pointer;
}

/* PRIMARY — NAVY */
.btn.primary{
  background:#020617;
  color:#ffffff;
  border-color:#f9f9f9;
}

/* SECONDARY — WHITE */
.btn.secondary{
  background:#ffffff;
  color:#020617;
  border:1px solid rgba(2,6,23,0.25);
}

.btn:hover{ opacity:0.95; }

.btn.tiny{
  padding:0.55rem 0.9rem;
  font-size:0.9rem;
}


/* Linkedin button variant (use class="btn tiny linkedin") */
.btn.linkedin{
  background:rgba(14,165,233,0.10);
  border:1px solid rgba(14,165,233,0.30);
  color:#fff;
}
.btn.linkedin:hover{
  background:rgba(14,165,233,0.16);
  border-color:rgba(14,165,233,0.42);
  opacity:1;
}

/* =========================
   SECTIONS / CARDS
   ========================= */

.section{ padding:2.2rem 0; }

.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2rem;
}

h2{
  margin:0 0 0.6rem;
  font-size:1.7rem;
  font-weight:700;
}
p{ margin:0.65rem 0; color:var(--muted); line-height:1.75; }

/* “Cardless” sections (used on home for What’s included wrapper) */
.card.cardless{
  background:transparent;
  border:none;
  padding:0;
  border-radius:0;
}
.card.cardless h2{ margin-top:0; }
.card.cardless .muted{ margin-bottom:1.1rem; }

/* =========================
   LOGO STRIP
   ========================= */

.logoStrip{
  border-bottom:1px solid rgba(255,255,255,0.06);
  background:rgba(255,255,255,0.02);
}

.marquee{
  overflow:hidden;
  position:relative;
}

.marquee-track{
  display:flex;
  width:max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
  animation: marquee var(--marquee-speed) linear infinite;
}

.marquee-group{
  display:flex;
  gap:0.65rem;
  padding:1rem 0;
  min-width:max-content;
}

@keyframes marquee{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(-50%,0,0); }
}

.logoPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.5rem 0.95rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.05);
  font-weight:700;
  color:rgba(255,255,255,0.86);
}

/* =========================
   HOME: SPLIT + FEATURES
   ========================= */

.split{
  background:transparent;
  border:none;
  border-radius:0;
  overflow:visible;
}

.split-inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:2.2rem;
  padding:0;
}

.split-left, .split-right{ padding:0; }

.split-right{
  border-left:1px solid rgba(255,255,255,0.08);
  background:transparent;
  padding-left:2.2rem;
}

@media(max-width:980px){
  .split-inner{
    grid-template-columns:1fr;
    gap:1.6rem;
  }
  .split-right{
    border-left:none;
    border-top:1px solid rgba(255,255,255,0.08);
    padding-left:0;
    padding-top:1.6rem;
  }
}

.badges{ display:flex; gap:0.5rem; flex-wrap:wrap; margin-top:1rem; }
.badge{
  display:inline-flex;
  padding:0.35rem 0.7rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  font-weight:700;
  font-size:0.9rem;
  color:rgba(255,255,255,0.86);
}

.stepper{ display:flex; flex-direction:column; gap:0.85rem; margin-top:0.7rem; }
.step{ display:flex; gap:0.8rem; align-items:flex-start; }
.stepDot{
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  border-radius:12px;
  background:rgba(109,94,252,0.14);
  border:1px solid rgba(109,94,252,0.28);
  color:#fff;
  font-weight:800;
  flex:0 0 auto;
}
.step h3{ margin:0; font-size:1.05rem; font-weight:700; }
.step p{ margin:0.25rem 0 0; color:var(--muted); }

.callout{
  margin-top:1rem;
  padding:0.9rem 1rem;
  border-radius:var(--radius-md);
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  color:rgba(255,255,255,0.86);
  font-weight:700;
}

/* =========================
   HOME: cleaner bullet rows
   ========================= */

.bullets{
  margin-top: 0.95rem;
  display:flex;
  flex-direction:column;
  gap:0.65rem;
  color: rgba(255,255,255,0.82);
  line-height:1.7;
}
.bulletRow{
  display:flex;
  gap:0.65rem;
  align-items:flex-start;
}
.bulletDot{
  margin-top:0.55rem;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#ffffff;
  box-shadow:none;
  flex: 0 0 auto;
}


/* =========================
   WHAT’S INCLUDED – BOXED BLOCKS (RESTORED)
   ========================= */

.includedGrid{
  margin-top: 1.2rem;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media(max-width:900px){
  .includedGrid{ grid-template-columns:1fr; }
}

.includedBlock{
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
}
.includedBlock h3{ margin:0 0 0.45rem; font-size:1.15rem; font-weight:800; }
.includedBlock p{ margin:0 0 0.9rem; color:var(--muted); }

.includedList{
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}
.includedList li{ margin: 0.35rem 0; }

/* =========================
   RESULTS: CARDS
   ========================= */

.case-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  margin-top:1.2rem;
}
@media(max-width:1060px){ .case-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:720px){ .case-grid{ grid-template-columns:1fr;} }

.case-card{
  background:rgba(255,255,255,0.035);
  border:1px solid var(--border);
  border-radius:20px;
  padding:1.8rem 1.4rem;
  text-align:center;
  display:flex;
  justify-content:space-between;
}

.case-card:hover{
  border-color:rgba(109,94,252,0.4);
  transform:translateY(-2px);
  transition:all 0.2s ease;
}

.case-inner{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.9rem;
}

.case-logo-wrap{
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.case-logo-wrap img{
  max-height:52px;
  background:#fff;
  padding:8px 14px;
  border-radius:14px;
}

.case-kicker{
  font-size:0.8rem;
  font-weight:600;
  letter-spacing:0.02em;
  color:rgba(255,255,255,0.65);
}

.case-headline{
  font-size:1.35rem;
  font-weight:700;
  line-height:1.3;
}

.case-open{
  margin-top:0.8rem;
  padding:0.55rem 1.1rem;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.05);
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

.case-open:hover{
  background:rgba(109,94,252,0.15);
}

/* =========================
   MODAL
   ========================= */

.modalBackdrop{
  position:fixed; inset:0;
  background:rgba(2,6,23,0.76);
  display:none;
  align-items:center;
  justify-content:center;
  padding:1.5rem;
  z-index:999;
}
.modalBackdrop.show{ display:flex; }

.modal{
  width:min(980px,100%);
  background:rgba(9,14,28,0.96);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  overflow:hidden;
  max-height:86vh;
  display:flex;
  flex-direction:column;
}

.modalHeader{
  padding:1rem 1.1rem;
  border-bottom:1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
  background:rgba(255,255,255,0.03);
}
.modalHeader h3{ margin:0; font-size:1.15rem; font-weight:800; }
.modalHeader .sub{ margin-top:0.35rem; color:var(--muted); font-weight:600; }

.closeBtn{
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  border-radius:10px;
  padding:0.55rem 0.75rem;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.modalBody{
  padding:1.1rem;
  overflow:auto;
}

.modalGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  align-items:start;
}
@media(max-width:900px){ .modalGrid{ grid-template-columns:1fr; } }

.modalBlock{
  border:1px solid rgba(255,255,255,0.10);
  border-radius:14px;
  padding:1rem;
  background:rgba(255,255,255,0.03);
}

.quote{
  margin-top:0.8rem;
  padding:0.85rem;
  border-radius:14px;
  background:rgba(109,94,252,0.12);
  border:1px solid rgba(109,94,252,0.22);
  color:rgba(255,255,255,0.86);
  font-weight:600;
  line-height:1.65;
}

.evidence{
  margin-top:0.8rem;
  display:grid;
  grid-template-columns:1fr;
  gap:0.8rem;
}
.evidenceCard{
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.10);
  overflow:hidden;
  background:rgba(255,255,255,0.02);
}
.evidenceLabel{
  padding:0.6rem 0.75rem;
  border-top:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  color:rgba(255,255,255,0.80);
  font-weight:700;
  font-size:0.9rem;
}

/* small pills used in modal */
.pill{
  display:inline-flex;
  align-items:center;
  padding:0.3rem 0.65rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  font-weight:800;
  font-size:0.85rem;
}
.pill.accent{
  border-color:rgba(109,94,252,0.32);
  background:rgba(109,94,252,0.14);
}

/* =========================
   MODAL: METRICS TABLE
   ========================= */

.metricsWrap{ width:100%; }

.metricsTable{
  margin-top: 0.2rem;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  overflow:hidden;
}

.metricsHead{
  display:grid;
  grid-template-columns: 0.42fr 0.58fr;
  padding: 0.75rem 0.85rem;
  background: rgba(255,255,255,0.03);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.metricsRow{
  display:grid;
  grid-template-columns: 0.42fr 0.58fr;
  padding: 0.75rem 0.85rem;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.metricsRow:last-child{ border-bottom:none; }

.metricsTh{
  font-weight: 800;
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
}
.metricsTd{
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  font-size: 0.98rem;
}
.metricKey{
  color: rgba(255,255,255,0.86);
  font-weight: 800;
}

@media(max-width:900px){
  .metricsHead, .metricsRow{ grid-template-columns: 1fr; }
  .metricsTd{ margin-top: 0.35rem; }
}

/* =========================
   TEAM PAGE
   ========================= */

.teamSection{ padding:3rem 0; }
.teamHeader{ margin-bottom:1.2rem; }

.founderGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.2rem;
}
@media(max-width:900px){ .founderGrid{ grid-template-columns:1fr; } }

.founderCard{
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 2rem;
}

.founderTop{
  display:flex;
  gap:1rem;
  align-items:center;
}
.avatarWrap{
  width:88px; height:88px;
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  flex:0 0 auto;
}
.avatarImg{ width:100%; height:100%; object-fit:cover; }

.founderName{ margin:0; font-size:1.25rem; font-weight:800; }
.founderRole{ margin-top:0.25rem; color:var(--muted); font-weight:600; }
.founderBio{ margin-top:0.9rem; color:var(--muted); }

.founderActions{
  margin-top:1rem;
  display:flex;
  gap:0.6rem;
  flex-wrap:wrap;
}

/* =========================
   BOOK PAGE FIX (2-column)
   ========================= */

.bookSection{
  padding: 2.6rem 0 3.2rem;
}

.bookGrid{
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: start;
}

.bookText{
  padding-top: 0.25rem;
  max-width: 560px;
}

.bookKicker{
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.bookTitle{
  margin: 0.9rem 0 0.45rem;
  font-size: 1.9rem;
  line-height: 1.15;
}

.bookSub{
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.bookList{
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
.bookList li{ margin: 0.45rem 0; }
.bookList strong{ color: #fff; }

.bookButtons{
  margin-top: 1.15rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bookCal{ width: 100%; }

.calFrame{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 70px rgba(0,0,0,0.35);
}

@media (max-width: 980px){
  .bookGrid{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .bookText{ max-width: 100%; }
}

/* =========================
   FOOTER
   ========================= */

footer{
  margin-top:3rem;
  border-top:1px solid rgba(255,255,255,0.08);
  background:rgba(2,6,23,0.88);
}
.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:2.3rem 1.5rem 2rem;
  text-align:center;
}
.footer-inner h3{
  margin:0 0 0.35rem;
  font-size:1.4rem;
  font-weight:800;
}
.footer-inner p{
  margin:0.5rem 0;
  color:rgba(255,255,255,0.76);
}
.footer-links{
  margin-top:1rem;
  display:flex;
  justify-content:center;
  gap:1.1rem;
  flex-wrap:wrap;
  color:rgba(255,255,255,0.92);
}
.footer-links a{ color:#c7d2fe; }
.footer-links a:hover{ color:#fff; }


/* ===== FINAL OVERRIDES: square buttons ===== */
.btn{
  border-radius: 10px !important; /* square-ish */
}
.nav-cta{
  border-radius: 10px !important; /* CTA matches */
}
.case-open{
  border-radius: 10px !important; /* results card button too */
}
/* ===== RESULTS: remove outer wrapper card only ===== */
/* This targets the big card that wraps the whole Results section */
body.theme-dark .section .card:has(#caseGrid){
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
/* Fallback if :has() doesn't work */
body.theme-dark #caseGrid{
  margin-top: 1.2rem;
}
body.theme-dark #caseGrid{
  /* nothing else needed; outer box removal needs HTML hook */
}

/* ===== HERO: WHITE / MINIMAL HEADER ===== */
.hero{
  background: #ffffff !important;
  border-bottom: 1px solid rgba(11,18,32,0.10);
}

.hero-inner{
  text-align: center;
}

/* Headline + text colours */
.hero h1{
  color: #0b1220;
}

.hero-sub{
  color: rgba(11,18,32,0.72);
}

/* Eyebrow pill */
.hero-eyebrow{
  background: rgba(11,18,32,0.04);
  border: 1px solid rgba(11,18,32,0.12);
  color: rgba(11,18,32,0.75);
}

/* Footnote text */
.hero-footnote{
  color: rgba(11,18,32,0.65);
}

/* Buttons sit cleanly on white */
.hero .btn.secondary{
  background: transparent;
  border: 1px solid rgba(11,18,32,0.25);
  color: #0b1220;
}


/* ===== HERO: dark navy buttons ===== */
.hero .btn.primary{
  background: #020617; /* dark navy */
  border: 1px solid rgba(11,18,32,0.15);
  color: #ffffff;
}

.hero .btn.primary:hover{
  background: #020617;
}

.hero .btn.secondary{
  background: transparent;
  border: 1px solid rgba(11,18,32,0.30);
  color: #0b1220;
}

.hero .btn.secondary:hover{
  background: rgba(11,18,32,0.05);
}
/* ===== HERO: tighten eyebrow spacing ===== */
.hero-inner{
  padding-top: 2.4rem; /* was visually too tall */
}

.hero-eyebrow{
  margin-top: 0;
}
/* =========================
   CLIENT PROFILE HEADER (RESULTS MODAL)
   ========================= */

.modalHeaderLeft{
  display:flex;
  flex-direction:column;
  gap:0.6rem;
}

.clientProfile{
  display:flex;
  align-items:center;
  gap:0.85rem;
  padding:0.6rem 0.75rem;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
}

.clientAvatarWrap{
  width:48px;
  height:48px;
  border-radius: 999px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.14);
  flex: 0 0 auto;
}

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

.clientMeta{
  display:flex;
  flex-direction:column;
  gap:0.15rem;
}

.clientName{
  font-weight:900;
  letter-spacing:0.01em;
  color: rgba(255,255,255,0.92);
}

.clientLine{
  font-weight:700;
  color: rgba(255,255,255,0.72);
  font-size:0.92rem;
}

/* keep it clean on mobile */
@media (max-width: 520px){
  .clientProfile{
    padding:0.55rem 0.65rem;
  }
  .clientAvatarWrap{
    width:44px;
    height:44px;
  }
}


