:root {
    --paper: #f7f3ea;
    --paper-deep: #ece3d4;
    --ink: #1e2a24;
    --muted: #68726c;
    --sage: #738a79;
    --sage-dark: #31483a;
    --line: rgba(30, 42, 36, .15);
    --white: #fffdf8;
    --max: 1180px;
    --radius: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

a { color: inherit; }

img { max-width: 100%; }

.wrap {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

.narrow { width: min(calc(100% - 40px), 800px); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 1000;
    background: #fff;
    padding: 10px 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(247, 243, 234, .9);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 9px;
}

.brand-mark {
    font-size: .76rem;
    letter-spacing: .22em;
    font-weight: 800;
}

.brand-script {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 26px;
    font-size: .92rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--muted);
}

.main-nav a:hover,
.main-nav a:focus { color: var(--ink); }

.hero {
    padding: 84px 0 74px;
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    gap: 70px;
    align-items: center;
}

.kicker,
.section-kicker {
    margin: 0 0 14px;
    font-size: .74rem;
    letter-spacing: .18em;
    font-weight: 800;
    color: var(--sage-dark);
}

.light { color: #dce7df; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    font-weight: 500;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 6.6rem);
    letter-spacing: -.055em;
}

.hero h1 em {
    color: var(--sage);
    font-weight: 400;
}

.hero-lede {
    max-width: 690px;
    color: var(--muted);
    font-size: 1.12rem;
}

.search {
    margin-top: 36px;
    max-width: 760px;
}

.search label {
    display: block;
    margin-bottom: 9px;
    font-weight: 700;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
}

.search input {
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 17px 18px;
    font: inherit;
    outline: none;
}

.search button,
.button-link {
    border: 0;
    background: var(--sage-dark);
    color: white;
    padding: 16px 20px;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 14px;
    font-size: .9rem;
    color: var(--muted);
}

.quick-links a { color: var(--sage-dark); }

.verse-card {
    background: var(--sage-dark);
    color: white;
    padding: 34px;
    min-height: 390px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    overflow: hidden;
}

.verse-number {
    position: absolute;
    top: 10px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 1;
    color: rgba(255,255,255,.08);
}

.verse-label {
    margin-bottom: 16px;
    font-size: .73rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #dce7df;
}

.verse-card blockquote {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: 1.75rem;
    line-height: 1.25;
}

.verse-card cite {
    font-size: .88rem;
    color: #dce7df;
    font-style: normal;
}

.today-section {
    padding: 62px 0;
    background: var(--paper-deep);
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end;
}

.split-heading h2,
.section-heading h2,
.new-here h2,
.mission h2 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    letter-spacing: -.035em;
}

.split-heading p { color: #505b55; }

.text-link {
    font-weight: 800;
    color: var(--sage-dark);
}

.topics-section { padding: 84px 0; }

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading > p:last-child { color: var(--muted); }

.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.topic-card {
    min-height: 270px;
    padding: 28px;
    text-decoration: none;
    background: rgba(255,255,255,.18);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: transform .15s ease, background .15s ease;
}

.topic-card:hover,
.topic-card:focus {
    background: var(--white);
    transform: translateY(-2px);
    z-index: 1;
}

.topic-eyebrow {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    min-height: 44px;
}

.topic-card h3 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.topic-card p {
    color: var(--muted);
    font-size: .95rem;
}

.topic-arrow {
    position: absolute;
    right: 24px;
    bottom: 20px;
    font-size: 1.4rem;
}

.empty-state {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.new-here {
    padding: 84px 0;
    background: var(--sage-dark);
    color: white;
}

.new-here-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.new-here p { color: #dce7df; }

.new-here a {
    color: white;
    font-weight: 800;
}

.mission {
    padding: 100px 0;
}

.mission-inner {
    max-width: 900px;
}

.mission h2 { margin-bottom: 28px; }

.mission p:last-child {
    font-size: 1.12rem;
    color: var(--muted);
}

.site-footer {
    padding: 60px 0 24px;
    background: #18231d;
    color: #dce7df;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr 1.1fr;
    gap: 56px;
}

.footer-brand {
    font-family: Georgia, serif;
    color: white;
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.footer-grid h2 {
    color: white;
    font-family: inherit;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-grid a {
    display: block;
    margin: 7px 0;
    color: #dce7df;
}

.footer-grid p { color: #aebbb3; }

.footer-bottom {
    margin-top: 42px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: .78rem;
    color: #89978e;
}

.reading-hero {
    padding: 72px 0 54px;
    border-bottom: 1px solid var(--line);
}

.back-link {
    display: inline-block;
    margin-bottom: 36px;
    color: var(--muted);
    text-decoration: none;
}

.reading-hero h1 {
    font-size: clamp(3.1rem, 7vw, 6.5rem);
    letter-spacing: -.05em;
    margin-bottom: 22px;
}

.reading-deck {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.2rem;
}

.reading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 76px;
    padding-top: 72px;
    padding-bottom: 100px;
}

.reading-main section { margin-bottom: 72px; }

.lead-paragraph,
.next-step {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.72;
}

.scripture-stack {
    display: grid;
    gap: 18px;
}

.scripture {
    margin: 0;
    padding: 28px 30px;
    background: var(--white);
    border-left: 4px solid var(--sage);
}

.scripture blockquote {
    margin: 0 0 14px;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.62;
}

.scripture figcaption {
    color: var(--muted);
    font-size: .84rem;
    font-weight: 700;
}

.reflection-list {
    padding-left: 1.4em;
}

.reflection-list li {
    padding: 8px 0 16px 8px;
    font-family: Georgia, serif;
    font-size: 1.22rem;
}

.prayer-box {
    padding: 30px;
    background: var(--paper-deep);
    border-radius: var(--radius);
}

.prayer-box p:last-child {
    margin-bottom: 0;
    font-family: Georgia, serif;
    font-size: 1.2rem;
}

.sticky-card {
    position: sticky;
    top: 120px;
    padding: 26px;
    background: var(--sage-dark);
    color: white;
    border-radius: var(--radius);
}

.sticky-card h2 { font-size: 1.8rem; }

.sticky-card p { color: #dce7df; }

.sticky-card .button-link {
    display: inline-block;
    margin-top: 8px;
    background: white;
    color: var(--sage-dark);
    border-radius: 10px;
}

.not-found { padding: 100px 0; }
.not-found h1 { font-size: clamp(3rem, 6vw, 5rem); }
.not-found .button-link { display: inline-block; margin-top: 20px; border-radius: 10px; }

@media (max-width: 900px) {
    .hero-grid,
    .split-heading,
    .new-here-grid,
    .reading-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .split-heading,
    .new-here-grid,
    .reading-grid { gap: 38px; }

    .topic-grid { grid-template-columns: repeat(2, 1fr); }

    .reading-side { order: -1; }
    .sticky-card { position: static; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .wrap, .narrow { width: min(calc(100% - 28px), var(--max)); }

    .header-inner {
        min-height: 76px;
        align-items: flex-start;
        padding: 15px 0;
    }

    .main-nav {
        gap: 12px;
        font-size: .8rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .hero { padding: 58px 0; }
    .hero h1 { font-size: clamp(3rem, 17vw, 5.2rem); }

    .search-row { grid-template-columns: 1fr; }
    .search button { width: 100%; }

    .verse-card { min-height: 330px; }

    .topic-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }

    .reading-grid { padding-top: 46px; }
}


/* A Year With God v1.1 — journey-focused homepage additions */
.premise {
    margin: 0 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.22rem, 2vw, 1.65rem);
    line-height: 1.45;
}
.premise p { margin-bottom: 3px; }
.premise strong { color: var(--sage-dark); }

.pace-note {
    max-width: 760px;
    margin: 28px 0 0;
    padding: 18px 20px;
    border-left: 4px solid var(--sage);
    background: rgba(255,255,255,.38);
}
.pace-note strong,
.pace-note span { display: block; }
.pace-note span {
    margin-top: 4px;
    color: var(--muted);
    font-size: .94rem;
}

.journey-intro {
    padding: 84px 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.journey-step {
    min-height: 230px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.journey-step > span {
    display: block;
    margin-bottom: 32px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--sage);
}
.journey-step h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.journey-step p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .94rem;
}
.no-streak {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 26px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.no-streak strong { font-family: Georgia, serif; font-size: 1.2rem; }
.no-streak span { color: var(--muted); }

.future-experience {
    padding: 84px 0;
    background: var(--paper-deep);
}

@media (max-width: 900px) {
    .journey-grid { grid-template-columns: repeat(2, 1fr); }
    .no-streak { flex-direction: column; gap: 4px; }
}

@media (max-width: 640px) {
    .journey-grid { grid-template-columns: 1fr; }
}


/* A Year With God v1.2 — account, database journey and private journal */
.nav-account {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink) !important;
}

.account-shell {
    padding: 72px 0 100px;
}

.compact-shell { padding-top: 54px; }

.account-card {
    max-width: 880px;
    padding: 42px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.narrow-account { max-width: 620px; }

.account-card h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -.045em;
    margin-bottom: 18px;
}

.account-lede {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.account-form {
    display: grid;
    gap: 20px;
}

.account-form fieldset {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
    margin: 0;
}

.account-form legend {
    padding: 0 8px;
    font-weight: 800;
    color: var(--sage-dark);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.account-form label,
.reflection-fields label {
    display: grid;
    gap: 8px;
    font-weight: 700;
}

.account-form input,
.reflection-fields textarea,
.journal-section textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 13px 14px;
    background: white;
    color: var(--ink);
    font: inherit;
    outline: none;
}

.account-form input:focus,
.reflection-fields textarea:focus,
.journal-section textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(115,138,121,.12);
}

.form-submit {
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.secondary-button {
    background: transparent;
    color: var(--sage-dark);
    border: 1px solid var(--sage-dark);
}

.account-actions,
.journey-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.account-switch {
    margin: 24px 0 0;
    color: var(--muted);
}

.account-notice {
    padding: 15px 17px;
    margin-bottom: 22px;
    border-radius: 11px;
    background: #edf3ee;
    border: 1px solid rgba(49,72,58,.18);
}

.account-notice span,
.account-notice strong { display: block; }

.account-notice.error {
    background: #fff2ef;
    border-color: #e6b4aa;
    color: #7b2c22;
}

.account-notice.success {
    background: #edf6ef;
    border-color: #afd0b7;
    color: #274b31;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
}

.dashboard-hero {
    padding: 70px 0 54px;
    background: var(--paper-deep);
    border-bottom: 1px solid var(--line);
}

.dashboard-hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -.045em;
    margin-bottom: 20px;
}

.dashboard-hero > .wrap > p:last-of-type {
    max-width: 760px;
    color: var(--muted);
}

.dashboard-promise {
    margin-top: 34px;
}

.journey-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.journey-topic-card {
    min-height: 300px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.35);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease, background .15s ease;
}

.journey-topic-card:hover,
.journey-topic-card:focus {
    transform: translateY(-2px);
    background: var(--white);
}

.journey-topic-card.done-today {
    background: #edf3ee;
}

.journey-topic-card h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.journey-topic-card > p {
    color: var(--muted);
    font-size: .94rem;
}

.journey-status {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.journey-status strong,
.journey-status span {
    display: block;
}

.journey-status span {
    color: var(--muted);
    font-size: .86rem;
    margin-top: 3px;
}

.journey-card-title {
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    margin-bottom: 22px;
}

.reflection-fields {
    display: grid;
    gap: 24px;
}

.reflection-fields label > span {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-weight: 500;
}

.solution-list {
    display: grid;
    gap: 14px;
    padding-left: 1.4em;
}

.solution-list li {
    padding-left: 6px;
    font-family: Georgia, serif;
    font-size: 1.15rem;
}

.journal-section textarea {
    min-height: 230px;
    resize: vertical;
}

.journal-privacy {
    color: var(--muted);
    font-size: .88rem;
}

.processing-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    place-items: center;
    background: rgba(24,35,29,.76);
    backdrop-filter: blur(8px);
}

.processing-overlay.active { display: grid; }

.processing-box {
    width: min(calc(100% - 36px), 460px);
    padding: 28px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 20px 80px rgba(0,0,0,.24);
}

.processing-box strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.45rem;
    margin-bottom: 5px;
}

.processing-box span {
    color: var(--muted);
    font-size: .9rem;
}

.processing-track {
    height: 8px;
    margin-top: 18px;
    border-radius: 999px;
    overflow: hidden;
    background: var(--paper-deep);
}

.processing-bar {
    width: 8%;
    height: 100%;
    border-radius: inherit;
    background: var(--sage-dark);
    transition: width .5s ease;
}

.processing-percent {
    margin-top: 8px;
    text-align: right;
    color: var(--muted);
    font-size: .8rem;
}

@media (max-width: 900px) {
    .journey-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .account-card { padding: 28px 20px; }
    .form-grid,
    .journey-card-grid { grid-template-columns: 1fr; }
    .account-actions,
    .journey-form-actions { flex-direction: column; }
    .account-actions .button-link,
    .journey-form-actions .button-link { width: 100%; }
}


/* v1.2.1 — quick login access */
.nav-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    padding: 10px 16px;
    border: 1px solid var(--sage-dark);
    border-radius: 999px;
    background: var(--sage-dark);
    color: #fff !important;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
}
.nav-login-button:hover,
.nav-login-button:focus { opacity: .9; }

.hero-account-access {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    margin-top: 28px;
}
.hero-login-link {
    display: inline-flex;
    padding: 12px 17px;
    border-radius: 10px;
    background: var(--sage-dark);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}
.hero-create-link {
    color: var(--sage-dark);
    font-weight: 700;
}

@media (max-width: 640px) {
    .nav-login-button {
        min-width: auto;
        padding: 7px 10px;
        font-size: .7rem;
    }
    .hero-account-access {
        align-items: stretch;
        flex-direction: column;
    }
    .hero-login-link { width: 100%; justify-content: center; }
}


/* v1.3.0 — landing, login, dashboard refinement + cache-refresh support */
.large-button {
    padding: 15px 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.72);
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
}

.text-cta {
    color: var(--sage-dark);
    text-decoration: none;
    font-weight: 800;
}

.hero-refined {
    padding: 82px 0 74px;
    background:
        radial-gradient(circle at top right, rgba(115,138,121,.14), transparent 28%),
        linear-gradient(180deg, rgba(255,253,248,.92), rgba(247,243,234,.98));
}

.hero-refined-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
    gap: 38px;
    align-items: start;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 32px 0 24px;
}

.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(49,72,58,.08);
    color: var(--sage-dark);
    font-size: .82rem;
    font-weight: 700;
}

