/*
 * SkillMight front design system (M1-T07 / T08)
 * Typography matches live/main: Inter (loaded by style-min.css) + Mulish.
 * Replaces @tailwindcss/browser CDN utilities used by front Blade views.
 */

:root,
[data-theme="dark"] {
  --sm-white: #ffffff;
  --sm-black: #000000;
  --sm-green: #19352a;       /* Phthalo Green */
  --sm-green-dark: #0e1d17;  /* Cinder */
  --sm-yellow: #e9cb67;      /* Arylide Yellow */
  --sm-orange: #fd650a;      /* Blaze Orange */
  --sm-teal: #2e898c;        /* Dusty Teal */
  --sm-bermuda: #90d6b1;     /* Bermuda */
  --sm-text: rgba(242, 233, 211, 0.7);
  --sm-title: #0e1d17;
  --sm-border: rgba(255, 255, 255, 0.2);
  --sm-page-bg: #19352a;
  --sm-surface: rgba(14, 29, 23, 0.6);
  --sm-heading: #ffffff;
  --sm-muted: rgba(255, 255, 255, 0.8);
  --sm-pattern: url("../images/brand/brand-pattern.png");
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}

[data-theme="light"] {
  --sm-page-bg: #eef3f0;
  --sm-green: #19352a;
  --sm-green-dark: #0e1d17;
  --sm-text: rgba(14, 29, 23, 0.78);
  --sm-title: #0e1d17;
  --sm-border: rgba(25, 53, 42, 0.14);
  --sm-surface: #ffffff;
  --sm-heading: #0e1d17;
  --sm-muted: rgba(14, 29, 23, 0.68);
}

html {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
}

/*
 * Minimal Tailwind Preflight replacement.
 * Live still loads @tailwindcss/browser - without these resets, UA heading/paragraph
 * margins add extra gaps vs ksgam.com.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
hr {
  margin: 0;
}

body {
  font-family: "Inter", sans-serif !important;
  background-color: var(--sm-page-bg) !important;
  color: var(--sm-text);
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* Kill UA blue/purple underlined links (Tailwind used to mask this) */
a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.main_header nav a,
.main_header .content a,
.mobile_menu .content a {
  color: rgba(242, 233, 211, 0.7);
  text-decoration: none !important;
  font-weight: 500;
}
.main_header nav a:hover,
.mobile_menu .content a:hover {
  color: #ffffff;
}

.main_footer a,
.main_footer a:link,
.main_footer a:visited {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none !important;
}
.main_footer a:hover {
  color: var(--sm-orange);
}

/* Logos: white on dark theme, black on light */
.sm-logo-on-light { display: none !important; }
.sm-logo-on-dark { display: inline-block !important; }
[data-theme="light"] .sm-logo-on-dark { display: none !important; }
[data-theme="light"] .sm-logo-on-light { display: inline-block !important; }

