:root {
  --bg: #0b0f14;
  --fg: #e6edf3;
  --muted: #a9b4c0;
  --brand: #3ecf8e;
  --brand-2: #7a5cff;
  --card: rgba(255, 255, 255, .06);
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --radius: 16px;
}

* {
  box-sizing: border-box
}

html,
body,
.page {
  height: 100%
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
  color: var(--fg);
  background: var(--bg)
}


/* Smooth theme transitions (optional) */
html {
  transition: background-color .25s ease, color .25s ease;
}

body,
.siteFooter,
.header,
.heroCard,
.featureItem,
.steps li,
.useGrid li,
.demoBox,
.quotes li {
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

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

.page {
  position: relative;
  overflow-x: hidden
}

/* Background glow */
.bg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 520px;
  z-index: -1;
  background: radial-gradient(1200px 400px at 20% -10%, rgba(122, 92, 255, .35), transparent 60%),
    radial-gradient(900px 360px at 90% 0%, rgba(62, 207, 142, .30), transparent 55%);
  filter: blur(30px)
}

/* Header */
.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(11, 15, 20, .75), rgba(11, 15, 20, .35) 70%, transparent);
  border-bottom: 1px solid var(--border);
  z-index: 10
}

.headerRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo {
  /* width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); */
  display: grid;
  place-items: self-start;
  font-weight: 800;
  color: #0b0f14;
/*   box-shadow: var(--shadow) */
}
.logo img {
    height: 35px;
    width: auto;

}

.brandText {
  font-weight: 700;
  letter-spacing: .2px
}

/* NAV (UL/LI for WordPress) */
.nav {
  position: relative
}

.navList {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0
}

.navLink {
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s
}

.navLink:hover {
  color: var(--fg)
}

/* === WordPress menu compatibility === */

/* 1) Desktop layout: make either .navList (UL) OR div.navList > ul horizontal */
.nav .navList,
.nav .navList>ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 2) List items (works for menu_item and page_item) */
.nav .navList>li,
.nav .navList>ul>li {
  list-style: none;
}

/* 3) Links (no .navLink class needed) */
.nav .navList a,
.nav .navList>ul>li>a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.nav .navList a:hover,
.nav .navList>ul>li>a:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, .06);
}

/* 4) Current/active item highlight (WP adds these classes) */
.nav .navList .current_page_item>a,
.nav .navList .current-menu-item>a {
  color: var(--fg);
  background: rgba(255, 255, 255, .08);
}

/* 5) Mobile dropdown (works whether WP wraps with div.navList or not) */
@media (max-width: 860px) {

  /* hide menu by default */
  .nav .navList {
    display: none;
    position: absolute;
    right: 0;
    top: 48px;
  }

  .nav .navList,
  .nav .navList>ul {
    min-width: 220px;
    flex-direction: column;
    gap: 8px;
    background: rgba(11, 15, 20, .95);
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  /* when burger (checkbox) is checked, show menu */
  .navToggle:checked~.nav .navList {
    display: flex;
  }

  /* link hover in dropdown */
  .nav .navList a,
  .nav .navList>ul>li>a {
    padding: 10px 12px;
  }
}


/* Mobile nav (CSS only) */
.navToggle {
  display: none
}

.navBurger {
  display: none;
  cursor: pointer;
  width: 34px;
  height: 28px;
  position: relative
}

.navBurger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fg);
  transition: transform .2s, opacity .2s
}

.navBurger span:nth-child(1) {
  top: 4px
}

.navBurger span:nth-child(2) {
  top: 13px
}

.navBurger span:nth-child(3) {
  top: 22px
}

@media (max-width:860px) {
  .navBurger {
    display: block
  }

  .navList {
    position: absolute;
    right: 0;
    top: 48px;
    min-width: 220px;
    background: rgba(11, 15, 20, .95);
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 8px;
  }

  .navList .menu-item {
    display: block
  }

  .navList .navLink {
    display: block;
    padding: 10px 12px;
    border-radius: 8px
  }

  .navList .navLink:hover {
    background: rgba(255, 255, 255, .06)
  }

  /* Toggle open */
  .navToggle:checked~.navBurger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg)
  }

  .navToggle:checked~.navBurger span:nth-child(2) {
    opacity: 0
  }

  .navToggle:checked~.navBurger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg)
  }

  .navToggle:checked~.nav .navList {
    display: flex
  }
}




/* Layout helpers */
.container {
  width: min(1120px, 92%);
  margin: 0 auto
}

.containerGrid {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.2fr 1fr
}

@media (max-width:960px) {
  .containerGrid {
    grid-template-columns: 1fr
  }
}

.main {
  padding: 40px 0 24px
}

/* Pre-hero */
.preheroHead {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem)
}

.preheroSub {
  margin: 0;
  color: var(--muted)
}

/* Hero */
.hero {
  padding: 28px 0 24px
}

.heading {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -.02em
}

.subheading {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem)
}

.form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  max-width: 640px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

@media (max-width:640px) {
  .form {
    grid-template-columns: 1fr
  }
}

.label {
  display: grid;
  gap: 8px
}

.labelText {
  font-size: .92rem;
  color: var(--muted)
}

.input,
.inputSm {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  color: var(--fg);
  outline: none;
  transition: border-color .2s, box-shadow .2s
}

.input:focus,
.inputSm:focus {
  border-color: rgba(62, 207, 142, .9);
  box-shadow: 0 0 0 4px rgba(62, 207, 142, .15)
}

.button,
.buttonSm,
.buttonLg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .06);
/*   background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0b0f14; */
 background: #FA1450;
  color: #FFF;
  font-weight: 700;
  cursor: pointer;
  transition: transform .06s, opacity .2s;
  text-decoration: none
}

.button:hover,
.buttonSm:hover,
.buttonLg:hover {
  opacity: .95
}

.button:active,
.buttonSm:active,
.buttonLg:active {
  transform: translateY(1px)
}

.buttonIcon {
  margin-left: 2px
}

.buttonLg {
  padding: 14px 20px
}

.smallNote {
  margin: 4px 2px 0;
  color: var(--muted);
  font-size: .9rem
}

.heroCtas {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap
}

.ghostBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--fg);
  text-decoration: none;
  background: rgba(255, 255, 255, .03)
}

