/*
 * UpLevered Custom MU CSS (Canonical)
 * Single source of truth loaded by MU-plugin:
 * /wp-content/mu-plugins/uplevered-custom/assets/uplevered-custom.css
 *
 * Notes:
 * - This file supersedes bundle/manifest workflows.
 * - Styles from css/customizer-additional.css are intentionally excluded.
 */

/* ==========================================================================
   1) Tokens / :root
   2) Base typography + layout
   3) Global content styles
   4) Reusable components
   -------------------------------------------------------------------------- */

/* Source: css/global.css */
/* ===================================================================
 * global.css -- UpLevered Global & Reusable Styles
 * ===================================================================
 * Color tokens, general utility, hierarchical bullet styles,
 * personal-example box, quick-answer box, slim article CTA,
 * footer CTA, details/summary, table styles, article add-ons
 * (cards, TOC, a11y), header widget, and other reusable rules.
 * =================================================================== */

/* ---------- Color Tokens & Global Styles ---------- */
:root {
  --white: #fff;
  --accent-green: #0a8b3f;
  --border-color: #e0e4eb;
  --text: #222;
  --sub: #555;
  --bg-gray: #f5f6f8;
  --hero-cta-h: 52px;
}

/* ---------- General Utility ---------- */
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  line-height: 1.45;
  background-color: var(--bg-gray);
}

.container {
  width: min(92%, 1100px);
  margin-inline: auto;
}

h1, h2, h3 {
  margin: 0 0 .6em 0;
  line-height: 1.15;
  font-weight: 700;
}

/* ===================================================================
 * SECTION: Global Hierarchical Bullet Point Styles
 * =================================================================== */

.entry-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.entry-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
/* Main Bullet Points (Dots) */
.entry-content > ul > li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.4em;
    line-height: 1;
}
/* Sub-Bullet Points (Dashes) */
.entry-content ul ul {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
}
.entry-content ul ul li::before {
    content: '\2013';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.1em;
}
/* Triple-Indented Bullets (Arrows) */
.entry-content ul ul ul {
    margin-top: 0.75rem;
    padding-left: 1.5rem;
}
.entry-content ul ul ul li::before {
    content: '\203A';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2em;
}

/* ---------- Table Zebra Striping ---------- */
.wp-block-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

/* --- Styles for the Personal Example Box --- */

.personal-example-box {
    background-color: #ffffff;
    border-left: 4px solid #0a8b3f;
    padding: 25px 30px;
    margin: 2em 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.personal-example-box h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #222;
}

.personal-example-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.personal-example-box ol {
    list-style: none;
    padding-left: 0;
    counter-reset: example-counter;
    margin-top: 20px;
}

.personal-example-box ol li {
    counter-increment: example-counter;
    margin-bottom: 1.5rem;
    padding-left: 50px;
    position: relative;
}

