.elementor-94210 .elementor-element.elementor-element-d52441b > .elementor-widget-container{padding:20px 0px 0px 0px;}.elementor-94210 .elementor-element.elementor-element-96b1af1 > .elementor-widget-container{margin:0px 0px -200px 0px;}.elementor-94210 .elementor-element.elementor-element-aa16407{margin-top:-120px;margin-bottom:0px;}.elementor-94210 .elementor-element.elementor-element-1efe56d > .elementor-widget-container{margin:12px 0px 0px 0px;}/* Start custom CSS *//* ============ Brand: SocialTalent ============ */
  @font-face {
    font-family: "TT Hoves Pro";
    src: url('/wp-content/themes/socialtalent-v3/public/fonts/TT%20Hoves%20Pro/woff2/TT_Hoves_Pro_Regular.woff2') format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "TT Hoves Pro";
    src: url('/wp-content/themes/socialtalent-v3/public/fonts/TT%20Hoves%20Pro/woff2/TT_Hoves_Pro_Medium.woff2') format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "TT Hoves Pro";
    src: url('/wp-content/themes/socialtalent-v3/public/fonts/TT%20Hoves%20Pro/woff2/TT_Hoves_Pro_DemiBold.woff2') format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "TT Hoves Pro";
    src: url('/wp-content/themes/socialtalent-v3/public/fonts/TT%20Hoves%20Pro/woff2/TT_Hoves_Pro_Bold.woff2') format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  :root {
    /* palette */
    --frost:   #EBF5EB;
    --pastel:  #C2F5C4;
    --lime:    #96F782;
    --leaf:    #00A75C;
    --emerald: #147054;
    --forest:  #124036;
    --ocean:   #03261F;
    --ink:     #03261F;
    --paper:   #ffffff;

    /* type */
    --font: "TT Hoves Pro", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* shape */
    --r:        18px;
    --r-lg:     28px;
    --r-pill:   999px;

    /* shadow per brand guidelines */
    --shadow:   0 25px 25px rgba(3,38,31,0.30);
    --shadow-sm: 0 12px 18px rgba(3,38,31,0.14);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.4;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  img, svg { display: block; max-width: 100%; }

  /* ============ Layout shell ============ */
  .shell {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
  }
  @media (max-width: 720px) {
    .shell { padding: 0 20px; }
  }

  /* ============ Title pill (brand component) ============ */
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    background: rgba(150,247,130,0.14);
    border: 1px solid rgba(150,247,130,0.32);
    color: var(--lime);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .pill .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(150,247,130,0.18);
  }
  .pill--dark {
    background: rgba(18,64,54,0.08);
    border-color: rgba(18,64,54,0.18);
    color: var(--forest);
  }
  .pill--dark .dot { background: var(--leaf); box-shadow: 0 0 0 4px rgba(0,167,92,0.18); }

  /* ============ Buttons ============ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 22px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 15px;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }
  .btn--primary {
    background: var(--lime);
    color: var(--ocean);
  }
  .btn--primary:hover { background: #b6ffa5; }
  .btn--ghost-light {
    color: var(--frost);
    border: 1px solid rgba(235,245,235,0.28);
  }
  .btn--ghost-light:hover { background: rgba(235,245,235,0.06); }
  .btn--ghost-dark {
    color: var(--ocean);
    border: 1px solid rgba(3,38,31,0.18);
  }
  .btn--ghost-dark:hover { background: rgba(3,38,31,0.04); }
  .btn--solid-dark {
    background: var(--ocean);
    color: var(--frost);
  }
  .btn--solid-dark:hover { background: var(--forest); }
  .btn .arrow {
    display: inline-block;
    transition: transform .2s ease;
  }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ============ Top nav ============ */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper);
    color: var(--ocean);
    border-bottom: 1px solid rgba(3,38,31,0.06);
  }
  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  .nav__logo { height: 28px; display: flex; align-items: center; }
  .nav__logo svg { height: 100%; width: auto; }
  .nav__logo svg path { fill: var(--ocean); }
  .nav__logo svg .mark { fill: var(--leaf); }
  .nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 15px;
    font-weight: 500;
  }
  .nav__links a {
    color: var(--ocean);
    opacity: 0.82;
    transition: opacity .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav__links a:hover { opacity: 1; }
  .nav__cta { display: flex; align-items: center; gap: 20px; }
  .nav__cta .signin {
    font-size: 15px; font-weight: 500; color: var(--ocean); opacity: 0.82;
  }
  .nav__cta .signin:hover { opacity: 1; }
  @media (max-width: 980px) {
    .nav__links { display: none; }
    .nav__cta .signin { display: none; }
  }

  /* ============ HERO (bento) ============ */
  .hero {
    position: relative;
    background: var(--paper);
    color: var(--ocean);
    overflow: hidden;
    padding: 32px 0 0;
  }
  .hero__inner { position: relative; z-index: 1; }
  .bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 649px;
    grid-template-areas: "cara learning";
    gap: 16px;
    padding-bottom: 56px;
    padding-top: 16px;
  }

  /* shared tile */
  .tile {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    isolation: isolate;
    display: block;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  a.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
  .tile__inner {
    position: relative;
    z-index: 2;
    padding: 44px 44px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .tile__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    opacity: 0.95;
  }
  .tile__label .num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1px solid currentColor;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.85;
  }
  .tile__h {
    font-weight: 500;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin: 0 0 14px;
    max-width: 14ch;
  }
  .tile__h .em { color: var(--lime); font-style: normal; }
  .tile__p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 28px;
    max-width: 32ch;
    opacity: 0.78;
  }
  .tile__cta {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    padding-bottom: 3px;
    border-bottom: 1.5px solid currentColor;
  }
  .tile__cta .arrow { transition: transform .2s ease; }
  a.tile:hover .tile__cta .arrow { transform: translateX(5px); }

  /* === Headline tile === */
  .tile--headline {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #ffffff;
    color: var(--ocean);
    border: 0;
    border-radius: 0;
    width: 100%;
    text-align: center;
  }
  .tile--headline > .shell { position: relative; z-index: 1; }
  /* oversized cropped SocialTalent mark watermark */
  .tile--headline__mark {
    position: absolute;
    right: 100px;
    bottom: 40px;
    width: 927px;
    height: 927px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    color: var(--leaf);
    transform: rotate(15deg);
    transform-origin: center;
  }
  .tile--headline__mark svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .tile--headline__mark svg path { fill: currentColor; }
  .tile--headline > .tile__inner { position: relative; z-index: 1; }
  .tile--headline .tile__inner {
    align-items: center;
  }
  .tile--headline .hero__actions { justify-content: center; }
  .tile--headline .tile__inner {
    padding: 56px 56px 48px;
    gap: 0;
  }
  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 8px 14px 8px 12px;
    border-radius: var(--r-pill);
    background: var(--paper);
    border: 1px solid rgba(0,167,92,0.25);
    color: var(--leaf);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    align-self: flex-start;
  }
  .hero__eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--leaf);
    box-shadow: 0 0 0 4px rgba(0,167,92,0.18);
  }
  .hero__title {
    font-weight: 500;
    font-size: clamp(56px, 6.6vw, 104px);
    line-height: 0.92;
    letter-spacing: -0.035em;
    margin: 0 0 22px;
    max-width: 10ch;
    color: var(--ocean);
    text-wrap: balance;
  }
  .hero__title .em {
    color: var(--leaf);
    font-style: normal;
  }
  .hero__subtitle {
    font-weight: 500;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--leaf);
    margin: 0 0 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
  }
  .hero__subtitle .sep {
    display: inline-block;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--leaf);
    opacity: 0.6;
  }
  .hero__subtitle--pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 24px;
  }
  .hero__subtitle--pills .pill {
    background: transparent;
  }
  .hero__subtitle--pills .pill .dot {
    display: none;
  }
  .hero__subtitle-plus {
    font-size: 22px;
    font-weight: 500;
    color: var(--leaf);
    line-height: 1;
    text-transform: none;
  }
  .hero__lede {
    font-family: var(--font);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.4;
    letter-spacing: -0.005em;
    color: rgba(3,38,31,0.72);
    max-width: 56ch;
    margin: -10px auto 30px;
    text-wrap: balance;
  }
  .hero__sub {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(3,38,31,0.66);
    max-width: 46ch;
    margin: 0 0 34px;
    font-weight: 400;
  }
  .hero__sub strong { color: var(--ocean); font-weight: 600; }
  .hero__actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* === Learning tile === */
  .tile--learning {
    grid-area: learning;
    background: var(--frost);
    color: var(--ocean);
    border: 1px solid rgba(3,38,31,0.06);
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .tile--learning .tile__label { color: var(--emerald); }
  .tile--learning .tile__cta { color: var(--ocean); margin-top: auto; }
  .tile--learning .tile__inner {
    flex: 1 1 55%;
    min-width: 0;
    padding-right: 28px;
    padding-bottom: 44px;
  }
  .tile--learning .tile__p { color: rgba(3,38,31,0.72); }
  .tile--learning .tile__h .em { color: var(--leaf); }
  /* chip palette inside the pastel Learning tile */
  .tile--learning .lesson {
    background: rgba(3,38,31,0.05);
    border-color: rgba(3,38,31,0.10);
  }
  .tile--learning .lesson__icon {
    background: rgba(3,38,31,0.10);
    color: var(--forest);
  }
  .tile--learning .lesson__t { color: var(--ocean); }
  .tile--learning .lesson__m { color: rgba(3,38,31,0.55); }
  .tile--learning .lesson--featured {
    background: var(--ocean);
    border-color: transparent;
    box-shadow: 0 22px 40px rgba(3,38,31,0.22);
  }
  .tile--learning .lesson--featured .lesson__t { color: var(--frost); }
  .tile--learning .lesson--featured .lesson__m { color: rgba(235,245,235,0.7); }
  .tile--learning .lesson--featured .lesson__icon {
    background: var(--lime);
    color: var(--ocean);
  }
  .tile--learning .lesson__progress { background: rgba(235,245,235,0.20); }
  .tile--learning .lesson__progress > i { background: var(--lime); }
  .tile--learning .lesson__live i {
    background: var(--leaf);
    box-shadow: 0 0 0 4px rgba(0,167,92,0.20);
  }
  /* learning card portrait — bottom right, cropped by card bottom */
  .tile--learning__photo,
  .tile--cara__photo {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 396px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    user-select: none;
  }
  .tile--learning__photo {
    bottom: -10px;
    width: 453px;
  }
  /* Training hero graphic — stacked course cards composed in place of the
     kevin portrait. Mirrors the cara-graphic pattern but with square cards. */
  .training-graphic {
    position: absolute;
    right: 8px;
    top: calc(50% + 160px);
    transform: translateY(-50%) scale(1.83);
    transform-origin: center center;
    width: 328px;
    height: 260px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
  }
  .training-graphic__card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 12px;
    border: 0.5px solid rgba(3, 38, 31, 0.08);
    padding: 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  .training-graphic__avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .training-graphic__lines { margin-top: auto; }
  .training-graphic__line {
    background: #03261F;
    height: 5px;
    border-radius: 3px;
  }
  .training-graphic__bg--1 {
    left: 4px; top: 78px; opacity: 0.22;
    transform: scale(0.88); transform-origin: right center;
  }
  .training-graphic__bg--2 {
    left: 52px; top: 72px; opacity: 0.42;
    transform: scale(0.94); transform-origin: right center;
  }
  .training-graphic__fg {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 138px; height: 138px;
    background: white;
    border: 0.5px solid rgba(3,38,31,0.14);
    border-radius: 14px;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(3, 38, 31, 0.08);
  }
  .training-graphic__fg-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .training-graphic__play {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #00A75C;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .training-graphic__play svg { margin-left: 2px; }
  .training-graphic__chip {
    font-size: 9px;
    color: #6B6F6D;
    font-weight: 500;
    background: #F6F4EF;
    padding: 3px 7px;
    border-radius: 999px;
    letter-spacing: 0.2px;
  }
  .training-graphic__fg-meta { margin-top: auto; }
  .training-graphic__fg-label {
    font-size: 9px;
    color: #00A75C;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }
  .training-graphic__fg-title {
    font-size: 13px;
    color: #03261F;
    line-height: 1.15;
    font-weight: 500;
  }
  @media (max-width: 1180px) {
    .training-graphic { transform: translateY(-50%) scale(1.51); right: -38px; top: calc(50% + 160px); }
  }
  @media (max-width: 980px) {
    .training-graphic {
      position: relative; right: auto; top: auto; transform: none;
      width: 100%; max-width: 360px; margin: 12px auto 0;
    }
  }
  /* Cara hero graphic — stacked notification cards composed in place of the
     keiko portrait. Same right-side slot, vertically centered within the tile. */
  .cara-graphic {
    position: absolute;
    right: -2px;
    top: calc(50% + 180px);
    transform: translateY(-50%) scale(1.74);
    transform-origin: center center;
    width: 328px;
    height: 260px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
  }
  .cara-graphic__card {
    background: white;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 0.5px solid rgba(3, 38, 31, 0.08);
  }
  .cara-graphic__avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .cara-graphic__line {
    background: #03261F;
    height: 5px;
    border-radius: 3px;
  }
  .cara-graphic__bg {
    position: absolute;
    left: 42px;
    right: 42px;
  }
  .cara-graphic__bg--1 { top: 22px; left: 78px; right: 22px; opacity: 0.07; }
  .cara-graphic__bg--2 { top: 50px; left: 48px; right: 10px; opacity: 0.42; }
  .cara-graphic__bg--3 {
    top: 150px; left: 34px; right: 34px; opacity: 0.32;
    transform: scale(0.9); transform-origin: top center;
  }
  .cara-graphic__fg {
    position: absolute;
    top: calc(50% - 10px);
    left: 18px;
    right: 18px;
    transform: translateY(-50%);
    background: white;
    border: 0.5px solid rgba(3,38,31,0.14);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(3, 38, 31, 0.08);
  }
  .cara-graphic__fg-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #EBF5EB;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    display: block;
  }
  .cara-graphic__fg-avatar img {
    position: absolute;
    width: 95px;
    max-width: none;
    height: auto;
    left: -28px;
    top: -1px;
    pointer-events: none;
  }
  .cara-graphic__fg-text {
    flex: 1;
    min-width: 0;
  }
  .cara-graphic__fg-label {
    font-size: 9px;
    color: #00A75C;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }
  .cara-graphic__fg-body {
    font-size: 13px;
    color: #03261F;
    line-height: 1.15;
    font-weight: 500;
  }
  @media (max-width: 1180px) {
    .cara-graphic { transform: translateY(-50%) scale(1.44); right: -18px; top: calc(50% + 180px); }
  }
  @media (max-width: 980px) {
    .cara-graphic {
      position: relative; right: auto; top: auto; transform: none;
      width: 100%; max-width: 360px; margin: 12px auto 0;
    }
  }
  .tile--learning .tile__inner,
  .tile--cara .tile__inner { position: relative; z-index: 2; }
  .tile--learning .lesson__bars i { background: var(--forest); }
  /* learning chip column on the right */
  .tile--learning .lessons {
    display: none;
  }
  .tile--learning .lesson {
    grid-column: auto;
    min-width: 0;
  }
  .lessons {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    display: grid;
    gap: 12px;
    width: 340px;
    pointer-events: none;
  }
  .lesson {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(235,245,235,0.06);
    border: 1px solid rgba(235,245,235,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .lesson--featured {
    background: var(--lime);
    color: var(--ocean);
    border-color: transparent;
    box-shadow: 0 22px 40px rgba(0,0,0,0.30);
  }
  .lesson__icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: rgba(150,247,130,0.16);
    color: var(--lime);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 34px;
  }
  .lesson__icon svg { width: 16px; height: 16px; }
  .lesson--featured .lesson__icon {
    background: var(--ocean);
    color: var(--lime);
  }
  .lesson__t {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.25;
    color: var(--frost);
    margin-bottom: 2px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .lesson--featured .lesson__t { color: var(--ocean); }
  .lesson__m {
    font-size: 12px;
    color: rgba(235,245,235,0.55);
    display: flex; gap: 8px; align-items: center;
  }
  .lesson--featured .lesson__m { color: rgba(3,38,31,0.6); }
  .lesson__progress {
    width: 60px; height: 4px;
    border-radius: 999px;
    background: rgba(3,38,31,0.18);
    overflow: hidden;
    display: inline-block;
  }
  .lesson__progress > i {
    display: block; height: 100%; width: 65%;
    background: var(--ocean);
    border-radius: 999px;
  }

  /* === Cara tile (tall right) === */
  .tile--cara {
    grid-area: cara;
    background:
      radial-gradient(60% 50% at 100% 0%, rgba(150,247,130,0.18) 0%, rgba(150,247,130,0) 70%),
      linear-gradient(170deg, var(--emerald) 0%, var(--forest) 55%, var(--ocean) 100%);
    color: var(--frost);
  }
  .tile--cara .tile__label { color: var(--pastel); }
  .tile--cara .tile__cta { color: var(--lime); }
  .tile--cara .tile__p { color: rgba(235,245,235,0.78); max-width: calc(32ch - 20px); }
  .tile--cara .tile__h .em {
    color: var(--lime);
  }
  .tile--cara {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .tile--cara .tile__inner {
    height: auto;
    flex: 1 1 55%;
    min-width: 0;
    padding-right: 28px;
    padding-bottom: 44px;
  }
  .tile--cara .tile__cta { margin-top: auto; }
  /* chip stack on the right side of the Cara tile */
  .tile--cara .lessons {
    display: none;
  }
  /* Uniform scaled-down chip size in Cara */
  .tile--cara .lesson,
  .tile--cara .lesson--md,
  .tile--cara .lesson--sm,
  .tile--cara .lesson--xs {
    grid-column: auto;
    min-width: 0;
    padding: 9px 12px;
    gap: 10px;
    border-radius: 11px;
  }
  .tile--cara .lesson > div:last-child { min-width: 0; flex: 1; }
  .tile--cara .lesson .lesson__icon,
  .tile--cara .lesson--xs .lesson__icon {
    width: 26px; height: 26px;
    flex: 0 0 26px;
    border-radius: 8px;
  }
  .tile--cara .lesson .lesson__icon svg,
  .tile--cara .lesson--xs .lesson__icon svg { width: 12px; height: 12px; }
  .tile--cara .lesson .lesson__t,
  .tile--cara .lesson--xs .lesson__t { font-size: 12.5px; }
  .tile--cara .lesson .lesson__m,
  .tile--cara .lesson--xs .lesson__m { font-size: 10.5px; }
  /* Stagger chips horizontally */
  .tile--cara .lesson:nth-child(1) { margin: 0 44px 0 0; }
  .tile--cara .lesson:nth-child(2) { margin: 0 12px 0 32px; }
  .tile--cara .lesson:nth-child(3) { margin: 0 30px 0 6px; }
  .tile--cara .lesson:nth-child(4) { margin: 0 18px 0 40px; }
  .tile--cara .lesson:nth-child(5) { margin: 0 50px 0 0; }
  .tile--cara .lesson:nth-child(6) { margin: 0 6px 0 28px; }
  .tile--cara .lesson:nth-child(7) { margin: 0 38px 0 14px; }
  .tile--cara .lesson:nth-child(8) { margin: 0 16px 0 36px; }
  .tile--cara .lesson:nth-child(9) { margin: 0 26px 0 8px; }
  /* chip palette is now inherited from the global .lesson rules (dark bg) */
  /* live pulsing dot for the transcribing chip */
  .lesson__live {
    display: inline-flex;
    align-items: center;
    margin-right: 2px;
  }
  .lesson__live i {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(150,247,130,0.18);
    animation: livePulse 1.6s ease-in-out infinite;
  }
  @keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
  }
  /* mini bar chart for the talk-ratio chip */
  .lesson__bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    width: 70px;
    margin-right: 6px;
  }
  .lesson__bars i {
    display: block;
    flex: 1;
    background: var(--lime);
    border-radius: 2px;
    opacity: 0.85;
  }
  .cara-visual__img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    max-width: none;
    z-index: 1;
  }
  .cara-bubble {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 60px;
    width: 230px;
    background: var(--paper);
    color: var(--ocean);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 16px 32px rgba(3,38,31,0.30);
    transform: rotate(-2deg);
  }
  .cara-bubble__head {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 6px;
  }
  .cara-bubble__avatar {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lime), var(--leaf));
    flex: 0 0 22px;
  }
  .cara-bubble__name { font-weight: 700; font-size: 13px; letter-spacing: -0.005em; }
  .cara-bubble__tag {
    margin-left: auto;
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 999px;
    background: var(--pastel);
    color: var(--forest);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .cara-bubble__msg {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    color: var(--ocean);
  }
  .cara-bubble__msg em {
    font-style: normal;
    font-weight: 600;
    color: var(--leaf);
  }
  .cara-bubble--alt {
    left: auto;
    right: 16px;
    bottom: 18px;
    width: 200px;
    transform: rotate(2deg);
    background: var(--ocean);
    color: var(--pastel);
    box-shadow: 0 16px 32px rgba(0,0,0,0.40);
  }
  .cara-bubble--alt .cara-bubble__name { color: var(--frost); }
  .cara-bubble--alt .cara-bubble__msg { color: var(--frost); }
  .cara-bubble--alt .cara-bubble__tag { background: rgba(150,247,130,0.18); color: var(--lime); }

  /* trust strip — scrolling logo marquee */
  .hero__trust {
    border-radius: 0;
    border: 0;
    background: var(--paper);
    padding: 24px 0;
    overflow: hidden;
  }
  .hero__trust-label {
    text-align: center;
    margin: 0 0 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(3,38,31,0.45);
  }
  .hero__trust-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .logo-marquee {
    display: flex;
    gap: 64px;
    align-items: center;
    animation: heroLogosScroll 40s linear infinite;
    width: max-content;
  }
  .logo-marquee span {
    font-weight: 700;
    font-size: 22px;
    color: var(--ocean);
    white-space: nowrap;
    opacity: 0.7;
    display: inline-flex;
    align-items: center;
    filter: grayscale(1);
  }
  .logo-marquee span i { color: inherit !important; font-style: normal; }
  .logo-marquee span span { color: inherit !important; }
  /* All marquee logos are wordmarks at a uniform 26px cap height — the spans'
     filter:grayscale(1) + opacity:0.7 cascade onto the <img> so brand colors
     normalize against the strip. */
  .logo-marquee .lm img {
    display: block;
    height: 26px;
    width: auto;
    max-width: none;
    object-fit: contain;
  }
  @keyframes heroLogosScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  @media (max-width: 1180px) {
    .bento {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      grid-template-areas:
        "cara"
        "learning";
    }
    /* let tiles grow to fit text + visual */
    .tile__inner { height: auto; }
    .tile--learning .tile__inner { padding-right: 44px; padding-bottom: 8px; }
    .tile--cara .tile__inner { padding-bottom: 8px; }
    /* learning chips flow inline below text on narrow screens */
    .tile--learning .lessons {
      position: relative;
      top: auto; right: auto; left: auto;
      transform: rotate(-2deg);
      width: 100%;
      max-width: 460px;
      margin: 24px auto 12px;
    }
  }
  @media (max-width: 720px) {
    .hero { padding: 20px 0 0; }
    .tile--headline .tile__inner { padding: 36px 28px; }
    .tile__inner { padding: 32px 28px; }
    .tile--learning .tile__inner { padding-right: 28px; }
    .tile--cara .lessons { padding: 0 20px 28px; }
    .hero__trust { padding: 28px 0 32px; }
    .logo-marquee { gap: 44px; }
    .logo-marquee span { font-size: 18px; }
  }

  /* ============ Products grid ============ */
  .products {
    background: var(--frost);
    padding: 96px 0 120px;
    position: relative;
  }
  .products__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
  }
  .products__title {
    font-weight: 500;
    font-size: clamp(36px, 4.2vw, 60px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    max-width: 18ch;
    margin: 16px 0 0;
    color: var(--ocean);
  }
  .products__lede {
    font-size: 17px;
    color: rgba(3,38,31,0.66);
    max-width: 38ch;
    margin: 0;
    line-height: 1.5;
  }
  @media (max-width: 860px) {
    .products__header { flex-direction: column; align-items: flex-start; }
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    grid-template-areas: "learning ai";
  }
  @media (max-width: 980px) {
    .grid {
      grid-template-columns: 1fr;
      grid-template-areas:
        "learning"
        "ai";
    }
  }

  /* ============ Card shared ============ */
  .card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .card__body {
    position: relative;
    z-index: 2;
    padding: 44px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .card__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .card__label .num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1px solid currentColor;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
  }
  .card__h {
    font-weight: 500;
    font-size: clamp(48px, 5.6vw, 84px);
    line-height: 0.96;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
  }
  .card__h .em {
    color: var(--lime);
    font-style: normal;
  }
  .card__p {
    font-size: 17px;
    line-height: 1.5;
    max-width: 42ch;
    margin: 0 0 32px;
  }
  .card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    align-self: flex-start;
  }
  .card__cta .arrow { transition: transform .25s ease; }
  .card:hover .card__cta .arrow { transform: translateX(6px); }

  /* ---- Learning (top left) ---- */
  .card--learning {
    grid-area: learning;
    background: linear-gradient(155deg, var(--forest) 0%, var(--ocean) 95%);
    color: var(--frost);
    min-height: 560px;
  }
  .card--learning .card__p { color: rgba(235,245,235,0.72); }
  .card--learning .card__label { color: var(--pastel); }

  /* Lesson tile cluster (lower right) */
  .lesson-stack {
    position: absolute;
    z-index: 1;
    right: -40px;
    bottom: 56px;
    display: grid;
    gap: 14px;
    transform: rotate(-4deg);
    width: 380px;
    pointer-events: none;
  }
  .lesson {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(235,245,235,0.06);
    border: 1px solid rgba(235,245,235,0.1);
    backdrop-filter: blur(6px);
  }
  .lesson--featured {
    background: var(--lime);
    color: var(--ocean);
    border-color: transparent;
    box-shadow: 0 20px 35px rgba(0,0,0,0.35);
  }
  .lesson__icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(150,247,130,0.16);
    color: var(--lime);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 36px;
  }
  .lesson--featured .lesson__icon {
    background: var(--ocean);
    color: var(--lime);
  }
  .lesson__text {
    min-width: 0;
    flex: 1;
  }
  .lesson__title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.25;
    color: var(--frost);
    margin-bottom: 2px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .lesson--featured .lesson__title { color: var(--ocean); }
  .lesson__meta {
    font-size: 12px;
    color: rgba(235,245,235,0.5);
    display: flex; gap: 10px; align-items: center;
  }
  .lesson--featured .lesson__meta { color: rgba(3,38,31,0.6); }
  .lesson__check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--leaf);
    color: var(--ocean);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 22px;
  }
  .lesson__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(235,245,235,0.25);
    flex: 0 0 8px;
  }
  .lesson--featured .lesson__dot { background: var(--ocean); }
  /* progress bar inside card body */
  .progress {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(235,245,235,0.05);
    border: 1px solid rgba(235,245,235,0.08);
    max-width: 420px;
  }
  .progress__bar {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(235,245,235,0.1);
    overflow: hidden;
  }
  .progress__bar > i {
    display: block;
    height: 100%;
    width: 68%;
    background: var(--lime);
    border-radius: 999px;
  }
  .progress__text {
    font-size: 13px;
    color: rgba(235,245,235,0.72);
    font-weight: 500;
    white-space: nowrap;
  }
  .progress__text b { color: var(--lime); font-weight: 700; }

  /* ---- AI (top right) ---- */
  .card--ai {
    grid-area: ai;
    background: var(--emerald);
    color: var(--frost);
    min-height: 560px;
  }
  .card--ai .card__p { color: rgba(235,245,235,0.78); }
  .card--ai .card__label { color: var(--pastel); }
  .card--ai .card__h .em { color: var(--lime); }
  /* Cara chat preview */
  .cara {
    position: absolute;
    right: -20px;
    bottom: 28px;
    width: 340px;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.30));
  }
  .cara__bubble {
    background: var(--paper);
    color: var(--ocean);
    border-radius: 18px;
    padding: 16px 18px;
    transform: rotate(-3deg);
  }
  .cara__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .cara__avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lime), var(--leaf));
    color: var(--ocean);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px;
    border: 2px solid var(--paper);
  }
  .cara__name { font-weight: 700; font-size: 14px; }
  .cara__tag {
    margin-left: auto;
    font-size: 10.5px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--pastel);
    color: var(--forest);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .cara__msg {
    font-size: 14.5px;
    line-height: 1.45;
    margin: 0;
  }
  .cara__msg em { color: var(--leaf); font-style: normal; font-weight: 600; }
  .cara__bubble--alt {
    margin-top: 14px;
    transform: rotate(2deg) translateX(28px);
    background: var(--ocean);
    color: var(--pastel);
    width: 78%;
    margin-left: auto;
  }
  .cara__bubble--alt .cara__msg { color: var(--frost); }

  /* ---- Meet Cara accent (bottom right) ---- */
  .card--meet {
    grid-area: meet;
    background: var(--lime);
    color: var(--ocean);
    min-height: 180px;
  }
  .card--meet .card__body {
    flex-direction: row;
    align-items: center;
    padding: 32px 36px;
    gap: 32px;
  }
  .card--meet .meet__text {
    display: flex; flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 4px;
  }
  .card--meet .meet__label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(3,38,31,0.6);
    margin-bottom: 10px;
  }
  .card--meet .meet__h {
    font-weight: 500;
    font-size: clamp(28px, 2.7vw, 38px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0 0 8px;
    max-width: 14ch;
  }
  .card--meet .meet__p {
    font-size: 14.5px;
    line-height: 1.4;
    color: rgba(3,38,31,0.7);
    margin: 0 0 14px;
    max-width: 30ch;
  }
  .card--meet .meet__cta {
    margin-top: 12px;
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--ocean);
    padding-bottom: 2px;
    border-bottom: 1.5px solid var(--ocean);
  }
  .card--meet .meet__cta .arrow { transition: transform .2s ease; }
  .card--meet:hover .meet__cta .arrow { transform: translateX(4px); }
  .card--meet .meet__face {
    position: relative;
    width: 180px;
    flex: 0 0 180px;
    align-self: stretch;
    border-radius: 18px;
    overflow: hidden;
    background:
      radial-gradient(circle at 70% 50%, rgba(20,112,84,0.55) 0%, rgba(20,112,84,0) 60%),
      var(--forest);
  }
  .card--meet .meet__face img {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    max-width: none;
    height: auto;
  }
  @media (max-width: 560px) {
    .card--meet .card__body { flex-direction: column; }
    .card--meet .meet__face { width: 100%; flex: 0 0 200px; }
  }

  /* ============ Trusted / Stats / Quotes ============ */
  .trusted-stats {
    position: relative;
    background: var(--paper);
    color: var(--ocean);
    padding: 48px 0 60px;
  }
  .trusted-stats__title {
    text-align: center;
    font-weight: 500;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin: 0 auto 56px;
    max-width: 22ch;
    color: var(--ocean);
  }
  .trusted-stats__title .em { color: var(--leaf); font-style: normal; }
  .ts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .ts-stat {
    background: linear-gradient(155deg, var(--emerald) 0%, var(--forest) 55%, var(--ocean) 100%);
    border: 1px solid rgba(3,38,31,0.08);
    color: var(--frost);
    border-radius: var(--r-lg);
    padding: 44px 28px 38px;
    text-align: center;
  }
  .ts-stat .num {
    font-size: clamp(48px, 5.6vw, 78px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--lime);
  }
  .ts-stat .label {
    margin: 14px auto 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    max-width: 16ch;
    color: rgba(235,245,235,0.82);
  }
  .ts-quote {
    background: var(--frost);
    border: 1px solid rgba(3,38,31,0.08);
    border-radius: var(--r-lg);
    padding: 32px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .ts-quote .ts-logo {
    height: 24px;
    display: flex;
    align-items: center;
    color: var(--ocean);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.01em;
  }
  .ts-quote .ts-logo svg { display: block; }
  .ts-quote blockquote {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(3,38,31,0.78);
  }
  .ts-quote cite {
    margin-top: auto;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    color: var(--ocean);
  }
  @media (max-width: 960px) {
    .trusted-stats { padding: 64px 0 72px; }
    .ts-grid { grid-template-columns: 1fr; }
  }

  /* ============ Testimonials ============ */
  .testimonials {
    padding: 36px 0 100px;
    background: var(--paper);
  }
  .testimonials__head {
    text-align: left;
    margin-bottom: 22px;
    padding: 32px 0 32px;
  }
  @media (max-width: 720px) {
    .testimonials__head { padding: 24px 0 28px; }
  }
  .testimonials__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--emerald);
    margin: 0 0 18px;
  }
  .testimonials__eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--leaf);
    box-shadow: 0 0 0 4px rgba(0,167,92,0.18);
  }
  .testimonials__title {
    font-weight: 500;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ocean);
    margin: 0 auto;
    max-width: 22ch;
  }
  .testimonials__title .em { color: var(--leaf); font-style: normal; }
  /* Two-column section layout: title left, quotes right */
  .testimonials__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
  }
  .testimonials__head { text-align: left; max-width: none; }
  .testimonials__head .testimonials__title { text-align: left; }
  .testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .testimonial {
    background: var(--paper);
    border: 1px solid rgba(3,38,31,0.06);
    border-radius: var(--r-lg);
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .testimonial--dark {
    background: var(--lime);
    border-color: transparent;
    color: var(--ocean);
  }
  .testimonial__quote {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ocean);
    margin: 0;
    text-wrap: pretty;
  }
  .testimonial--dark .testimonial__quote { color: var(--ocean); }
  .testimonial__by {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
  }
  .testimonial__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--pastel);
    flex: none;
    display: flex; align-items: center; justify-content: center;
    color: var(--ocean);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
  }
  .testimonial__avatar img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
  }
  .testimonial--dark .testimonial__avatar {
    background: var(--ocean);
    color: var(--lime);
  }
  .testimonial__name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ocean);
  }
  .testimonial--dark .testimonial__name { color: var(--ocean); }
  .testimonial__role {
    font-size: 13px;
    line-height: 1.3;
    color: rgba(3,38,31,0.6);
    margin-top: 2px;
  }
  .testimonial--dark .testimonial__role { color: rgba(3,38,31,0.7); }
  @media (max-width: 980px) {
    .testimonials__layout { grid-template-columns: 1fr; gap: 32px; }
    .testimonials__grid { grid-template-columns: 1fr; gap: 18px; }
  }

  /* ============ Latest Podcast ============ */
  .next-podcast {
    padding: 80px 0 70px;
    background: var(--paper);
  }
  .next-podcast__head {
    text-align: center;
    margin-bottom: 36px;
  }
  }
  .podcast-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: 10px;
  }
  .podcast-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--leaf);
    box-shadow: 0 0 0 3px rgba(0,167,92,0.18);
  }
  .next-podcast__title {
    text-align: center;
    font-weight: 500;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ocean);
    margin: 0 auto;
    max-width: 22ch;
  }
  .next-podcast__title .em { color: var(--leaf); font-style: normal; }

  /* Lime-gradient body variant for a podcast card. The right cover panel
     keeps the frost background; only the left body switches. */
  /* Lime-gradient variant: gradient spans the entire card. */
  .podcast-card.podcast-card--lime {
    background:
      radial-gradient(120% 100% at 0% 100%, rgba(0,167,92,0.18), transparent 60%),
      linear-gradient(135deg, var(--lime) 0%, #B6F89C 65%, var(--pastel) 100%);
    grid-template-columns: 1fr 1.2fr;
  }
  /* Swap the cover to the LEFT for this variant. */
  .podcast-card.podcast-card--lime .podcast-card__cover { order: 1; }
  .podcast-card.podcast-card--lime .podcast-body { order: 2; }
  .podcast-card.podcast-card--lime .podcast-body,
  .podcast-card.podcast-card--lime .podcast-card__cover {
    background: transparent;
  }
  .podcast-card.podcast-card--lime .podcast-body {
    color: var(--ocean);
  }
  .podcast-card.podcast-card--lime .podcast-body h2,
  .podcast-card.podcast-card--lime .podcast-body h3 { color: var(--ocean); }
  .podcast-card.podcast-card--lime .podcast-body .podcast-eyebrow {
    color: var(--ocean);
    opacity: 0.66;
  }
  .podcast-card.podcast-card--lime .podcast-body {
    grid-template-columns: 1fr;
  }

  /* Ocean variant: dark webinar tile mirroring the lime tile layout */
  .podcast-card.podcast-card--ocean {
    grid-template-columns: 1fr 1.2fr;
    background:
      radial-gradient(120% 100% at 0% 100%, rgba(0,167,92,0.30), transparent 60%),
      linear-gradient(135deg, var(--forest) 0%, var(--ocean) 100%);
    color: var(--frost);
  }
  .podcast-card.podcast-card--ocean .podcast-card__cover { order: 1; }
  .podcast-card.podcast-card--ocean .podcast-body { order: 2; }
  .podcast-card.podcast-card--ocean .podcast-body,
  .podcast-card.podcast-card--ocean .podcast-card__cover {
    background: transparent;
  }
  .podcast-card.podcast-card--ocean .podcast-body {
    grid-template-columns: 1fr;
    color: var(--frost);
  }
  .podcast-card.podcast-card--ocean .podcast-body h2,
  .podcast-card.podcast-card--ocean .podcast-body h3 { color: var(--frost); }
  .podcast-card.podcast-card--ocean .podcast-body .podcast-eyebrow {
    color: var(--lime);
  }
  .podcast-card.podcast-card--ocean .podcast-guest-name { color: var(--frost); }
  .podcast-card.podcast-card--ocean .podcast-guest-role { color: rgba(235,245,235,0.62); }
  .podcast-card.podcast-card--ocean .podcast-guest--stacked {
    box-shadow:
      0 0 0 3px var(--ocean),
      0 0 0 4px rgba(235,245,235,0.10),
      0 16px 32px -16px rgba(0,0,0,0.55);
  }
  .podcast-card.podcast-card--ocean .btn--spotify {
    background: var(--lime);
    color: var(--ocean);
  }
  .podcast-card.podcast-card--ocean .btn--spotify:hover {
    background: var(--pastel);
  }
  .podcast-card.podcast-card--ocean .transcript-link {
    color: rgba(235,245,235,0.85);
  }
  .podcast-card.podcast-card--lime .podcast-meta .meta-icon {
    background: rgba(3,38,31,0.08);
    color: var(--leaf);
  }
  .podcast-card.podcast-card--lime .podcast-meta .meta-label {
    color: rgba(3,38,31,0.55);
  }
  .podcast-card.podcast-card--lime .podcast-meta .meta-value {
    color: var(--ocean);
  }
  .podcast-card.podcast-card--lime .btn--spotify {
    background: var(--ocean);
    color: var(--lime);
  }
  .podcast-card.podcast-card--lime .btn--spotify:hover {
    background: var(--forest);
  }
  .podcast-card.podcast-card--lime .transcript-link {
    color: var(--ocean);
  }

  /* Stack multiple podcast cards within the same section */
  .next-podcast__stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  @media (max-width: 980px) {
    .next-podcast__stack { grid-template-columns: 1fr; }
  }
  .podcast-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: stretch;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--ocean);
    color: var(--frost);
    position: relative;
    min-height: 352px;
  }
  /* visually swap: body on the left, cover on the right */
  .podcast-card__cover { order: 2; }
  .podcast-body { order: 1; }
  .podcast-card__cover {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 32px 32px;
  }
  /* hide the legacy <img> cover, kept in markup but no longer used */
  .podcast-card__cover-img { display: none; }

  /* Guest portrait */
  .podcast-guest {
    position: relative;
    width: 144px;
    height: 144px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ocean);
    box-shadow:
      0 0 0 1px rgba(3,38,31,0.08),
      0 0 0 8px rgba(0,167,92,0.10),
      0 20px 40px -18px rgba(3,38,31,0.20);
  }
  /* Stacked-portraits row for multi-speaker events */
  .podcast-guests {
    display: flex;
    align-items: center;
  }
  .podcast-guest--stacked {
    width: 124px;
    height: 124px;
    box-shadow:
      0 0 0 3px var(--frost),
      0 0 0 4px rgba(3,38,31,0.06),
      0 16px 32px -16px rgba(3,38,31,0.20);
  }
  .podcast-guest--stacked + .podcast-guest--stacked {
    margin-left: -28px;
  }
  .podcast-guest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .podcast-guest--stacked img { object-position: center top; }
  .podcast-guest-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .podcast-guest-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--ocean);
    letter-spacing: -0.01em;
  }
  .podcast-guest-role {
    font-size: 12.5px;
    color: rgba(3,38,31,0.55);
    margin-top: 2px;
    letter-spacing: 0.02em;
  }
  /* PepsiCo company chip */
  .podcast-company {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0 6px 14px -6px rgba(3,38,31,0.18), 0 0 0 1px rgba(3,38,31,0.06);
  }
  .podcast-company--text {
    padding: 8px 16px;
    color: var(--ocean);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .podcast-company img {
    height: 64px;
    width: auto;
    display: block;
  }
  .podcast-card__cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .podcast-card__cover::after {
    content: "";
    display: none;
    background:
      radial-gradient(60% 70% at 80% 100%, rgba(3,38,31,0.45) 0%, rgba(3,38,31,0) 65%),
      linear-gradient(250deg, rgba(3,38,31,0) 30%, rgba(3,38,31,0.40) 100%);
    pointer-events: none;
  }
  /* Floating "Listen now" play badge over the cover */
  .podcast-play {
    position: absolute;
    bottom: 16px; left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    background: var(--paper);
    color: var(--ocean);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0,0,0,0.28);
  }
  .podcast-play .play-glyph {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--leaf);
    color: var(--paper);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .podcast-play .play-glyph svg { width: 10px; height: 10px; }
  /* Show-name chip top-left */
  .podcast-show {
    position: absolute;
    top: 16px; left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 6px;
    background: rgba(3,38,31,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(235,245,235,0.18);
    color: var(--frost);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    z-index: 2;
  }
  .podcast-show .mic {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ocean);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .podcast-show .mic svg { width: 10px; height: 10px; }
  .podcast-body {
    padding: 40px 32px 22px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    column-gap: 32px;
    row-gap: 14px;
    align-items: stretch;
  }
  .podcast-body__title-col,
  .podcast-body__meta-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
  }
  .podcast-body__meta-col {
    justify-content: flex-start;
    padding-left: 28px;
    border-left: 1px solid rgba(235,245,235,0.10);
  }
  .podcast-body__title-col .podcast-cta-row { margin-top: auto; padding-top: 10px; padding-bottom: 36px; }
  .podcast-body .podcast-eyebrow {
    color: var(--lime);
    margin: 0;
  }
  .podcast-body h2,
  .podcast-body h3 {
    margin: 0;
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--frost);
    text-wrap: balance;
  }
  .podcast-body .lede {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(235,245,235,0.78);
    max-width: 56ch;
  }
  .podcast-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin-top: 0;
  }
  }
  .podcast-meta .meta-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .podcast-meta .meta-icon {
    width: 26px; height: 26px;
    flex: none;
    border-radius: 8px;
    background: rgba(235,245,235,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--lime);
  }
  .podcast-meta .meta-icon svg { width: 13px; height: 13px; }
  .podcast-meta .meta-label {
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(235,245,235,0.55);
    display: block;
    margin-bottom: 2px;
  }
  .podcast-meta .meta-value {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--frost);
    line-height: 1.25;
  }
  .podcast-cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 4px;
    flex-wrap: wrap;
  }
  .podcast-cta-row .btn--spotify {
    background: #1DB954;
    color: #ffffff;
  }
  .podcast-cta-row .btn--spotify:hover { background: #1ed760; }
  .podcast-cta-row .btn--spotify svg { width: 16px; height: 16px; }
  .podcast-cta-row .transcript-link {
    color: rgba(235,245,235,0.78);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .podcast-cta-row .transcript-link:hover { color: var(--frost); }
  /* subtle waveform along the bottom edge of the body, reinforces audio context */
  .podcast-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
    margin-top: 2px;
    opacity: 0.5;
  }
  .podcast-wave i {
    display: block;
    width: 2px;
    border-radius: 2px;
    background: var(--lime);
  }
  @media (max-width: 960px) {
    .podcast-card { grid-template-columns: 1fr; }
    .podcast-card__cover { min-height: 180px; }
    .podcast-body {
      padding: 22px 20px;
      grid-template-columns: 1fr;
    }
    .podcast-body__meta-col {
      border-left: 0;
      padding-left: 0;
      border-top: 1px solid rgba(235,245,235,0.10);
      padding-top: 14px;
    }
  }

  /* ============ Next Event ============ */
  .next-event {
    padding: 12px 0 80px;
    background: var(--paper);
  }
  .next-event__head {
    text-align: center;
    margin-bottom: 36px;
  }
  .event-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: 10px;
  }
  .event-eyebrow .pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 0 rgba(150,247,130,0.55);
    animation: eventPulse 1.8s ease-out infinite;
  }
  @keyframes eventPulse {
    0%   { box-shadow: 0 0 0 0 rgba(150,247,130,0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(150,247,130,0); }
    100% { box-shadow: 0 0 0 0 rgba(150,247,130,0); }
  }
  .next-event__title {
    text-align: center;
    font-weight: 500;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ocean);
    margin: 0 auto;
    max-width: 22ch;
  }
  .next-event__title .em { color: var(--leaf); font-style: normal; }
  .event-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--frost);
    color: var(--ocean);
    border: 1px solid rgba(3,38,31,0.06);
    min-height: 380px;
  }
  .event-media {
    position: relative;
    min-height: 240px;
    background: #032720 center/cover no-repeat;
  }
  .event-media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(95deg, rgba(3,38,31,0.05) 0%, rgba(3,38,31,0.55) 100%);
  }
  .event-date-badge {
    position: absolute;
    top: 16px; left: 16px;
    display: flex; flex-direction: column; align-items: center;
    background: var(--paper);
    color: var(--ocean);
    border-radius: 10px;
    padding: 8px 12px 6px;
    min-width: 60px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    z-index: 2;
  }
  .event-date-badge .month {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--leaf);
  }
  .event-date-badge .day {
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-top: 2px;
  }
  .event-date-badge .year {
    font-size: 10px;
    margin-top: 2px;
    color: rgba(3,38,31,0.65);
    letter-spacing: 0.08em;
  }
  .event-body {
    padding: 28px 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
  .event-body .event-eyebrow {
    color: var(--leaf);
    margin: 0;
  }
  .event-body h2 {
    margin: 0;
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--ocean);
  }
  .event-body .lede {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(3,38,31,0.72);
    max-width: 56ch;
  }
  .event-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 18px;
    padding: 14px 0 2px;
    border-top: 1px solid rgba(3,38,31,0.10);
    margin-top: 2px;
  }
  .event-meta .meta-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }
  .event-meta .meta-icon {
    width: 26px; height: 26px;
    flex: none;
    border-radius: 8px;
    background: rgba(3,38,31,0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--leaf);
  }
  .event-meta .meta-icon svg { width: 13px; height: 13px; }
  .event-meta .meta-label {
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(3,38,31,0.55);
    display: block;
    margin-bottom: 2px;
  }
  .event-meta .meta-value {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ocean);
    line-height: 1.25;
  }
  .event-cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 4px;
    flex-wrap: wrap;
  }
  .event-cta-row .agenda-link {
    color: rgba(3,38,31,0.65);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .event-cta-row .agenda-link:hover { color: var(--ocean); }
  @media (max-width: 960px) {
    .event-card { grid-template-columns: 1fr; }
    .event-media { min-height: 180px; }
    .event-body { padding: 22px 20px; }
    .event-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  /* ============ Footer CTA ============ */
  .footer-cta {
    padding: 0;
  }
  .footer-cta__panel {
    background: var(--paper);
    color: var(--ocean);
    text-align: center;
    padding: 126px 32px 122px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .footer-cta__mark {
    position: absolute;
    left: -80px;
    bottom: 130px;
    width: 403px;
    height: 403px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.05;
    color: var(--leaf);
    transform: rotate(15deg);
    transform-origin: center;
  }
  .footer-cta__mark svg { width: 100%; height: 100%; display: block; }
  .footer-cta__mark svg path { fill: currentColor; }
  .footer-cta__panel > *:not(.footer-cta__mark) { position: relative; z-index: 1; }
  .footer-cta__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(60% 60% at 10% 100%, rgba(0,167,92,0.10) 0%, rgba(0,167,92,0) 60%),
      radial-gradient(50% 60% at 100% 0%, rgba(0,167,92,0.08) 0%, rgba(0,167,92,0) 60%);
    z-index: -1;
    pointer-events: none;
  }
  .footer-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--emerald);
    margin: 0 0 22px;
  }
  .footer-cta__eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(150,247,130,0.18);
  }
  .footer-cta__h {
    font-weight: 500;
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: -20px auto 16px;
    max-width: 22ch;
    color: var(--ocean);
  }
  .footer-cta__h .em { color: var(--leaf); font-style: normal; }
  .footer-cta__p {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(3,38,31,0.66);
    margin: 0 auto 36px;
    max-width: 56ch;
  }
  .footer-cta__actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  .footer-cta__actions .btn--ghost-light {
    color: var(--ocean);
    border: 1px solid rgba(3,38,31,0.18);
  }
  .footer-cta__actions .btn--ghost-light:hover { background: rgba(3,38,31,0.04); }
  @media (max-width: 720px) {
    .footer-cta__panel { padding: 64px 24px 60px; }
  }

  /* ============ Footer ============ */
  .footer {
    background: var(--ocean);
    color: rgba(235,245,235,0.7);
    padding: 64px 0 40px;
    font-size: 14px;
  }
  .footer__top {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(235,245,235,0.1);
  }
  .footer__brand .logo { height: 26px; width: auto; fill: var(--frost); margin-bottom: 20px; }
  .footer__brand p { max-width: 32ch; line-height: 1.5; margin: 0; }
  .footer__col h5 {
    color: var(--frost);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 18px;
  }
  .footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
  .footer__col a:hover { color: var(--frost); }
  .footer__bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: rgba(235,245,235,0.5);
  }
  .footer__bottom a { margin-left: 20px; }
  @media (max-width: 860px) {
    .footer__top { grid-template-columns: 1fr 1fr; }
  }