.elevated-search {
    margin-top: 12px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 16px 50px rgba(30,42,36,.06);
}

.hero-side-panel {
    display: grid;
    gap: 16px;
}

.hero-panel-card,
.journey-summary-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 50px rgba(30,42,36,.06);
}

.hero-panel-card {
    background: linear-gradient(180deg, #395543, #24372c);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-panel-card .verse-number {
    color: rgba(255,255,255,.08);
}

.hero-panel-card .verse-label,
.hero-panel-card cite {
    color: #dce7df;
}

.hero-panel-card blockquote {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: 1.65rem;
    line-height: 1.28;
}

.feature-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.feature-checks li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
}

.feature-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sage-dark);
    font-weight: 900;
}

.experience-highlights {
    padding: 28px 0 14px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.highlight-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.55);
}

.highlight-card span {
    display: inline-block;
    margin-bottom: 10px;
    font-family: Georgia, serif;
    font-size: 2.35rem;
    line-height: 1;
    color: var(--sage-dark);
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.highlight-card p { color: var(--muted); }

.refined-banner {
    margin-top: 26px;
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,.45);
}

.today-section-refined {
    background: linear-gradient(180deg, var(--paper-deep), rgba(236,227,212,.65));
}

.refined-topics .topic-grid {
    gap: 16px;
    border: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.topic-card-refined {
    border: 1px solid var(--line);
    border-radius: 16px;
    min-height: 290px;
    background: rgba(255,255,255,.45);
}

.topic-card-refined .topic-eyebrow {
    min-height: 50px;
}

.topic-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.topic-card-footer strong {
    font-size: .92rem;
}

.topic-card-footer .topic-arrow {
    position: static;
}

.membership-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(280px,.8fr);
    gap: 46px;
    align-items: center;
}

.auth-page {
    min-height: calc(100vh - 88px);
}

.auth-section {
    padding: 70px 0 92px;
    background:
      radial-gradient(circle at top left, rgba(115,138,121,.12), transparent 30%),
      linear-gradient(180deg, rgba(255,255,255,.22), rgba(247,243,234,1));
}

.auth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: 40px;
    align-items: start;
}

.auth-copy h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    letter-spacing: -.05em;
    margin-bottom: 18px;
}

.auth-lede {
    max-width: 700px;
    color: var(--muted);
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.auth-promise-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.58);
    margin-bottom: 20px;
}

.auth-promise-card h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.auth-verse {
    padding: 24px 0 0;
}

.auth-verse blockquote {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.55;
}

.auth-verse cite {
    color: var(--muted);
    font-size: .9rem;
    font-style: normal;
}

.auth-panel {
    display: flex;
    justify-content: flex-end;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 22px 70px rgba(30,42,36,.08);
}

.auth-card h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.auth-card > p {
    color: var(--muted);
}

.auth-form {
    gap: 16px;
    margin-top: 20px;
}

.auth-submit {
    width: 100%;
    margin-top: 6px;
}

.auth-secondary {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 14px;
}

.auth-secondary span {
    display: block;
    color: var(--muted);
    font-size: .94rem;
    margin-top: 4px;
}

.block-cta {
    width: 100%;
}

.dashboard-hero-refined {
    padding: 74px 0 58px;
    background:
      radial-gradient(circle at top right, rgba(115,138,121,.12), transparent 28%),
      linear-gradient(180deg, var(--paper-deep), rgba(236,227,212,.6));
}

.dashboard-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 320px;
    gap: 36px;
    align-items: start;
}

.dashboard-summary-card {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 16px 50px rgba(30,42,36,.06);
}

.summary-stat + .summary-stat {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.summary-stat strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.2;
}

.summary-stat span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    margin-top: 4px;
}

.dashboard-topics-section {
    padding-top: 64px;
}

.dashboard-topics-section .journey-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-topics-section .journey-topic-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(30,42,36,.05);
}

.dashboard-topics-section .journey-topic-card.done-today {
    background: #eef6ef;
}

.journey-progress-mini {
    margin-top: 18px;
    padding-top: 6px;
}

.journey-progress-track {
    height: 8px;
    border-radius: 999px;
    background: var(--paper-deep);
    overflow: hidden;
    margin-bottom: 6px;
}

.journey-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--sage-dark);
}

.journey-progress-mini small {
    color: var(--muted);
    font-size: .8rem;
}

@media (max-width: 980px) {
    .hero-refined-grid,
    .auth-grid,
    .dashboard-hero-grid,
    .membership-grid {
        grid-template-columns: 1fr;
    }

    .highlight-grid,
    .refined-topics .topic-grid,
    .dashboard-topics-section .journey-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .auth-panel { justify-content: stretch; }
    .auth-card { max-width: none; }
}

@media (max-width: 640px) {
    .hero-cta-row,
    .hero-pill-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-row > *,
    .secondary-cta,
    .large-button {
        width: 100%;
        justify-content: center;
    }

    .highlight-grid,
    .refined-topics .topic-grid,
    .dashboard-topics-section .journey-card-grid {
        grid-template-columns: 1fr;
    }

    .auth-card,
    .hero-panel-card,
    .journey-summary-card,
    .highlight-card {
        padding: 22px;
    }
}


/* v1.4.0 — persistent login, favicon era, administration + deployment center */
.nav-login-prominent {
    box-shadow: 0 8px 24px rgba(49,72,58,.16);
}

.nav-admin-link {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(49,72,58,.08);
    color: var(--sage-dark) !important;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.landing-login-cta {
    border-color: var(--sage-dark);
    background: var(--white);
    font-weight: 850;
}

.admin-quick-section {
    padding: 38px 0 0;
}

.admin-quick-card {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    padding: 24px 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(236,227,212,.55));
}

.admin-quick-card h2 {
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.admin-quick-card p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.deployment-page {
    min-height: calc(100vh - 88px);
}

.deployment-hero {
    padding: 58px 0 42px;
    border-bottom: 1px solid var(--line);
    background:
      radial-gradient(circle at top right, rgba(115,138,121,.12), transparent 30%),
      linear-gradient(180deg, var(--paper-deep), rgba(247,243,234,.7));
}

.deployment-title-row {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-end;
}

.deployment-title-row h1 {
    margin-bottom: 12px;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -.045em;
}

.deployment-title-row p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted);
}

.deployment-content {
    padding: 38px 0 90px;
}

.deployment-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.deployment-metric-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
}

.deployment-metric-card > span {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.deployment-metric-card strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.7rem;
}

.deployment-metric-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.deployment-upload-card,
.deployment-ready,
.deployment-history-card {
    margin-top: 18px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(30,42,36,.04);
}

.deployment-upload-card {
    display: grid;
    grid-template-columns: minmax(0,.8fr) minmax(420px,1.2fr);
    gap: 28px;
    align-items: center;
}

.deployment-upload-copy h2,
.deployment-ready h2,
.deployment-history-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.deployment-upload-copy p:last-child,
.deployment-ready p {
    color: var(--muted);
}

.deployment-upload-form {
    display: grid;
    gap: 12px;
}

.deployment-dropzone {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 2px dashed rgba(49,72,58,.35);
    border-radius: 16px;
    background: rgba(247,243,234,.5);
    cursor: pointer;
}

.deployment-dropzone input {
    margin-left: auto;
    max-width: 240px;
}

.deployment-dropzone strong,
.deployment-dropzone small {
    display: block;
}

.deployment-dropzone small {
    margin-top: 3px;
    color: var(--muted);
}

.zip-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.deployment-ready {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    border-color: rgba(49,72,58,.25);
}

.deployment-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 18px;
    font-size: .85rem;
    color: var(--sage-dark);
    font-weight: 700;
}

.deployment-install {
    min-width: 180px;
}

.deployment-safety-note {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(49,72,58,.06);
    font-size: .85rem;
}

.deployment-history-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.deployment-table-wrap {
    overflow-x: auto;
}

.deployment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
}

.deployment-table th,
.deployment-table td {
    padding: 14px 10px;
    text-align: left;
    border-top: 1px solid var(--line);
    vertical-align: top;
}

.deployment-table th {
    color: var(--muted);
    font-size: .72rem;
    letter-spacing: .08em;
}

.deployment-table td small {
    display: block;
    max-width: 620px;
    margin-top: 4px;
    color: var(--muted);
}

.deployment-status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(49,72,58,.09);
    font-size: .78rem;
    font-weight: 800;
}

.deployment-format-note {
    margin-top: 18px;
    padding: 18px;
    border-left: 4px solid var(--sage);
    background: rgba(255,255,255,.5);
}

.deployment-format-note code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .9em;
}

@media (max-width: 980px) {
    .deployment-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .deployment-upload-card,
    .deployment-safety-note {
        grid-template-columns: 1fr;
    }

    .deployment-title-row,
    .deployment-ready,
    .deployment-history-head,
    .admin-quick-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .deployment-metrics {
        grid-template-columns: 1fr;
    }

    .deployment-dropzone {
        align-items: flex-start;
        flex-direction: column;
    }

    .deployment-dropzone input {
        margin-left: 0;
        width: 100%;
        max-width: none;
    }
}


/* ==========================================================================
   A Year With God v1.4.1 — approved scenic landing theme
   ========================================================================== */
:root {
    --theme-cream: #fbf8f0;
    --theme-cream-deep: #f1eadc;
    --theme-green: #173b2c;
    --theme-green-2: #244d39;
    --theme-green-soft: #647a58;
    --theme-gold: #d8b45f;
    --theme-ink: #14251d;
    --theme-muted: #65716b;
    --theme-line: rgba(20,37,29,.14);
}

body {
    background: var(--theme-cream);
    color: var(--theme-ink);
}

.theme-header {
    background: rgba(253,251,245,.96);
    border-bottom: 1px solid rgba(20,37,29,.10);
    backdrop-filter: blur(14px);
}

.theme-header-inner {
    min-height: 72px;
}

.theme-brand {
    gap: 10px;
}

.brand-leaf {
    width: 42px;
    height: 42px;
    border-radius: 11px;
}

.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 9px;
}

.theme-brand .brand-mark,
.footer-wordmark .brand-mark {
    font-size: .78rem;
    letter-spacing: .28em;
}

.theme-brand .brand-script,
.footer-wordmark .brand-script {
    font-size: 1.72rem;
}

.theme-nav {
    gap: 18px;
    align-items: center;
}

.theme-nav > a:not(.nav-login-button):not(.nav-create-button):not(.nav-account-secondary):not(.nav-logout-link):not(.nav-admin-link) {
    color: var(--theme-ink);
    font-weight: 600;
}

.nav-create-button,
.nav-account-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 16px;
    border: 1px solid var(--theme-green);
    border-radius: 8px;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .045em;
    color: var(--theme-green) !important;
    background: rgba(255,255,255,.78);
}

.nav-login-button {
    min-height: 44px;
    min-width: 100px;
    padding: 9px 18px;
    border-radius: 8px;
    background: var(--theme-green);
    border-color: var(--theme-green);
    box-shadow: none;
}

.nav-logout-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid rgba(20,37,29,.20);
    color: #7e3f31 !important;
    background: rgba(255,255,255,.72);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.nav-admin-link {
    border-radius: 8px;
}

/* Scenic hero uses CSS-built landscape so no separate generated image is required. */
.scenic-hero {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 91% 31%, rgba(255,211,116,.96) 0 1.8%, rgba(255,218,144,.48) 2.2%, rgba(255,231,187,.15) 8%, transparent 18%),
        linear-gradient(180deg, #dfe7e8 0%, #f7dfc5 48%, #ead4b8 68%, #d5c1a5 100%);
}

.scenic-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -5;
    background:
        linear-gradient(90deg, rgba(251,248,240,.96) 0%, rgba(251,248,240,.84) 35%, rgba(251,248,240,.20) 62%, rgba(251,248,240,.03) 100%);
}

.scenic-sun {
    position: absolute;
    width: 140px;
    height: 140px;
    right: 3%;
    top: 25%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,229,164,.88), rgba(255,212,117,.24) 42%, transparent 70%);
    filter: blur(1px);
    z-index: -3;
}

.mountain {
    position: absolute;
    left: -3%;
    width: 106%;
    bottom: 0;
    transform-origin: bottom;
    z-index: -4;
}

.mountain-back {
    height: 58%;
    background: #9fa8a5;
    opacity: .50;
    clip-path: polygon(0 64%, 8% 58%, 16% 62%, 25% 48%, 34% 55%, 44% 40%, 52% 50%, 62% 31%, 72% 45%, 82% 30%, 90% 42%, 100% 26%, 100% 100%, 0 100%);
}

.mountain-mid {
    height: 48%;
    background: #6f7974;
    opacity: .62;
    clip-path: polygon(0 75%, 12% 64%, 23% 69%, 34% 50%, 46% 64%, 58% 42%, 69% 56%, 80% 35%, 91% 53%, 100% 45%, 100% 100%, 0 100%);
}

