:root {
    --lj-ink: #0b1f22;
    --lj-muted: #53656b;
    --lj-bg: #eef5f5;
    --lj-panel: #ffffff;
    --lj-panel-soft: #f8fbfb;
    --lj-border: rgba(11,31,34,.10);
    --lj-teal: #11a7b3;
    --lj-teal-dark: #0b7f89;
    --lj-shadow: 0 12px 32px rgba(7, 34, 39, .07);
    --lj-radius: 20px;
    --lj-container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--lj-ink);
    background: var(--lj-bg);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
}

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

.container {
    width: min(var(--lj-container), calc(100% - 40px));
    margin: 0 auto;
}

.header {
    position: relative;
    top: auto;
    z-index: 5;
    padding: 12px 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(11,31,34,.10);
    box-shadow: none;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header img {
    height: 42px;
    width: auto;
}

.hero {
    padding: 24px 0 18px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 34px;
    align-items: center;
}

.hero-copy {
    padding: 0;
}

.hero-copy h1 {
    font-size: clamp(27px, 3.4vw, 46px); /* reduced ~20% */
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    color: var(--lj-ink);
    font-weight: 680; /* reduced from 850 */
    max-width: 700px;
}

.hero-subtext {
    margin: 0 0 22px;
    color: var(--lj-muted);
    font-size: 18px;
    line-height: 1.65;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.hero-card {
    background: linear-gradient(180deg, #f9fcfc 0%, #f5fbfb 100%);
    border: 1px solid var(--lj-border);
    border-radius: 24px;
    box-shadow: var(--lj-shadow);
    padding: 20px 22px;
}

.hero__img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__img img,
.hero-process-image {
    width: 100%;
    max-width: 640px;
    max-height: 300px;
    object-fit: contain;
    margin: 0 auto;
}

main,
.main,
.daily-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 8px 0 56px;
}

.main > .container,
.daily-main > .container {
    width: min(var(--lj-container), calc(100% - 40px));
    margin: 0 auto;
}

main h1 {
	
	font-size: clamp(27px, 3.4vw, 52px) !important;
    line-height: 1.08 !important;
    margin: 6px 0 18px !important;
    font-weight: 640; /* from 800 */
    letter-spacing: -0.035em;  
    color: var(--lj-ink);    
    max-width: 980px;
}

h2 {

    font-size: clamp(16px, 1.6vw, 24px) !important;
    font-weight: 640; /* from 800 */    
    line-height: 1.18;
    margin: 0 0 12px;
    color: var(--lj-ink);    
    letter-spacing: -0.02em;
}

h3 {
	
	
    font-size: clamp(13px, 1.2vw, 16px) !important;
    font-weight: 600;    
    line-height: 1.3;
    margin: 16px 0 8px;
    color: var(--lj-ink);
}

p {
    margin: 0 0 14px;
    color: var(--lj-ink);
    font-size: 17px;	
    line-height: 1.55;

}

small,
.muted {
    color: var(--lj-muted);
}

section {
    background: var(--lj-panel);
    border: 1px solid var(--lj-border);
    border-radius: var(--lj-radius);
    box-shadow: var(--lj-shadow);
    padding: 22px 22px 20px;
    margin: 0 0 18px;
}

.hero,
.header,
.footer {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

section > *:first-child {
    margin-top: 0;
}

section > *:last-child {
    margin-bottom: 0;
}

a {
    color: var(--lj-teal-dark);
    text-decoration: none;
    font-weight: 700;
}

a:hover {
    text-decoration: underline;
}

ul,
ol {
    margin: 0 0 14px 22px;
    padding: 0;
}

li {
    margin: 6px 0;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 14px 0 4px;
    border: 1px solid var(--lj-border);
    border-radius: 14px;
    overflow: hidden;
}

th,
td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--lj-border);
    vertical-align: top;
    font-size: 15px;
}

th {
    background: rgba(17,167,179,.09);
    font-weight: 640;
}

tr:last-child td {
    border-bottom: 0;
}

blockquote {
    margin: 14px 0;
    padding: 12px 14px;
    border-left: 4px solid var(--lj-teal);
    background: rgba(17,167,179,.06);
    border-radius: 12px;
}

code {
    background: rgba(11,31,34,.06);
    padding: 2px 6px;
    border-radius: 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 0.95em;
}

details {
    border: 1px solid var(--lj-border);
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
    margin: 10px 0;
}

summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--lj-ink);
}