.ghostBtn:hover {
  background: rgba(255, 255, 255, .06)
}

.trustRow {
  display: grid;
  gap: 8px;
  margin-top: 18px
}

.trustHint {
  color: var(--muted);
  font-size: .95rem
}

.trustLogos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.trustBadge {
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--fg);
  font-size: .85rem;
  background: rgba(255, 255, 255, .03)
}

.dividerDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border)
}

/* Preview card */
.heroCard {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  align-self: start
}

.previewHeader {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, .25)
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25)
}

.previewBody {
  display: grid;
  grid-template-columns: 180px 1fr
}

@media (max-width:520px) {
  .previewBody {
    grid-template-columns: 1fr
  }
}

.previewImage {
  min-height: 180px;
  background: linear-gradient(135deg, rgba(62, 207, 142, .25), rgba(122, 92, 255, .25)), linear-gradient(0deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .05))
}

.previewMeta {
  padding: 16px;
  display: grid;
  gap: 10px
}

.previewTitle {
  margin: 0 0 4px;
  font-size: 1.05rem
}

.previewDesc {
  margin: 0;
  color: var(--muted)
}

.code {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid var(--border);
  color: #dfe7ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem;
  overflow-x: auto
}

.heroSection img{
  border-radius: 10px;
  border: 7px solid var(--border);
  margin: 40px 0;
}

/* Problem → Solution */
.problem {
  padding: 50px 0
}

.sectionTitle {
  margin: 0 0 20px;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem)
}

.problemSub {
  margin: 0 0 12px;
  color: var(--muted)
}

.problemGrid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr
}

@media (max-width:900px) {
  .problemGrid {
    grid-template-columns: 1fr
  }
}

.problemText {
  margin: 0;
  color: var(--fg);
  line-height: 1.6;
}

.benefits {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 14px 0 0;
  padding: 0;
  list-style: none
}

.benefits li {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  border-radius: 999px;
  padding: 6px 12px
}

/* How it works */
.how {
  padding: 56px 0
}

.howTitle {
  text-align: center;
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 2vw, 1.6rem)
}

.steps {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px
}

.steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: var(--radius)
}

.stepNum {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0b0f14;
  font-weight: 800
}

.ctaCenter {
  display: flex;
  justify-content: center;
  margin-top: 16px
}

/* Use cases */
.usecases {
  padding: 50px 0
}

.useGrid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr)
}

@media (max-width:900px) {
  .useGrid {
    grid-template-columns: 1fr
  }
}

.useGrid li {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius);
  color: var(--muted)
}

.useGrid li strong {
  color: var(--fg)
}

/* Features */
.features {
  padding: 50px 0
}

.featureGrid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr)
}

@media (max-width:960px) {
  .featureGrid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .featureGrid {
    grid-template-columns: 1fr
  }
}

.featureItem {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  min-height: 160px;
  transition: transform .12s, background .2s, border-color .2s
}

.featureItem:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18)
}

.featureItem h4 {
  margin: 0;
  font-size: 1.05rem
}

.featureItem p {
  margin: 0;
  color: var(--muted)
}

.iconWrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(62, 207, 142, .2), rgba(122, 92, 255, .2));
  color: #fff;
  border: 1px solid var(--border)
}

/* Demo */
.demo {
  padding: 50px 0
}

.demoText {
  color: var(--muted);
  margin: 6px 0 16px
}

.demoBox {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px
}

.demoPoster {
  height: 280px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 92, 255, .25), rgba(62, 207, 142, .25))
}

.play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #0b0f14;
  font-weight: 800;
  margin: 0 auto;
  transform: translateY(108px)
}

/* Final CTA */
.finalCta {
  padding: 56px 0
}

.finalTitle {
  text-align: center;
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem)
}

.finalSub {
  text-align: center;
  margin: 0 0 16px;
  color: var(--muted)
}

.formFinal {
  margin: 0 auto
}

/* Footer */
/* --- Footer --- */
.siteFooter {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .02);
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 24px;
  padding: 36px 0;
}

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

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

.footerBrand .footerLogo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}

.logo--footer {
/*   box-shadow: var(--shadow); */
}

.footerBrandText {
  font-weight: 700;
  letter-spacing: .2px;
}

.footerTag {
  color: var(--muted);
  margin: 10px 0 0;
}

.footerHeading {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
}

.footerLinks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footerLinks .menu-item a,
.footerLinks li a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  border-radius: 8px;
  display: inline-block;
  transition: color .2s ease, background .2s ease;
}

.footerLinks .menu-item a:hover,
.footerLinks li a:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, .06);
  padding-inline: 8px;
}

/* Newsletter */
.footerSubscribe .subscribeForm {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .footerSubscribe .subscribeForm {
    grid-template-columns: 1fr;
  }
}

/* UL when printed directly… */
.footerNav > .footerLinks,
 /* …or when WP wraps it (just in case) */
.footerNav > [class*="menu-"][class*="-container"] > .footerLinks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footerNav .footerLinks li a {
  color: var(--muted);
  text-decoration: none;
}
.footerNav .footerLinks li a:hover { color: var(--fg); }


.emailInput {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  color: var(--fg);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.emailInput:focus {
  border-color: rgba(62, 207, 142, .9);
  box-shadow: 0 0 0 4px rgba(62, 207, 142, .15);
}

.subscribeBtn {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0b0f14;
  font-weight: 700;
  cursor: pointer;
  transition: transform .06s ease, opacity .2s ease;
}

.subscribeBtn:hover {
  opacity: .95;
}

.subscribeBtn:active {
  transform: translateY(1px);
}

/* Bottom bar */
.footerBottom {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .02);
}

.footerBottomRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.footerLegalLinks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.footerLegalLinks a {
  color: var(--muted);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}

.footerLegalLinks a:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, .06);
}

/* Screen-reader-only helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



/* Light theme overrides */
:root[data-theme="light"] {
  --bg: #ffffff;
  --fg: #0b1220;
  /* near-slate */
  --muted: #4b5563;
  /* slate-600 */
  --brand: #10b981;
  /* emerald-500 */
  --brand-2: #6366f1;
  /* indigo-500 */
  --card: rgba(0, 0, 0, 0.04);
  --border: rgba(0, 0, 0, 0.12);
}