.personal-example-box ol li::before {
    content: counter(example-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background-color: #0a8b3f;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.personal-example-box strong {
    color: #222;
    font-weight: 700;
}

/* --- Quick Answer Box --- */

.uplevered-quick-answer {
  background: var(--bg-gray,#f7f9fa);
  border: 2px solid var(--border-color,#e4e9ec);
  border-left: 6px solid var(--accent-green,#2f6d3d);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text,#1a1a1a);
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.uplevered-quick-answer .title {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-green,#2f6d3d);
}

/* works for ol *or* ul */
.uplevered-quick-answer ol,
.uplevered-quick-answer ul {
  margin: 0 0 1.25rem;
  padding-left: 0;
  list-style: none;
}

.uplevered-quick-answer li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .75rem;
  color: var(--sub,#4d545a);
}

/* custom check or number */
.uplevered-quick-answer ol { counter-reset: qa; }
.uplevered-quick-answer ol li::before {
  counter-increment: qa;
  content: counter(qa) ".";
}
.uplevered-quick-answer ul li::before {
  content: "\2713";
}

.uplevered-quick-answer li::before {
  position: absolute;
  left: 0;
  top: .1rem;
  color: var(--accent-green,#2f6d3d);
  font-weight: 700;
}

.uplevered-quick-answer .cta-btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--accent-green,#2f6d3d);
  color: var(--white,#fff);
  border-radius: 6px;
  transition: box-shadow .2s ease, opacity .2s ease;
}

.uplevered-quick-answer .cta-btn:hover {
  box-shadow: 0 4px 8px rgba(47,109,61,.2);
  opacity: .95;
}

@media (max-width: 600px) {
  .uplevered-quick-answer { padding: 1.25rem; font-size: .95rem; }
  .uplevered-quick-answer .cta-btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .uplevered-quick-answer .cta-btn { transition: none; }
}

/* ========== Slim Article CTA (UpLevered) ========== */

.cta-slim {
  background: var(--white);
  border: 1px solid var(--border-color,#e4e7eb);
  border-radius: .5rem;
  padding: 1.25rem 1.5rem;
  max-width: 680px;
  margin: 1.5rem auto 2rem;
}

.cta-slim__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-slim__text {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

/* ---------- Fluent Forms row ---------- */
.cta-slim form {
  display: flex;
  gap: .75rem;
  flex: 1;
}

.cta-slim form input[type="email"] {
  flex: 1 1 260px;
  min-width: 180px;
  height: 40px;
  padding: 0 .75rem;
  font-size: 1rem;
}

.cta-slim form button {
  flex: 0 0 auto;
  height: 40px;
  padding: 0 1.25rem;
  font-weight: 600;
}

/* ---------- Mobile stacking ---------- */
@media (max-width: 599px) {
  .cta-slim form {
    flex-direction: column;
  }
  .cta-slim form button {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
 * Footer CTA (full-width green card)
 * ===================================================== */

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 32px 28px;
  margin-top: 60px;
  background: var(--accent-green,#0a8b3f);
  color: var(--white,#fff);
  font-family: Inter, sans-serif;
  font-size: 19px;
  line-height: 1.5;
  border-radius: .5rem;
}

/* Text + numbers */
.footer-cta .cta-left { flex: 1 1 300px; }
.footer-cta .claim { margin: 0; }
.footer-cta .highlight,
.footer-cta #subcount { color: #FFEA7C; }

/* Form area */
.footer-cta .cta-right { flex: 1 1 440px; max-width: 100%; }
.footer-cta .fluentform .ff-el-form-control {
  border-color: rgba(255,255,255,.4) !important;
  background: var(--white) !important;
  color: var(--text) !important;
  height: 48px !important;
  padding: 0 1rem !important;
  font-size: 17px !important;
}
.footer-cta .fluentform .ff-el-input--submit {
  background: var(--bg-gray,#1C1F33) !important;
  color: var(--white) !important;
  font-weight: 600;
  border-radius: 4px;
  height: 48px !important;
  padding: 0 1.75rem !important;
}

/* Mobile stack */
@media (max-width: 640px) {
  .footer-cta { text-align: center; gap: 28px; }
  .footer-cta .cta-left,
  .footer-cta .cta-right { flex: 1 1 100%; }
  .footer-cta .fluentform .ff-el-form-control { width: 100% !important; }
}

/* --- Outline style for the Pro Pack hero button --- */
.hero .cta-button.cta-outline {
  background: transparent;
  color: #1C1F33;
  border: 2px solid #1C1F33;
}
.hero .cta-button.cta-outline:hover {
  background: #1C1F33;
  color: #fff;
}

/* --- UpLevered details/summary styling --- */

.uv-details {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  margin: 1rem 0;
  overflow: hidden;
}
.uv-details > summary {
  cursor: pointer;
  padding: .9rem 1rem;
  list-style: none;
  position: relative;
  font-weight: 700;
}
.uv-details > summary::-webkit-details-marker { display: none }
.uv-details > summary::after {
  content: "\25B8";
  position: absolute; right: 1rem; top: .9rem;
  transition: transform .2s ease;
  color: var(--accent-green);
  font-weight: 700;
}
.uv-details[open] > summary::after { transform: rotate(90deg); }
.uv-details__content {
  padding: 1rem 1.1rem 1.2rem;
  border-top: 1px solid var(--border-color);
}

/* --- Responsive full-bleed images --- */
@media (max-width: 768px) {
  .entry-content .wp-block-image,
  .entry-content figure.wp-block-image {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw !important;
  }
  .entry-content .wp-block-image img,
  .entry-content figure.wp-block-image img {
    width: 100vw !important;
    height: auto !important;
  }
}

/* --- Table Styles --- */

.entry-content .wp-block-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.entry-content .wp-block-table table { min-width: 640px; }
.ul-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ul-compact { width: 100%; border-collapse: collapse; font-size: .95rem; }
.ul-compact th, .ul-compact td { padding: .55rem .7rem; border: 1px solid #e0e4eb; white-space: nowrap; }
.ul-note { font-size: .9rem; color: #555; margin: .5rem 0 1rem; }
.ul-cards { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); }
.ul-card { border: 1px solid #e0e4eb; border-radius: 12px; padding: 12px 14px; background: #fff; }
.ul-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 0; }
.cta-button { display: inline-block; padding: 10px 14px; border-radius: 10px; border: 1px solid #e0e4eb; text-decoration: none; }

@media (max-width: 640px) {
  .ul-compact th, .ul-compact td { font-size: .9rem; }
}

/* ===== UpLevered Article Add-ons (lists-in-cards, details, toc, a11y) ===== */

/* Card lists: ensure visible custom bullets for ul-level inside .ul-card */
.entry-content .ul-card ul.ul-level {
  list-style: none;
  margin: .5rem 0 0;
  padding: 0;
}
.entry-content .ul-card ul.ul-level > li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .6rem;
  line-height: 1.6;
}
.entry-content .ul-card ul.ul-level > li::before {
  content: '\2022';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1;
}
/* Nested bullets inside those lists = dashes */
.entry-content .ul-card ul.ul-level ul > li {
  padding-left: 1.25rem;
}
.entry-content .ul-card ul.ul-level ul > li::before {
  content: '\2013';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 1.05em;
}

/* Details/toggle styling for the optional narrative collapses */
details.ul-card {
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  background: var(--white);
  margin: 1rem 0;
  overflow: hidden;
}
details.ul-card > summary {
  cursor: pointer;
  padding: .9rem 1rem;
  font-weight: 700;
  list-style: none;
  position: relative;
}
details.ul-card > summary::-webkit-details-marker { display: none; }
details.ul-card > summary::after {
  content: "\25B8";
  position: absolute; right: 1rem; top: .9rem;
  color: var(--accent-green);
  font-weight: 700;
  transition: transform .2s ease;
}
details.ul-card[open] > summary::after { transform: rotate(90deg); }
details.ul-card .ul-body {
  padding: 1rem 1.1rem 1.2rem;
  border-top: 1px solid var(--border-color);
}

/* Table of contents nav (optional) */
.ul-toc {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  padding: .75rem 1rem;
  margin: 1rem 0 1.5rem;
}
.ul-toc ul {
  display: flex; flex-wrap: wrap;
  gap: .75rem 1rem;
  list-style: none; margin: 0; padding: 0;
}
.ul-toc a { color: var(--accent-green); text-decoration: none; }
.ul-toc a:hover { text-decoration: underline; }

/* Visually hidden utility (for captions, a11y labels) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Optional: captions on compact tables */
.ul-compact caption {
  caption-side: bottom;
  padding-top: .35rem;
  color: var(--sub);
  font-size: .85rem;
}

/* --- Header Widget --- */

.header-widget {
  display: flex;
  align-items: center;
}
.header-widget p {
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .header-widget {
    display: none;
  }
}

/* ==========================================================================
   5) Homepage
   -------------------------------------------------------------------------- */

/* Source: css/homepage.css */
/* ===================================================================
 * homepage.css -- UpLevered Homepage Styles
 * ===================================================================
 * Hero section, CTA buttons, Founder section, "What You'll Achieve",
 * "Battle Plan" / Featured Content section, Final CTA, and
 * Homepage responsive media queries.
 * =================================================================== */

/* --- Hero Section --- */

.hero {
  padding: 2.5rem 0.2rem;
  background-color: var(--bg-gray);
}

.hero .container {
  background: var(--white);
  border: 2px solid var(--accent-green);
  border-radius: .75rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.1rem);
}

.hero .subheading {
  margin: .5rem auto 2rem;
  font-size: 1.1rem;
  color: var(--sub);
  max-width: 600px;
}

/* CTA Row: Uses modern flexbox 'gap' for spacing */
.hero .cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* --- CTA Buttons (homepage + block-editor pages) --- */
.hero .cta-button,
.wp-block-button.cta-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: var(--hero-cta-h);
  padding: 0 28px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: .55rem;
  border: 2px solid var(--accent-green);
  transition: all .2s ease;
}

/* Primary CTA Button */
.hero .cta-button.primary,
.wp-block-button.cta-button.primary .wp-block-button__link {
  color: var(--white);
  background-color: var(--accent-green);
}

.hero .cta-button.primary:hover,
.wp-block-button.cta-button.primary .wp-block-button__link:hover {
  background-color: #086e32;
  border-color: #086e32;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 139, 63, 0.2);
}

/* Secondary (Ghost) CTA Button */
.hero .cta-button.secondary,
.wp-block-button.cta-button.secondary .wp-block-button__link {
  color: var(--accent-green);
  background-color: var(--white);
}

.hero .cta-button.secondary:hover,
.wp-block-button.cta-button.secondary .wp-block-button__link:hover {
  color: var(--white);
  background-color: var(--accent-green);
}

.hero .cta-button:active,
.wp-block-button.cta-button .wp-block-button__link:active {
  transform: translateY(0);
  box-shadow: none;
}

/* --- Founder Section --- */

.founder-section {
  background: var(--bg-gray);
  padding: 2rem .6rem .8rem;
}
.founder-container {
  max-width: 950px;
  margin-inline: auto;
  padding: 1.5rem 1.5rem .7rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-green);
  border-radius: .75rem;
  text-align: center;
  box-shadow: 0 10px 25px -10px rgba(0,0,0,.1);
}
.founder-text h2 { text-align: center; font-size: 1.9rem; }
.founder-text p {
  color: var(--sub);
  margin: 0;
  max-width: 900px;
  margin-inline: auto;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* --- "What You'll Achieve" Section --- */

.what-you-achieve {
  background: var(--bg-gray);
  padding: 0rem 0 6rem;
  text-align: center;
}
.what-you-achieve h2 {
  display: inline-block;
  border-bottom: 2px solid var(--accent-green);
  padding-bottom: 5px;
  font-size: 1.9em;
  margin-bottom: 2rem;
}
.achieve-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 24px 1fr 24px 1fr;
  column-gap: 1rem;
  row-gap: 1.2rem;
  margin-inline: auto;
}
.achieve-list li {
  display: contents;
}
.achieve-list li span {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.4;
}
.achieve-list li::before {
  content: "\2714";
  color: var(--accent-green);
  font-weight: 700;
  font-size: 1.2rem;
}
.achieve-list li:nth-child(odd)::before { grid-column: 1; }
.achieve-list li:nth-child(odd) span { grid-column: 2; }
.achieve-list li:nth-child(even)::before { grid-column: 3; }
.achieve-list li:nth-child(even) span { grid-column: 4; }

/* --- "Battle Plan" Section (UPDATED FOR SPECIFICITY) --- */
/* By using 'main > .featured-content', this rule becomes more specific
   and should override your theme's default background colors. */
main > .featured-content {
  padding: 1.5rem .5rem 1rem;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-green);
  border-radius: .75rem;
  box-shadow: 0 10px 25px -10px rgba(0,0,0,0.1)
}
/* The container just handles width and side padding now. */
.featured-content .container {
  background-color: var(--white);
}
.featured-content h2 {
  text-align: center;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 3px;
  margin-bottom: 2rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.featured-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--accent-green);
  border-radius: .75rem;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.featured-item p {
  color: var(--sub);
  margin: .3rem 0 1rem 0;
  flex-grow: 1;
}
.featured-item a {
  color: var(--accent-green);
  font-weight: 600;
  text-decoration: none;
}

/* --- Final CTA Section --- */

.final-cta {
  background: var(--bg-gray);
  text-align: center;
  padding: 4rem 1rem;
  border-top: 1px solid var(--border-color);
}
.final-cta-mission-statement {
  font-size: 1.1rem;
  color: var(--sub);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.cta-box {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: .75rem;
  max-width: 850px;
  margin-inline: auto;
}
.cta-box h2 {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
}
.cta-box p {
  max-width: 700px;
  margin: .75rem auto 1.6rem;
  color: var(--sub);
}

/* --- Homepage Responsive Styles --- */
@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   6) Content Hub
   -------------------------------------------------------------------------- */

/* Source: css/content-hub.css */
/* ===================================================================
 * content-hub.css -- UpLevered Content Hub Page Styles (/content/)
 * ===================================================================
 * All rules scoped under .uplevered-content-hub, including layout,
 * article grid, article cards, badges, featured section, and
 * responsive breakpoints.
 * =================================================================== */

.uplevered-content-hub {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
  color: #1C1F33;
}
.uplevered-content-hub a {
  color: inherit;
  text-decoration: none;
}
.uplevered-content-hub h1 {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  color: #1C1F33;
  margin-bottom: 12px;
  line-height: 1.2;
  text-align: center;
}
.uplevered-content-hub .intro-text {
  font-size: 1.125rem;
  color: #555;
  margin: 0 auto 30px auto;
  text-align: center;
  max-width: 780px;
  line-height: 1.6;
}
.uplevered-content-hub h2.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  text-align: center;
  margin: 4rem 0 2rem 0;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 1rem;
}
.uplevered-content-hub .featured-section {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-top: 2rem;
  border-top: 4px solid #2e7d32;
}
.uplevered-content-hub .featured-section .section-headline {
  margin-top: 0;
  border-bottom: none;
}
.uplevered-content-hub .article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.uplevered-content-hub .article-card {
  background-color: #FFFFFF;
  border: 1px solid #E6E6E6;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.uplevered-content-hub .article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.uplevered-content-hub .article-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.uplevered-content-hub .article-card p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  flex-grow: 1;
}
.uplevered-content-hub .badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: bold;
  vertical-align: middle;
  color: #2e7d32;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 9999px;
  padding: 3px 10px;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .uplevered-content-hub .article-grid {
    grid-template-columns: 1fr;
  }
  .uplevered-content-hub .featured-section {
    padding: 25px;
  }
}

/* ==========================================================================
   7) AutoSpread landing (.as-*)
   -------------------------------------------------------------------------- */

/* Source: css/autospread-landing.css */
/* ===================================================================
 * autospread-landing.css -- AutoSpread Landing Page Styles
 * ===================================================================
 * All .as-* prefixed classes for the AutoSpread product landing page,
 * including hero, CTA buttons, sections, pain points, features grid,
 * steps, credibility block, waitlist form, FAQ items, footer CTA,
 * and responsive breakpoints.
 * =================================================================== */

/* AutoSpread Landing Page Styles */
.as-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.as-hero {
    padding: 5px 0;
    text-align: center;
}

.as-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.as-hero .as-subheadline {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 32px;
}

.as-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.as-btn-primary {
    background: #166534 !important;
    color: white !important;
    padding: 14px 28px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    display: inline-block;
}

.as-btn-primary:hover {
    background: #14532d !important;
    color: white !important;
}

.as-btn-secondary {
    background: transparent !important;
    color: #166534 !important;
    padding: 14px 28px !important;
    border: 2px solid #166534 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    display: inline-block;
}

.as-btn-secondary:hover {
    background: #f0fdf4 !important;
}

.as-section {
    padding: 30px 0;
}

.as-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.as-section p {
    color: #374151;
    margin-bottom: 16px;
}

.as-pain {
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.as-pain p {
    font-size: 1.1rem;
    max-width: 650px;
}

.as-pain p:last-child {
    font-weight: 600;
    color: #111;
    margin-top: 24px;
}

.as-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.as-feature {
    padding: 24px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.as-feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.as-feature p {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0;
}

.as-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.as-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #166534;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.as-step-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.as-step-content p {
    margin: 0;
    color: #4b5563;
}

.as-credibility {
    background: #f0fdf4;
    border-radius: 12px;
    padding: 30px;
    margin: 15px 0;
}

.as-credibility h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.as-credibility p {
    font-size: 1.05rem;
    color: #374151;
}

.as-credibility .as-signature {
    margin-top: 24px;
    font-weight: 600;
    color: #166534;
}

.as-waitlist {
    background: #111;
    color: white;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 60px calc(50vw - 50%);
}

.as-waitlist h2 {
    color: white;
    text-align: center;
}

.as-waitlist .as-subheader {
    text-align: center;
    color: #9ca3af;
    max-width: 500px;
    margin: 0 auto 40px;
}

.as-form-container {
    max-width: 640px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.as-form-container iframe {
    display: block;
}

.as-faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 0;
}

.as-faq-item:last-child {
    border-bottom: none;
}

.as-faq-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.as-faq-item p {
    color: #4b5563;
    margin: 0;
}

.as-footer-cta {
    text-align: center;
    padding: 60px 0;
    background: #fafafa;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    border-top: 1px solid #e5e5e5;
}

.as-footer-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .as-hero h1 {
        font-size: 2rem;
    }
    .as-hero .as-subheadline {
        font-size: 1.1rem;
    }
    .as-cta-group {
        flex-direction: column;
        align-items: center;
    }
    .as-credibility {
        padding: 24px;
    }
}

/* --- LBO Gate (Lead Magnet) --- */
.ul-lbo-gate { margin: 2rem 0; }
.ul-lbo-gate__card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-green);
  border-radius: .75rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 10px 25px -10px rgba(0,0,0,.08);
}
.ul-lbo-gate__title { margin: 0 0 .4rem 0; }
.ul-lbo-gate__sub { margin: 0 0 1rem 0; color: var(--sub); }

.ul-lbo-gate__success {
  margin-top: 1rem;
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #a5d6a7;
  border-radius: .5rem;
}
.ul-lbo-gate__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--accent-green);
  color: var(--white);
  border-radius: .5rem;
}
.ul-lbo-gate__download:hover { opacity: .95; }
.ul-lbo-gate__note { margin: .75rem 0 0; color: var(--sub); font-size: .95rem; }
.ul-lbo-gate__privacy { margin: 1rem 0 0; color: var(--sub); font-size: .9rem; }