details[open] {
    box-shadow: 0 8px 18px rgba(0,0,0,.05);
}

details p {
    color: var(--lj-muted);
    margin-top: 10px;
}

a.cta-primary,
a.cta-secondary,
.hero-actions a,
.daily-cta a,
.next-step-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    text-decoration: none;
   	font-weight: 640; /* from 800 */
    margin: 0;
}

a.cta-primary,
.hero-actions .btn-primary,
.next-step-links a:first-child {
    background: var(--lj-teal);
    color: #fff;
    box-shadow: 0 10px 22px rgba(17,167,179,.22);
}

a.cta-primary:hover,
.hero-actions .btn-primary:hover,
.next-step-links a:first-child:hover {
    background: var(--lj-teal-dark);
    text-decoration: none;
}

a.cta-secondary,
.hero-actions .btn-secondary,
.next-step-links a:last-child {
    background: transparent;
    color: var(--lj-teal-dark);
    border-color: rgba(17,167,179,.35);
}

a.cta-secondary:hover,
.hero-actions .btn-secondary:hover,
.next-step-links a:last-child:hover {
    background: rgba(17,167,179,.08);
    text-decoration: none;
}

.next-step-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.footer {
    margin-top: 6px;
    padding: 18px 0 34px;
    border-top: 1px solid rgba(11,31,34,.10);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer img {
    height: 34px;
    width: auto;
}

.footer p {
    margin: 0;
    color: var(--lj-muted);
    font-size: 12px;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .header {
        padding: 10px 0;
    }

    .header img {
        height: 38px;
    }

    .hero {
        padding-bottom: 16px;
    }

    .hero-copy {
        order: 1;
    }

    .hero-card {
        order: 2;
        padding: 12px;
        border-radius: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 6.5vw, 48px);
    }

    .hero-subtext {
        font-size: 17px;
    }

    .hero__img img,
    .hero-process-image {
        max-height: 190px;
    }
}

@media (max-width: 768px) {
    .container,
    .main > .container,
    .daily-main > .container {
        width: min(var(--lj-container), calc(100% - 24px));
    }

    .header {
        padding-top: 14px;
    }

    .header img {
        height: 42px;
    }

    p,
    th,
    td {
        font-size: 15px;
    }

    section {
        padding: 16px 14px;
        border-radius: 16px;
    }

    .hero-actions a,
    .next-step-links a,
    a.cta-primary,
    a.cta-secondary {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-copy h1 {
        font-size: 31px;
        margin-bottom: 12px;
    }

    .hero-subtext {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hero__img img,
    .hero-process-image {
        max-height: 165px;
    }
}


@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-copy h1 {
        font-size: 42px;
        max-width: none;
    }

    .hero-subtext {
        max-width: none;
        font-size: 17px;
    }

    .hero-card {
        padding: 16px 18px;
    }

    .hero__img img,
    .hero-process-image {
        max-height: 240px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--lj-container), calc(100% - 24px));
    }

    .header img {
        height: 34px;
    }

    .header img {
        height: 44px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero__img img,
    .hero-process-image {
        max-height: 190px;
    }
}



/* Calendly embed */
.calendly-section {
    padding: 6px 0 18px;
}

.calendly-section.playbook-section {
    padding: 26px 24px 24px;
}

.calendly-shell {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
    border: 1px solid rgba(17,167,179,.12);
    border-radius: 22px;
    box-shadow: var(--lj-shadow);
    padding: 18px 18px 0;
    overflow: hidden;
}

.calendly-copy {
    margin-bottom: 16px;
    max-width: 760px;
}