/* Light theme background glow tweaks */
:root[data-theme="light"] .bg {
  background:
    radial-gradient(1200px 400px at 20% -10%, rgba(99, 102, 241, .18), transparent 60%),
    radial-gradient(900px 360px at 90% 0%, rgba(16, 185, 129, .16), transparent 55%);
}

/* Demo poster / preview visuals in light mode */
:root[data-theme="light"] .previewImage {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, .18), rgba(99, 102, 241, .18)),
    linear-gradient(0deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .04));
}

:root[data-theme="light"] .demoPoster {
  background: linear-gradient(135deg, rgba(99, 102, 241, .18), rgba(16, 185, 129, .18));
}

/* Theme switch button */
.themeSwitch {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  color: var(--fg);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .06s ease;
}

.themeSwitch:hover {
  background: rgba(255, 255, 255, .06);
}

.themeSwitch:active {
  transform: translateY(1px);
}

.themeIcon {
  display: grid;
  place-items: center;
}

/* Show proper icon per theme: default = dark */
.themeIcon--sun {
  display: none;
}

/* hidden in dark mode */
.themeIcon--moon {
  display: grid;
}

/* visible in dark mode */
:root[data-theme="light"] .themeIcon--sun {
  display: grid;
}

:root[data-theme="light"] .themeIcon--moon {
  display: none;
}

/* Make sure header layout doesn’t break on small screens */
@media (max-width: 860px) {
  .themeSwitch {
    position: relative;
    z-index: 11;
  }

  /* above dropdown */
}





/* Blog main layout */
.blogMain { padding-top: 24px; }

/* Intro / Search / Filters */
.blogHero { padding: 10px 0 22px; }
.blogSearch {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 720px;
}
.searchInput {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--fg);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.searchInput:focus {
  border-color: rgba(62,207,142,.9);
  box-shadow: 0 0 0 4px rgba(62,207,142,.15);
}
.searchBtn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 14px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0b0f14; font-weight: 700; cursor: pointer;
  transition: transform .06s, opacity .2s;
}
.searchBtn:hover { opacity: .95; }
.searchBtn:active { transform: translateY(1px); }

.blogFilters { margin-top: 14px; }
.filterList { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-block; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--fg); text-decoration: none; font-size: .92rem;
  transition: background .2s, border-color .2s, color .2s, transform .06s;
}
.chip:hover { background: rgba(255,255,255,.06); transform: translateY(-1px); }
.chip.is-active { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #0b0f14; border-color: transparent; }

/* Featured post */
.featured { padding: 10px 0 28px; }
.postFeatured {
  display: grid; gap: 18px; grid-template-columns: 1.1fr 1fr;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
@media (max-width: 900px){ .postFeatured { grid-template-columns: 1fr; } }
.postThumb { display: block; overflow: hidden; }
.postThumb img {
  width: 100%; height: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform .4s ease;
}
.postFeatured .postThumb img:hover { transform: scale(1.04); }
.postBody { padding: 18px; display: grid; gap: 10px; align-content: start; }
.postCategory {
  display: inline-block; font-size: .82rem; font-weight: 600; text-decoration: none;
  color: var(--fg); border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 10px; background: rgba(255,255,255,.03);
}
.postTitle { margin: 0; font-size: clamp(1.1rem, 2.2vw, 1.6rem); line-height: 1.2; }
.postTitle a { color: var(--fg); text-decoration: none; }
.postTitle a:hover { text-decoration: underline; }
.postExcerpt { margin: 0; color: var(--muted); }
.postMeta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .95rem; }
.metaDot { opacity: .6; }
.author { display: inline-flex; align-items: center; gap: 8px; }
.avatar {
  width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0b0f14; font-size: .78rem; font-weight: 800;
}

/* Posts grid */
.posts { padding: 0 0 28px; }
.postsGrid {
  display: grid; gap: 16px;
  grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
}
@media (max-width: 960px){ .postsGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .postsGrid { grid-template-columns: 1fr; } }

.postCard {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; display: grid; gap: 0;
  transition: transform .12s, border-color .2s, background .2s;
}
.postCard:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.18); }
.postCard .postThumb img { aspect-ratio: 16/10; object-fit: cover; transition: transform .4s ease; }
.postCard .postThumb img:hover { transform: scale(1.03); }
.postInfo { padding: 16px; display: grid; gap: 8px; }
.postInfo .postCategory { font-size: .78rem; padding: 5px 9px; }
.postInfo .postTitle { font-size: 1.1rem; margin: 0; }
.postInfo .postExcerpt { color: var(--muted); margin: 0; }
.postInfo .postMeta { font-size: .9rem; }

/* Inline "Read more" inside excerpts — plain white text, tidy spacing */
.postCard .postExcerpt a,
.postCard .postExcerpt .more-link,
.postCard .postExcerpt .btn,
.postCard .postExcerpt .btn.btn-plain {
  display: inline ;    
  padding: 0 ;
  border: 0;
  background: none ;
  margin-left: .35em;                
  color: var(--fg);       
  text-decoration: none ;
  font-weight: 600;                   
  text-transform: none;               
  letter-spacing: normal;
  line-height: inherit;
}

/* Hover: just underline (and a subtle fade) */
.postCard .postExcerpt a:hover,
.postCard .postExcerpt .more-link:hover,
.postCard .postExcerpt .btn:hover,
.postCard .postExcerpt .btn.btn-plain:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .95;
}

/* Remove any arrow we previously added */
.postCard .postExcerpt a::after,
.postCard .postExcerpt .more-link::after,
.postCard .postExcerpt .btn::after,
.postCard .postExcerpt .btn.btn-plain::after {
  content: none !important;
}


/* ===== Blog layout with sidebar ===== */
.blogLayout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 320px; /* main + sidebar */
  align-items: start;
}
@media (max-width: 1100px){
  .blogLayout { grid-template-columns: 1fr; }
}

/* Main column just inherits your .postsGrid etc. */
.contentCol { min-width: 0; }

/* Sidebar */
.sidebarCol {
  position: sticky;
  top: 96px;                 /* adjust if your header is taller/shorter */
  align-self: start;
}

.widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  gap: 10px;
}
.widget + .widget { margin-top: 12px; }