.mountain-front {
    height: 34%;
    background: linear-gradient(180deg, #43554b, #223a2d);
    opacity: .78;
    clip-path: polygon(0 73%, 9% 64%, 18% 74%, 30% 58%, 39% 67%, 49% 55%, 59% 70%, 70% 51%, 80% 65%, 90% 48%, 100% 61%, 100% 100%, 0 100%);
}

.scenic-hero-grid {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 48px;
    align-items: center;
    padding-top: 46px;
    padding-bottom: 46px;
}

.scenic-copy {
    max-width: 690px;
}

.scenic-copy .kicker {
    color: var(--theme-green);
}

.scenic-copy h1 {
    margin-bottom: 20px;
    font-size: clamp(3.4rem, 6.4vw, 6.2rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.scenic-copy h1 em {
    color: var(--theme-green);
    font-weight: 400;
}

.scenic-lede {
    max-width: 660px;
    margin-bottom: 18px;
    color: #4e5c55;
    font-size: 1.12rem;
}

.core-premise-inline {
    max-width: 680px;
    padding: 14px 18px;
    border-left: 4px solid var(--theme-green-soft);
    background: rgba(255,255,255,.46);
    backdrop-filter: blur(5px);
}

.core-premise-inline strong,
.core-premise-inline span {
    display: block;
}

.core-premise-inline span {
    margin-top: 4px;
    color: var(--theme-muted);
}

.scenic-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.scenic-primary,
.scenic-secondary {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
}

.scenic-primary {
    background: var(--theme-green);
    color: #fff;
    box-shadow: 0 12px 32px rgba(23,59,44,.16);
}

.scenic-secondary {
    border: 1px solid var(--theme-green);
    color: var(--theme-green);
    background: rgba(255,255,255,.68);
}

.scenic-account-note {
    margin: 11px 0 0;
    color: #536059;
}

.scenic-account-note a {
    color: var(--theme-ink);
    font-weight: 800;
}

.scenic-quote {
    align-self: start;
    justify-self: end;
    max-width: 520px;
    margin-top: 48px;
    text-align: center;
    padding: 20px 26px;
}

.scenic-quote blockquote {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-style: italic;
    line-height: 1.2;
}

.scenic-quote cite {
    font-style: normal;
    font-size: .79rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--theme-green);
}

.benefit-strip {
    position: relative;
    z-index: 2;
    background: rgba(255,253,248,.96);
    border-bottom: 1px solid var(--theme-line);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 28px 20px;
    align-items: center;
}

.benefit-item + .benefit-item {
    border-left: 1px solid var(--theme-line);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eef1e8;
}

.benefit-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: var(--theme-green);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-item h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
}

.benefit-item p {
    margin: 0;
    color: var(--theme-muted);
    font-size: .92rem;
}

.featured-topics-section {
    padding: 38px 0 50px;
    background: #fffdf8;
}

.featured-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.featured-head h2 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.featured-topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.featured-topic-card {
    min-height: 140px;
    display: grid;
    grid-template-columns: 40% 60%;
    overflow: hidden;
    border: 1px solid var(--theme-line);
    border-radius: 10px;
    background: white;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease;
}

.featured-topic-card:hover,
.featured-topic-card:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(20,37,29,.08);
}

.featured-art {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 65% 24%, #ffdaa2 0 8%, transparent 9%),
        linear-gradient(180deg, #d7e1e4 0 48%, #9cad9a 49% 65%, #536856 66% 100%);
}

.featured-art::before,
.featured-art::after,
.featured-art span {
    content: "";
    position: absolute;
    left: -10%;
    width: 120%;
    bottom: 0;
    clip-path: polygon(0 60%, 16% 45%, 31% 58%, 48% 33%, 65% 55%, 80% 42%, 100% 58%, 100% 100%, 0 100%);
}

.featured-art::before {
    height: 68%;
    background: rgba(68,92,74,.50);
}

.featured-art::after {
    height: 48%;
    background: rgba(36,67,49,.74);
    transform: translateY(10%);
}

.featured-topic-2 .featured-art {
    background:
        linear-gradient(130deg, rgba(223,238,216,.9), rgba(244,236,204,.72)),
        linear-gradient(180deg, #8ea184, #3f5d45);
}
.featured-topic-2 .featured-art::before {
    height: 100%;
    clip-path: polygon(45% 100%, 49% 0, 55% 0, 52% 100%);
    background: #d9c9a1;
}
.featured-topic-2 .featured-art::after {
    height: 90%;
    clip-path: polygon(0 25%, 22% 0, 44% 22%, 64% 4%, 100% 31%, 100% 100%, 0 100%);
    background: rgba(52,84,55,.72);
}

.featured-topic-3 .featured-art {
    background: linear-gradient(180deg, #e6c899 0 38%, #c99063 39% 54%, #6e8a80 55% 100%);
}

.featured-topic-4 .featured-art {
    background:
        radial-gradient(circle at 70% 18%, #f4d39e 0 7%, transparent 8%),
        linear-gradient(180deg, #d7e0e2 0 52%, #8a9992 53% 66%, #3e5948 67% 100%);
}

.featured-topic-copy {
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.featured-topic-copy strong {
    font-family: Georgia, serif;
    font-size: 1.15rem;
}

.featured-topic-copy small {
    margin-top: 7px;
    color: var(--theme-muted);
    line-height: 1.45;
}

.featured-arrow {
    margin-top: auto;
    align-self: flex-end;
    color: var(--theme-green);
    font-size: 1.25rem;
}

.theme-how,
.all-topics-section,
.theme-about {
    padding: 80px 0;
}

.theme-how {
    background: var(--theme-cream);
}

.theme-heading {
    max-width: 820px;
}

.theme-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.theme-how-grid article {
    padding: 24px;
    border: 1px solid var(--theme-line);
    border-radius: 12px;
    background: rgba(255,255,255,.64);
}

.theme-how-grid article > span {
    font-size: .75rem;
    letter-spacing: .18em;
    color: var(--theme-green-soft);
    font-weight: 900;
}

.theme-how-grid h3 {
    margin: 16px 0 8px;
    font-size: 1.5rem;
}

.theme-how-grid p {
    color: var(--theme-muted);
}

.theme-no-streak {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 22px;
    border-radius: 10px;
    background: var(--theme-green);
    color: white;
}

.theme-no-streak span {
    color: #d9e4de;
}

.theme-today {
    padding: 58px 0;
    background: #ede6d8;
}

.theme-today-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.theme-today h2 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.theme-today p {
    color: #56625c;
}

.compact-button {
    min-height: 46px;
    padding: 11px 17px;
}

.all-topics-section {
    background: #fffdf8;
}

.theme-search {
    margin: 0 0 28px;
    padding: 18px;
    border: 1px solid var(--theme-line);
    border-radius: 12px;
    background: var(--theme-cream);
}

.theme-search label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.theme-search > div {
    display: grid;
    grid-template-columns: 1fr auto;
}

.theme-search input {
    min-width: 0;
    padding: 14px 15px;
    border: 1px solid var(--theme-line);
    border-radius: 8px 0 0 8px;
    font: inherit;
    background: white;
}

.theme-search button {
    padding: 13px 18px;
    border: 0;
    border-radius: 0 8px 8px 0;
    background: var(--theme-green);
    color: white;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.theme-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.theme-topic-card {
    min-height: 260px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--theme-line);
    border-radius: 12px;
    background: white;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease;
}

.theme-topic-card:hover,
.theme-topic-card:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(20,37,29,.07);
}

.theme-topic-card h3 {
    margin: 0 0 10px;
    font-size: 1.65rem;
}

.theme-topic-card p {
    color: var(--theme-muted);
}

.theme-topic-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--theme-line);
    color: var(--theme-green);
}

.theme-new-here {
    padding: 78px 0;
    background: var(--theme-green);
    color: white;
}

.theme-new-here-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.theme-new-here h2 {
    font-size: clamp(2.5rem, 4vw, 4.4rem);
}

.theme-new-here p {
    color: #d9e4de;
}

.theme-light-link {
    color: white;
    font-weight: 800;
}

.theme-about {
    background: var(--theme-cream);
}

.theme-about-inner {
    max-width: 940px;
}

.theme-about h2 {
    font-size: clamp(2.6rem, 4.5vw, 4.8rem);
    letter-spacing: -.035em;
}

.theme-about p {
    max-width: 780px;
    color: var(--theme-muted);
    font-size: 1.08rem;
}

.theme-footer {
    padding: 36px 0 20px;
    background: #103124;
}

.theme-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr .8fr;
    gap: 42px;
    align-items: center;
}

.footer-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.footer-wordmark .brand-leaf {
    width: 46px;
    height: 46px;
}

.theme-footer-brand p {
    max-width: 390px;
    margin: 13px 0 0;
    color: #abc0b6;
}

.theme-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.theme-footer-links a {
    color: #dbe6e0;
    text-decoration: none;
}

.theme-footer-private {
    display: flex;
    justify-content: flex-end;
}

.private-center-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 185px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 9px;
    color: white;
    text-decoration: none;
}

.private-center-link strong,
.private-center-link small,
.care-note strong,
.care-note small {
    display: block;
}

.private-center-link small,
.care-note small {
    margin-top: 2px;
    color: #9eb3a8;
}

.private-lock {
    color: #67b878;
    font-size: 1.25rem;
}

.care-note {
    max-width: 250px;
}

.care-note strong {
    color: white;
}

.theme-footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.11);
}

/* Make auth and account surfaces inherit the new visual language. */
.auth-section,
.dashboard-hero-refined,
.deployment-hero {
    background:
        radial-gradient(circle at top right, rgba(216,180,95,.12), transparent 28%),
        linear-gradient(180deg, #f7f1e6, var(--theme-cream));
}

.auth-card,
.dashboard-summary-card,
.journey-topic-card,
.deployment-upload-card,
.deployment-ready,
.deployment-history-card,
.deployment-metric-card {
    border-color: var(--theme-line);
    border-radius: 12px;
}

.button-link,
.auth-submit,
.form-submit {
    background: var(--theme-green);
}

/* Signed-in users always have a logout path in the fixed header. */
@media (max-width: 1060px) {
    .theme-header-inner {
        align-items: flex-start;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .theme-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .scenic-hero-grid,
    .theme-today-grid,
    .theme-new-here-grid {
        grid-template-columns: 1fr;
    }

    .scenic-quote {
        justify-self: start;
        margin-top: 0;
        text-align: left;
        padding-left: 0;
    }

    .benefit-grid,
    .featured-topic-grid,
    .theme-how-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--theme-line);
    }

    .benefit-item:nth-child(4) {
        border-top: 1px solid var(--theme-line);
    }

    .theme-topic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .theme-footer-grid {
        grid-template-columns: 1fr;
    }

    .theme-footer-links {
        justify-content: flex-start;
    }

    .theme-footer-private {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .theme-brand .brand-script {
        font-size: 1.35rem;
    }

    .theme-brand .brand-leaf {
        width: 36px;
        height: 36px;
    }

    .theme-nav {
        gap: 8px;
        font-size: .76rem;
    }

    .theme-nav > a[href*="#today"],
    .theme-nav > a[href*="#about"] {
        display: none;
    }

    .nav-create-button,
    .nav-account-secondary,
    .nav-login-button,
    .nav-logout-link,
    .nav-admin-link {
        min-height: 38px;
        padding: 7px 10px;
        font-size: .68rem;
    }

    .scenic-hero-grid {
        min-height: auto;
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .scenic-copy h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .scenic-actions,
    .theme-no-streak {
        flex-direction: column;
        align-items: stretch;
    }

    .scenic-primary,
    .scenic-secondary {
        width: 100%;
    }

    .benefit-grid,
    .featured-topic-grid,
    .theme-how-grid,
    .theme-topic-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item + .benefit-item {
        border-left: 0;
        border-top: 1px solid var(--theme-line);
    }

    .featured-topic-card {
        grid-template-columns: 34% 66%;
    }

    .theme-search > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .theme-search input,
    .theme-search button {
        border-radius: 8px;
    }
}


/* ==========================================================================
   A Year With God v1.4.2 — approved concept fidelity correction
   Uses photographic assets extracted from the approved concept.
   ========================================================================== */

.scenic-hero {
    min-height: 500px;
    background:
        linear-gradient(90deg,
            rgba(251,248,240,.98) 0%,
            rgba(251,248,240,.94) 25%,
            rgba(251,248,240,.76) 43%,
            rgba(251,248,240,.28) 61%,
            rgba(251,248,240,.03) 82%),
        url('/assets/img/hero-sunrise.jpg') center center / cover no-repeat;
}

.scenic-hero::before {
    display: none;
}

.scenic-sun,
.mountain {
    display: none !important;
}

.scenic-hero-grid {
    min-height: 500px;
    grid-template-columns: minmax(0, 1.02fr) minmax(370px, .98fr);
    gap: 42px;
    padding-top: 38px;
    padding-bottom: 38px;
}

.scenic-copy {
    max-width: 650px;
}

.scenic-copy h1 {
    max-width: 650px;
    font-size: clamp(3.25rem, 5.25vw, 5.45rem);
    line-height: 1.00;
    margin-bottom: 18px;
}

.scenic-lede {
    max-width: 625px;
    font-size: 1.08rem;
    margin-bottom: 0;
}

.scenic-actions {
    margin-top: 22px;
}

.scenic-quote {
    max-width: 520px;
    margin-top: 58px;
    padding: 16px 12px;
    text-shadow: 0 1px 14px rgba(255,255,255,.5);
}

.scenic-quote blockquote {
    color: #183126;
}

.theme-premise-band {
    padding: 0 0 26px;
    background: #fffdf8;
}

.theme-premise-inner {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 30px;
    align-items: center;
    padding: 18px 22px;
    border-left: 4px solid var(--theme-green-soft);
    background: #f5f1e8;
}

.theme-premise-inner strong {
    font-family: Georgia, serif;
    font-size: 1.15rem;
}

.theme-premise-inner span {
    color: var(--theme-muted);
}

/* Use the actual topic artwork visible in the approved concept. */
.featured-topic-1 .featured-art {
    background: url('/assets/img/topic-anxiety.jpg') center center / cover no-repeat;
}
.featured-topic-2 .featured-art {
    background: url('/assets/img/topic-purpose.jpg') center center / cover no-repeat;
}
.featured-topic-3 .featured-art {
    background: url('/assets/img/topic-grief.jpg') center center / cover no-repeat;
}
.featured-topic-4 .featured-art {
    background: url('/assets/img/topic-faith.jpg') center center / cover no-repeat;
}

.featured-art::before,
.featured-art::after,
.featured-art span {
    display: none !important;
}

/* Slightly closer proportions to the approved reference. */
.featured-topics-section {
    padding-top: 32px;
}

.featured-topic-card {
    min-height: 132px;
}

.benefit-item {
    padding-top: 24px;
    padding-bottom: 24px;
}

@media (max-width: 1060px) {
    .scenic-hero {
        background-position: 58% center;
    }

    .scenic-hero-grid {
        grid-template-columns: 1fr;
    }

    .scenic-quote {
        margin-top: 0;
        max-width: 520px;
    }

    .theme-premise-inner {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (max-width: 700px) {
    .scenic-hero {
        min-height: auto;
        background-position: 65% center;
    }

    .scenic-hero-grid {
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .scenic-copy h1 {
        font-size: clamp(3rem, 14vw, 4.7rem);
    }

    .scenic-quote {
        display: none;
    }
}


/* ==========================================================================
   A Year With God v1.4.3 — full reader experience theme continuation
   ========================================================================== */

/* Authentication */
.theme-auth-stage {
    min-height: calc(100vh - 72px);
    padding: 70px 0 84px;
    background:
        linear-gradient(90deg, rgba(251,248,240,.98) 0%, rgba(251,248,240,.90) 46%, rgba(251,248,240,.30) 100%),
        url('/assets/img/hero-sunrise.jpg') center center / cover no-repeat;
}

.theme-register-stage {
    background:
        linear-gradient(90deg, rgba(251,248,240,.98) 0%, rgba(251,248,240,.88) 50%, rgba(251,248,240,.34) 100%),
        url('/assets/img/hero-sunrise.jpg') 60% center / cover no-repeat;
}

.theme-auth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, .78fr);
    gap: 72px;
    align-items: center;
}

.theme-auth-story {
    max-width: 650px;
}

.theme-auth-story h1 {
    margin-bottom: 18px;
    font-size: clamp(3.2rem, 5.6vw, 5.6rem);
    letter-spacing: -.05em;
}

.theme-auth-lede {
    max-width: 620px;
    color: #506059;
    font-size: 1.08rem;
}

.theme-auth-verse {
    max-width: 590px;
    margin-top: 32px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(20,37,29,.18);
}

.theme-auth-verse blockquote {
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: 1.55rem;
    font-style: italic;
    line-height: 1.42;
}

.theme-auth-verse cite {
    color: var(--theme-green);
    font-size: .76rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.theme-auth-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 26px;
    color: var(--theme-green);
    font-size: .86rem;
    font-weight: 700;
}

.theme-auth-panel {
    display: flex;
    justify-content: flex-end;
}

.theme-auth-card {
    width: 100%;
    max-width: 480px;
    padding: 34px;
    border: 1px solid rgba(20,37,29,.13);
    border-radius: 14px;
    background: rgba(255,253,248,.95);
    box-shadow: 0 24px 70px rgba(20,37,29,.13);
    backdrop-filter: blur(12px);
}

.theme-auth-card h2 {
    margin-bottom: 8px;
    font-size: 2.3rem;
}

.theme-auth-card-lede {
    color: var(--theme-muted);
}

.theme-form {
    gap: 16px;
    margin-top: 22px;
}

.theme-form label > span {
    font-size: .83rem;
    font-weight: 800;
    color: var(--theme-ink);
}

.theme-form input {
    min-height: 50px;
    padding: 13px 14px;
    border: 1px solid rgba(20,37,29,.20);
    border-radius: 8px;
    background: white;
}

.theme-form input:focus {
    border-color: var(--theme-green-soft);
    box-shadow: 0 0 0 3px rgba(100,122,88,.14);
}

.theme-form-submit {
    width: 100%;
    border: 0;
    margin-top: 4px;
    cursor: pointer;
}

.theme-auth-switch {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--theme-line);
    font-size: .9rem;
}

.theme-auth-switch span {
    color: var(--theme-muted);
}

.theme-auth-switch a {
    color: var(--theme-green);
    font-weight: 800;
}

.theme-auth-smallprint {
    max-width: 480px;
    margin: 13px 0 0;
    color: #52635a;
    font-size: .78rem;
    text-align: center;
}

/* Dashboard */
.theme-dashboard-hero {
    padding: 68px 0 54px;
    background:
        linear-gradient(90deg, rgba(251,248,240,.97) 0%, rgba(251,248,240,.86) 51%, rgba(251,248,240,.28) 100%),
        url('/assets/img/hero-sunrise.jpg') center 57% / cover no-repeat;
    border-bottom: 1px solid var(--theme-line);
}

.theme-dashboard-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 330px;
    gap: 44px;
    align-items: center;
}

.theme-dashboard-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(3rem, 5.5vw, 5.3rem);
    letter-spacing: -.05em;
}