.calendly-inline-widget {
    width: calc(100% + 36px);
    min-width: 100%;
    height: 940px;
    margin-left: -18px;
    margin-right: -18px;
    margin-bottom: -1px;
    border-radius: 0 0 22px 22px;
    overflow: hidden;
    background: #fff;
    border: 0;
}

@media (max-width: 991px) {
    .calendly-section.playbook-section {
        padding: 22px 18px 18px;
    }

    .calendly-shell {
        padding: 16px 16px 0;
        border-radius: 18px;
    }

    .calendly-inline-widget {
        width: calc(100% + 32px);
        height: 900px;
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0 0 18px 18px;
    }
}

@media (max-width: 640px) {
    .calendly-section.playbook-section {
        padding: 18px 14px 16px;
    }

    .calendly-shell {
        padding: 14px 14px 0;
        border-radius: 16px;
    }

    .calendly-copy {
        margin-bottom: 12px;
    }

    .calendly-inline-widget {
        width: calc(100% + 28px);
        height: 760px;
        margin-left: -14px;
        margin-right: -14px;
        border-radius: 0 0 16px 16px;
    }
}

/* ===== Premium content upgrades ===== */
.main {
    padding-bottom: 120px;
}

.playbook-section {
    position: relative;
    padding: 26px 24px 22px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,252,252,1) 100%);
}

.playbook-section::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    bottom: 22px;
    width: 4px;
    border-radius: 0 6px 6px 0;
    background: linear-gradient(180deg, var(--lj-teal), rgba(17,167,179,.22));
    opacity: .9;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 10px;
    background: rgba(17,167,179,.10);
    color: var(--lj-teal-dark);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 800;
    margin: 0 0 14px;
}