.widgetTitle {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

/* Archive list */
.archiveList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.archiveList li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  color: var(--fg);
  text-decoration: none;
  transition: background .2s ease, transform .06s ease;
}
.archiveList li a:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}
/* WP prints " (count)" text — make it look like a badge */
.archiveList li a:has(> span.count) { justify-content: space-between; }
.archiveList li a .count {
  margin-left: 12px;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 8px;
  background: rgba(255,255,255,.06);
}

/* Light theme tuning */
:root[data-theme="light"] .widget { background: var(--card); }
:root[data-theme="light"] .archiveList li a { background: rgba(0,0,0,.03); }
:root[data-theme="light"] .archiveList li a:hover { background: rgba(0,0,0,.06); }



/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 16px;
}
.pageList { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; }
.pageBtn, .pageNum {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 36px; padding: 0 12px;
  border-radius: 10px; border: 1px solid var(--border); text-decoration: none;
  background: rgba(255,255,255,.03); color: var(--fg);
  transition: background .2s, color .2s, transform .06s;
}
.pageBtn:hover, .pageNum:hover { background: rgba(255,255,255,.06); }
.pageBtn.isDisabled { opacity: .5; pointer-events: none; }
.pageNum.isActive {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: transparent; color: #0b0f14; font-weight: 700;
}

/* Container + list */
.pagination {
  display:flex; align-items:center; justify-content:center; gap:10px; margin-top:16px;
}
.pagination .pageList {
  list-style:none; margin:0; padding:0; display:flex; gap:8px;
}

/* Prev / Next buttons */
.pagination .pageBtn {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:40px; height:36px; padding:0 12px;
  border-radius:10px; border:1px solid var(--border);
  background: rgba(255,255,255,.03); color: var(--fg); text-decoration:none;
  transition: background .2s ease, color .2s ease;
}
.pagination .pageBtn:hover { background: rgba(255,255,255,.06); }
.pagination .pageBtn.isDisabled { opacity:.5; pointer-events:none; }

/* Numbers (WP outputs .page-numbers and .current) */
.pagination .pageList .page-numbers {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:40px; height:36px; padding:0 12px;
  border-radius:10px; border:1px solid var(--border);
  background: rgba(255,255,255,.03); color: var(--fg); text-decoration:none;
  transition: background .2s ease, color .2s ease;
}
.pagination .pageList .page-numbers:hover { background: rgba(255,255,255,.06); }
.pagination .pageList .page-numbers.current {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-color: transparent; color:#0b0f14; font-weight:700;
}

/* Light theme tuning */
:root[data-theme="light"] .pagination .pageBtn,
:root[data-theme="light"] .pagination .pageList .page-numbers { background: rgba(0,0,0,.03); }
:root[data-theme="light"] .pagination .pageBtn:hover,
:root[data-theme="light"] .pagination .pageList .page-numbers:hover { background: rgba(0,0,0,.06); }


/* Screen-reader-only helper (reuse if not already in your CSS) */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Light theme tuning for blog components ---------- */
:root[data-theme="light"] .searchInput { background: rgba(0,0,0,.02); }
:root[data-theme="light"] .chip { background: rgba(0,0,0,.04); }
:root[data-theme="light"] .chip:hover { background: rgba(0,0,0,.07); }
:root[data-theme="light"] .postFeatured { background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.02)); }
:root[data-theme="light"] .postCard { background: var(--card); border-color: var(--border); }
:root[data-theme="light"] .postCategory { background: rgba(0,0,0,.04); border-color: var(--border); }
:root[data-theme="light"] .pageBtn, 
:root[data-theme="light"] .pageNum { background: rgba(0,0,0,.03); }
:root[data-theme="light"] .pageBtn:hover, 
:root[data-theme="light"] .pageNum:hover { background: rgba(0,0,0,.06); }


/* ====== Single Post ====== */

.postMain { padding-top: 14px; }

/* Breadcrumbs */
.crumbs { padding: 6px 0 4px; }
.crumbsList { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); }
.crumbsLink { color: var(--muted); text-decoration: none; padding: 4px 6px; border-radius: 8px; }
.crumbsLink:hover { color: var(--fg); background: rgba(255,255,255,.06); }
.crumbsSep { opacity: .6; }
.is-current { color: var(--fg); }

/* Header */
.postHeader { padding: 10px 0 8px; }
.postCategory {
  display: inline-block; font-size: .82rem; font-weight: 600; text-decoration: none;
  color: var(--fg); border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 10px; background: rgba(255,255,255,.03);
}
.postTitleXL { margin: 8px 0 12px; font-size: clamp(1.6rem, 4.2vw, 2.4rem); line-height: 1.15; letter-spacing: -0.02em; }