/* Section full-bleed backgrounds (replace Tailwind bg-[url(...)] ) */
.sm-bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero_one.sm-bg-cover {
  background-color: #0e1d17;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}
/* Homepage cutout: fill viewport height, keep 16:9 aspect (match ksgam.com) */
.hero_one.sm-bg-cover > img.absolute {
  height: 100% !important;
  width: auto !important;
  max-width: none !important;
  object-fit: unset !important;
  object-position: bottom right;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}
.hero_one.sm-list-hero,
.sm-list-hero {
  min-height: 0 !important;
  max-height: none !important;
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible;
}
.quiz_one > img.absolute {
  object-position: bottom left;
}
.quiz_one > img.absolute,
.skill_one > img.absolute {
  height: 100% !important;
  width: auto !important;
  max-width: none !important;
  object-fit: unset !important;
  pointer-events: none;
  z-index: 1;
}
.quiz_one > img.absolute {
  object-position: bottom left;
}
/* About hero stays cinematic (short teaser only) */
.hero_one.sm-bg-cover.about-hero {
  max-height: 100vh;
  overflow: hidden;
}
.hero_one.sm-bg-cover > img.about-visual {
  height: calc(100vh - 7.5rem) !important;
  max-height: calc(100vh - 7.5rem) !important;
  width: auto !important;
  max-width: min(48vw, 640px) !important;
  object-fit: contain !important;
  object-position: right center !important;
  top: 7.5rem !important;
  bottom: auto !important;
  right: 0;
  pointer-events: none;
  z-index: 1;
}
.hero_one .about-hero-kicker {
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.35;
}
.hero_one .about-hero-copy p {
  margin: 0;
  line-height: 1.7;
}
.hero_one > .max-w-7xl,
.quiz_one > .max-w-7xl,
.skill_one > .max-w-7xl {
  position: relative;
  z-index: 2;
}
/* Partner logo strip - match live height/containment inside Swiper slides */
.logo_slider {
  width: 100%;
  max-width: 48rem;
  margin-left: 0 !important;
  overflow: hidden;
}
.logo_slider .swiper-slide {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}
.logo_slider img,
.logo_slider img.h-10 {
  height: 40px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  /* Monochrome white logos on dark hero (matches live strip look) */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.logo_slider img[src=""],
.logo_slider img.broken {
  display: none !important;
}

[data-theme="light"] .main_header.active,
[data-theme="light"] .mobile_menu {
  background-color: rgba(255, 255, 255, 0.96) !important;
  color: var(--sm-title);
}

/* Theme toggle */
.sm-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid var(--sm-bermuda);
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.sm-theme-toggle:hover {
  background: var(--sm-bermuda);
  color: #0e1d17;
}
[data-theme="light"] .sm-theme-toggle {
  color: #19352a;
  border-color: #2e898c;
}
[data-theme="light"] .sm-theme-toggle:hover {
  background: #90d6b1;
  color: #0e1d17;
}

/* Brand logo sizing */
.sm-brand-logo {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .sm-brand-logo {
    height: 3rem;
  }
}

/* ========== LIGHT THEME (full pass) ========== */
[data-theme="light"] {
  --sm-page-bg: #eef3f0;
  --sm-text: rgba(14, 29, 23, 0.78);
  --sm-heading: #0e1d17;
  --sm-muted: rgba(14, 29, 23, 0.68);
  --sm-border: rgba(25, 53, 42, 0.14);
  --sm-surface: #ffffff;
}

[data-theme="light"] body {
  background-color: var(--sm-page-bg) !important;
  color: var(--sm-text) !important;
}

/* Light header: always readable bar */
[data-theme="light"] .main_header,
[data-theme="light"] .main_header.active {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(14, 29, 23, 0.08);
  border-bottom: 1px solid rgba(25, 53, 42, 0.08);
}
[data-theme="light"] .main_header nav a,
[data-theme="light"] .main_header nav a:link,
[data-theme="light"] .main_header nav a:visited,
[data-theme="light"] .mobile_menu .content a {
  color: #0e1d17 !important;
}
[data-theme="light"] .main_header nav a:hover,
[data-theme="light"] .mobile_menu .content a:hover {
  color: #2e898c !important;
}
[data-theme="light"] .main_header a.btn_two {
  color: #0e1d17 !important;
  background: transparent !important;
  border: 1.5px solid rgba(25, 53, 42, 0.35);
}
[data-theme="light"] .main_header a.btn_two:hover {
  background: #19352a !important;
  color: #fff !important;
}
[data-theme="light"] .main_header .menu_btn {
  color: #0e1d17 !important;
  border-color: #2e898c !important;
}
[data-theme="light"] .mobile_menu {
  background: rgba(255, 255, 255, 0.97) !important;
}

/* Hero / quiz / skill stay cinematic dark in both themes.
   Force light text so CMS inline colors (e.g. style="color:#1b1c1d") cannot win. */
.hero_one,
.quiz_one,
.skill_one {
  color: rgba(255, 255, 255, 0.9) !important;
}
.hero_one *:not(a.btn_one):not(a.btn_two):not(.btn):not(.bg-clip-text),
.quiz_one *:not(a.btn_one):not(a.btn_two):not(.btn):not(.bg-clip-text),
.skill_one *:not(a.btn_one):not(a.btn_two):not(.btn):not(.bg-clip-text),
.hero_one .about-hero-copy,
.hero_one .about-hero-copy * {
  color: rgba(255, 255, 255, 0.9) !important;
}
.hero_one a.btn_one,
.quiz_one a.btn_one,
.skill_one a.btn_one,
.hero_one a.btn_one *,
.quiz_one a.btn_one *,
.skill_one a.btn_one * {
  color: #ffffff !important;
}
.hero_one h1:not(.bg-clip-text),
.hero_one h2,
.hero_one h3,
.hero_one h4,
.hero_one h5,
.hero_one h6,
.hero_one .about-hero-copy h1,
.hero_one .about-hero-copy h2,
.hero_one .about-hero-copy h3,
.hero_one .about-hero-copy strong,
.quiz_one h1:not(.bg-clip-text),
.quiz_one h2,
.quiz_one h3,
.skill_one h1:not(.bg-clip-text),
.skill_one h2,
.skill_one h3 {
  color: #ffffff !important;
}
.hero_one .bg-clip-text,
.quiz_one .bg-clip-text,
.skill_one .bg-clip-text,
[data-theme="light"] .hero_one .bg-clip-text,
[data-theme="light"] .quiz_one .bg-clip-text,
[data-theme="light"] .skill_one .bg-clip-text {
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* About page surfaces (below cinematic hero) */
.about-highlights {
  background: #0e1d17;
}
.about-highlight-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  color: rgba(255, 255, 255, 0.88);
}
.about-highlight-text,
.about-highlight-text * {
  color: rgba(255, 255, 255, 0.88) !important;
}
.about-intro {
  background: #12261d;
}
.about-intro-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
}
.about-intro-copy,
.about-intro-copy * {
  color: rgba(255, 255, 255, 0.88) !important;
}
.about-intro-copy h2 {
  color: #ffffff !important;
}
[data-theme="light"] .about-highlights,
[data-theme="light"] .about-intro {
  background: #eef3f0 !important;
}
[data-theme="light"] .about-highlight-card,
[data-theme="light"] .about-intro-card {
  background: #ffffff !important;
  border-color: rgba(25, 53, 42, 0.12) !important;
  box-shadow: 0 10px 28px rgba(14, 29, 23, 0.06);
  color: #0e1d17 !important;
}
[data-theme="light"] .about-highlight-text,
[data-theme="light"] .about-highlight-text *,
[data-theme="light"] .about-intro-copy,
[data-theme="light"] .about-intro-copy * {
  color: rgba(14, 29, 23, 0.82) !important;
}
[data-theme="light"] .about-intro-copy h2 {
  color: #19352a !important;
}
/* Collapse CMS <br> spam in Introduction */
.about-intro-copy #intro11 {
  display: block;
  line-height: 1.7;
}
.about-intro-copy #intro11 br + br {
  display: none;
}
.about-intro-media {
  max-height: 360px;
  background: rgba(14, 29, 23, 0.08);
}
.about-intro-media video {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  background: #0e1d17;
}
.about-connect {
  background: #12261d;
}
.about-connect-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
}
.about-connect-card h2 {
  color: #ffffff;
}
.about-connect-card .about-story-lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
[data-theme="light"] .about-connect {
  background: #eef3f0 !important;
}
[data-theme="light"] .about-connect-card {
  background: #ffffff !important;
  border-color: rgba(25, 53, 42, 0.12) !important;
  box-shadow: 0 10px 28px rgba(14, 29, 23, 0.06);
}
[data-theme="light"] .about-connect-card h2 {
  color: #19352a !important;
}
[data-theme="light"] .about-connect-card .about-story-lead {
  color: rgba(14, 29, 23, 0.82) !important;
}

