:root {
  --jco-ink: #050711;
  --jco-deep: #090d1f;
  --jco-navy: #11172f;
  --jco-panel: #141a34;
  --jco-white: #ffffff;
  --jco-soft: #eef3ff;
  --jco-muted: #aeb8ce;
  --jco-gold: #ffcc66;
  --jco-ember: #ff5b45;
  --jco-blue: #4fc3ff;
  --jco-violet: #8a5cf6;
  --jco-green: #37d6a6;
  --jco-border: rgba(255,255,255,.14);
  --jco-shadow: 0 24px 80px rgba(0,0,0,.35);
  --jco-radius: 28px;
}

html { scroll-behavior: smooth; }
body {
  background: #f5f7fb;
  color: #152033;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.admin-bar .site-header.fixed-top { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header.fixed-top { top: 46px; } }

a { color: #0b62b4; transition: .2s ease; }
a:hover { color: #063c70; text-decoration: none; }

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.section-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  letter-spacing: -.035em;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  z-index: 9999;
  padding: .75rem 1rem;
  background: #fff;
  color: #000;
  border-radius: .5rem;
}

/* Navigation */
.site-header { transition: all .25s ease; }
.jco-navbar {
  padding: 1.05rem 0;
  background: linear-gradient(180deg, rgba(5,7,17,.94), rgba(5,7,17,.54));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled .jco-navbar {
  padding: .65rem 0;
  background: rgba(5,7,17,.96);
  box-shadow: 0 10px 38px rgba(0,0,0,.26);
}
.jco-brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  white-space: normal;
  max-width: 380px;
}
.custom-logo { max-width: 220px; height: auto; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--jco-gold), var(--jco-ember));
  color: #0b0c16;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(255, 115, 66, .32);
}
.brand-text strong { display: block; font-size: 1rem; line-height: 1.05; text-transform: uppercase; }
.brand-text small { display: block; color: rgba(255,255,255,.68); font-family: 'Inter', sans-serif; font-size: .72rem; letter-spacing: .04em; margin-top: .18rem; }
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,.78);
  font-weight: 700;
  padding-left: .85rem;
  padding-right: .85rem;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .06em;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .current-menu-item > .nav-link { color: var(--jco-white); }