.postMetaRow { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.author { display: inline-flex; align-items: center; gap: 10px; }
.avatar { width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #0b0f14; font-size: .78rem; font-weight: 800; }
.avatar-lg { width: 40px; height: 40px; font-size: .9rem; }
.authorMeta { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); }
.by { color: var(--fg); }

/* Share bar */
.shareBar { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.shareBtn {
  display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 12px;
  border-radius: 10px; border: 1px solid var(--border); background: rgba(255,255,255,.03);
  color: var(--fg); text-decoration: none; cursor: pointer; transition: background .2s, transform .06s;
}
.shareBtn:hover { background: rgba(255,255,255,.06); }
.shareBtn:active { transform: translateY(1px); }
.shareBtn svg { color: inherit; }
.shareBtn svg * { stroke: currentColor; fill: none; }

/* Hero image */
.postHero { padding: 10px 0 8px; }
.postHero img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: block;
}
.postHero figcaption { color: var(--muted); font-size: .92rem; margin-top: 8px; }

/* Content */
.postContent { padding: 6px 0 24px; }
.contentWrap { max-width: 860px; }
.postContent p { line-height: 1.75; margin: 0 0 16px; }
.postContent .lede { font-size: 1.125rem; color: var(--fg); }
.postContent h2 { margin: 22px 0 10px; font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
.postContent h3 { margin: 18px 0 8px; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.postContent ul, .postContent ol { padding-left: 1.2rem; margin: 0 0 16px; }
.postContent li { margin: 6px 0; }
.postContent a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.postContent blockquote {
  margin: 16px 0; padding: 12px 16px; border-left: 3px solid var(--brand);
  background: var(--card); border: 1px solid var(--border); border-left-color: var(--brand);
  border-radius: 12px;
}
.callout {
  margin: 16px 0; padding: 12px 14px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(62,207,142,.12), rgba(122,92,255,.12));
  border: 1px solid var(--border);
}

.codeBlock {
  margin: 16px 0; border-radius: 12px; overflow: auto;
  background: rgba(0,0,0,.35); border: 1px solid var(--border);
  color: #dfe7ff; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: .9rem; line-height: 1.6;
}
.codeBlock code { display: block; padding: 14px 16px; }

/* Divider + tags */
.sectionRule { border: 0; height: 1px; background: var(--border); margin: 22px 0; }
.tagList { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-block; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--fg); text-decoration: none; font-size: .92rem;
  transition: background .2s, border-color .2s, transform .06s;
}
.chip:hover { background: rgba(255,255,255,.06); transform: translateY(-1px); }

/* Author card */
.authorCard { padding: 8px 0 0; }
.authorInner {
  display: grid; gap: 12px; grid-template-columns: 1.2fr 1fr;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px;
}
@media (max-width: 820px){ .authorInner { grid-template-columns: 1fr; } }
.authorLeft { display: inline-flex; gap: 12px; align-items: center; }
.authorName { margin: 0 0 4px; }
.authorBio { margin: 0; color: var(--muted); }
.authorLinks { list-style: none; margin: 0; padding: 0; display: inline-flex; gap: 10px; align-items: center; }
.authorLinks a { color: var(--muted); text-decoration: none; padding: 4px 6px; border-radius: 8px; }
.authorLinks a:hover { color: var(--fg); background: rgba(255,255,255,.06); }

/* Pager */
.postPager { padding: 18px 0 6px; }
.pagerRow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 720px){ .pagerRow { grid-template-columns: 1fr; } }
.pagerItem {
  display: grid; gap: 6px; padding: 14px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--card); text-decoration: none; color: var(--fg);
  transition: transform .12s, background .2s, border-color .2s;
}
.pagerItem:hover { transform: translateY(-2px); background: rgba(255,255,255,.06); }
.pagerLabel { color: var(--muted); font-size: .9rem; }
.pagerTitle { font-weight: 600; }

/* Related posts (reuses card visuals) */
.related { padding: 8px 0 24px; }
.relatedGrid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px){ .relatedGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .relatedGrid { grid-template-columns: 1fr; } }
.postCard {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; transition: transform .12s, border-color .2s, background .2s;
}
.postCard:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.18); }
.postThumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.postInfo { padding: 12px; display: grid; gap: 6px; }
.postInfo .postTitle { margin: 0; }

/* ---- Light theme tuning ---- */
:root[data-theme="light"] .codeBlock {
  background: rgba(0,0,0,.05);
  color: #0b1220;
}
:root[data-theme="light"] .postContent blockquote {
  background: rgba(0,0,0,.04);
}
:root[data-theme="light"] .chip { background: rgba(0,0,0,.04); }
:root[data-theme="light"] .chip:hover { background: rgba(0,0,0,.07); }



/* =========================
   ABOUT PAGE
   ========================= */

.aboutMain { padding-top: 24px; }

/* Hero */
.aboutHero { padding: 6px 0 22px; }
.aboutBadges {
  list-style: none; margin: 12px 0 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap;
}
.aboutBadge {
  display: inline-block; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,.03);
  color: var(--fg); font-size: .92rem;
}

/* Mission */
.mission { padding: 10px 0 24px; }
.missionGrid {
  display: grid; gap: 16px; grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px){ .missionGrid { grid-template-columns: 1fr; } }
.missionCard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 18px; display: grid; gap: 10px;
}
.beliefs { margin: 0; padding-left: 1.1rem; }
.beliefs li { margin: 6px 0; }

/* Stats */
.stats { padding: 0 0 18px; }
.statsGrid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px){ .statsGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .statsGrid { grid-template-columns: 1fr; } }
.statCard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 16px; display: grid; gap: 6px; text-align: center;
}
.statNum { font-size: clamp(1.4rem, 3.4vw, 2rem); font-weight: 800; letter-spacing: -0.02em; }
.statLabel { color: var(--muted); }

/* Values */
.values { padding: 6px 0 18px; }
.valuesGrid {
  list-style: none; margin: 10px 0 0; padding: 0;
  display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px){ .valuesGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px){ .valuesGrid { grid-template-columns: 1fr; } }
.valueItem {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 16px; display: grid; gap: 8px; min-height: 160px;
}
.iconWrap.sm { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(62,207,142,.2), rgba(122,92,255,.2)); color: #fff; border: 1px solid var(--border);
}
.valueItem h3 { margin: 0; }

/* Timeline */
.timeline { padding: 6px 0 18px; }
.timeList {
  margin: 10px 0 0; padding: 0; list-style: none;
  display: grid; gap: 14px; position: relative;
}
.timeList li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.timeList li::before {
  content: ""; grid-column: 1; grid-row: 1 / span 3;
  width: 2px; background: var(--border); justify-self: center;
}
.timeDot { width: 12px; height: 12px; border-radius: 999px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); margin-top: 4px; justify-self: center; }
.timeBody h4 { margin: 0 0 4px; }
.timeBody p { margin: 0; color: var(--muted); }

/* Team */
.team { padding: 6px 0 18px; }
.teamGrid {
  list-style: none; margin: 10px 0 0; padding: 0;
  display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px){ .teamGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .teamGrid { grid-template-columns: 1fr; } }
.teamCard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 14px; display: inline-flex; gap: 10px; align-items: center;
}
.avatar.lg { width: 44px; height: 44px; font-size: .95rem; }
.teamName { margin: 0 0 2px; }
.teamRole { margin: 0; color: var(--muted); }

/* FAQ */
.faq { padding: 6px 0 18px; }
.faqList { display: grid; gap: 10px; max-width: 860px; }
.faqItem {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 12px 14px;
}
.faqItem > summary {
  cursor: pointer; list-style: none; font-weight: 600;
}
.faqItem > summary::-webkit-details-marker { display: none; }
.faqItem[open] { background: rgba(255,255,255,.06); }

/* Contact CTA */
.contactCta { padding: 10px 0 28px; }
.contactCard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px); box-shadow: var(--shadow);
  padding: 18px; display: grid; gap: 12px; grid-template-columns: 1fr auto; align-items: center;
}
@media (max-width: 700px){ .contactCard { grid-template-columns: 1fr; } }
.contactTitle { margin: 0 0 4px; }
.contactSub { margin: 0; color: var(--muted); }