/* ---- next style block ---- */

[id^="sec-"]{scroll-margin-top:100px}/*--screenshot-helper*/

/* ---- next style block ---- */

/* Homepage override — recolor the STNav mark to Leaf, keep wordmark dark */
  .stnav__brand-logo svg .wordmark { fill: var(--ocean) !important; }
  .stnav__brand-logo svg .mark { fill: var(--leaf) !important; }

/* Web3 v8 — kill the Elementor 20px widget gap below the nav. */
.elementor-widget-shortcode:has(.stnav) {
  margin-block-end: 0 !important;
  margin-bottom: 0 !important;
}
.elementor-section:has(.stnav) .elementor-widget-wrap,
.elementor-section:has(.stnav) .elementor-column {
  padding: 0 !important;
}


/* ===== socialtalent-homepage-v3 adapter overrides ===== */
/* ============================================================
   Adapter layer for homepage headline & footer-cta sections.
   Re-points design-system classes onto Elementor's wrapper DOM.
   ============================================================ */

/* 1. Width: let the design's .shell (and inner <section>s) control width.
   Elementor's boxed container caps at ~1140px and the column gap adds 10px;
   both fight the design. Neutralise them so .shell's 1440/40px wins.
   NOTE: Elementor's `.elementor-section.elementor-section-boxed > .elementor-container`
   (specificity 0,2,1) wins over a plain `.elementor-section > .elementor-container`
   (0,1,1) — so this rule matches that body.elementor-page-94210 to win the cascade, and adds
   !important as belt-and-braces against the per-page kit CSS. */