/* About structured story sections */
.about-story {
  background: #0e1d17;
}
.about-story-alt {
  background: #12261d;
}
.about-story-head h2,
.about-story-card h2,
.about-story-card h3 {
  color: #ffffff;
}
.about-story-lead,
.about-story-card p,
.about-story-prose,
.about-story-prose * {
  color: rgba(255, 255, 255, 0.82) !important;
}
.about-story-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
}
.about-story-prose h3 {
  color: #ffffff !important;
  font-size: 1.125rem;
  margin: 1.25rem 0 0.5rem;
}
.about-story-prose p,
.about-story-prose li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.about-story-prose ul {
  padding-left: 1.25rem;
  list-style: disc;
}
.about-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-why-list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}
.about-why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #2e898c;
}
[data-theme="light"] .about-story,
[data-theme="light"] .about-story-alt {
  background: #eef3f0 !important;
}
[data-theme="light"] .about-story-head h2,
[data-theme="light"] .about-story-card h2,
[data-theme="light"] .about-story-card h3,
[data-theme="light"] .about-story-prose h3 {
  color: #19352a !important;
}
[data-theme="light"] .about-story-lead,
[data-theme="light"] .about-story-card p,
[data-theme="light"] .about-story-prose,
[data-theme="light"] .about-story-prose *,
[data-theme="light"] .about-why-list li {
  color: rgba(14, 29, 23, 0.82) !important;
}
[data-theme="light"] .about-story-card {
  background: #ffffff !important;
  border-color: rgba(25, 53, 42, 0.12) !important;
  box-shadow: 0 10px 28px rgba(14, 29, 23, 0.06);
}
[data-theme="light"] .about-why-list li::before {
  background: #2e898c;
}

/* Stats bar */
[data-theme="light"] .stats_one {
  background: #ffffff !important;
  border-top: 1px solid rgba(25, 53, 42, 0.08);
  border-bottom: 1px solid rgba(25, 53, 42, 0.08);
}
[data-theme="light"] .stats_one .text-white,
[data-theme="light"] .stats_one p {
  color: #0e1d17 !important;
}
[data-theme="light"] .stats_one .bg-clip-text {
  background-image: linear-gradient(to bottom right, #19352a, #2e898c) !important;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Education sections: light surfaces */
[data-theme="light"] .learn_one,
[data-theme="light"] .explore_one,
[data-theme="light"] .testimonial_one,
[data-theme="light"] .sm-home-earners {
  background-image: none !important;
  background-color: #eef3f0 !important;
}
[data-theme="light"] .learn_one h2,
[data-theme="light"] .explore_one h2,
[data-theme="light"] .testimonial_one h2,
[data-theme="light"] .sm-home-earners h2 {
  background: none !important;
  -webkit-text-fill-color: #19352a !important;
  color: #19352a !important;
}
[data-theme="light"] .learn_one > .max-w-7xl > .text-center > p,
[data-theme="light"] .explore_one p,
[data-theme="light"] .testimonial_one > .max-w-7xl > .text-center > p,
[data-theme="light"] .sm-home-earners p.text-white\/80 {
  color: rgba(14, 29, 23, 0.72) !important;
}
[data-theme="light"] .learn_item_one {
  background: #ffffff !important;
  box-shadow: 0 10px 28px rgba(14, 29, 23, 0.06);
}
[data-theme="light"] .learn_item_one h3 {
  height: auto !important;
  min-height: 4.5rem;
}
[data-theme="light"] .explore_one .btn_two {
  color: #0e1d17 !important;
  background: #ffffff !important;
}
[data-theme="light"] .testimonial_item_one {
  background: #ffffff !important;
}
[data-theme="light"] .testimonial_item_one p {
  color: rgba(14, 29, 23, 0.78) !important;
}
[data-theme="light"] .sm-home-earners .sm-earner-card {
  background: #ffffff;
  border-color: rgba(25, 53, 42, 0.12);
}
[data-theme="light"] .sm-home-earners .text-white,
[data-theme="light"] .sm-home-earners .sm-earner-card .text-white {
  color: #0e1d17 !important;
}

/* Keep quiz / final CTA cinematic dark */
[data-theme="light"] .quiz_one,
[data-theme="light"] .skill_one {
  color: rgba(242, 233, 211, 0.7);
}

/* Footer: remain brand-dark for contrast */
[data-theme="light"] .main_footer {
  background-color: #0e1d17 !important;
  color: rgba(255, 255, 255, 0.8) !important;
}
[data-theme="light"] .main_footer h6,
[data-theme="light"] .main_footer .text-white,
[data-theme="light"] .main_footer p {
  color: #ffffff !important;
}
[data-theme="light"] .main_footer a {
  color: rgba(255, 255, 255, 0.8) !important;
}
[data-theme="light"] .main_footer a:hover {
  color: #fd650a !important;
}
[data-theme="light"] .main_footer .bg-green {
  background-color: rgba(144, 214, 177, 0.25) !important;
}

/* Public page shells */
[data-theme="light"] .sm-page-hero {
  background:
    linear-gradient(180deg, rgba(238, 243, 240, 0.92), rgba(238, 243, 240, 0.96)),
    var(--sm-pattern) center / 420px repeat,
    #dfe8e3;
}
[data-theme="light"] .sm-page-hero h1 {
  background: none;
  -webkit-text-fill-color: #19352a;
  color: #19352a;
}
[data-theme="light"] .sm-page-hero p,
[data-theme="light"] .sm-page-hero .text-white\/80,
[data-theme="light"] .sm-page-hero .text-white {
  color: rgba(14, 29, 23, 0.72) !important;
}
[data-theme="light"] .sm-surface-card,
[data-theme="light"] .sm-activation .sm-vendor-table {
  background: #ffffff;
  color: #0e1d17;
  border-color: rgba(25, 53, 42, 0.12);
}
[data-theme="light"] .sm-surface-card h1,
[data-theme="light"] .sm-surface-card h2,
[data-theme="light"] .sm-surface-card h3,
[data-theme="light"] .sm-surface-card h4,
[data-theme="light"] .sm-surface-card .text-white,
[data-theme="light"] .sm-surface-card .text-white\/80,
[data-theme="light"] .sm-surface-card .form-label {
  color: #0e1d17 !important;
}
[data-theme="light"] .sm-surface-card p {
  color: rgba(14, 29, 23, 0.78) !important;
}
[data-theme="light"] .sm-activation .sm-vendor-table th,
[data-theme="light"] .sm-activation .sm-vendor-table td {
  color: #0e1d17;
}
[data-theme="light"] .sm-activation .sm-cat-title {
  color: #19352a;
}
[data-theme="light"] .form-group .form-control {
  color: #0e1d17;
  border-color: rgba(25, 53, 42, 0.2);
  background: #fff;
}
[data-theme="light"] .form-group .form-control::placeholder {
  color: rgba(14, 29, 23, 0.45);
}
[data-theme="light"] .sm-page-shell {
  background: #eef3f0;
  color: #0e1d17;
}
.sm-top-earners.sm-page-shell,
.sm-activation.sm-page-shell,
.sm-course-details.sm-page-shell {
  background: transparent;
}
[data-theme="light"] .sm-top-earners.sm-page-shell,
[data-theme="light"] .sm-activation.sm-page-shell,
[data-theme="light"] .sm-course-details.sm-page-shell {
  background: #eef3f0;
}

/* Top Earners public page */
.sm-top-earners .sm-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.sm-top-earners .sm-podium-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1.35rem;
  min-width: 160px;
  max-width: 220px;
  color: #fff;
}
.sm-top-earners .sm-podium-card.rank-1 {
  order: 2;
  transform: translateY(-12px);
  border-color: var(--sm-yellow);
  box-shadow: 0 12px 32px rgba(233, 203, 103, 0.18);
}
.sm-top-earners .sm-podium-card.rank-2 { order: 1; }
.sm-top-earners .sm-podium-card.rank-3 { order: 3; }
.sm-top-earners .sm-podium-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0.5rem auto;
  display: block;
  background: rgba(255, 255, 255, 0.08);
}
.sm-top-earners .sm-podium-card.rank-1 img {
  width: 110px;
  height: 110px;
}
.sm-top-earners .sm-rank-badge {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--sm-yellow);
  margin-bottom: 0.25rem;
}
.sm-top-earners .person-name {
  color: #fff;
  font-size: 1rem;
  margin: 0.35rem 0 0.2rem;
  line-height: 1.3;
}
.sm-top-earners .sm-earners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}
.sm-top-earners .sm-earner-tile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  padding: 0.95rem 1.1rem;
  min-height: 84px;
}
.sm-top-earners .sm-rank-chip {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(253, 101, 10, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.sm-top-earners .sm-earner-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
}
.sm-top-earners .sm-earner-meta {
  min-width: 0;
  padding-right: 2rem;
}
.sm-top-earners .sm-earner-name {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.2rem;
  word-break: break-word;
}
.sm-top-earners .sm-earner-pts {
  font-size: 0.85rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.75);
}
[data-theme="light"] .sm-top-earners .sm-podium-card {
  background: #ffffff;
  border-color: rgba(25, 53, 42, 0.12);
  color: #0e1d17;
  box-shadow: 0 10px 28px rgba(14, 29, 23, 0.06);
}
[data-theme="light"] .sm-top-earners .sm-podium-card.rank-1 {
  border-color: #c9a63a;
}
[data-theme="light"] .sm-top-earners .sm-rank-badge {
  color: #b8860b;
}
[data-theme="light"] .sm-top-earners .person-name,
[data-theme="light"] .sm-top-earners .sm-earner-name {
  color: #0e1d17 !important;
}
[data-theme="light"] .sm-top-earners .sm-earner-pts,
[data-theme="light"] .sm-top-earners .sm-podium-card p {
  color: rgba(14, 29, 23, 0.7) !important;
}