/* ----- Light theme tuning for About page ----- */
:root[data-theme="light"] .aboutBadge { background: rgba(0,0,0,.04); }
:root[data-theme="light"] .missionCard,
:root[data-theme="light"] .statCard,
:root[data-theme="light"] .valueItem,
:root[data-theme="light"] .faqItem,
:root[data-theme="light"] .contactCard,
:root[data-theme="light"] .teamCard {
  background: var(--card); border-color: var(--border);
}
:root[data-theme="light"] .faqItem[open] { background: rgba(0,0,0,.06); }



/* =========================
   CONTACT PAGE
   ========================= */

.contactMain { padding-top: 24px; }

/* Hero */
.contactHero { padding: 6px 0 18px; }
.contactHighlights {
  list-style: none; margin: 10px 0 0; padding: 0;
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* Grid: form + aside */
.contactGridSection { padding: 6px 0 24px; }
.contactGrid {
  display: grid; gap: 18px; grid-template-columns: 1.2fr 1fr;
}
@media (max-width: 960px){ .contactGrid { grid-template-columns: 1fr; } }

/* Form */
.contactForm {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid; gap: 12px;
}
.formRow { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px){ .formRow { grid-template-columns: 1fr; } }

.field { display: grid; gap: 8px; }
.field > label { font-weight: 600; font-size: .95rem; }
.input, .textarea, .select {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--fg);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.textarea { resize: vertical; }
.selectWrap { position: relative; }
.select { appearance: none; padding-right: 40px; }
.selectWrap::after {
  content: "▾";
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--muted);
}
.input:focus, .textarea:focus, .select:focus {
  border-color: rgba(62,207,142,.9);
  box-shadow: 0 0 0 4px rgba(62,207,142,.15);
}

.consent .check { display: inline-flex; align-items: center; gap: 10px; }
.consent input[type="checkbox"] { width: 16px; height: 16px; }

.contactSubmit { margin-top: 2px; }

/* Notices */
.formNotice {
  border-radius: 12px; padding: 12px 14px; font-weight: 600;
  border: 1px solid var(--border);
}
.formNotice.is-success { background: linear-gradient(135deg, rgba(16,185,129,.18), rgba(99,102,241,.12)); }
.formNotice.is-error   { background: rgba(255,0,0,.10); }

/* Aside cards */
.contactAside { display: grid; gap: 12px; }
.contactCard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.contactCard h3 { margin: 0 0 6px; }
.contactCard .muted { color: var(--muted); margin: 0 0 8px; }
.contactList { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.contactList a { color: inherit; text-decoration: none; }
.contactList a:hover { text-decoration: underline; }

/* Map & offices */
.locations { padding: 6px 0 12px; }
.mapGrid { display: grid; gap: 16px; grid-template-columns: 1.2fr 1fr; }
@media (max-width: 900px){ .mapGrid { grid-template-columns: 1fr; } }
.mapBox {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  min-height: 280px; display: grid; place-items: center; overflow: hidden;
}
.mapPoster {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(122,92,255,.25), rgba(62,207,142,.25));
  color: var(--fg); font-weight: 700; letter-spacing: .3px;
}
.officeList { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.officeCard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 14px;
}
.officeCard h4 { margin: 0 0 4px; }
.officeCard .muted { color: var(--muted); margin: 0 0 6px; }
.offic




.archiveList { list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.archiveList li a{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border:1px solid var(--border); border-radius:10px;
  background:rgba(255,255,255,.03); color:var(--fg); text-decoration:none;
  transition:background .2s, transform .06s;
}
.archiveList li a:hover{ background:rgba(255,255,255,.06); transform:translateY(-1px); }
.archiveList li a .label{ flex:1 1 auto; min-width:0; }
.archiveList li a .count{
  flex:0 0 auto; white-space:nowrap; font-weight:700;
  border:1px solid var(--border); border-radius:999px; padding:2px 8px;
  background:rgba(255,255,255,.06);
}
:root[data-theme="light"] .archiveList li a{ background:rgba(0,0,0,.03); }
:root[data-theme="light"] .archiveList li a:hover{ background:rgba(0,0,0,.06); }

/* Make label + count sit on one line even if count is outside the <a> */
.archiveList li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.archiveList li > a {
  flex: 1 1 auto;
  min-width: 0;
}
.archiveList li > .count {
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 8px;
  background: rgba(255,255,255,.06);
}
:root[data-theme="light"] .archiveList li > .count { background: rgba(0,0,0,.06); }


/* Pricing layout */
.pricingHeader { padding: 30px 0 40px; line-height: 1.6;}
.pricingHeader .backLink { display:inline-block; color: var(--muted); text-decoration:none; margin-bottom:8px; }
.pricingHeader .backLink:hover { text-decoration: underline; }
.pricingHeader .heading { margin:4px 0 6px; text-align:center; }
.pricingHeader .subheading { margin:0; text-align:center; color:var(--muted); }

.pricingSection { padding: 8px 0 18px; }
.planGrid { display:grid; gap:14px; grid-template-columns: 1fr 1fr; }
@media (max-width:980px){ .planGrid { grid-template-columns: 1fr; } }

.planCard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid; gap: 12px;
}
.planHead { display:grid; gap:6px; }
.planName { margin:0; font-weight:800; }
.planTagline { margin:0; color:var(--muted); }
.planPrice { display:flex; align-items:baseline; gap:8px; }
.planPrice .amount { font-size:2rem; font-weight:800; }
.planPrice .per { color:var(--muted); font-weight:600; }

.planCta { margin-top:4px; }
.btnSolid{
  width:100%; height:42px; border-radius:12px;
  display:inline-grid; place-items:center;
  font-weight:700; border:1px solid var(--border);
  background: rgba(255,255,255,.06); color: var(--fg); text-decoration:none;
  transition: background .2s, color .2s, border-color .2s;
}
.btnSolid:hover { background: rgba(255,255,255,.1); }