.theme-dashboard-lede {
    max-width: 720px;
    color: #4d5b54;
    font-size: 1.07rem;
}

.theme-dashboard-promise {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    max-width: 810px;
    margin-top: 28px;
    padding: 17px 20px;
    border-left: 4px solid var(--theme-green-soft);
    background: rgba(255,253,248,.73);
}

.theme-dashboard-promise strong {
    font-family: Georgia, serif;
    font-size: 1.1rem;
}

.theme-dashboard-promise span {
    color: var(--theme-muted);
}

.theme-dashboard-summary {
    padding: 26px;
    border: 1px solid rgba(20,37,29,.12);
    border-radius: 12px;
    background: rgba(255,253,248,.94);
    box-shadow: 0 18px 50px rgba(20,37,29,.10);
}

.theme-summary-row + .theme-summary-row {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--theme-line);
}

.theme-summary-row strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.9rem;
    line-height: 1.15;
}

.theme-summary-row span {
    display: block;
    margin-top: 3px;
    color: var(--theme-muted);
    font-size: .82rem;
}

.theme-summary-account strong {
    font-family: inherit;
    font-size: .94rem;
    word-break: break-word;
}

.theme-admin-ribbon {
    background: var(--theme-green);
    color: white;
}

.theme-admin-ribbon-inner {
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.theme-admin-ribbon strong,
.theme-admin-ribbon span {
    display: block;
}

.theme-admin-ribbon span {
    color: #b8cbc1;
    font-size: .84rem;
}

.theme-admin-ribbon a {
    color: white;
    font-weight: 800;
}

.theme-dashboard-content {
    padding: 66px 0 92px;
    background: #fffdf8;
}

.theme-dashboard-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 34px;
}

.theme-dashboard-heading h2 {
    margin-bottom: 10px;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.theme-dashboard-heading p {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--theme-muted);
}

.theme-dashboard-logout {
    flex: 0 0 auto;
    color: #7e3f31;
    font-size: .82rem;
    font-weight: 800;
}

.theme-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.theme-journey-card {
    min-height: 315px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--theme-line);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,244,235,.82));
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease;
}

.theme-journey-card:hover,
.theme-journey-card:focus {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(20,37,29,.09);
}

.theme-journey-card.done-today {
    background: linear-gradient(180deg, #eef4eb, #e2ecdf);
}

.theme-journey-topline {
    min-height: 43px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--theme-muted);
    font-size: .72rem;
}

.theme-journey-topline b {
    color: var(--theme-green);
    white-space: nowrap;
    letter-spacing: .08em;
}

.theme-journey-card h3 {
    margin: 5px 0 10px;
    font-size: 1.7rem;
}

.theme-journey-card > p {
    color: var(--theme-muted);
    font-size: .92rem;
}

.theme-journey-progress {
    margin-top: auto;
    padding-top: 18px;
}

.theme-journey-progress > div {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #e5dfd3;
}

.theme-journey-progress > div span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--theme-green);
}

.theme-journey-progress small {
    display: block;
    margin-top: 7px;
    color: var(--theme-muted);
    font-size: .76rem;
}

.theme-journey-action {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--theme-line);
    font-size: .82rem;
}

.theme-journey-action strong {
    color: var(--theme-ink);
}

.theme-journey-action span {
    color: var(--theme-green);
}

/* Reading / journey pages */
.theme-reading-page {
    background: #fffdf8;
}

.theme-reading-hero {
    padding: 58px 0 50px;
    background:
        linear-gradient(90deg, rgba(251,248,240,.98) 0%, rgba(251,248,240,.85) 54%, rgba(251,248,240,.20) 100%),
        url('/assets/img/hero-sunrise.jpg') center 53% / cover no-repeat;
    border-bottom: 1px solid var(--theme-line);
}

.theme-reading-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 42px;
    align-items: end;
}

.theme-back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--theme-muted);
    text-decoration: none;
}

.theme-reading-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(3.1rem, 5.8vw, 5.8rem);
    letter-spacing: -.05em;
}

.theme-reading-deck {
    max-width: 720px;
    margin-bottom: 0;
    color: #4e5c55;
    font-size: 1.12rem;
}

.theme-reading-hero-quote {
    padding: 22px;
    border: 1px solid rgba(20,37,29,.12);
    border-radius: 10px;
    background: rgba(255,253,248,.80);
}

.theme-reading-hero-quote > span {
    display: block;
    margin-bottom: 8px;
    color: var(--theme-green);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.theme-reading-hero-quote strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.4rem;
}

.theme-reading-hero-quote p {
    margin: 6px 0 0;
    color: var(--theme-muted);
    font-size: .88rem;
}

.theme-reading-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 58px;
    padding-top: 58px;
    padding-bottom: 90px;
}

.theme-reading-main {
    min-width: 0;
}

.theme-reading-section {
    margin-bottom: 58px;
}

.theme-thought-section {
    padding-bottom: 44px;
    border-bottom: 1px solid var(--theme-line);
}

.theme-thought-section h2,
.theme-journal-card h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.8vw, 3.5rem);
}

.theme-reading-lead {
    font-family: Georgia, serif;
    font-size: 1.27rem;
    line-height: 1.72;
}

.theme-scripture-stack {
    display: grid;
    gap: 14px;
}

.theme-scripture {
    margin: 0;
    padding: 26px 28px;
    border-left: 4px solid var(--theme-green-soft);
    border-radius: 0 10px 10px 0;
    background: #f6f1e7;
}

.theme-scripture blockquote {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 1.19rem;
    line-height: 1.65;
}

.theme-scripture figcaption {
    color: var(--theme-green);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.theme-reflection-fields {
    display: grid;
    gap: 18px;
}

.theme-reflection-fields label {
    display: grid;
    gap: 10px;
}

.theme-reflection-fields label > span {
    font-family: Georgia, serif;
    font-size: 1.13rem;
}

.theme-reflection-fields textarea,
.theme-journal-card textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(20,37,29,.18);
    border-radius: 9px;
    background: white;
    color: var(--theme-ink);
    font: inherit;
    line-height: 1.55;
    resize: vertical;
}

.theme-reflection-fields textarea:focus,
.theme-journal-card textarea:focus {
    outline: none;
    border-color: var(--theme-green-soft);
    box-shadow: 0 0 0 3px rgba(100,122,88,.12);
}

.theme-reflection-list {
    display: grid;
    gap: 12px;
    padding-left: 1.5em;
}

.theme-reflection-list li {
    padding: 4px 0 10px 6px;
    font-family: Georgia, serif;
    font-size: 1.15rem;
}

.theme-solution-list {
    display: grid;
    gap: 12px;
    padding-left: 1.3em;
}

.theme-solution-list li {
    padding-left: 7px;
    font-family: Georgia, serif;
    font-size: 1.12rem;
}

.theme-prayer-card {
    margin-bottom: 58px;
    padding: 30px;
    border-radius: 12px;
    background: var(--theme-green);
    color: white;
}

.theme-prayer-card p:last-child {
    margin-bottom: 0;
    color: #e1ebe5;
    font-family: Georgia, serif;
    font-size: 1.18rem;
    line-height: 1.7;
}

.theme-next-step-card {
    padding: 26px 28px;
    border: 1px solid rgba(216,180,95,.42);
    border-radius: 10px;
    background: #fbf1d9;
}

.theme-next-step-card p:last-child {
    margin-bottom: 0;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.62;
}

.theme-journal-card {
    margin-bottom: 28px;
    padding: 28px;
    border: 1px solid var(--theme-line);
    border-radius: 12px;
    background: #f7f3e9;
}

.theme-journal-head {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
    margin-bottom: 18px;
}

.theme-journal-head h2 {
    margin-bottom: 0;
}

.theme-journal-head > span {
    color: var(--theme-muted);
    font-size: .75rem;
}

.theme-reading-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.theme-action-button {
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.theme-reading-side {
    min-width: 0;
}

.theme-reading-sticky {
    position: sticky;
    top: 102px;
    padding: 26px;
    border-radius: 12px;
    background: var(--theme-green);
    color: white;
    box-shadow: 0 16px 44px rgba(20,37,29,.12);
}

.theme-reading-sticky h2 {
    font-size: 1.65rem;
}

.theme-reading-sticky > p {
    color: #c9d8d1;
}

.theme-side-progress {
    margin: 22px 0 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.14);
}

.theme-side-progress > span,
.theme-side-progress small {
    display: block;
    color: #b8cbc1;
    font-size: .75rem;
}

.theme-side-progress > div {
    height: 7px;
    overflow: hidden;
    margin: 8px 0 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
}

.theme-side-progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--theme-gold);
}

.theme-side-link,
.theme-side-primary {
    display: block;
    margin-top: 11px;
    color: white;
    font-weight: 800;
    text-decoration: none;
}

.theme-side-primary {
    margin: 18px 0 8px;
    padding: 11px 13px;
    border-radius: 8px;
    background: white;
    color: var(--theme-green);
    text-align: center;
}

.theme-state-shell {
    padding-top: 60px;
    padding-bottom: 90px;
}

.theme-state-card {
    max-width: 760px;
    padding: 34px;
    border: 1px solid var(--theme-line);
    border-radius: 12px;
    background: white;
}

.theme-state-card h2 {
    font-size: 2.4rem;
}

.theme-state-card p {
    color: var(--theme-muted);
}

.theme-state-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

/* Responsive */
@media (max-width: 980px) {
    .theme-auth-grid,
    .theme-dashboard-hero-grid,
    .theme-reading-hero-grid,
    .theme-reading-layout {
        grid-template-columns: 1fr;
    }

    .theme-auth-panel {
        justify-content: flex-start;
    }

    .theme-auth-card {
        max-width: 620px;
    }

    .theme-dashboard-summary {
        max-width: 620px;
    }

    .theme-journey-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .theme-reading-sticky {
        position: static;
    }
}

@media (max-width: 700px) {
    .theme-auth-stage {
        padding: 52px 0 66px;
        background-position: 64% center;
    }

    .theme-auth-story h1,
    .theme-dashboard-hero h1,
    .theme-reading-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.6rem);
    }

    .theme-auth-grid {
        gap: 38px;
    }

    .theme-auth-card {
        padding: 24px 20px;
    }

    .theme-auth-switch,
    .theme-dashboard-promise,
    .theme-dashboard-heading,
    .theme-admin-ribbon-inner,
    .theme-journal-head,
    .theme-reading-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .theme-journey-grid {
        grid-template-columns: 1fr;
    }

    .theme-reading-layout {
        padding-top: 40px;
        padding-bottom: 64px;
    }

    .theme-reading-section,
    .theme-prayer-card {
        margin-bottom: 42px;
    }

    .theme-reading-actions > *,
    .theme-state-actions > * {
        width: 100%;
        justify-content: center;
    }
}


/* ==========================================================================
   A Year With God v1.4.4 — separated admin / reader experiences
   ========================================================================== */