.elementor-section.elementor-section-boxed > .elementor-container,
.elementor-section > .elementor-container {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.elementor-widget-wrap { padding: 0 !important; }
/* Elementor's default column gap (10px) widens the content sideways — kill it
   so the design's .shell padding (40px) is the only horizontal inset. */
.elementor-column-gap-default > .elementor-column > .elementor-element-populated { padding: 0 !important; }

/* 2. Generic: the design class on the wrapper governs box + type; the inner
   semantic element inherits typography and drops its default margins. */
.elementor-widget-heading .elementor-heading-title {
  font: inherit; color: inherit; letter-spacing: inherit; line-height: inherit; margin: 0;
}
.elementor-widget-text-editor .elementor-widget-container > * { margin: 0; }

/* 3. Eyebrow pill + hero supra: Elementor stretches the heading wrapper to full
   column width; force it back to inline-flex/auto so it shrinks to content.
   The centered heads (.section__head, .hero__center are text-align:center)
   then center the inline-level pill. */
.elementor-widget-heading.eyebrow,
.elementor-widget-heading.eyebrow--light,
.elementor-widget-heading.eyebrow--dark,
.elementor-widget-heading.hero__supra {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100%;
}

/* 5. Hero centering: the column is .hero__center (text-align:center). Ensure
   the native button (block wrapper) centers its inline-block <a>. */
#sec-headline .elementor-widget-button .elementor-button-wrapper { text-align: center; }

/* 5a. Headline tile inner stack — center the children.
   The design relies on `.tile--headline .tile__inner { align-items: center }` from
   the base CSS, but on V3 `.tile__inner` is the Elementor column class. The actual
   flex container holding the title/lede/CTA is `.elementor-widget-wrap`, which
   Elementor defaults to `flex-direction: row; flex-wrap: wrap`. Each widget has
   `width: 100%` so they wrap to separate rows, but with `align-items: normal`
   (stretch on cross-axis) and the title's max-width pinning it, the children sit
   at the row's left edge. Force column-direction + cross-axis center. */
.tile--headline .elementor-widget-wrap {
  flex-direction: column !important;
  align-items: center !important;
}

/* 5b. Decorative SVG mark — anchor to the section, not the inner widget wrapper.
   Elementor wraps every widget in `.elementor-element { position: relative }`,
   which becomes the abs-positioned mark's containing block and slings it ~440px
   above the section. Setting the mark's widget wrapper to position: static makes
   `.tile--headline { position: relative }` (base CSS) the anchor instead. */
.tile--headline .elementor-widget-html:has(.tile--headline__mark) {
  position: static !important;
}
.tile--headline .elementor-widget-html:has(.tile--headline__mark) > .elementor-widget-container {
  position: static !important;
}

/* 6. Native CTA button: map .cta / .cta--primary onto Elementor's <a>, reset
   Elementor's button defaults, and reproduce the trailing arrow via ::after. */
.elementor-widget-button.cta .elementor-button {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 22px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px;
  background: transparent; border: 0;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.elementor-widget-button.cta .elementor-button:hover { transform: translateY(-1px); }
.elementor-widget-button.cta--primary .elementor-button { background: var(--lime); color: var(--ocean); }
.elementor-widget-button.cta--primary .elementor-button:hover { background: #b6ffa5; }
.elementor-widget-button.cta .elementor-button-text::after {
  content: " →"; display: inline-block; transition: transform .2s ease;
}
.elementor-widget-button.cta .elementor-button:hover .elementor-button-text::after { transform: translateX(3px); }

/* Homepage-specific: constrain hero title max-width. */
#sec-headline .elementor-widget-heading.hero__title .elementor-heading-title { max-width: 18ch; }


/* ===== 2026-06-03 live polish fixes ===== */
/* Fix 1 - hero centering made self-contained after the CTA button was removed.
   The title/lede widgets were shrink-wrapped flex items; the flex column's
   centering reference collapsed once the full-width CTA widget was gone
   (title/lede shifted left). Drop flex on the inner stack and center each
   text block via auto margins + text-align, preserving their own max-widths. */
#sec-headline .tile__inner .elementor-widget-wrap { display: block !important; }
#sec-headline .hero__title { margin-left: auto !important; margin-right: auto !important; }
#sec-headline .hero__title .elementor-heading-title { margin-left: auto !important; margin-right: auto !important; text-align: center !important; }
#sec-headline .hero__lede { margin-left: auto !important; margin-right: auto !important; text-align: center !important; }


/* === Hero eyebrow promoted to H1 (lime bar, Cara-style) === */
.tile--headline .elementor-widget-heading.hero__supra .elementor-heading-title{
  display:inline-flex;align-items:center;gap:14px;margin:0 0 18px;
  font-size:12px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--emerald);
}
.tile--headline .elementor-widget-heading.hero__supra .elementor-heading-title::before{
  content:"";width:3px;height:22px;background:var(--lime);border-radius:2px;flex:none;
}
/* === Card CTAs restyled as lime pill buttons === */
.tile__cta.btn{padding:0 22px;border-bottom:0;}
.tile .tile__cta.btn--primary{color:var(--ocean);}

/* v3 mobile fixes 2026-06-05 (r3) */
@media (max-width:768px){
  .tile--cara .cara-graphic,.tile--cara .lessons,
  .tile--learning .training-graphic,.tile--learning .lessons{display:none!important;}
  .tile--cara,.tile--learning{align-items:stretch!important;}
  .tile--cara .tile__inner,.tile--learning .tile__inner{height:auto!important;align-items:center!important;text-align:center!important;padding-bottom:20px!important;}
  .tile--cara .tile__cta,.tile--learning .tile__cta{align-self:center!important;margin-top:18px!important;}
  .testimonials__title{text-align:center!important;}
  .next-podcast .podcast-company{display:none!important;}
  .podcast-card--ocean .podcast-card__cover{display:none!important;}
  .podcast-card--ocean{grid-template-columns:1fr!important;}
  .podcast-card--ocean .podcast-body{text-align:center!important;}
  .podcast-card--ocean .podcast-cta-row{justify-content:center!important;gap:16px!important;}
}

/* paramount emblem fit 2026-06-09 */
.lm img[src*="paramount"]{height:36px!important;}


/* st-homepage-tweak 2026-06-10 */
/* testimonials: smooth fade for the rotating green highlight */
.testimonial { transition: background-color .6s ease, border-color .6s ease; }
.testimonial__avatar { transition: background-color .6s ease, color .6s ease; }
.testimonial__quote, .testimonial__name, .testimonial__role { transition: color .6s ease; }
@media (prefers-reduced-motion: reduce) {
  .testimonial, .testimonial__avatar,
  .testimonial__quote, .testimonial__name, .testimonial__role { transition: none; }
}/* End custom CSS */