/* FAQ accordion readability in both themes */
.accordion-item.sm-surface-card {
  overflow: hidden;
}
.accordion-item .accordion-button {
  background: transparent;
  color: var(--sm-heading);
  box-shadow: none;
  font-weight: 600;
}
.accordion-item .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--sm-heading);
  box-shadow: none;
}
.accordion-item .accordion-body,
.accordion-item .accordion-body p {
  color: var(--sm-text);
}
[data-theme="light"] .accordion-item .accordion-button,
[data-theme="light"] .accordion-item .accordion-button:not(.collapsed) {
  color: #0e1d17;
}
[data-theme="light"] .accordion-item .accordion-body,
[data-theme="light"] .accordion-item .accordion-body p {
  color: rgba(14, 29, 23, 0.78);
}

/* Soften native scrollbar (style.css used blaze-orange thumb = looks like a page stripe) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(144, 214, 177, 0.45);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(253, 101, 10, 0.65);
  background-clip: padding-box;
}
[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: rgba(25, 53, 42, 0.28);
  background-clip: padding-box;
}
[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
  background: rgba(253, 101, 10, 0.7);
  background-clip: padding-box;
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(144, 214, 177, 0.55) transparent;
}
[data-theme="light"] * {
  scrollbar-color: rgba(25, 53, 42, 0.3) transparent;
}

/* ---------- Layout utilities (Tailwind CDN replacement) ---------- */
.container { width: 100%; margin-left: auto; margin-right: auto; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.ml-0\!, .ml-0 { margin-left: 0 !important; }
.ml-2 { margin-left: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-48 { padding-bottom: 12rem; }
.pb-70 { padding-bottom: 17.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mr-2 { margin-right: 0.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.p-0 { padding: 0; }
.p-3 { padding: 0.75rem; }
.p-5 { padding: 1.25rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.flex-1 { flex: 1 1 0%; }
.max-w-4xl { max-width: 56rem; }
.w-5 { width: 1.25rem; }
.w-12 { width: 3rem; }
.w-24 { width: 6rem; }
.h-24 { height: 6rem; }
.leading-5 { line-height: 1.25rem; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: 0.025em; }
.text-transparent { color: transparent; }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.min-w-\[200px\] { min-width: 200px; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-1 { height: 0.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-64 { height: 16rem; }
.h-\[300px\] { height: 300px; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-7xl { height: 100%; }
.size-4 { width: 1rem; height: 1rem; }
.size-96 { width: 24rem; height: 24rem; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.space-y-0\.5 > * + * { margin-top: 0.125rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.-left-full { left: -100%; }
.z-10 { z-index: 10; }
.z-98 { z-index: 98; }
.z-999 { z-index: 999; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-contain\!, .object-contain { object-fit: contain !important; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.rounded-full { border-radius: 9999px; }
.rounded-3xl { border-radius: 1.5rem; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-transparent { border-color: transparent; }
.border-border { border-color: var(--sm-border); }
.border-t-bermuda { border-top-color: var(--sm-bermuda); }
.border-r-bermuda { border-right-color: var(--sm-bermuda); }
.bg-black { background-color: #000; }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-white { background-color: #fff; }
.bg-green { background-color: var(--sm-green); }
.bg-greenDark { background-color: var(--sm-green-dark); }
.bg-yellow { background-color: var(--sm-yellow); }
.bg-bermuda { background-color: var(--sm-bermuda); }
.bg-cover { background-size: cover; }
.bg-no-repeat { background-repeat: no-repeat; }
.bg-right { background-position: right center; }
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-linear-to-br.from-white.to-bermuda,
.bg-linear-to-b.from-white.to-bermuda {
  background-image: linear-gradient(to bottom right, #ffffff, var(--sm-bermuda));
}
.bg-linear-to-b.from-white.to-bermuda {
  background-image: linear-gradient(to bottom, #ffffff, var(--sm-bermuda));
}
.bg-linear-to-r.from-white.to-bermuda {
  background-image: linear-gradient(to right, #ffffff, var(--sm-bermuda));
}
.bg-linear-to-br.from-white.to-yellow,
.bg-linear-to-b.from-white.to-yellow {
  background-image: linear-gradient(to bottom right, #ffffff, var(--sm-yellow));
}
.bg-linear-to-r.from-yellow.to-green {
  background-image: linear-gradient(to right, var(--sm-yellow), var(--sm-green));
}
.bg-linear-to-b.from-bermuda.to-green {
  background-image: linear-gradient(to bottom, var(--sm-bermuda), var(--sm-green));
}
.text-white { color: #fff; }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.tracking-tight { letter-spacing: -0.025em; }
.text-bermuda { color: var(--sm-bermuda); }
.text-orange { color: var(--sm-orange); }
.text-yellow { color: var(--sm-yellow); }
.text-green { color: var(--sm-green); }
.text-title\/80 { color: rgba(14, 29, 23, 0.8); }
.line-clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.aspect-video { aspect-ratio: 16 / 9; }
.opacity-0 { opacity: 0; }
.invisible { visibility: hidden; }
.transition-all { transition-property: all; }
.duration-100 { transition-duration: 100ms; }
.duration-300 { transition-duration: 300ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.blur-3xl { filter: blur(64px); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.animate-spin { animation: sm-spin 1s linear infinite; }
.animate-ping { animation: sm-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes sm-spin { to { transform: rotate(360deg); } }
@keyframes sm-ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .hidden.md\:block,
  .md\:block.hidden { display: block !important; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:p-6 { padding: 1.5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:min-h-screen { min-height: 100vh; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:pt-24 { padding-top: 6rem; }
  .md\:pt-36 { padding-top: 9rem; }
  .md\:pt-32 { padding-top: 8rem; }
  .md\:pb-10 { padding-bottom: 2.5rem; }
  .md\:pb-24 { padding-bottom: 6rem; }
  .md\:mb-5 { margin-bottom: 1.25rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:left-0 { left: 0; }
  .md\:bg-center { background-position: center; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:max-w-xl { max-width: 36rem; }
  .md\:max-w-3xl { max-width: 48rem; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden\!, .lg\:hidden { display: none !important; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-\[260px_1fr\] { grid-template-columns: 260px 1fr; }
  .lg\:h-12 { height: 3rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}

/*
 * Live @tailwindcss/browser uses :where() for utilities, so style-min heading
 * metrics (line-height 1.15) win. Our static utilities are normal specificity and
 * were overriding that - restore live heading rhythm.
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.03em;
  font-weight: 700;
}
:is(h1, h2, h3, h4, h5, h6)[class*="text-"] {
  line-height: 1.15;
}

/* Homepage earning / top earners insert */
.sm-home-earners {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--sm-green-dark), var(--sm-green));
}
.sm-home-earners .sm-podium-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.sm-home-earners .sm-earner-card {
  text-align: center;
  min-width: 140px;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--sm-border);
}
.sm-home-earners .sm-earner-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0.5rem auto;
}
.sm-home-earners .sm-earner-card.rank-1 {
  border-color: var(--sm-yellow);
  transform: translateY(-10px);
}

/* Activation vendors */
.sm-activation .sm-vendor-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--sm-surface);
  border-radius: 1rem;
  overflow: hidden;
}
.sm-activation .sm-vendor-table th,
.sm-activation .sm-vendor-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--sm-border);
  color: var(--sm-heading);
  text-align: left;
  font-size: 0.9rem;
}
.sm-activation .sm-vendor-table th {
  background: rgba(144, 214, 177, 0.12);
  color: var(--sm-bermuda);
  font-weight: 600;
}
.sm-activation .sm-cat-title {
  color: var(--sm-yellow);
  margin: 2rem 0 1rem;
  font-size: 1.35rem;
}
.sm-activation .btn_wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid #25d366;
  font-weight: 600;
  font-size: 0.85rem;
}
.sm-activation .btn_wa:hover {
  background: #25d366;
  color: #0e1d17;
}

/* Contact / legal page brand shell */
.sm-page-hero {
  padding: 7.5rem 1rem 2.75rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(14, 29, 23, 0.55), rgba(25, 53, 42, 0.85)),
    var(--sm-pattern) center / 420px repeat,
    var(--sm-green);
}
.sm-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(to bottom right, #fff, var(--sm-bermuda));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sm-page-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1rem 4.5rem;
}
.sm-hero-richtext p {
  margin: 0 0 0.75rem;
  color: inherit;
}
.sm-hero-richtext p:last-child {
  margin-bottom: 0;
}

/* Course details (secondary-page shell) */
.sm-course-details .sm-course-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .sm-course-details .sm-course-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }
}
.sm-course-cover {
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(14, 29, 23, 0.08);
}
.sm-course-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.sm-course-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sm-course-facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--sm-border);
  font-size: 0.92rem;
}
.sm-course-facts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.sm-course-facts span {
  color: var(--sm-muted);
}
.sm-course-facts strong {
  color: var(--sm-heading);
  text-align: right;
}
.sm-course-content-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.sm-course-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--sm-muted);
}
.sm-course-list .sm-lesson-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--sm-border);
  cursor: pointer;
}
.sm-course-list .sm-lesson-item:last-child {
  border-bottom: 0;
}
.sm-course-list .videoTitle {
  color: var(--sm-heading);
  font-weight: 600;
}
.sm-lesson-type {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fd650a;
}
.sm-course-overview,
.sm-course-overview * {
  color: var(--sm-text);
}
.sm-course-overview h1,
.sm-course-overview h2,
.sm-course-overview h3,
.sm-course-overview h4,
.sm-course-overview h5,
.sm-course-overview h6 {
  color: var(--sm-heading);
}
.sm-course-overview img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
.sm-course-player-wrap .videoPlayer,
.sm-course-player-wrap .docViewer {
  width: 100%;
}
.sm-course-player-wrap video {
  width: 100%;
  max-height: 420px;
  background: #0e1d17;
  border-radius: 0.75rem;
}
.sm-course-locked {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}
.sm-course-locked p {
  color: var(--sm-muted);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.w-full { width: 100%; }
.d-none { display: none !important; }
[data-theme="light"] .sm-course-details .sm-page-shell,
[data-theme="light"] .sm-course-details {
  color: #0e1d17;
}

.sm-surface-card {
  background: var(--sm-surface);
  border: 1px solid var(--sm-border);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(12px);
}

/* Keep live learn card sizing from style-min; only theme text in light mode */
[data-theme="light"] .learn_item_one h3,
[data-theme="light"] .learn_item_one p {
  color: #0e1d17 !important;
}
[data-theme="light"] .explore_one .btn_two:hover {
  background: #19352a !important;
  color: #fff !important;
}

.btn,
.btn_one,
a.btn_one,
button.btn_one {
  color: #ffffff !important;
  overflow: hidden;
  isolation: isolate;
}
.btn:before {
  max-width: 100%;
}
[data-theme="light"] .sm-page-shell .btn_one,
[data-theme="light"] .sm-surface-card .btn_one,
[data-theme="light"] .about-intro .btn_one,
[data-theme="light"] form .btn_one {
  background-color: #fd650a !important;
  color: #ffffff !important;
}
[data-theme="light"] .sm-page-shell .btn_one:hover,
[data-theme="light"] .sm-surface-card .btn_one:hover,
[data-theme="light"] form .btn_one:hover {
  background-color: #e05500 !important;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
.hero_one,
.sm-page-hero,
.sm-page-shell,
.main_footer {
  overflow-x: hidden;
}

/* ========== Mobile / tablet safety ========== */
@media (max-width: 991px) {
  .sm-course-details .sm-course-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .sm-course-aside {
    order: -1;
  }
}

@media (max-width: 767px) {
  .hero_one.sm-list-hero,
  .sm-list-hero {
    padding-top: 6.25rem !important;
    padding-bottom: 2rem !important;
  }
  .hero_one.sm-bg-cover.about-hero {
    max-height: none;
    min-height: auto;
    overflow: visible;
  }
  .about-hero > .max-w-7xl > div {
    min-height: 0 !important;
    padding-top: 6.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .sm-page-shell {
    padding: 1.25rem 1rem 3rem;
  }
  .sm-surface-card {
    padding: 1.25rem;
    border-radius: 1.15rem;
  }

  /* Top Earners: stack podium cleanly */
  .sm-top-earners .sm-podium {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }
  .sm-top-earners .sm-podium-card {
    width: 100%;
    max-width: 280px;
    min-width: 0;
  }
  .sm-top-earners .sm-podium-card.rank-1 {
    order: 1;
    transform: none;
  }
  .sm-top-earners .sm-podium-card.rank-2 { order: 2; }
  .sm-top-earners .sm-podium-card.rank-3 { order: 3; }
  .sm-top-earners .sm-earners-grid {
    grid-template-columns: 1fr;
  }

  /* Activation vendors: card rows instead of clipped table */
  .sm-activation .table-responsive {
    overflow: visible;
  }
  .sm-activation .sm-vendor-table,
  .sm-activation .sm-vendor-table thead,
  .sm-activation .sm-vendor-table tbody,
  .sm-activation .sm-vendor-table th,
  .sm-activation .sm-vendor-table td,
  .sm-activation .sm-vendor-table tr {
    display: block;
    width: 100%;
  }
  .sm-activation .sm-vendor-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .sm-activation .sm-vendor-table tr {
    margin-bottom: 0.85rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--sm-border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
  }
  [data-theme="light"] .sm-activation .sm-vendor-table tr {
    background: #fff;
  }
  .sm-activation .sm-vendor-table td {
    border: 0;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: right;
  }
  .sm-activation .sm-vendor-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--sm-muted);
    text-align: left;
    flex-shrink: 0;
  }
  .sm-activation .sm-vendor-table td[data-label="WhatsApp"] {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .sm-activation .sm-vendor-table td[data-label="WhatsApp"]::before {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  .sm-activation .btn_wa {
    width: 100%;
    justify-content: center;
  }

  /* About / course cards */
  .about-intro-card .flex {
    flex-direction: column;
  }
  .about-intro-media,
  .about-intro-media video {
    max-height: 240px;
  }
  .sm-course-locked {
    min-height: 0;
  }
  .sm-course-player-wrap video {
    max-height: 240px;
  }
  .pagination_one {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  .pagination_one .pagination {
    flex-wrap: nowrap;
    width: max-content;
  }
}

@media (max-width: 480px) {
  .lg\:text-7xl,
  .md\:text-6xl,
  .text-5xl {
    font-size: 2rem !important;
    line-height: 1.15 !important;
  }
  .sm-list-hero h1,
  .about-hero h1 {
    font-size: 2rem !important;
  }
}

/* Hide empty AdSense units (localhost / blocked ads render as white voids) */
ins.adsbygoogle {
  background: transparent !important;
}
ins.adsbygoogle:not([data-ad-status="filled"]) {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Footer typography - match live (Inter 14px body / 13px links / 12px copyright) */
.main_footer {
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  letter-spacing: 0.08em !important;
  color: rgba(255, 255, 255, 0.8) !important;
  background-color: #0e1d17 !important;
}
.main_footer h6,
.main_footer .text-white.h6,
.main_footer h6.text-white {
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
}
.main_footer > .max-w-6xl > .space-y-6 > p,
.main_footer .space-y-6 > p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  letter-spacing: 0.08em !important;
  color: rgba(255, 255, 255, 0.8) !important;
}
.main_footer .link_list {
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
}
.main_footer .link_list li a,
.main_footer .link_list li a.dropdown-item {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
}
.main_footer .link_list li a:hover {
  color: #fd650a !important;
}
.main_footer .text-xs,
.main_footer p.text-white.text-xs {
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  color: #ffffff !important;
}
.main_footer .bg-green,
.main_footer .h-1.bg-green {
  background-color: rgba(144, 214, 177, 0.28) !important;
  border: 0;
}
.main_footer .social_list a {
  color: #ffffff !important;
}

/* Extra utilities used by public list pages */
.size-1 { width: 0.25rem; height: 0.25rem; }
.size-7 { width: 1.75rem; height: 1.75rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.max-h-\[200px\] { max-height: 200px; object-fit: cover; }
.mt-3 { margin-top: 0.75rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-auto { margin-top: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-12 { margin-bottom: 3rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-36 { padding-top: 9rem; }
.pb-24 { padding-bottom: 6rem; }
.shrink-0 { flex-shrink: 0; }
.h-fit { height: fit-content; }
.inline-flex { display: inline-flex; }
.text-right { text-align: right; }
.rounded-full\!, .rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-orange { background-color: #fd650a; }
.bg-title\/40\!, .bg-title\/40 { background-color: rgba(14, 29, 23, 0.4) !important; }
.bg-text\/60 { background-color: rgba(255, 255, 255, 0.6); }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.hover\:text-orange:hover,
.blog_item_one h4:hover,
.blog_item_one h4 a:hover,
.course_item_one h4:hover,
.course_item_one h4 a:hover {
  color: #fd650a !important;
}
.-translate-y-1\/2 { transform: translateY(-50%); }
.right-1\.5 { right: 0.375rem; }
.top-1\/2 { top: 50%; }

/* Public blogs / courses list structure */
.blog_one,
.course_one {
  background: #0e1d17;
}
[data-theme="light"] .blog_one,
[data-theme="light"] .course_one {
  background: #eef3f0 !important;
}
.blog_item_one,
.course_item_one {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.8);
  height: 100%;
}
.blog_item_one a.block,
.course_item_one a.block {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  background: rgba(255, 255, 255, 0.04);
}
.blog_item_one img,
.course_item_one img {
  width: 100%;
  display: block;
  height: auto;
}
.blog_item_one .badge,
.course_item_one .badge {
  z-index: 2;
}
.blog_item_one h4,
.course_item_one h4 {
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.blog_item_one h4 a,
.course_item_one h4 a {
  color: inherit;
  text-decoration: none;
}
.blog_item_one p,
.course_item_one p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.pagination_one {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pagination_one nav {
  width: 100%;
  display: flex;
  justify-content: center;
}
.pagination_one ul,
.pagination_one ul.pagination {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination_one .page-item {
  display: inline-flex;
  list-style: none;
  margin: 0;
}
.pagination_one .page-link,
.pagination_one a,
.pagination_one span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  font-size: 0.875rem;
}
.pagination_one .page-item.active .page-link,
.pagination_one li.active > span,
.pagination_one li.active > a,
.pagination_one .active > .page-link,
.pagination_one a[aria-current="page"] {
  background: #fd650a;
  border-color: #fd650a;
  color: #fff;
  border-radius: 999px;
}
.pagination_one .page-item.disabled .page-link,
.pagination_one .disabled > span,
.pagination_one .disabled > a,
.pagination_one .disabled {
  opacity: 0.45;
  pointer-events: none;
}
[data-theme="light"] .blog_item_one,
[data-theme="light"] .course_item_one {
  background-color: rgba(255, 255, 255, 0.92);
  border-color: rgba(25, 53, 42, 0.12);
  color: #19352a;
}
[data-theme="light"] .blog_item_one h4,
[data-theme="light"] .course_item_one h4,
[data-theme="light"] .blog_item_one h4 a,
[data-theme="light"] .course_item_one h4 a {
  color: #0e1d17;
}
[data-theme="light"] .blog_item_one p,
[data-theme="light"] .course_item_one p {
  color: rgba(14, 29, 23, 0.72);
}
[data-theme="light"] .pagination_one .page-link,
[data-theme="light"] .pagination_one a,
[data-theme="light"] .pagination_one span {
  color: #19352a;
  border-color: rgba(25, 53, 42, 0.18);
}
.blog-detail-body .details,
.blog-detail-body .details * {
  color: inherit;
}
.blog-detail-body .details img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1rem 0;
}
.blog-detail-body .details h1,
.blog-detail-body .details h2,
.blog-detail-body .details h3,
.blog-detail-body .details h4 {
  color: #fff;
  margin: 1.25rem 0 0.75rem;
}
[data-theme="light"] .blog-detail-body .details h1,
[data-theme="light"] .blog-detail-body .details h2,
[data-theme="light"] .blog-detail-body .details h3,
[data-theme="light"] .blog-detail-body .details h4 {
  color: #0e1d17;
}

/* FAQ accordion without Bootstrap */
.sm-faq {
  max-width: 80rem;
}
.sm-faq .accordion-item {
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sm-faq .accordion-item:hover {
  border-color: rgba(46, 137, 140, 0.45);
}
.sm-faq .sm-faq-q,
.sm-faq .accordion-header {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--sm-heading);
  padding: 1.15rem 3rem 1.15rem 1.35rem;
  position: relative;
}
.sm-faq .sm-faq-q::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.sm-faq .faqItem[aria-expanded="true"] .sm-faq-q::after {
  transform: translateY(-35%) rotate(-135deg);
}
.sm-faq .accordion-button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  font-weight: 700;
  padding: 1rem 1.25rem;
  cursor: pointer;
}
.sm-faq .accordion-collapse {
  display: none;
  padding: 0 1.35rem 1.35rem;
}
.sm-faq .accordion-collapse.show {
  display: block;
}
.sm-faq .accordion-body,
.sm-faq .accordion-body p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--sm-text);
}
[data-theme="light"] .sm-faq .sm-faq-q,
[data-theme="light"] .sm-faq .accordion-header {
  color: #0e1d17;
}
[data-theme="light"] .sm-faq .accordion-body,
[data-theme="light"] .sm-faq .accordion-body p {
  color: rgba(14, 29, 23, 0.8);
}

/* Legal / CMS prose pages */
.sm-legal.sm-page-shell {
  max-width: 80rem;
}
.sm-cms-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--sm-text);
}
.sm-cms-prose > *:first-child {
  margin-top: 0;
}
.sm-cms-prose p {
  margin: 0 0 1rem;
  color: inherit;
}
.sm-cms-prose h2,
.sm-cms-prose h3,
.sm-cms-prose h4 {
  color: var(--sm-heading);
  font-weight: 700;
  line-height: 1.3;
  margin: 1.75rem 0 0.75rem;
}
.sm-cms-prose h2 {
  font-size: 1.5rem;
}
.sm-cms-prose h3 {
  font-size: 1.2rem;
}
.sm-cms-prose h4 {
  font-size: 1.05rem;
}
.sm-cms-prose ul,
.sm-cms-prose ol {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
  list-style: disc;
}
.sm-cms-prose ol {
  list-style: decimal;
}
.sm-cms-prose li {
  margin-bottom: 0.55rem;
  line-height: 1.65;
}
.sm-cms-prose a {
  color: #2e898c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sm-cms-prose a:hover {
  color: #fd650a;
}
.sm-cms-prose strong {
  color: var(--sm-heading);
  font-weight: 700;
}
[data-theme="light"] .sm-cms-prose {
  color: rgba(14, 29, 23, 0.82);
}
[data-theme="light"] .sm-cms-prose h2,
[data-theme="light"] .sm-cms-prose h3,
[data-theme="light"] .sm-cms-prose h4,
[data-theme="light"] .sm-cms-prose strong {
  color: #0e1d17;
}
[data-theme="light"] .sm-cms-prose a {
  color: #1f6f72;
}

/* Dashboard currency selector (nice-select) — readable options + room for all 5 */
.nice-select .list {
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #ffffff !important;
  z-index: 40;
}
.nice-select .list .option {
  color: #0e1d17 !important;
  background-color: #ffffff;
}
.nice-select .list .option:hover,
.nice-select .list .option.focus,
.nice-select .list .option.selected.focus {
  background-color: #e8f0ec !important;
  color: #0e1d17 !important;
}
.nice-select .list .option.selected {
  color: #0e1d17 !important;
  font-weight: 700;
}

.sm-currency-select-wrap {
  gap: 0.5rem;
}
.sm-currency-select-wrap .nice-select {
  min-width: 140px;
  height: auto;
  line-height: 1.4;
  padding: 0.45rem 2rem 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.5rem;
  color: #ffffff;
  float: none;
  display: inline-block;
}
.sm-currency-select-wrap .nice-select .current {
  color: #ffffff;
}
.sm-currency-select-wrap .nice-select:after {
  border-bottom-color: #ffffff;
  border-right-color: #ffffff;
}
.sm-currency-select-wrap label {
  color: rgba(255, 255, 255, 0.75) !important;
}
[data-theme="light"] .sm-currency-select-wrap .nice-select {
  background: #ffffff;
  border-color: rgba(25, 53, 42, 0.2);
  color: #0e1d17;
}
[data-theme="light"] .sm-currency-select-wrap .nice-select .current {
  color: #0e1d17;
}
[data-theme="light"] .sm-currency-select-wrap .nice-select:after {
  border-bottom-color: #0e1d17;
  border-right-color: #0e1d17;
}
[data-theme="light"] .sm-currency-select-wrap label {
  color: rgba(14, 29, 23, 0.65) !important;
}