.nav-switch-link,
.nav-admin-return {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.nav-admin-return {
    background: var(--theme-green);
    color: white !important;
}

.nav-switch-link {
    border: 1px solid var(--theme-line);
    color: var(--theme-green) !important;
    background: rgba(255,255,255,.72);
}

/* Experience chooser */
.experience-choice-page {
    min-height: calc(100vh - 72px);
}

.experience-choice-stage {
    min-height: calc(100vh - 72px);
    padding: 72px 0 90px;
    background:
        linear-gradient(90deg, rgba(251,248,240,.98), rgba(251,248,240,.86) 55%, rgba(251,248,240,.30)),
        url('/assets/img/hero-sunrise.jpg') center center / cover no-repeat;
}

.experience-choice-wrap {
    max-width: 1080px;
}

.experience-choice-intro {
    max-width: 820px;
    margin-bottom: 34px;
}

.experience-choice-intro h1 {
    margin-bottom: 16px;
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -.045em;
}

.experience-choice-intro p:last-child {
    color: var(--theme-muted);
    font-size: 1.05rem;
}

.experience-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.experience-choice-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--theme-line);
    border-radius: 14px;
    background: rgba(255,253,248,.95);
    box-shadow: 0 20px 60px rgba(20,37,29,.10);
    text-align: left;
}

.experience-choice-card.admin-choice {
    border-top: 5px solid var(--theme-green);
}

.experience-choice-card.reader-choice {
    border-top: 5px solid var(--theme-gold);
}

.choice-number {
    display: block;
    margin-bottom: 20px;
    color: #a5ada8;
    font-family: Georgia, serif;
    font-size: 2.2rem;
}

.experience-choice-card h2 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.experience-choice-card > p:not(.section-kicker) {
    color: var(--theme-muted);
}

.experience-choice-card ul {
    display: grid;
    gap: 8px;
    padding-left: 1.2em;
    color: #526059;
}

.experience-choice-button {
    width: 100%;
    min-height: 52px;
    margin-top: auto;
    border: 0;
    border-radius: 8px;
    background: var(--theme-green);
    color: white;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.secondary-choice-button {
    border: 1px solid var(--theme-green);
    background: white;
    color: var(--theme-green);
}

.experience-choice-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    color: var(--theme-muted);
    font-size: .84rem;
}

.experience-choice-footer a {
    color: #7e3f31;
    font-weight: 800;
}

/* Dedicated admin shell */
.admin-body {
    margin: 0;
    background: #f4f1e9;
    color: #14251d;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 24px 18px;
    background: #113426;
    color: white;
}

.admin-brand {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
    padding: 0 6px 22px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    color: white;
    text-decoration: none;
}

.admin-brand img {
    width: 46px;
    height: 46px;
}

.admin-brand span {
    display: block;
}

.admin-brand b {
    display: block;
    font-size: .72rem;
    letter-spacing: .22em;
}

.admin-brand em {
    display: block;
    margin-top: -2px;
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
}

.admin-brand small {
    display: block;
    margin-top: 4px;
    color: #8fa99c;
    font-size: .62rem;
    letter-spacing: .14em;
}

.admin-nav {
    display: grid;
    gap: 6px;
    margin-top: 26px;
}

.admin-nav a {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    min-height: 44px;
    padding: 9px 10px;
    border-radius: 8px;
    color: #c8d8d0;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 700;
}

.admin-nav a span {
    color: #6f8f7f;
    font-size: .66rem;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255,255,255,.10);
    color: white;
}