.featureList { list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.featureList li { display:grid; grid-template-columns:20px 1fr; align-items:start; column-gap:10px; }
.featureList .check { width:18px; height:18px; color:var(--fg); opacity:.9; }

/* Light theme tweaks */
:root[data-theme="light"] .planCard { background: var(--card); }
:root[data-theme="light"] .btnSolid { background: rgba(0,0,0,.06); }
:root[data-theme="light"] .btnSolid:hover { background: rgba(0,0,0,.1); }


/* ===== Partners page ===== */
.partnersHero { padding: 10px 0 6px; }
.partnersHero .heading { margin: 4px 0 6px; text-align: center; }
.partnersHero .subheading { margin: 0; text-align: center; color: var(--muted); }

.partnersSection { padding: 8px 0 18px; }

.partnersGrid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.partnerCard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.partnerLogoWrap {
  display: grid;
  place-items: center;
  height: 88px; /* logo area */
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
}
.partnerLogo {
  max-width: 76%;
  max-height: 64px;
  object-fit: contain;
}
.logoFallback {
  width: 56px; height: 56px; border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand, #55dfa3), var(--brand-2, #5ab0ff));
  color: #0b0f14;
}

.partnerName { margin: 0; font-weight: 800; font-size: 1.05rem; }
.partnerName a { color: var(--fg); text-decoration: none; }
.partnerName a:hover { text-decoration: underline; text-underline-offset: 3px; }

.partnerCta { margin-top: 2px; }
.btnSolid {
  width: 100%; height: 40px; border-radius: 12px;
  display: inline-grid; place-items: center;
  font-weight: 700; border: 1px solid var(--border);
  background: rgba(255,255,255,.06); color: var(--fg); text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.btnSolid:hover { background: rgba(255,255,255,.1); }

/* Light mode tweaks */
:root[data-theme="light"] .partnerLogoWrap { background: rgba(0,0,0,.03); }
:root[data-theme="light"] .btnSolid { background: rgba(0,0,0,.06); }
:root[data-theme="light"] .btnSolid:hover { background: rgba(0,0,0,.1); }



/* ---- ShopComponent Demo Library Styles (sc-*) ---- */
  .sc-demo-library {
    /* map to your global theme tokens with sensible fallbacks */
    --sc-bg:     var(--bg, #0b0d12);
    --sc-surface:var(--card, #11141b);
    --sc-card:   var(--card, #151923);
    --sc-text:   var(--fg, #e9edf3);
    --sc-muted:  var(--muted, #a8b0bd);
    --sc-accent: var(--brand, #66e0a3);
    --sc-accent-2: var(--brand-2, #7ab7ff);
    --sc-border: var(--border, #232a36);
    --sc-radius: var(--radius, 16px);
    --sc-gap:    1.25rem;
    --sc-shadow: var(--shadow, 0 6px 24px rgba(0,0,0,.35));
    --sc-ring:   color-mix(in srgb, var(--sc-accent) 35%, transparent);

    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--sc-bg) 90%, #000 10%),
      var(--sc-bg) 30%,
      color-mix(in srgb, var(--sc-bg) 90%, #000 10%)
    );
    color: var(--sc-text);
    padding: clamp(2.5rem, 4vw, 4rem) 1rem;
  }

  .sc-container { max-width: 1120px; margin: 0 auto; }
  .sc-header { text-align: center; margin-bottom: clamp(1.75rem, 2.5vw, 2.25rem); }

  .sc-eyebrow {
    display: inline-block;
    font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--sc-accent);
    background: color-mix(in srgb, var(--sc-accent) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--sc-accent) 25%, transparent);
    padding: .35rem .6rem; border-radius: 999px; margin-bottom: .75rem;
  }
  .sc-title { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.15; margin: 0 0 .5rem; }
  .sc-subtitle { color: var(--sc-muted); max-width: 740px; margin: 0 auto; font-size: 1rem; }
  .sc-disclaimer { margin-top: .85rem; font-size: .9rem; color: var(--sc-muted); opacity: .9; }

  .sc-grid {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    display: grid; grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--sc-gap);
  }
  @media (min-width: 720px){ .sc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (min-width: 1040px){ .sc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

  .sc-card {
    background: linear-gradient(180deg, var(--sc-card), color-mix(in srgb, var(--sc-card) 85%, #000 15%));
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius);
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative; isolation: isolate;
  }
  .sc-card:focus-within, .sc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.45); border-color: color-mix(in srgb, var(--sc-border) 70%, var(--sc-accent-2) 30%); }

  .sc-thumb-wrap {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
    background: color-mix(in srgb, var(--sc-bg) 80%, #000 20%);
    border-bottom: 1px solid var(--sc-border);
  }
  .sc-thumb { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.05) contrast(1.05); transform: scale(1.02); transition: transform .35s ease; }
  .sc-card:hover .sc-thumb { transform: scale(1.06); }

  .sc-badge {
    position: absolute; top: .75rem; left: .75rem;
    background: color-mix(in srgb, #000 50%, transparent);
    backdrop-filter: blur(6px);
    color: #fff; padding: .35rem .55rem; border-radius: 10px; font-size: .8rem;
    border: 1px solid rgba(255,255,255,.14);
  }

  .sc-body { padding: 1rem .9rem 1.1rem; display: grid; gap: .65rem; }
  .sc-kicker { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--sc-accent-2); opacity: .95; }
  .sc-card-title { font-size: 1.05rem; margin: 0; line-height: 1.25; }
  .sc-desc { color: var(--sc-muted); font-size: .95rem; line-height: 1.5; }

  .sc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .1rem; }
  .sc-tag {
    font-size: .78rem; color: var(--sc-muted);
    border: 1px dashed color-mix(in srgb, var(--sc-border) 80%, #2a3242 20%);
    padding: .2rem .5rem; border-radius: 999px;
    background: color-mix(in srgb, #fff 2%, transparent);
  }

  .sc-card-actions { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: .25rem; }
  .sc-btn {
    appearance: none; border: none; outline: none; border-radius: 10px;
    padding: .6rem .8rem; font-weight: 600; font-size: .92rem; cursor: pointer;
    text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
    display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
  }
  .sc-btn-primary {
    background: linear-gradient(180deg, var(--sc-accent), color-mix(in srgb, var(--sc-accent) 80%, #4fd392 20%));
    color: #0a0d12; box-shadow: 0 6px 14px var(--sc-ring);
  }
  .sc-btn-primary:hover { transform: translateY(-1px); }
  .sc-btn-outline { background: transparent; color: var(--sc-text); border: 1px solid var(--sc-border); }

  .sc-foot { text-align: center; margin-top: clamp(1.75rem, 3vw, 2.25rem); display: grid; gap: .9rem; }
  .sc-steps { display: grid; gap: .5rem; color: var(--sc-muted); font-size: .95rem; }
  .sc-cta { display: inline-flex; gap: .6rem; align-items: center; justify-content: center; }

  /* -------- Light theme overrides -------- */
  :root[data-theme="light"] .sc-demo-library{
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--bg, #f6f8fb) 85%, #fff 15%),
      var(--bg, #f6f8fb) 30%,
      color-mix(in srgb, var(--bg, #f6f8fb) 85%, #fff 15%)
    );
    color: var(--fg, #0b0f14);
  }
  :root[data-theme="light"] .sc-card{
    background: linear-gradient(180deg, var(--card, #ffffff), color-mix(in srgb, var(--card, #ffffff) 92%, #fff 8%));
    border-color: var(--border);
    box-shadow: var(--shadow);
  }
  :root[data-theme="light"] .sc-thumb-wrap{ background: color-mix(in srgb, var(--bg, #f6f8fb) 92%, #000 8%); border-bottom-color: var(--border); }
  :root[data-theme="light"] .sc-badge{
    background: color-mix(in srgb, #000 35%, transparent);
    border-color: rgba(0,0,0,.05);
  }
  :root[data-theme="light"] .sc-tag{
    background: rgba(0,0,0,.03);
    border-color: var(--border);
    color: var(--muted);
  }
  :root[data-theme="light"] .sc-btn-outline{
    background: rgba(0,0,0,.02);
    border-color: var(--border);
    color: var(--fg);
  }
  :root[data-theme="light"] .sc-btn-outline:hover{ background: rgba(0,0,0,.05); }

/* =========================================================
   LIGHT THEME POLISH (icons, shadows, backgrounds, borders)
   ========================================================= */

/* 1) Softer shadow and borders for light mode */
:root[data-theme="light"] {
  --bg: #ffffff;
  --fg: #0b1220;             /* text */
  --muted: #4b5563;          /* secondary */
  --brand: #10b981;          /* emerald-500 */
  --brand-2: #6366f1;        /* indigo-500 */
  --card: rgba(0, 0, 0, 0.04);
  --border: rgba(2, 6, 23, 0.12);
  /* lighter shadow so it doesn't look like a black blob */
  --shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
}

/* 2) Background “glow” + chrome bars tuned for light */
:root[data-theme="light"] .bg {
  background:
    radial-gradient(1200px 400px at 20% -10%, rgba(99,102,241,.18), transparent 60%),
    radial-gradient(900px 360px at 90% 0%, rgba(16,185,129,.16), transparent 55%);
}
:root[data-theme="light"] .header {
  background: linear-gradient(to bottom, rgba(255,255,255,.85), rgba(255,255,255,.55) 70%, transparent);
  border-bottom-color: var(--border);
}
:root[data-theme="light"] .footer,
:root[data-theme="light"] .siteFooter,
:root[data-theme="light"] .footerBottom {
  background: rgba(0,0,0,.02);
  border-top-color: var(--border);
}

/* 3) Cards/panels that looked too dark in light mode */
:root[data-theme="light"] .heroCard {
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.02));
  border-color: var(--border);
  box-shadow: var(--shadow);
}
:root[data-theme="light"] .previewHeader {
  background: rgba(0,0,0,.06);
  border-bottom-color: var(--border);
}

/* 4) Chips / subtle surfaces (trust badges, ghost buttons, legal links hover) */
:root[data-theme="light"] .trustBadge,
:root[data-theme="light"] .ghostBtn {
  background: rgba(0,0,0,.04);
  border-color: var(--border);
  color: var(--fg);
}
:root[data-theme="light"] .ghostBtn:hover {
  background: rgba(0,0,0,.07);
}
:root[data-theme="light"] .footerLegalLinks a:hover {
  background: rgba(0,0,0,.06);
}

/* 5) Icon color consistency (monochrome inline SVGs) */
.nav .navList a svg,
.iconWrap svg,
.themeSwitch svg,
.previewHeader svg,
.footerLinks a svg {
  color: inherit;              /* inherits from text color */
}
.nav .navList a svg *,
.iconWrap svg *,
.themeSwitch svg *,
.previewHeader svg *,
.footerLinks a svg * {
  stroke: currentColor;        /* override presentation attributes */
  fill: none;                  /* most of our icons are stroked; adjust if you use filled icons */
}

/* Feature icon tile: ensure visible on light background */
:root[data-theme="light"] .iconWrap {
  color: var(--fg);            /* makes the strokes dark enough */
  background: linear-gradient(135deg, rgba(16,185,129,.18), rgba(99,102,241,.18));
  border-color: var(--border);
}

/* 6) Theme switch button on light background */
:root[data-theme="light"] .themeSwitch {
  background: rgba(0,0,0,.04);
  border-color: var(--border);
  color: var(--fg);
}
:root[data-theme="light"] .themeSwitch:hover {
  background: rgba(0,0,0,.07);
}

/* 7) Inputs/cards general polish in light theme */
:root[data-theme="light"] .input,
:root[data-theme="light"] .inputSm,
:root[data-theme="light"] .emailInput {
  background: rgba(0,0,0,.02);
  border-color: var(--border);
  color: var(--fg);
}
:root[data-theme="light"] .featureItem,
:root[data-theme="light"] .steps li,
:root[data-theme="light"] .useGrid li,
:root[data-theme="light"] .demoBox,
:root[data-theme="light"] .quotes li {
  background: var(--card);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

/* 8) “Play” button readable on light theme */
:root[data-theme="light"] .play {
  background: #0b1220;
  color: #ffffff;
}

/* 9) Optional: soften the footer logo shadow in light mode */
:root[data-theme="light"] .logo--footer {
  box-shadow: 0 4px 14px rgba(2,6,23,0.10);
}

/* 10) Make sure current/active nav item stays visible in light mode */
:root[data-theme="light"] .nav .navList .current_page_item > a,
:root[data-theme="light"] .nav .navList .current-menu-item > a {
  color: var(--fg);
  background: rgba(0,0,0,.06);
}