/* Buttons */
.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
  padding: .85rem 1.35rem;
  white-space: normal;
}
.btn-lg { padding: 1rem 1.65rem; font-size: 1rem; }
.btn-jco {
  color: #080a14;
  background: linear-gradient(135deg, var(--jco-gold), #ff8c42);
  border: 0;
  box-shadow: 0 18px 34px rgba(255, 169, 64, .28);
}
.btn-jco:hover { color: #080a14; transform: translateY(-1px); box-shadow: 0 24px 46px rgba(255, 169, 64, .34); }
.btn-jco-sm { padding: .65rem 1.1rem; font-size: .82rem; }
.btn-outline-jco {
  color: #11172f;
  border: 2px solid rgba(17, 23, 47, .25);
  background: transparent;
}
.btn-outline-jco:hover { color: #0b0d16; border-color: var(--jco-gold); background: rgba(255, 204, 102, .16); }
.btn-outline-light { border-width: 2px; }
.text-cta { font-weight: 900; color: #0d58a6; }
.section-dark .text-cta { color: var(--jco-gold); }
.text-cta:hover { color: var(--jco-ember); }

/* Hero */
.hero-stage { background: var(--jco-ink); color: #fff; }
.hero-slide {
  min-height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,17,.88), rgba(5,7,17,.58) 52%, rgba(5,7,17,.72));
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: rotate(-1deg) scale(1.08);
}
.hero-slide .container { position: relative; z-index: 3; padding-top: 5rem; padding-bottom: 3rem; }
.hero-kicker,
.micro-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--jco-gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-kicker::before,
.micro-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.hero-slide h1,
.hero-slide h2 {
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: .88;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1.5rem;
  max-width: 1120px;
}
.hero-copy {
  color: rgba(255,255,255,.84);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 720px;
  margin-bottom: 2rem;
}
.hero-actions .btn { margin-right: .75rem; margin-bottom: .75rem; }
.hero-control { width: 6%; opacity: .6; }
.hero-indicators { bottom: 2rem; }
.hero-indicators li,
.carousel-indicators-soft li {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  border: 0;
  background-color: rgba(255,255,255,.35);
}
.hero-indicators .active,
.carousel-indicators-soft .active { background-color: var(--jco-gold); }

/* Sections */
.section-pad { padding: 6.5rem 0; }
.section-dark {
  background: radial-gradient(circle at top left, rgba(79,195,255,.12), transparent 28%), linear-gradient(135deg, #050711, #111832 58%, #080b18);
  color: #fff;
}
.section-split { background: #fff; }
.section-title {
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: .98;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-lead {
  font-size: 1.12rem;
  color: #526078;
  max-width: 820px;
}
.section-dark .section-lead,
.section-dark p { color: rgba(255,255,255,.72); }

.impact-strip {
  background: linear-gradient(90deg, #ffcc66, #ff7a45);
  color: #080a14;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.impact-number { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.5rem; opacity: .45; }
.impact-strip p { margin-bottom: 0; }

.breakthrough-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--jco-border);
  border-radius: var(--jco-radius);
  padding: 1.25rem;
  box-shadow: var(--jco-shadow);
}
.breakthrough-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  margin-bottom: 1rem;
}
.breakthrough-step:last-child { margin-bottom: 0; }
.breakthrough-step span {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--jco-gold), var(--jco-ember));
  color: #090b15;
  font-weight: 900;
}
.breakthrough-step h3 { font-size: 1.05rem; margin-bottom: .25rem; color: #fff; }
.breakthrough-step p { margin-bottom: 0; }

.offer-category-section { background: #f5f7fb; }
.category-tile,
.program-tile,
.offer-card,
.article-card,
.final-conversion-card,
.coaching-card {
  border-radius: var(--jco-radius);
  box-shadow: 0 16px 50px rgba(11, 23, 54, .08);
}
.category-tile {
  display: block;
  background: #fff;
  color: #182337;
  padding: 2rem;
  border: 1px solid rgba(15, 27, 60, .08);
  min-height: 280px;
}
.category-tile:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(11, 23, 54, .14); color: #182337; }
.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: #eef3ff;
  margin-bottom: 1.25rem;
  font-size: 1.55rem;
}
.category-tile h3 { font-size: 1.45rem; font-weight: 900; }
.category-tile p { color: #62708a; }

.program-tile {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 380px;
  padding: 2rem;
  background: linear-gradient(145deg, #0a0f24, #171f3f);
  border: 1px solid rgba(255,255,255,.12);
}
.program-tile::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
}
.program-tile h3 { position: relative; z-index: 1; font-size: 1.75rem; font-weight: 900; }
.program-tile p { position: relative; z-index: 1; color: rgba(255,255,255,.72); }
.program-tile .btn-program {
  position: relative;
  z-index: 1;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  margin-top: 1rem;
}
.program-tile .btn-program:hover { background: rgba(255,255,255,.2); color: #fff; }
.program-accent-electric { background: linear-gradient(145deg, #050711, #12365a); }
.program-accent-gold { background: linear-gradient(145deg, #100c06, #5a3d12); }
.program-accent-ember { background: linear-gradient(145deg, #120707, #632116); }
.program-accent-violet { background: linear-gradient(145deg, #090715, #3a1f69); }
.program-accent-blue { background: linear-gradient(145deg, #06101a, #114b78); }
.program-accent-green { background: linear-gradient(145deg, #04130f, #12604a); }

.jco-card-carousel { padding-bottom: 2.25rem; }
.jco-card-carousel .carousel-control-prev,
.jco-card-carousel .carousel-control-next {
  width: 46px;
  height: 46px;
  top: auto;
  bottom: -10px;
  opacity: 1;
  border-radius: 999px;
  background: #11172f;
}
.section-dark .jco-card-carousel .carousel-control-prev,
.section-dark .jco-card-carousel .carousel-control-next { background: rgba(255,255,255,.13); }
.jco-card-carousel .carousel-control-prev { left: auto; right: 58px; }
.jco-card-carousel .carousel-control-next { right: 0; }
.carousel-indicators-soft { bottom: -16px; justify-content: flex-start; margin-left: 0; margin-right: 0; }

.offer-card,
.article-card {
  overflow: hidden;
  background: #fff;
  color: #182337;
  border: 1px solid rgba(15, 27, 60, .08);
}
.section-dark .offer-card,
.section-dark .article-card { background: rgba(255,255,255,.07); color: #fff; border: 1px solid var(--jco-border); }
.offer-card-image,
.article-card-image {
  display: block;
  height: 220px;
  overflow: hidden;
  background: #121a35;
}
.offer-card-image img,
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.offer-card:hover img,
.article-card:hover img { transform: scale(1.05); }
.offer-card-body,
.article-card-body { padding: 1.6rem; }
.offer-card h3 a,
.article-card h3 a { color: inherit; }
.offer-card p,
.article-card p { color: #62708a; }
.section-dark .offer-card p,
.section-dark .article-card p { color: rgba(255,255,255,.68); }
.fallback-product-image,
.fallback-article-image {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 24% 30%, rgba(255,204,102,.55), transparent 26%),
    radial-gradient(circle at 80% 70%, rgba(79,195,255,.26), transparent 30%),
    linear-gradient(135deg, #101736, #0a0f24);
}
.fallback-article-image {
  background:
    radial-gradient(circle at 24% 30%, rgba(138,92,246,.45), transparent 26%),
    radial-gradient(circle at 80% 70%, rgba(255,91,69,.24), transparent 30%),
    linear-gradient(135deg, #101736, #0a0f24);
}

.coaching-band {
  background: linear-gradient(180deg, #fff 0%, #f5f7fb 100%);
}
.coaching-card {
  color: #fff;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 15% 15%, rgba(255,204,102,.40), transparent 25%),
    linear-gradient(135deg, #070a17, #182c58 56%, #34162f);
  box-shadow: var(--jco-shadow);
}
.coaching-card p { color: rgba(255,255,255,.78); font-size: 1.08rem; }
.coaching-card h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1; font-weight: 900; text-transform: uppercase; }

.article-section { background: #f5f7fb; }
.empty-state {
  background: #fff;
  border-radius: var(--jco-radius);
  padding: 3rem;
  text-align: center;
  border: 1px dashed rgba(15,27,60,.22);
}
.final-conversion-section {
  background: radial-gradient(circle at 50% 0%, rgba(255,204,102,.18), transparent 26%), #fff;
}
.final-conversion-card {
  background: #080b18;
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  position: relative;
}
.final-conversion-card::before,
.final-conversion-card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .45;
}
.final-conversion-card::before { width: 260px; height: 260px; left: -100px; top: -100px; background: var(--jco-ember); }
.final-conversion-card::after { width: 220px; height: 220px; right: -90px; bottom: -90px; background: var(--jco-blue); }
.final-conversion-card > * { position: relative; z-index: 1; }
.final-conversion-card h2 { font-size: clamp(2.2rem, 4vw, 4.7rem); line-height: .98; font-weight: 900; text-transform: uppercase; }
.final-conversion-card p { color: rgba(255,255,255,.76); max-width: 760px; margin-left: auto; margin-right: auto; font-size: 1.1rem; }

/* Footer */
.site-footer { background: #050711; color: rgba(255,255,255,.72); }
.footer-cta { background: linear-gradient(135deg, #11172f, #0a0f24); color: #fff; }
.footer-main { background: #050711; }
.footer-brand { display: inline-flex; align-items: center; gap: .75rem; color: #fff; }
.footer-copy { color: rgba(255,255,255,.66); }
.footer-heading { color: #fff; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.footer-menu li { margin-bottom: .5rem; }
.footer-menu a { color: rgba(255,255,255,.66); }
.footer-menu a:hover { color: var(--jco-gold); }
.footer-rule { border-top-color: rgba(255,255,255,.10); margin: 2rem 0; }
.footer-bottom { color: rgba(255,255,255,.52); }

/* Content templates */
.page-hero,
.archive-hero {
  padding: 10rem 0 5rem;
  background: radial-gradient(circle at top left, rgba(255,204,102,.22), transparent 30%), linear-gradient(135deg, #050711, #141a34);
  color: #fff;
}
.content-wrap { padding: 4rem 0; }
.entry-title { font-size: clamp(2.3rem, 5vw, 4.8rem); line-height: 1; font-weight: 900; text-transform: uppercase; }
.entry-content img { max-width: 100%; height: auto; border-radius: 18px; }
.post-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 16px 50px rgba(11, 23, 54, .08);
  border: 1px solid rgba(15, 27, 60, .08);
}
.post-card + .post-card { margin-top: 1.5rem; }
.post-card h2 { font-size: 1.5rem; font-weight: 900; }
.post-card h2 a { color: #11172f; }

/* WooCommerce nudges */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #fff;
  padding: 1rem 1rem 1.35rem;
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(11,23,54,.08);
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--jco-gold), #ff8c42);
  color: #080a14;
  font-weight: 900;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover { background: linear-gradient(135deg, #ffd989, #ff9b5d); color: #080a14; }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(5,7,17,.98);
    border-radius: 18px;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.10);
  }
  .section-pad { padding: 4.25rem 0; }
  .hero-slide .container { padding-top: 7rem; }
}
@media (max-width: 767.98px) {
  .hero-slide h1,
  .hero-slide h2 { font-size: clamp(2.6rem, 16vw, 4.6rem); }
  .btn-lg { width: 100%; }
  .hero-actions .btn { margin-right: 0; }
  .jco-card-carousel .carousel-control-prev,
  .jco-card-carousel .carousel-control-next { display: none; }
  .offer-card-image,
  .article-card-image { height: 190px; }
  .coaching-card .btn { width: 100%; margin-left: 0 !important; }
}