.admin-sidebar-bottom {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.admin-sidebar-bottom a {
    color: #b8cbc1;
    text-decoration: none;
    font-size: .8rem;
}

.admin-sidebar-bottom .admin-logout {
    color: #f0b9ab;
}

.admin-workspace {
    min-width: 0;
}

.admin-topbar {
    min-height: 76px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 14px 32px;
    border-bottom: 1px solid rgba(20,37,29,.11);
    background: rgba(255,253,248,.94);
    backdrop-filter: blur(12px);
}

.admin-topbar > div:first-child span,
.admin-topbar > div:first-child strong {
    display: block;
}

.admin-top-label {
    margin-bottom: 3px;
    color: #7a867f;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.admin-topbar > div:first-child strong {
    font-family: Georgia, serif;
    font-size: 1.3rem;
}

.admin-user-chip {
    text-align: right;
}

.admin-user-chip span,
.admin-user-chip small {
    display: block;
}

.admin-user-chip span {
    font-weight: 800;
}

.admin-user-chip small {
    margin-top: 2px;
    color: #7a867f;
    font-size: .75rem;
}

.admin-main {
    padding: 42px 34px 80px;
}

.admin-page-heading {
    max-width: 900px;
    margin-bottom: 30px;
}

.admin-page-heading h1 {
    margin-bottom: 12px;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    letter-spacing: -.04em;
}

.admin-page-heading p:last-child {
    color: #6b7770;
    font-size: 1.02rem;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.admin-stat-grid article {
    padding: 22px;
    border: 1px solid rgba(20,37,29,.12);
    border-radius: 10px;
    background: white;
}

.admin-stat-grid span {
    display: block;
    color: #78837d;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.admin-stat-grid strong {
    display: block;
    margin-top: 10px;
    font-family: Georgia, serif;
    font-size: 2rem;
}

.admin-stat-grid small {
    color: #78837d;
}

.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-action-card {
    min-height: 245px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid rgba(20,37,29,.12);
    border-radius: 10px;
    background: white;
    color: inherit;
    text-decoration: none;
    transition: transform .14s ease, box-shadow .14s ease;
}

.admin-action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(20,37,29,.08);
}

.admin-action-number {
    color: #91a099;
    font-family: Georgia, serif;
    font-size: 1.8rem;
}

.admin-action-card h2 {
    margin: 18px 0 10px;
    font-size: 1.8rem;
}

.admin-action-card p {
    color: #69766f;
}

.admin-action-card > strong {
    margin-top: auto;
    color: var(--theme-green);
}

.admin-preview-banner,
.admin-coming-card {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    padding: 25px;
    border-radius: 10px;
    background: #e8e0d2;
}

.admin-preview-banner h2,
.admin-coming-card h2 {
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.admin-preview-banner p:last-child,
.admin-coming-card p:last-child {
    margin-bottom: 0;
    color: #68736d;
}

.admin-preview-banner a {
    flex: 0 0 auto;
    color: var(--theme-green);
    font-weight: 800;
}

.admin-panel {
    padding: 24px;
    border: 1px solid rgba(20,37,29,.12);
    border-radius: 10px;
    background: white;
}

.admin-panel + .admin-panel {
    margin-top: 18px;
}

.admin-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.admin-panel-head h2 {
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.admin-panel-head p {
    margin: 0;
    color: #748079;
}

.admin-outline-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 13px;
    border: 1px solid var(--theme-green);
    border-radius: 8px;
    color: var(--theme-green);
    text-decoration: none;
    font-weight: 800;
}

.admin-table-wrap {
    overflow-x: auto;
    margin-top: 18px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 13px 10px;
    border-top: 1px solid rgba(20,37,29,.10);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: #7b8680;
    font-size: .67rem;
    letter-spacing: .08em;
}

.admin-table td {
    font-size: .88rem;
}

.admin-table td small {
    display: block;
    margin-top: 3px;
    color: #7b8680;
}

.admin-table td a {
    color: var(--theme-green);
    font-weight: 800;
}

.admin-status {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    background: #ece9df;
    color: #59665f;
    font-size: .67rem;
    font-weight: 800;
}

.admin-status.ok {
    background: #e5efe7;
    color: #2f6840;
}

.admin-status.off {
    background: #f4e7e3;
    color: #884c3f;
}

.admin-check-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.admin-check-card {
    padding: 18px;
    border: 1px solid rgba(20,37,29,.12);
    border-radius: 9px;
    background: #faf8f2;
}

.admin-check-card > span {
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .09em;
}

.admin-check-card.pass > span {
    color: #2f6840;
}

.admin-check-card.fail > span {
    color: #9d4436;
}

.admin-check-card.warn > span {
    color: #9b731c;
}

.admin-check-card h3 {
    margin: 8px 0 5px;
    font-size: 1.1rem;
}

.admin-check-card p {
    margin: 0;
    color: #707c75;
    font-size: .82rem;
}

.admin-version-grid {
    grid-template-columns: repeat(2, minmax(0, 250px));
}

/* Adapt the existing Deployment Center to the admin shell */
.admin-workspace .deployment-page {
    min-height: auto;
}

.admin-workspace .deployment-hero {
    padding: 34px 0 20px;
    background: transparent;
    border: 0;
}

.admin-workspace .deployment-hero > .wrap,
.admin-workspace .deployment-content > .wrap {
    width: 100%;
    max-width: none;
}

.admin-workspace .deployment-title-row h1 {
    font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.admin-workspace .deployment-content {
    padding: 0 0 80px;
}

@media (max-width: 1050px) {
    .admin-shell {
        grid-template-columns: 210px minmax(0,1fr);
    }

    .admin-stat-grid,
    .admin-check-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .experience-choice-grid,
    .admin-action-grid {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        position: static;
        width: 100%;
        height: auto;
    }

    .admin-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-sidebar-bottom {
        grid-template-columns: repeat(3, auto);
    }

    .admin-topbar {
        padding: 12px 18px;
    }

    .admin-main {
        padding: 30px 18px 60px;
    }

    .admin-stat-grid,
    .admin-check-grid,
    .admin-version-grid {
        grid-template-columns: 1fr;
    }

    .admin-preview-banner,
    .admin-panel-head,
    .experience-choice-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* v1.4.4 corrected — auth card width/layout repair */
.theme-auth-panel {
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.theme-auth-card {
    flex: 0 0 auto;
    width: min(100%, 480px);
}

.theme-auth-smallprint {
    width: min(100%, 480px);
    margin-top: 0;
    text-align: left;
}

.theme-auth-switch {
    align-items: center;
}

.theme-auth-switch a {
    white-space: nowrap;
}

@media (max-width: 980px) {
    .theme-auth-panel {
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .theme-auth-card,
    .theme-auth-smallprint {
        width: 100%;
    }

    .theme-auth-switch a {
        white-space: normal;
    }
}


/* ==========================================================================
   A Year With God v1.4.5 — Admin navigation/workspace spacing refinement
   ========================================================================== */

.admin-shell {
    grid-template-columns: 250px minmax(0, 1fr);
    column-gap: 18px;
    background: #ebe7dd;
}

.admin-sidebar {
    box-shadow: 8px 0 26px rgba(17,52,38,.08);
}

.admin-workspace {
    min-width: 0;
    background: #f7f4ec;
}

.admin-topbar {
    padding-left: 42px;
    padding-right: 42px;
}

.admin-main {
    padding-left: 42px;
    padding-right: 42px;
}

.admin-workspace .deployment-hero,
.admin-workspace .deployment-content {
    padding-left: 42px;
    padding-right: 42px;
}

.admin-workspace .deployment-hero > .wrap,
.admin-workspace .deployment-content > .wrap {
    width: 100%;
    max-width: none;
}

@media (max-width: 1050px) {
    .admin-shell {
        grid-template-columns: 210px minmax(0, 1fr);
        column-gap: 14px;
    }

    .admin-topbar,
    .admin-main,
    .admin-workspace .deployment-hero,
    .admin-workspace .deployment-content {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 760px) {
    .admin-shell {
        display: block;
    }

    .admin-topbar,
    .admin-main,
    .admin-workspace .deployment-hero,
    .admin-workspace .deployment-content {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* ==========================================================================
   A Year With God v1.4.6 — Content Studio
   ========================================================================== */

.content-studio-heading,
.content-editor-heading {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-end;
    max-width: none;
}

.content-studio-heading-actions,
.content-workspace-actions,
.admin-editor-actions > div {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.content-primary-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    border: 0;
    border-radius: 8px;
    background: var(--theme-green);
    color: white;
    text-decoration: none;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.content-stat-grid { margin-bottom: 18px; }

.content-studio-layout {
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.content-topic-rail {
    position: sticky;
    top: 94px;
    overflow: hidden;
    border: 1px solid rgba(20,37,29,.12);
    border-radius: 10px;
    background: white;
}

.content-rail-head {
    display: flex;
    justify-content: space-between;
    padding: 16px 16px 13px;
    border-bottom: 1px solid rgba(20,37,29,.10);
}

.content-rail-head span { color: #7b8780; font-size: .76rem; }

.content-topic-list {
    display: grid;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}

.content-topic-list > a {
    display: grid;
    gap: 7px;
    padding: 14px 15px;
    border-bottom: 1px solid rgba(20,37,29,.08);
    color: inherit;
    text-decoration: none;
}

.content-topic-list > a:hover,
.content-topic-list > a.active { background: #f1eee5; }

.content-topic-list > a.active { box-shadow: inset 4px 0 var(--theme-green); }

.content-topic-title {
    font-family: Georgia, serif;
    font-size: 1rem;
}

.content-topic-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    color: #748079;
    font-size: .68rem;
}

.content-topic-meta b { color: var(--theme-green); }
.content-topic-meta em { font-style: normal; letter-spacing: .05em; }

.content-topic-progress,
.content-large-progress {
    display: block;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8e3d9;
}

.content-topic-progress i,
.content-large-progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--theme-green);
}

.content-workspace { min-width: 0; }

.content-workspace-head {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    align-items: flex-end;
    padding: 22px 24px;
    border: 1px solid rgba(20,37,29,.12);
    border-radius: 10px;
    background: white;
}

.content-workspace-head h2 { margin-bottom: 8px; font-size: 2rem; }

.content-workspace-head p:last-child {
    max-width: 620px;
    margin-bottom: 0;
    color: #6e7a73;
}

.content-progress-summary {
    display: grid;
    grid-template-columns: auto minmax(150px, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
    padding: 14px 18px;
    border-radius: 9px;
    background: #e9e5dc;
}

.content-progress-summary strong,
.content-progress-summary span { display: block; }

.content-progress-summary span { color: #6e7973; font-size: .73rem; }
.content-progress-summary > b { color: var(--theme-green); }

.content-public-rule {
    display: flex;
    gap: 10px 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
    padding: 13px 16px;
    border-left: 4px solid var(--theme-green-soft);
    background: #f6f3eb;
    font-size: .82rem;
}

.content-public-rule span { color: #68756e; }

.content-public-rule a {
    margin-left: auto;
    color: var(--theme-green);
    font-weight: 800;
}

.content-cards-panel { margin-top: 12px !important; }

.content-day-number {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #edf0e9;
    color: var(--theme-green);
}

.content-empty-cards {
    display: grid;
    justify-items: start;
    gap: 8px;
    margin-top: 20px;
    padding: 28px;
    border: 1px dashed rgba(20,37,29,.20);
    border-radius: 9px;
    background: #faf8f2;
}

.content-empty-cards > span { color: #738079; }

.admin-editor-form {
    display: grid;
    gap: 14px;
}

.admin-editor-card {
    padding: 26px;
    border: 1px solid rgba(20,37,29,.12);
    border-radius: 10px;
    background: white;
}

.admin-editor-card h2 { margin-bottom: 16px; font-size: 1.8rem; }

.admin-editor-card-head {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: flex-start;
}

.admin-editor-grid { display: grid; gap: 16px; }
.admin-editor-grid.two { grid-template-columns: 1fr 1fr; }
.admin-editor-grid.day-title { grid-template-columns: 150px 1fr; }

.admin-editor-card label {
    display: grid;
    gap: 7px;
    margin-top: 14px;
    color: #26372f;
    font-size: .82rem;
    font-weight: 800;
}

.admin-editor-card input,
.admin-editor-card textarea,
.admin-editor-card select {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid rgba(20,37,29,.18);
    border-radius: 8px;
    background: #fffefa;
    color: var(--theme-ink);
    font: inherit;
    font-weight: 400;
}

.admin-editor-card textarea { resize: vertical; line-height: 1.55; }

.admin-editor-card input:focus,
.admin-editor-card textarea:focus,
.admin-editor-card select:focus {
    outline: none;
    border-color: var(--theme-green-soft);
    box-shadow: 0 0 0 3px rgba(100,122,88,.12);
}

.admin-editor-help { margin: -7px 0 2px; color: #748079; font-size: .78rem; }

.content-toggle {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px !important;
    margin-top: 0 !important;
}

.content-toggle input { width: auto; }

.content-status-select {
    width: 160px;
    margin-top: 0 !important;
}

.content-sort-field { max-width: 180px; }

.content-monospace {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
    font-size: .88rem !important;
}

.admin-editor-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
}

.sticky-editor-actions {
    position: sticky;
    bottom: 0;
    z-index: 4;
    margin-top: 0;
    padding: 14px;
    border: 1px solid rgba(20,37,29,.11);
    border-radius: 10px;
    background: rgba(247,244,236,.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 -10px 30px rgba(20,37,29,.06);
}

.content-safety-banner {
    display: grid;
    gap: 3px;
    margin-bottom: 14px;
    padding: 14px 16px;
    border-left: 4px solid #9b731c;
    background: #faf2d9;
}

.content-safety-banner span { color: #6d674e; font-size: .83rem; }

@media (max-width: 1050px) {
    .content-studio-layout { grid-template-columns: 220px minmax(0,1fr); }

    .content-workspace-head,
    .content-studio-heading,
    .content-editor-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .content-studio-layout { grid-template-columns: 1fr; }
    .content-topic-rail { position: static; }
    .content-topic-list { max-height: none; }
    .content-progress-summary { grid-template-columns: 1fr; }

    .content-public-rule a {
        margin-left: 0;
        width: 100%;
    }

    .admin-editor-grid.two,
    .admin-editor-grid.day-title { grid-template-columns: 1fr; }

    .admin-editor-card-head,
    .admin-editor-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .content-status-select { width: 100%; }
    .sticky-editor-actions { position: static; }
}


/* ==========================================================================
   A Year With God v1.4.7 — Content Production Accelerator
   ========================================================================== */

.content-production-map {
    margin-top: 12px;
}

.content-map-head {
    align-items: flex-start;
}

.content-filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.content-filter-tabs a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 7px;
    background: #f0ece3;
    color: #526159;
    text-decoration: none;
    font-size: .74rem;
    font-weight: 800;
}

.content-filter-tabs a.active {
    background: var(--theme-green);
    color: white;
}

.content-day-map {
    display: grid;
    grid-template-columns: repeat(25, minmax(30px, 1fr));
    gap: 5px;
    margin-top: 18px;
}

.content-day-cell {
    aspect-ratio: 1 / 1;
    min-width: 0;
    display: grid;
    place-items: center;
    position: relative;
    border: 1px solid rgba(20,37,29,.10);
    border-radius: 6px;
    background: #f7f4ed;
    color: #59665f;
    text-decoration: none;
    font-size: .70rem;
    font-weight: 800;
}

.content-day-cell i {
    position: absolute;
    right: 3px;
    bottom: 1px;
    font-size: .50rem;
    font-style: normal;
    opacity: .7;
}

.content-day-cell.published {
    background: #e1eee4;
    color: #285f3b;
    border-color: #c9ddcd;
}

.content-day-cell.draft {
    background: #fbf1d9;
    color: #8b6719;
    border-color: #ead9aa;
}

.content-day-cell.missing:hover {
    background: #e9e5dc;
    color: var(--theme-green);
}

.content-map-legend {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 14px;
    color: #6e7a73;
    font-size: .74rem;
}

.content-map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.content-map-legend .legend {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.content-map-legend .published { background: #c9ddcd; }
.content-map-legend .draft { background: #ead9aa; }
.content-map-legend .missing { background: #e9e5dc; }

.content-editor-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 14px;
}

.content-editor-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.content-readiness {
    min-width: 220px;
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.content-readiness > div {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e7e2d8;
}

.content-readiness > div i {
    display: block;
    height: 100%;
    background: var(--theme-green);
}

.content-readiness strong {
    color: var(--theme-green);
    font-size: .78rem;
}

.content-copy-previous {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
    padding: 12px 14px;
    border-left: 4px solid var(--theme-gold);
    background: #faf1dd;
}

.content-copy-previous button {
    border: 0;
    border-radius: 7px;
    padding: 9px 12px;
    background: #7d6324;
    color: white;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.content-copy-previous span {
    color: #746b55;
    font-size: .78rem;
}

.content-readiness-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid rgba(20,37,29,.09);
}

.content-readiness-checks span {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: .70rem;
    font-weight: 800;
}

.content-readiness-checks .ready {
    background: #e3efe5;
    color: #2d6740;
}

.content-readiness-checks .missing {
    background: #eeeae0;
    color: #7a7467;
}

@media (max-width: 1280px) {
    .content-day-map {
        grid-template-columns: repeat(20, minmax(30px, 1fr));
    }
}

@media (max-width: 1000px) {
    .content-day-map {
        grid-template-columns: repeat(15, minmax(30px, 1fr));
    }
}

@media (max-width: 760px) {
    .content-day-map {
        grid-template-columns: repeat(8, minmax(30px, 1fr));
    }

    .content-editor-toolbar,
    .content-copy-previous {
        align-items: stretch;
        flex-direction: column;
    }

    .content-readiness {
        min-width: 0;
        width: 100%;
    }
}


/* ==========================================================================
   A Year With God v1.4.8 — Bulk Content Builder
   ========================================================================== */

.bulk-workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.bulk-workflow-step {
    display: grid;
    gap: 4px;
    padding: 15px;
    border: 1px solid rgba(20,37,29,.10);
    border-radius: 9px;
    background: white;
}

.bulk-workflow-step > span {
    color: #9aa29e;
    font-family: Georgia, serif;
    font-size: 1.3rem;
}

.bulk-workflow-step strong {
    font-size: .88rem;
}

.bulk-workflow-step small {
    color: #77827c;
}

.bulk-workflow-step.active {
    border-top: 4px solid var(--theme-green);
}

.bulk-mode-tabs {
    display: flex;
    gap: 8px;
}

.bulk-mode-tabs label {
    display: inline-flex !important;
    grid-template-columns: none !important;
    flex-direction: row !important;
    gap: 6px !important;
    align-items: center;
    min-height: 36px;
    margin-top: 0 !important;
    padding: 6px 10px;
    border-radius: 7px;
    background: #f1eee6;
}

.bulk-mode-tabs input {
    width: auto !important;
}

.bulk-format-help {
    display: grid;
    gap: 7px;
    margin: 14px 0 6px;
    padding: 14px;
    border-left: 4px solid var(--theme-green-soft);
    background: #f7f4ec;
    font-size: .79rem;
}

.bulk-format-help code {
    overflow-x: auto;
    padding: 7px 9px;
    border-radius: 6px;
    background: #eee9df;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.bulk-format-help span {
    color: #6e7a73;
}

.bulk-preview-card {
    margin-top: 6px;
}

.bulk-summary-pills {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.bulk-summary-pills span {
    padding: 5px 8px;
    border-radius: 999px;
    background: #ece9e0;
    color: #59665f;
    font-size: .7rem;
    font-weight: 800;
}

.bulk-summary-pills span.ok {
    background: #e2efe5;
    color: #2e6740;
}

.bulk-summary-pills span.bad {
    background: #f4e3df;
    color: #8f493d;
}

.bulk-preview-table td small {
    display: block;
    max-width: 780px;
    margin-top: 6px;
    color: #8a5b50;
    line-height: 1.4;
}

.bulk-import-confirm {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: 18px;
    padding: 16px;
    border-radius: 9px;
    background: #e8f0e8;
}

.bulk-import-confirm strong,
.bulk-import-confirm span {
    display: block;
}

.bulk-import-confirm span {
    margin-top: 4px;
    color: #627069;
    font-size: .8rem;
}

@media (max-width: 900px) {
    .bulk-workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .bulk-workflow-grid {
        grid-template-columns: 1fr;
    }

    .bulk-import-confirm,
    .bulk-mode-tabs {
        align-items: stretch;
        flex-direction: column;
    }
}


/* ==========================================================================
   A Year With God v1.4.9 — Editorial Review & Publish Queue
   ========================================================================== */

.content-editor-heading-links,
.preview-admin-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.review-heading,
.preview-admin-heading {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    align-items: flex-end;
    max-width: none;
}

.review-stat-grid { margin-bottom: 14px; }

.review-controls {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 14px;
}

.review-filter-form {
    display: flex;
    gap: 10px;
    align-items: end;
    flex-wrap: wrap;
}

.review-filter-form label {
    display: grid;
    gap: 6px;
    color: #56645c;
    font-size: .75rem;
    font-weight: 800;
}

.review-filter-form select {
    min-width: 190px;
    padding: 9px 11px;
    border: 1px solid rgba(20,37,29,.16);
    border-radius: 8px;
    background: white;
    font: inherit;
}

.review-rule {
    justify-self: end;
    max-width: 680px;
    padding: 12px 14px;
    border-left: 4px solid var(--theme-green-soft);
    background: #f4f1e9;
    font-size: .78rem;
}

.review-rule strong,
.review-rule span { display: block; }

.review-rule span {
    margin-top: 3px;
    color: #6c7871;
}

.review-card-list {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.review-card {
    display: grid;
    grid-template-columns: 34px 64px minmax(0,1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(20,37,29,.10);
    border-radius: 9px;
    background: #fcfaf5;
}

.review-card.needs-work { background: #fbf5f0; }

.review-select input {
    width: 18px;
    height: 18px;
}

.review-day {
    display: grid;
    place-items: center;
    align-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #e8ede5;
    color: var(--theme-green);
}

.review-day span {
    font-size: .53rem;
    letter-spacing: .08em;
}

.review-day strong {
    font-family: Georgia, serif;
    font-size: 1.3rem;
}

.review-topic {
    color: #728078;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.review-card-copy h3 {
    margin: 3px 0 9px;
    font-size: 1.15rem;
}

.review-checks {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.review-checks span {
    padding: 4px 6px;
    border-radius: 999px;
    font-size: .62rem;
    font-weight: 800;
}

.review-checks .ok {
    background: #e3efe5;
    color: #2e6740;
}

.review-checks .missing {
    background: #f1e3df;
    color: #8c4a3e;
}

.review-sequence {
    display: flex;
    gap: 7px;
    align-items: baseline;
    margin-top: 9px;
    font-size: .72rem;
}

.review-sequence.ok strong { color: #2e6740; }
.review-sequence.waiting strong { color: #8a681d; }
.review-sequence span { color: #748079; }

.review-card-actions {
    display: grid;
    gap: 7px;
    min-width: 80px;
}

.review-card-actions a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 1px solid rgba(20,37,29,.13);
    border-radius: 7px;
    background: white;
    color: var(--theme-green);
    text-decoration: none;
    font-size: .72rem;
    font-weight: 800;
}

.review-empty {
    display: grid;
    gap: 5px;
    margin-top: 18px;
    padding: 26px;
    border: 1px dashed rgba(20,37,29,.18);
    border-radius: 8px;
    background: #faf8f2;
}

.review-empty span { color: #748079; }

/* Admin-only reader preview */
.reader-preview-frame {
    overflow: hidden;
    max-width: 1040px;
    margin: 0 auto;
    border: 1px solid rgba(20,37,29,.13);
    border-radius: 12px;
    background: #fffdf8;
    box-shadow: 0 20px 60px rgba(20,37,29,.08);
}

.reader-preview-label {
    padding: 10px 18px;
    background: #113426;
    color: #dce8e1;
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.reader-preview-hero {
    padding: 34px 46px;
    background:
        linear-gradient(90deg, rgba(251,248,240,.97), rgba(251,248,240,.78)),
        url('/assets/img/hero-sunrise.jpg') center 56% / cover no-repeat;
}

.reader-preview-hero h2 {
    margin-bottom: 7px;
    font-size: 3.2rem;
}

.reader-preview-hero > span { color: #5e6c64; }

.reader-preview-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 42px 40px 56px;
}

.reader-preview-body > section { margin-bottom: 40px; }
.reader-preview-body h3 { font-size: 2rem; }

.reader-preview-lead {
    font-family: Georgia, serif;
    font-size: 1.16rem;
    line-height: 1.7;
}

.reader-preview-scripture {
    margin: 0 0 10px;
    padding: 22px 24px;
    border-left: 4px solid var(--theme-green-soft);
    background: #f5f0e6;
}

.reader-preview-scripture blockquote {
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.62;
}

.reader-preview-scripture figcaption {
    color: var(--theme-green);
    font-size: .75rem;
    font-weight: 800;
}

.reader-preview-questions {
    display: grid;
    gap: 10px;
    padding-left: 1.3em;
    font-family: Georgia, serif;
    font-size: 1.05rem;
}

.reader-preview-prayer {
    padding: 24px;
    border-radius: 10px;
    background: var(--theme-green);
    color: white;
}

.reader-preview-prayer p:last-child {
    color: #dfe9e3;
    font-family: Georgia, serif;
    font-size: 1.08rem;
    line-height: 1.65;
}

.reader-preview-step {
    padding: 22px 24px;
    border: 1px solid rgba(216,180,95,.42);
    border-radius: 9px;
    background: #fbf1d9;
}

.reader-preview-journal {
    padding: 24px;
    border-radius: 10px;
    background: #f3efe5;
}

.reader-preview-textarea {
    min-height: 150px;
    margin-top: 14px;
    padding: 15px;
    border: 1px solid rgba(20,37,29,.15);
    border-radius: 8px;
    background: white;
    color: #8b948f;
}

@media (max-width: 900px) {
    .review-controls { grid-template-columns: 1fr; }
    .review-rule { justify-self: stretch; max-width: none; }

    .review-card {
        grid-template-columns: 30px 54px minmax(0,1fr);
    }

    .review-card-actions {
        grid-column: 3;
        display: flex;
    }
}

@media (max-width: 650px) {
    .review-heading,
    .preview-admin-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .review-card {
        grid-template-columns: 28px 1fr;
        align-items: start;
    }

    .review-day {
        grid-column: 2;
        width: 52px;
        height: 52px;
    }

    .review-card-copy,
    .review-card-actions {
        grid-column: 2;
    }

    .review-card-actions { width: 100%; }
    .reader-preview-hero { padding: 28px 22px; }
    .reader-preview-body { padding: 32px 20px 42px; }
}


/* ==========================================================================
   A Year With God v1.4.10 — Editorial Quality Center
   ========================================================================== */

.review-heading-actions,
.quality-heading-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.quality-heading {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    align-items: flex-end;
    max-width: none;
}

.quality-stat-grid { margin-bottom: 14px; }

.quality-filter-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 14px;
}

.quality-filter-form label {
    display: grid;
    gap: 6px;
    color: #56645c;
    font-size: .75rem;
    font-weight: 800;
}

.quality-filter-form select {
    min-width: 230px;
    padding: 9px 11px;
    border: 1px solid rgba(20,37,29,.16);
    border-radius: 8px;
    background: white;
    font: inherit;
}

.quality-privacy-note {
    justify-self: end;
    max-width: 720px;
    padding: 12px 14px;
    border-left: 4px solid var(--theme-green-soft);
    background: #f4f1e9;
    font-size: .78rem;
}

.quality-privacy-note strong,
.quality-privacy-note span { display:block; }

.quality-privacy-note span {
    margin-top: 3px;
    color: #6d7872;
}

.quality-journey-panel,
.quality-issues-panel {
    margin-top: 14px !important;
}

.quality-journey-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 10px;
    margin-top: 18px;
}

.quality-journey-card {
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 17px;
    border: 1px solid rgba(20,37,29,.10);
    border-radius: 9px;
    background: #fcfaf5;
    color: inherit;
    text-decoration: none;
}

.quality-journey-status {
    align-self: flex-start;
    padding: 4px 7px;
    border-radius: 999px;
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .07em;
}

.quality-journey-status.active {
    background: #e1eee4;
    color: #2d6740;
}

.quality-journey-status.inactive {
    background: #ede9df;
    color: #756f63;
}

.quality-journey-card h3 {
    margin: 13px 0 12px;
    font-size: 1.25rem;
}

.quality-coverage-bar {
    display: flex;
    height: 8px;
    overflow: hidden;
    margin-top: auto;
    border-radius: 999px;
    background: #e9e4da;
}

.quality-coverage-bar i { display:block; height:100%; }
.quality-coverage-bar .published { background:#3f7750; }
.quality-coverage-bar .draft { background:#d2a950; }

.quality-coverage-stats {
    display: flex;
    justify-content: space-between;
    gap: 7px;
    margin-top: 9px;
    color: #6c7871;
    font-size: .68rem;
}

.quality-coverage-stats b { color:#2c4136; }

.quality-journey-card small {
    margin-top: 9px;
    color: #748079;
    line-height: 1.35;
}

.quality-issue-list {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.quality-issue {
    display: grid;
    grid-template-columns: 84px minmax(0,1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(20,37,29,.10);
    border-radius: 8px;
}

.quality-issue.blocking { background:#fbefec; }
.quality-issue.advisory { background:#faf6e9; }

.quality-severity {
    display: inline-flex;
    justify-content:center;
    padding:5px 7px;
    border-radius:999px;
    font-size:.61rem;
    font-weight:900;
    letter-spacing:.06em;
}

.blocking .quality-severity {
    background:#edcbc4;
    color:#843e33;
}

.advisory .quality-severity {
    background:#edddb4;
    color:#7d621f;
}

.quality-issue strong { font-size:.88rem; }

.quality-issue p {
    margin:3px 0 0;
    color:#6d7872;
    font-size:.78rem;
}

.quality-issue > a {
    color:var(--theme-green);
    font-size:.75rem;
    font-weight:800;
    text-decoration:none;
}

.quality-clean-state {
    display:grid;
    gap:4px;
    margin-top:18px;
    padding:22px;
    border:1px dashed rgba(20,37,29,.16);
    border-radius:8px;
    background:#f5f7f2;
}

.quality-clean-state strong { color:#2e6740; }
.quality-clean-state span { color:#718078; font-size:.82rem; }
.quality-truncated { color:#7a7468; font-size:.76rem; margin-top:12px; }

@media (max-width:1050px) {
    .quality-journey-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width:760px) {
    .quality-heading,
    .quality-filter-panel {
        grid-template-columns:1fr;
        align-items:flex-start;
    }

    .quality-heading { flex-direction:column; }

    .quality-privacy-note {
        justify-self:stretch;
        max-width:none;
    }

    .quality-journey-grid { grid-template-columns:1fr; }

    .quality-issue {
        grid-template-columns:1fr;
        align-items:flex-start;
    }

    .quality-severity { justify-self:start; }
}


/* ==========================================================================
   A Year With God v1.4.11 — Privacy-Safe Reader Insights
   ========================================================================== */

.readers-heading-with-action,
.insights-heading {
    display:flex;
    justify-content:space-between;
    gap:26px;
    align-items:flex-end;
    max-width:none;
}

.insights-heading-actions {
    display:flex;
    gap:9px;
    flex-wrap:wrap;
}

.insights-filter-panel {
    display:grid;
    grid-template-columns:auto 1fr;
    gap:24px;
    align-items:end;
    margin-bottom:14px;
}

.insights-filter-form {
    display:flex;
    gap:10px;
    align-items:end;
    flex-wrap:wrap;
}

.insights-filter-form label {
    display:grid;
    gap:6px;
    color:#56645c;
    font-size:.75rem;
    font-weight:800;
}

.insights-filter-form select {
    min-width:170px;
    padding:9px 11px;
    border:1px solid rgba(20,37,29,.16);
    border-radius:8px;
    background:white;
    font:inherit;
}

.insights-privacy-note {
    justify-self:end;
    max-width:720px;
    padding:12px 14px;
    border-left:4px solid var(--theme-green-soft);
    background:#f4f1e9;
    font-size:.78rem;
}

.insights-privacy-note strong,
.insights-privacy-note span { display:block; }

.insights-privacy-note span {
    margin-top:3px;
    color:#6d7872;
}

.insights-stat-grid { margin-bottom:14px; }

.insights-two-column {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:14px;
}

.insights-funnel,
.insights-progress-buckets {
    display:grid;
    gap:11px;
    margin-top:18px;
}

.insights-funnel-row {
    display:grid;
    grid-template-columns:155px minmax(120px,1fr) 52px;
    gap:12px;
    align-items:center;
}

.insights-funnel-row > div:first-child {
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.insights-funnel-row > div:first-child strong {
    font-size:.78rem;
}

.insights-funnel-row > div:first-child span,
.insights-funnel-row small {
    color:#6f7b74;
    font-size:.72rem;
}

.insights-funnel-bar,
.insights-progress-row > div,
.insights-topic-bar {
    height:8px;
    overflow:hidden;
    border-radius:999px;
    background:#e8e3d9;
}

.insights-funnel-bar i,
.insights-progress-row > div i,
.insights-topic-bar i {
    display:block;
    height:100%;
    border-radius:inherit;
    background:var(--theme-green);
}

.insights-progress-row {
    display:grid;
    grid-template-columns:115px minmax(100px,1fr) 42px;
    gap:11px;
    align-items:center;
    font-size:.77rem;
}

.insights-progress-row > span { color:#57665e; }
.insights-progress-row > strong { text-align:right; }

.insights-activity-panel,
.insights-topic-panel,
.insights-recent-panel {
    margin-top:14px !important;
}

.insights-chart-legend {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    color:#68756e;
    font-size:.7rem;
}

.insights-chart-legend span {
    display:inline-flex;
    align-items:center;
    gap:5px;
}

.insights-chart-legend i {
    width:9px;
    height:9px;
    border-radius:2px;
}

.insights-chart-legend .starts,
.insights-bars .starts { background:#3e7450; }

.insights-chart-legend .completions,
.insights-bars .completions { background:#c19b45; }

.insights-chart-legend .registrations,
.insights-bars .registrations { background:#85968d; }

.insights-daily-chart {
    min-height:225px;
    display:grid;
    grid-template-columns:repeat(14,minmax(34px,1fr));
    gap:7px;
    align-items:end;
    margin-top:22px;
    padding:14px 8px 0;
    border-bottom:1px solid rgba(20,37,29,.12);
}

.insights-day-column {
    min-width:0;
    display:grid;
    grid-template-rows:180px auto;
    gap:7px;
    text-align:center;
}

.insights-bars {
    display:flex;
    gap:3px;
    align-items:flex-end;
    justify-content:center;
    height:180px;
}

.insights-bars i {
    width:26%;
    min-height:2px;
    max-width:12px;
    border-radius:3px 3px 0 0;
}

.insights-day-column > span {
    color:#79847e;
    font-size:.62rem;
    white-space:nowrap;
}

.insights-topic-list {
    display:grid;
    gap:9px;
    margin-top:18px;
}

.insights-topic-row {
    display:grid;
    grid-template-columns:220px minmax(130px,1fr) minmax(310px,auto) auto;
    gap:16px;
    align-items:center;
    padding:14px;
    border:1px solid rgba(20,37,29,.10);
    border-radius:8px;
    background:#fcfaf5;
}

.insights-topic-name > span {
    color:#718078;
    font-size:.58rem;
    font-weight:900;
    letter-spacing:.08em;
}

.insights-topic-name h3 {
    margin:3px 0;
    font-size:1rem;
}

.insights-topic-name small {
    color:#7a857f;
}

.insights-topic-metrics {
    display:grid;
    grid-template-columns:repeat(4,auto);
    gap:12px;
}

.insights-topic-metrics span {
    color:#6f7a74;
    font-size:.68rem;
    white-space:nowrap;
}

.insights-topic-metrics b {
    color:#25382f;
}

.insights-topic-row > a {
    color:var(--theme-green);
    font-size:.72rem;
    font-weight:800;
    text-decoration:none;
}

.insights-recent-grid {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:9px;
    margin-top:18px;
}

.insights-recent-grid article {
    display:grid;
    gap:4px;
    padding:14px;
    border:1px solid rgba(20,37,29,.09);
    border-radius:8px;
    background:#faf8f2;
}

.insights-recent-grid article > span {
    color:#77837c;
    font-size:.66rem;
}

.insights-recent-grid article > strong {
    font-family:Georgia,serif;
    font-size:1.15rem;
}

.insights-recent-grid article > small {
    color:#69766f;
}

@media (max-width:1100px) {
    .insights-topic-row {
        grid-template-columns:190px minmax(120px,1fr) auto;
    }

    .insights-topic-metrics {
        grid-column:2 / 4;
    }

    .insights-topic-row > a {
        grid-column:4;
        grid-row:1;
    }
}

@media (max-width:900px) {
    .insights-filter-panel,
    .insights-two-column {
        grid-template-columns:1fr;
    }

    .insights-privacy-note {
        justify-self:stretch;
        max-width:none;
    }

    .insights-daily-chart {
        overflow-x:auto;
        grid-template-columns:repeat(14,minmax(42px,1fr));
    }

    .insights-recent-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:700px) {
    .readers-heading-with-action,
    .insights-heading {
        align-items:flex-start;
        flex-direction:column;
    }

    .insights-funnel-row,
    .insights-progress-row {
        grid-template-columns:1fr;
        gap:6px;
    }

    .insights-topic-row {
        grid-template-columns:1fr;
    }

    .insights-topic-metrics {
        grid-column:auto;
        grid-template-columns:repeat(2,1fr);
    }

    .insights-topic-row > a {
        grid-column:auto;
        grid-row:auto;
    }

    .insights-recent-grid {
        grid-template-columns:1fr;
    }
}


/* ==========================================================================
   A Year With God v1.4.12 — Content Vault
   ========================================================================== */

.vault-heading {
    display:flex;
    justify-content:space-between;
    gap:26px;
    align-items:flex-end;
    max-width:none;
}

.vault-heading-actions {
    display:flex;
    gap:9px;
    flex-wrap:wrap;
}

.vault-stat-grid { margin-bottom:14px; }

.vault-actions-panel,
.vault-policy-panel,
.vault-list-panel {
    margin-top:14px !important;
}

.vault-primary-action {
    display:flex;
    justify-content:space-between;
    gap:24px;
    align-items:center;
    padding:4px 0 18px;
}

.vault-primary-action h2 {
    margin-bottom:7px;
    font-size:1.8rem;
}

.vault-primary-action p:last-child {
    max-width:760px;
    margin-bottom:0;
    color:#6c7871;
}

.vault-primary-action code {
    padding:2px 5px;
    border-radius:4px;
    background:#eee9df;
}

.vault-privacy-boundary {
    padding:14px 16px;
    border-left:4px solid var(--theme-green);
    background:#edf3ed;
}

.vault-privacy-boundary strong,
.vault-privacy-boundary span { display:block; }

.vault-privacy-boundary span {
    margin-top:4px;
    color:#66736c;
    font-size:.8rem;
}

.vault-policy-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
    margin-top:18px;
}

.vault-policy-grid article {
    min-height:110px;
    padding:16px;
    border-radius:8px;
    background:#f7f4ec;
}

.vault-policy-grid article.safe {
    border-left:4px solid #4c805c;
}

.vault-policy-grid article.protected {
    border-left:4px solid #c09b48;
}

.vault-policy-grid strong,
.vault-policy-grid span { display:block; }

.vault-policy-grid span {
    margin-top:6px;
    color:#6c7871;
    font-size:.8rem;
    line-height:1.45;
}

.vault-snapshot-list {
    display:grid;
    gap:10px;
    margin-top:18px;
}

.vault-snapshot-card {
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:20px;
    align-items:center;
    padding:17px;
    border:1px solid rgba(20,37,29,.10);
    border-radius:9px;
    background:#fcfaf5;
}

.vault-snapshot-type {
    display:inline-flex;
    padding:4px 7px;
    border-radius:999px;
    background:#e5eee7;
    color:#376a47;
    font-size:.6rem;
    font-weight:900;
    letter-spacing:.07em;
}

.vault-snapshot-main h3 {
    margin:7px 0 8px;
    font-size:1rem;
    word-break:break-word;
}

.vault-snapshot-meta,
.vault-counts {
    display:flex;
    gap:10px 16px;
    flex-wrap:wrap;
}

.vault-snapshot-meta {
    color:#77827c;
    font-size:.69rem;
}

.vault-counts {
    margin-top:10px;
    color:#69766f;
    font-size:.72rem;
}

.vault-counts b { color:#293d33; }

.vault-snapshot-actions {
    display:grid;
    gap:10px;
    min-width:255px;
}

.vault-restore-form {
    display:grid;
    grid-template-columns:1fr auto;
    gap:7px;
    align-items:end;
    padding:10px;
    border:1px solid rgba(151,91,70,.18);
    border-radius:8px;
    background:#fbf0ec;
}

.vault-restore-form label {
    display:grid;
    gap:4px;
    color:#72594f;
    font-size:.64rem;
    font-weight:800;
}

.vault-restore-form input {
    width:100%;
    padding:8px 9px;
    border:1px solid rgba(124,75,57,.25);
    border-radius:6px;
    background:white;
    font:inherit;
}

.vault-restore-form button {
    min-height:36px;
    padding:7px 10px;
    border:0;
    border-radius:6px;
    background:#824b3d;
    color:white;
    font:inherit;
    font-size:.72rem;
    font-weight:800;
    cursor:pointer;
}

@media (max-width:900px) {
    .vault-primary-action,
    .vault-heading {
        align-items:flex-start;
        flex-direction:column;
    }

    .vault-snapshot-card {
        grid-template-columns:1fr;
    }

    .vault-snapshot-actions {
        min-width:0;
    }
}

@media (max-width:650px) {
    .vault-policy-grid {
        grid-template-columns:1fr;
    }

    .vault-restore-form {
        grid-template-columns:1fr;
    }
}


/* ==========================================================================
   A Year With God v1.4.13 — Access + CRM + Social Media Foundation
   ========================================================================== */

.password-input-wrap {
    position:relative;
    display:block;
}

.password-input-wrap input {
    padding-right:64px !important;
}

.password-visibility-toggle {
    position:absolute;
    top:50%;
    right:8px;
    transform:translateY(-50%);
    min-width:48px;
    min-height:32px;
    border:0;
    border-radius:6px;
    background:#e9ede8;
    color:var(--theme-green);
    font:inherit;
    font-size:.72rem;
    font-weight:800;
    cursor:pointer;
}

.login-help-row {
    display:flex;
    justify-content:flex-end;
    margin:-3px 0 4px;
}

.login-help-row a {
    color:var(--theme-green);
    font-size:.76rem;
    font-weight:800;
}

.reset-password-wrap {
    max-width:620px;
    padding:60px 0 90px;
}

.reset-password-card {
    width:100%;
    max-width:560px;
    margin:0 auto;
}

.reset-password-card h1 {
    margin-bottom:12px;
    font-size:3rem;
}

/* Account center */
.theme-dashboard-account-actions { display:flex;gap:10px;align-items:center;flex-wrap:wrap; }
.theme-dashboard-account-link { color:var(--theme-green);font-size:.82rem;font-weight:800;text-decoration:none; }

.account-center-page { min-height:calc(100vh - 72px);background:#f8f5ed; }
.account-center-hero { padding:58px 0 48px;border-bottom:1px solid rgba(20,37,29,.10);background:linear-gradient(90deg,rgba(249,246,238,.98),rgba(249,246,238,.80)),url('/assets/img/hero-sunrise.jpg') center 54%/cover no-repeat; }
.account-center-hero-grid { display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:42px;align-items:end; }
.account-center-hero h1 { max-width:760px;margin-bottom:14px;font-size:clamp(3rem,5vw,5rem);letter-spacing:-.045em; }
.account-center-hero p:last-child { max-width:760px;color:#5e6b64; }
.account-center-identity { display:grid;gap:5px;padding:20px;border:1px solid rgba(20,37,29,.12);border-radius:10px;background:rgba(255,253,248,.90); }
.account-center-identity>span { color:#6e7b73;font-size:.62rem;font-weight:900;letter-spacing:.12em; }
.account-center-identity>strong { margin-top:5px;font-family:Georgia,serif;font-size:1.5rem; }
.account-center-identity>small { color:#738079; }
.account-center-content { padding:34px 0 80px; }
.account-center-actions-top { display:flex;gap:9px;flex-wrap:wrap;margin-bottom:14px; }
.account-center-grid { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.account-center-card { padding:26px;border:1px solid rgba(20,37,29,.12);border-radius:10px;background:#fffefa; }
.account-center-card h2 { margin-bottom:12px;font-size:2rem; }
.account-center-card select { width:100%;padding:12px;border:1px solid rgba(20,37,29,.18);border-radius:8px;background:white;font:inherit; }
.account-center-card label small { display:block;margin-top:5px;color:#7a857f;font-size:.7rem; }
.account-privacy-card { display:grid;grid-template-columns:minmax(0,1fr) auto;gap:30px;align-items:center;margin-top:14px;background:#153c2c;color:white; }
.account-privacy-card h2 { color:white; }
.account-private-stats { display:grid;grid-template-columns:repeat(3,minmax(110px,1fr));gap:8px; }
.account-private-stats article { padding:16px;border:1px solid rgba(255,255,255,.12);border-radius:8px;background:rgba(255,255,255,.06); }
.account-private-stats strong,.account-private-stats span { display:block; }
.account-private-stats strong { font-family:Georgia,serif;font-size:1.8rem; }
.account-private-stats span { color:#bcd0c6;font-size:.72rem; }

/* CRM */
.crm-heading,.social-heading { display:flex;justify-content:space-between;gap:24px;align-items:flex-end;max-width:none; }
.crm-filter-form { display:flex;gap:9px;align-items:center;flex-wrap:wrap;margin-bottom:14px; }
.crm-filter-form input,.crm-filter-form select { min-height:40px;padding:9px 11px;border:1px solid rgba(20,37,29,.15);border-radius:7px;background:white;font:inherit; }
.crm-filter-form input { min-width:320px; }
.crm-detail-grid { display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px; }
.crm-details { display:grid;grid-template-columns:130px 1fr;gap:10px;margin:15px 0 0; }
.crm-details dt { color:#748079;font-size:.75rem;font-weight:800; }
.crm-details dd { margin:0; }
.crm-note-textarea { width:100%;padding:12px;border:1px solid rgba(20,37,29,.15);border-radius:8px;margin:12px 0; }
.crm-notes-panel { margin-top:14px!important; }
.crm-note-list { display:grid;gap:8px;margin-top:16px; }
.crm-note-list article { padding:14px;border:1px solid rgba(20,37,29,.09);border-radius:8px;background:#faf8f2; }
.crm-note-list article p { margin:0 0 7px; }
.crm-note-list article small { color:#758079; }

/* Social */
.social-dashboard-grid { display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px; }
.social-workflow { display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-top:18px; }
.social-workflow span { padding:9px 11px;border-radius:7px;background:#edf1eb;color:#315a41;font-size:.76rem;font-weight:800; }
.social-workflow b { color:#8b958f; }
.social-phase-note { display:grid;gap:4px;margin-top:16px;padding:13px 15px;border-left:4px solid #c19b45;background:#faf3df; }
.social-phase-note span { color:#70684f;font-size:.78rem; }
.social-upcoming { display:grid;gap:7px;margin-top:16px; }
.social-upcoming a { display:flex;justify-content:space-between;gap:12px;padding:10px;border-radius:7px;background:#faf8f2;color:inherit;text-decoration:none; }
.social-upcoming a span { color:#748079;font-size:.74rem; }
.social-recent-panel { margin-top:14px!important; }
.social-platform-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin-top:14px; }
.social-platform-grid label { display:flex!important;flex-direction:row!important;align-items:center;gap:9px!important;margin:0!important;padding:12px;border:1px solid rgba(20,37,29,.10);border-radius:8px;background:#faf8f2; }
.social-platform-grid input { width:auto!important; }
.social-platform-grid span { display:grid;gap:2px; }
.social-platform-grid small { color:#7c8780;font-size:.62rem; }
.social-connections-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px; }
.social-connections-grid article h2 { margin:12px 0 7px; }
.social-connections-grid article p { color:#6e7a73;word-break:break-word; }
.social-calendar-list { display:grid;gap:8px; }
.social-calendar-list a { display:grid;grid-template-columns:190px 1fr;gap:15px;padding:13px;border:1px solid rgba(20,37,29,.09);border-radius:8px;color:inherit;text-decoration:none; }
.social-calendar-list time { color:#66736c;font-size:.76rem;font-weight:800; }
.social-calendar-list div { display:grid;gap:3px; }
.social-calendar-list span { color:#748079;font-size:.72rem; }
.social-media-layout { display:grid;grid-template-columns:340px minmax(0,1fr);gap:14px; }
.social-media-layout form label { display:grid;gap:6px;margin:12px 0;font-size:.78rem;font-weight:800; }
.social-media-layout form input { width:100%;padding:10px;border:1px solid rgba(20,37,29,.15);border-radius:7px; }
.social-media-list { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:14px; }
.social-media-list article { display:grid;gap:4px;padding:12px;border:1px solid rgba(20,37,29,.09);border-radius:8px;background:#faf8f2; }
.social-media-list span,.social-media-list small { color:#748079;font-size:.7rem; }

@media(max-width:1000px){
 .social-platform-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
 .social-connections-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
 .social-media-layout,.social-dashboard-grid,.crm-detail-grid { grid-template-columns:1fr; }
}
@media(max-width:700px){
 .crm-heading,.social-heading,.account-center-hero-grid,.account-center-grid,.account-privacy-card { grid-template-columns:1fr;align-items:flex-start; }
 .crm-heading,.social-heading { flex-direction:column; }
 .account-center-hero-grid { display:grid; }
 .account-private-stats { grid-template-columns:1fr; }
 .social-platform-grid,.social-connections-grid,.social-media-list { grid-template-columns:1fr; }
 .social-calendar-list a { grid-template-columns:1fr; }
 .crm-filter-form input { min-width:0;width:100%; }
}

/* v1.4.15 Social Publishing Operations */
.social-heading-actions{display:flex;gap:8px;align-items:center;flex-wrap:wrap}.social-variant-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:14px}.social-variant-grid label{display:grid;gap:6px;margin:0!important}.social-variant-grid label>span{font-size:.72rem;font-weight:800;color:#435149}.social-variant-grid textarea{width:100%;min-height:86px}.social-connection-status-row{display:flex;gap:7px;align-items:center;flex-wrap:wrap}.social-connections-grid article small{display:block;margin-top:5px}.social-error-copy{color:#9a463b!important}.social-publishing-table td{vertical-align:top}.social-receipt-form{display:grid;gap:7px;min-width:210px}.social-receipt-form input{width:100%;padding:8px;border:1px solid rgba(20,37,29,.15);border-radius:7px}.social-due-copy{display:block;margin-top:4px;color:#a14632!important;font-weight:900}.social-publishing-table a{white-space:nowrap}@media(max-width:760px){.social-heading-actions{width:100%}.social-variant-grid{grid-template-columns:1fr}.social-receipt-form{min-width:180px}}

/* v1.4.16 — Start Here + Metricool integration */
.nav-start-here { font-weight: 900 !important; letter-spacing: .02em; }
.start-here-page { background: #f7f3ea; }
.start-here-hero { padding: 74px 0 58px; background: linear-gradient(180deg,#f3efe4 0%,#faf8f2 100%); border-bottom: 1px solid rgba(20,37,29,.08); }
.start-here-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); gap: 58px; align-items: center; }
.start-here-grid h1 { margin: 8px 0 18px; max-width: 760px; font-family: Georgia,'Times New Roman',serif; font-size: clamp(2.5rem,5vw,5rem); line-height: .98; color: #1f3028; letter-spacing: -.035em; }
.start-here-lede { max-width: 720px; color: #58655e; font-size: 1.08rem; line-height: 1.8; }
.start-here-message-card { padding: 30px; border: 1px solid rgba(20,37,29,.10); border-radius: 16px; background: rgba(255,255,255,.72); box-shadow: 0 24px 60px rgba(45,58,48,.08); }
.start-here-message-card h2 { margin: 8px 0 12px; font-family: Georgia,'Times New Roman',serif; color: #2b4035; font-size: 1.8rem; }
.start-here-message-card p:last-child { color: #627068; line-height: 1.75; }
.start-here-steps { padding: 56px 0 76px; }
.start-here-step-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; margin-top: 20px; }
.start-here-step-grid article { padding: 22px; border: 1px solid rgba(20,37,29,.09); border-radius: 12px; background: #fffdf8; }
.start-here-step-grid article > span { display: inline-block; margin-bottom: 16px; color: #987737; font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.start-here-step-grid h3 { margin: 0 0 9px; color: #2a3c33; font-size: 1rem; }
.start-here-step-grid p { margin: 0; color: #6c7771; font-size: .86rem; line-height: 1.6; }
.metricool-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); gap: 14px; margin-top: 14px; }
.metricool-inline-form { margin-top: 12px; }
.metricool-readiness-list { display: grid; gap: 8px; margin: 16px 0; }
.metricool-readiness-list > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 12px; border-radius: 8px; background: #faf8f2; border: 1px solid rgba(20,37,29,.08); }
.metricool-readiness-list span { color: #68756e; font-size: .76rem; }
.metricool-readiness-list strong { color: #30473a; font-size: .76rem; letter-spacing: .04em; }
.metricool-send-form { margin-bottom: 8px; }
.metricool-sent-copy { display: block; color: #315a41; font-size: .78rem; }
.metricool-target-locked { opacity: .78; background: #f0f3ef !important; }
.social-handle-target { color: #315a41 !important; font-weight: 900; }
button:disabled { opacity: .48; cursor: not-allowed; }
@media(max-width:980px){
 .start-here-grid,.metricool-layout { grid-template-columns: 1fr; }
 .start-here-step-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media(max-width:620px){
 .start-here-hero { padding: 52px 0 40px; }
 .start-here-grid { gap: 28px; }
 .start-here-message-card { padding: 22px; }
 .start-here-step-grid { grid-template-columns: 1fr; }
}