.section-title {
    margin: 0 0 8px !important;
    padding-right: 8px;
    font-size: clamp(22px, 2.2vw, 34px) !important;
    font-weight: 640;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.section-subtitle {
    margin: 0 0 16px;
    color: var(--lj-teal-dark);
    font-size: clamp(14px, 1.4vw, 19px);
    font-weight: 600;
    line-height: 1.3;
    font-weight: 700;
}

/* Better tables */
.table-shell {
    margin: 18px 0 14px;
    border: 1px solid rgba(17,167,179,.14);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 24px rgba(7,34,39,.04);
    background: #fff;
}

.table-shell table {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.table-shell thead th {
    background: linear-gradient(180deg, rgba(17,167,179,.12), rgba(17,167,179,.08));
    color: #0b2d33;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.table-shell tbody tr:nth-child(odd) td {
    background: rgba(248,252,252,.95);
}

.table-shell tbody tr:hover td {
    background: rgba(17,167,179,.05);
}

.table-shell td:first-child,
.table-shell th:first-child {
    font-weight: 700;
}

/* Better callout boxes */
.tip-box {
    margin-top: 16px;
    padding: 16px 18px 16px 18px;
    border: 1px solid rgba(17,167,179,.18);
    border-radius: 16px;
    background:
      radial-gradient(circle at top right, rgba(17,167,179,.09), transparent 35%),
      linear-gradient(180deg, rgba(17,167,179,.06), rgba(17,167,179,.03));
}

.tip-box__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--lj-teal-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.tip-box__label::before {
    content: "✦";
    font-size: 12px;
}

.tip-box p {
    margin: 0;
    color: #274149;
    font-size: 15px;
}

/* Resource list */
.resource-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.resource-list li {
    margin: 0 0 10px;
}

.resource-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(17,167,179,.16);
    border-radius: 14px;
    background: #fff;
    color: var(--lj-ink);
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(7,34,39,.04);
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.resource-list a::after {
    content: "→";
    color: var(--lj-teal-dark);
    font-size: 18px;
    line-height: 1;
}

.resource-list a:hover {
    transform: translateY(-1px);
    border-color: rgba(17,167,179,.34);
    box-shadow: 0 12px 26px rgba(7,34,39,.07);
    text-decoration: none;
}

/* Stronger CTA panel */
.cta-panel {
    background:
      radial-gradient(circle at top right, rgba(17,167,179,.10), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
}

/* Sticky CTA bar */
.sticky-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 12px 0;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(11,31,34,.10);
    box-shadow: 0 -10px 28px rgba(7,34,39,.08);
}

.sticky-cta-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.sticky-cta-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sticky-cta-copy strong {
    font-size: 16px;
    line-height: 1.25;
    color: var(--lj-ink);
}

.sticky-cta-copy span {
    color: var(--lj-muted);
    font-size: 14px;
}

.sticky-cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.sticky-cta-actions a {
    min-height: 46px;
    padding: 0 16px;
}

@media (max-width: 991px) {
    .playbook-section {
        padding: 22px 18px 18px;
    }

    .playbook-section::before {
        top: 18px;
        bottom: 18px;
    }

    .section-title {
        font-size: clamp(24px, 4vw, 34px) !important;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .sticky-cta-bar__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .sticky-cta-actions {
        width: 100%;
    }

    .sticky-cta-actions a {
        flex: 1 1 0;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .main {
        padding-bottom: 150px;
    }

    .section-kicker {
        min-height: 30px;
        padding: 0 12px;
        font-size: 11px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .sticky-cta-copy strong {
        font-size: 15px;
    }

    .sticky-cta-copy span {
        font-size: 13px;
    }

    .sticky-cta-actions {
        flex-direction: column;
    }

    .sticky-cta-actions a {
        width: 100%;
    }
}


/* v6 hero refinement */
.hero {
    padding: 22px 0 18px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    gap: 40px;
    align-items: center;
}

.hero-copy h1 {
    max-width: 680px;
}

.hero-card.hero-right {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
}

.hero-card.hero-right::before {
    content: "";
    position: absolute;
    inset: 10% 12%;
    background: radial-gradient(circle, rgba(17,167,179,.10) 0%, rgba(17,167,179,0) 68%);
    pointer-events: none;
}

.hero__img.hero-illustration {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration img,
.hero-card.hero-right .hero-process-image {
    width: 100%;
    max-width: 620px;
    max-height: 620px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 16px;
    max-width: 720px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(17,167,179,.18);
    color: var(--lj-teal-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.playbook-section {
    position: relative;
    overflow: hidden;
}

.playbook-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--lj-teal) 0%, rgba(17,167,179,.08) 100%);
}

.playbook-section > * {
    position: relative;
    z-index: 1;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(17,167,179,.10);
    color: var(--lj-teal-dark);
    text-transform: uppercase;
    letter-spacing: .11em;
    font-size: 12px;
    font-weight: 800;
    margin: 0 0 14px;
}

.section-title {
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--lj-teal-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.table-shell {
    margin-top: 16px;
    padding: 8px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(17,167,179,.06) 0%, rgba(17,167,179,.02) 100%);
    border: 1px solid rgba(17,167,179,.10);
}

.tip-box {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(17,167,179,.08) 0%, rgba(17,167,179,.03) 100%);
    border: 1px solid rgba(17,167,179,.14);
}

.tip-box__label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--lj-teal-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .11em;
    font-weight: 800;
}

.sticky-cta-bar {
    position: sticky;
    bottom: 0;
    z-index: 25;
    background: rgba(238,245,245,.94);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(11,31,34,.10);
    box-shadow: 0 -10px 24px rgba(7,34,39,.07);
}

.sticky-cta-bar__inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.sticky-cta-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-cta-copy strong {
    font-size: 15px;
    color: var(--lj-ink);
}

.sticky-cta-copy span {
    color: var(--lj-muted);
    font-size: 14px;
}

.sticky-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-card.hero-right {
        min-height: auto;
        padding: 14px 12px;
    }

    .hero-illustration img,
    .hero-card.hero-right .hero-process-image {
        max-width: 460px;
        max-height: 500px;
    }

    .hero-trust {
        gap: 8px;
    }

    .sticky-cta-bar__inner {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .hero-trust span {
        width: 100%;
        justify-content: center;
    }

    .hero-illustration img,
    .hero-card.hero-right .hero-process-image {
        max-width: 360px;
        max-height: 420px;
    }

    .playbook-section::before {
        top: 16px;
        bottom: 16px;
    }
}
