:root {
    --ink: #13231E;
    --muted: #5A6B64;
    --line: #DCE7E0;
    --paper: #ffffff;
    --soft: #FBFAF4;
    --mint: #EAF5EE;
    --accent: #0C5C42;
    --accent-deep: #092E24;
    --accent-2: #0F3A2E;
    --shadow: 0 24px 70px rgba(9, 46, 36, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(220, 231, 224, .9);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    width: min(1160px, calc(100% - 40px));
    min-height: 72px;
    margin: 0 auto;
}

.brand-link img {
    width: 178px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--ink);
    font-size: .94rem;
    font-weight: 800;
}

.nav-toggle-button,
.nav-backdrop {
    display: none;
}

.nav-toggle-button {
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.nav-toggle-button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
}

.nav-login {
    min-width: 88px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 10px 16px;
    color: #fff;
    background: var(--accent);
    text-align: center;
    box-shadow: 0 10px 22px rgba(12, 92, 66, .18);
}

.site-free-banner {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 10px 16px 12px;
    border-bottom: 1px solid rgba(12, 92, 66, 0.16);
    background: linear-gradient(90deg, rgba(234, 245, 238, 0.98), rgba(251, 250, 244, 0.98));
}

.site-free-banner p {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--ink);
}

.site-free-banner strong {
    color: var(--accent);
    font-weight: 900;
}

.site-free-banner-sep {
    font-weight: 650;
    color: #3d4f48;
}

.site-continue-reading {
    width: 100%;
    border-bottom: 1px solid rgba(12, 92, 66, 0.14);
    background: linear-gradient(90deg, rgba(234, 245, 238, 0.94), rgba(251, 250, 244, 0.94));
}

.site-continue-reading-inner {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 10px 16px 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
}

.site-continue-reading-inner p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--ink);
}

.site-continue-reading-label {
    font-weight: 800;
    margin-right: 8px;
}

.site-continue-reading-inner p > a {
    font-weight: 900;
    color: var(--accent, #0c5c42);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-continue-reading-meta {
    margin-left: 8px;
    font-size: 0.84rem;
    font-weight: 650;
    color: var(--muted, #5c5c5c);
}

.site-continue-reading-hub {
    flex-shrink: 0;
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid var(--line, #e6e6e0);
    border-radius: 999px;
    background: #fff;
}

.site-continue-reading-hub:hover {
    border-color: var(--accent, #0c5c42);
    color: var(--accent, #0c5c42);
}

.nav-more {
    position: relative;
}

.nav-more > summary {
    list-style: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.94rem;
    color: #333;
}

.nav-more > summary::-webkit-details-marker {
    display: none;
}

.nav-more > summary::after {
    content: "";
    display: inline-block;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    vertical-align: middle;
    opacity: 0.75;
}

.nav-more[open] > summary::after {
    transform: rotate(180deg);
}

.nav-more-links {
    display: none;
}

.nav-more[open] .nav-more-links {
    display: grid;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

@media (min-width: 641px) {
    .nav-more[open] .nav-more-links {
        position: absolute;
        top: calc(100% + 6px);
        right: 0;
        left: auto;
        min-width: 220px;
        margin-top: 0;
        padding: 12px 14px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: #fff;
        box-shadow: var(--shadow);
        z-index: 50;
    }

    .nav-more-links a {
        display: block;
        padding: 8px 6px;
        border-radius: 6px;
        font-weight: 800;
        font-size: 0.9rem;
    }

    .nav-more-links a:hover {
        background: var(--soft);
    }
}

.site-main {
    overflow: hidden;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, var(--soft), var(--mint));
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(180px, .6fr));
    gap: 28px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 40px;
}

.footer-brand-block {
    display: grid;
    gap: 14px;
}

.footer-brand {
    width: fit-content;
}

.footer-brand-block p {
    max-width: 460px;
    margin-bottom: 0;
    color: var(--muted);
}

.footer-inline-links,
.footer-link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.footer-inline-links a,
.footer-link-group a {
    color: var(--ink);
    font-weight: 800;
}

.footer-link-group {
    align-content: start;
    flex-direction: column;
}

.footer-link-group span {
    color: var(--accent-2);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero,
.audience-carousel,
.section-grid,
.app-section,
.pricing-section,
.conversion-panel,
.legal-page {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    gap: 52px;
    align-items: center;
    padding: 96px 0 68px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 740px;
    margin-bottom: 18px;
    font-size: clamp(2.85rem, 5.4vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(1.75rem, 2.8vw, 2.95rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    font-weight: 800;
}

.hero-punch {
    max-width: 640px;
    margin: 0 0 14px;
    color: var(--accent, #0c5c42);
    font-size: clamp(1.05rem, 1.85vw, 1.28rem);
    font-weight: 800;
    line-height: 1.35;
}

.hero-lead {
    max-width: 660px;
    color: #282828;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.32;
}

.hero-actions,
.conversion-panel {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    padding: 0 22px;
    font-weight: 900;
}

.button-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 12px 28px rgba(12, 92, 66, .2);
}

.button-secondary {
    color: var(--ink);
    background: #fff;
}

.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.trust-row span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    color: #303030;
    background: var(--soft);
    font-size: .84rem;
    font-weight: 800;
}

.product-showcase {
    position: relative;
    display: grid;
    min-height: 520px;
    align-items: center;
}

.api-window {
    overflow: hidden;
    border: 1px solid #242424;
    border-radius: 8px;
    color: #f7f7f2;
    background: #101010;
    box-shadow: var(--shadow);
}

.window-bar {
    display: flex;
    gap: 7px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.window-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d7d7d1;
}

.window-bar span:nth-child(2) {
    background: #86b59f;
}

.window-bar span:nth-child(3) {
    background: #7b9abd;
}

pre {
    margin: 0;
    padding: 24px;
    white-space: pre-wrap;
}

code {
    font-family: "Courier New", monospace;
    font-size: .94rem;
    line-height: 1.72;
}

.phone-preview {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: min(235px, 46%);
    border: 7px solid #0b0b0b;
    border-radius: 30px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}

.phone-top {
    width: 62px;
    height: 6px;
    margin: 2px auto 16px;
    border-radius: 99px;
    background: #111;
}

.phone-screen {
    min-height: 330px;
    border-radius: 20px;
    padding: 20px;
    background: #f7f7f2;
}

.reader-label,
.audience-slide .slide-copy > span,
.feature-list span,
.price-card span,
.device-card span {
    color: var(--accent-2);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.phone-screen strong {
    display: block;
    margin: 10px 0;
    font-size: 1.55rem;
}

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

.verse-lines {
    display: grid;
    gap: 8px;
    margin: 22px 0;
}

.verse-lines span {
    display: block;
    height: 9px;
    border-radius: 99px;
    background: #d7d7cf;
}

.verse-lines span:nth-child(2) {
    width: 82%;
}

.verse-lines span:nth-child(3) {
    width: 64%;
}

.phone-screen button {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #111;
    font-weight: 900;
}

.audience-carousel {
    margin-bottom: 88px;
}

.app-face-section {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 56px;
    border-top: 1px solid var(--line);
    padding-top: 42px;
}

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

.app-face-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: #fff;
}

.app-face-header {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.app-face-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    width: fit-content;
    border-radius: 999px;
    padding: 0 12px;
    color: #fff;
    background: var(--accent);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.app-face-header strong {
    font-size: 1.1rem;
    line-height: 1.2;
}

.app-face-preview {
    overflow: hidden;
    border: 1px solid #d7e5de;
    border-radius: 8px;
    background: #f8fbf9;
}

.app-face-preview img {
    width: 100%;
    height: auto;
}

.app-face-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.carousel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.carousel-heading > div,
.slide-copy,
.slide-art {
    min-width: 0;
}

.carousel-heading h2 {
    max-width: 810px;
    margin-bottom: 0;
    overflow-wrap: break-word;
}

.carousel-heading .button {
    flex: 0 0 auto;
}

.carousel-radio {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.carousel-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid #171717;
    border-radius: 8px;
    color: #fff;
    background: #101010;
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform .48s ease;
}

#audience-devs:checked ~ .carousel-shell .carousel-track {
    transform: translateX(0);
}

#audience-business:checked ~ .carousel-shell .carousel-track {
    transform: translateX(-100%);
}

#audience-readers:checked ~ .carousel-shell .carousel-track {
    transform: translateX(-200%);
}

#audience-wordpress:checked ~ .carousel-shell .carousel-track {
    transform: translateX(-300%);
}

.audience-slide {
    display: grid;
    flex: 0 0 100%;
    grid-template-columns: minmax(0, .98fr) minmax(320px, .82fr);
    gap: 42px;
    align-items: center;
    min-height: 418px;
    padding: 48px 84px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .08), transparent 42%),
        linear-gradient(180deg, #151515, #0f0f0f);
}

.slide-business {
    background:
        linear-gradient(115deg, rgba(11, 107, 79, .22), transparent 44%),
        linear-gradient(180deg, #121816, #0f0f0f);
}

.slide-readers {
    background:
        linear-gradient(115deg, rgba(49, 95, 140, .24), transparent 44%),
        linear-gradient(180deg, #11161c, #0f0f0f);
}

.slide-wordpress {
    background:
        linear-gradient(115deg, rgba(204, 154, 61, .22), transparent 44%),
        linear-gradient(180deg, #181511, #0f0f0f);
}

.slide-copy {
    max-width: 620px;
}

.audience-slide .slide-copy > span {
    color: #9ec6b8;
}

.audience-slide h3 {
    margin: 18px 0 16px;
    font-size: 2.35rem;
    line-height: 1.08;
    overflow-wrap: break-word;
}

.audience-slide p {
    max-width: 570px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 1.1rem;
    overflow-wrap: break-word;
}

.slide-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.audience-slide .button-primary {
    border-color: #fff;
    color: #111;
    background: #fff;
}

.slide-link {
    color: #fff;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.slide-art {
    display: grid;
    place-items: center;
    min-height: 300px;
}

.art-browser,
.art-dashboard,
.art-reader,
.art-plugin {
    width: min(100%, 360px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 24px 65px rgba(0, 0, 0, .28);
}

.art-browser {
    display: grid;
    gap: 16px;
    padding: 22px;
}

.art-browser div {
    height: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.art-browser code {
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
    padding: 12px 14px;
    color: #101010;
    background: #9ec6b8;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.art-browser span {
    display: block;
    height: 12px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .22);
}

.art-browser span:nth-of-type(2) {
    width: 78%;
}

.art-browser span:nth-of-type(3) {
    width: 58%;
}

.art-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 22px;
}

.art-dashboard span,
.art-dashboard strong,
.art-dashboard div {
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
}

.art-dashboard span {
    grid-column: 1 / -1;
    height: 42px;
}

.art-dashboard strong {
    display: grid;
    place-items: center;
    min-height: 100px;
    color: #101010;
    background: #9ec6b8;
    font-size: 2.6rem;
}

.art-dashboard div {
    min-height: 84px;
}

.art-dashboard div:nth-of-type(3) {
    grid-column: 1 / -1;
    min-height: 36px;
    background: #d5b46a;
}

.art-reader {
    padding: 26px;
    color: #111;
    background: #f7f7f2;
}

.art-reader span {
    display: block;
    width: 70px;
    height: 8px;
    border-radius: 99px;
    background: #0b6b4f;
}

.art-reader strong {
    display: block;
    margin: 28px 0 18px;
    font-size: 2rem;
}

.art-reader p {
    height: 12px;
    margin: 12px 0;
    border-radius: 99px;
    background: #d7d7cf;
}

.art-reader p:nth-of-type(2) {
    width: 82%;
}

.art-reader p:nth-of-type(3) {
    width: 64%;
}

.art-plugin {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.art-plugin span {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 8px;
    color: #101010;
    background: #d5b46a;
    font-size: 1.8rem;
    font-weight: 900;
}

.art-plugin code {
    overflow: hidden;
    border-radius: 8px;
    padding: 13px;
    color: #101010;
    background: #fff;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.art-plugin div {
    height: 12px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .22);
}

.art-plugin div:last-child {
    width: 68%;
}

.carousel-arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    pointer-events: none;
}

.carousel-arrows label {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    color: #fff;
    background: rgba(0, 0, 0, .38);
    cursor: pointer;
    font-size: 0;
    font-weight: 900;
    pointer-events: auto;
}

.carousel-arrows label::before {
    font-size: 1.35rem;
    line-height: 1;
}

.carousel-arrows .prev::before {
    content: "<";
}

.carousel-arrows .next::before {
    content: ">";
}

#audience-devs:checked ~ .carousel-shell .prev-devs,
#audience-devs:checked ~ .carousel-shell .next-devs,
#audience-business:checked ~ .carousel-shell .prev-business,
#audience-business:checked ~ .carousel-shell .next-business,
#audience-readers:checked ~ .carousel-shell .prev-readers,
#audience-readers:checked ~ .carousel-shell .next-readers,
#audience-wordpress:checked ~ .carousel-shell .prev-wordpress,
#audience-wordpress:checked ~ .carousel-shell .next-wordpress {
    display: flex;
}

.carousel-dots {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.carousel-dots label {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 12px;
    color: #333;
    background: #fff;
    text-align: center;
    font-size: .9rem;
    font-weight: 900;
    cursor: pointer;
}

#audience-devs:checked ~ .carousel-dots label[for="audience-devs"],
#audience-business:checked ~ .carousel-dots label[for="audience-business"],
#audience-readers:checked ~ .carousel-dots label[for="audience-readers"],
#audience-wordpress:checked ~ .carousel-dots label[for="audience-wordpress"] {
    border-color: var(--ink);
    color: #fff;
    background: var(--ink);
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 58px;
    align-items: start;
    padding: 36px 0 94px;
}

.section-grid p,
.app-points p,
.section-heading p,
.price-card p,
.conversion-panel p {
    color: var(--muted);
    font-size: 1.05rem;
}

.feature-list {
    display: grid;
    gap: 14px;
}

.feature-list article,
.price-card,
.device-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    background: #fff;
}

.feature-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 18px;
}

.feature-list article p {
    grid-column: 2;
    margin-bottom: 0;
}

.app-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 52px;
    align-items: center;
    padding: 72px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.app-device {
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(11, 107, 79, .12), transparent 42%),
        linear-gradient(315deg, rgba(49, 95, 140, .14), transparent 40%),
        var(--soft);
}

.device-card {
    min-height: 420px;
    color: #fff;
    background: #111;
}

.device-card span {
    color: #9ec6b8;
}

.device-card p {
    color: rgba(255, 255, 255, .72);
    font-size: 1.12rem;
}

.app-points ul {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.app-points li {
    border-bottom: 1px solid var(--line);
    padding: 0 0 12px;
    color: #272727;
    font-weight: 800;
}

.monetize-section {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 56px 0 24px;
    border-top: 1px solid var(--line);
}

.monetize-section .section-heading {
    max-width: 820px;
}

.monetize-section .section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

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

.monetize-path {
    display: grid;
    gap: 10px;
    align-content: start;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px 20px 18px;
    background: linear-gradient(165deg, rgba(12, 92, 66, 0.06), #fff 48%);
}

.monetize-path h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.25;
}

.monetize-path p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.monetize-path-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(11, 107, 79, 0.12);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.monetize-path-link {
    margin-top: 4px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.monetize-path-link:hover {
    color: var(--ink);
}

.pricing-section {
    padding: 92px 0;
}

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

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

.pricing-hero,
.pricing-detail-grid,
.pricing-use-cases,
.plan-cards-grid {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 72px;
}

.pricing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 28px;
    align-items: end;
    padding: 84px 0 24px;
}

.pricing-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.16rem;
}

.pricing-hero-card {
    display: grid;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    background: linear-gradient(145deg, var(--mint), var(--soft));
}

.pricing-hero-card span,
.journey-grid span,
.detail-card span,
.plan-card span {
    color: var(--accent-2);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pricing-hero-card strong {
    font-size: 1.4rem;
    line-height: 1.1;
}

.journey-grid,
.pricing-detail-cards,
.use-case-grid {
    display: grid;
    gap: 16px;
}

.journey-grid {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 72px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journey-grid article,
.detail-card,
.plan-card,
.use-case-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    background: #fff;
}

.journey-grid article,
.use-case-grid article {
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
}

.pricing-quick-nav {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.86rem;
    font-weight: 700;
}

.pricing-quick-nav a {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.pricing-quick-nav a:hover {
    border-color: var(--accent-2, #0b6b4f);
    color: var(--accent-2, #0b6b4f);
}

.journey-grid article h2,
.plan-card h2 {
    margin: 14px 0 10px;
    font-size: 1.4rem;
}

.journey-grid article p,
.detail-card li,
.plan-card p,
.plan-card small,
.use-case-grid p {
    color: var(--muted);
}

.journey-grid article a,
.use-case-grid a {
    color: var(--accent);
    font-weight: 900;
}

.pricing-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
    gap: 32px;
    align-items: start;
    border-top: 1px solid var(--line);
    padding-top: 54px;
}

.pricing-detail-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card h3 {
    margin-top: 12px;
}

.detail-card ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 20px;
}

.detail-card.highlighted,
.plan-card.is-highlighted {
    color: #fff;
    background: #111;
}

.detail-card.highlighted li,
.plan-card.is-highlighted p,
.plan-card.is-highlighted small {
    color: rgba(255, 255, 255, .76);
}

.detail-card.highlighted span,
.plan-card.is-highlighted span {
    color: #9ec6b8;
}

.plan-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.plan-card {
    min-height: 250px;
}

.plan-card strong {
    display: block;
    margin: 20px 0 10px;
    font-size: 1.9rem;
    line-height: 1.05;
}

.plan-card.support-card {
    grid-column: 1 / -1;
    min-height: 0;
    background: var(--soft);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
}

.plan-card.support-card .support-card-main {
    flex: 1;
    min-width: min(100%, 260px);
}

.plan-card.support-card .support-card-main strong {
    margin: 12px 0 8px;
    font-size: 1.15rem;
}

.plan-card.support-card > a {
    flex-shrink: 0;
    font-weight: 900;
    color: var(--accent);
}

.pricing-matrix-section {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 72px;
}

.pricing-matrix-section .section-heading {
    margin-bottom: 28px;
}

.pricing-matrix-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 8px;
    background: #fff;
}

.pricing-matrix {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: .92rem;
    line-height: 1.45;
}

.pricing-matrix th,
.pricing-matrix td {
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.pricing-matrix thead th {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: rgba(17, 17, 17, .55);
    background: var(--soft);
    position: sticky;
    top: 0;
    z-index: 2;
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.08);
}

.pricing-matrix tbody th[scope='row'] {
    font-weight: 700;
    white-space: nowrap;
    background: rgba(17, 17, 17, .03);
    width: 1%;
}

.pricing-matrix tbody tr:last-child th,
.pricing-matrix tbody tr:last-child td {
    border-bottom: none;
}

.pricing-matrix-foot {
    margin-top: 16px;
    font-size: .95rem;
}

.use-case-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-case-grid article h3 {
    font-size: 1.18rem;
}

.price-card {
    min-height: 260px;
}

.price-card strong {
    display: block;
    margin: 24px 0 14px;
    font-size: 2rem;
    line-height: 1;
}

.price-card.highlighted {
    color: #fff;
    background: #111;
}

.price-card.highlighted p {
    color: rgba(255, 255, 255, .72);
}

.price-card.highlighted span {
    color: #9ec6b8;
}

.conversion-panel {
    justify-content: space-between;
    margin-bottom: 72px;
    border: 1px solid #111;
    border-radius: 8px;
    padding: 34px;
    background: var(--soft);
}

.conversion-panel h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(1.75rem, 2.5vw, 2.65rem);
}

.reader-hero {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    align-items: end;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 84px 0 34px;
}

.reader-hero--compact {
    align-items: flex-start;
    padding: 36px 0 20px;
    flex-wrap: wrap;
}

.reader-hero-main {
    flex: 1;
    min-width: min(100%, 280px);
}

.reader-hero--compact h1 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 4.2vw, 3.15rem);
}

.reader-hero-tagline {
    max-width: 640px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.5;
}

.reader-hero-preview {
    display: grid;
    gap: 6px;
    max-width: min(100%, 720px);
    margin: 14px 0 0;
    padding: 14px 16px;
    border-radius: 8px;
    border-left: 4px solid var(--accent, #0c5c42);
    background: var(--soft, #f6f6f2);
}

.reader-hero-preview-label {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.reader-hero-preview-text {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--ink, #111);
}

.reader-hero-preview-text sup {
    font-weight: 900;
    color: var(--accent, #0c5c42);
    margin-right: 2px;
}

.reader-hero-skip-wrap {
    margin: 8px 0 0;
}

.reader-hero-skip {
    font-weight: 900;
    font-size: .95rem;
    color: var(--accent, #0c5c42);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.reader-hero-skip:hover,
.reader-hero-skip:focus-visible {
    color: var(--ink, #111);
}

.reader-after-chapter {
    display: grid;
    gap: 18px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 48px;
}

.reader-hero h1 {
    margin-bottom: 12px;
}

.reader-hero:not(.reader-hero--compact) h1 {
    font-size: clamp(2.55rem, 5vw, 4.35rem);
}

.reader-hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.16rem;
}

.reader-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.reader-layout {
    display: grid;
    grid-template-columns: minmax(210px, .74fr) minmax(0, 1.52fr) minmax(230px, .78fr);
    gap: 18px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 76px;
    align-items: start;
}

.reader-flash {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 18px;
    border: 1px solid rgba(11, 107, 79, .26);
    border-radius: 8px;
    padding: 12px 16px;
    color: #084b38;
    background: rgba(11, 107, 79, .08);
    font-weight: 900;
}

.reader-hub-page {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 76px;
}

.reader-hub-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.reader-hub-hero-text {
    flex: 1 1 280px;
    min-width: 0;
}

.reader-hub-hero .reader-actions {
    flex: 0 0 auto;
    align-self: center;
}

.reader-hub-lead {
    margin: 10px 0 0;
    max-width: 640px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.reader-hub-flash {
    margin-bottom: 22px;
}

.reader-hub-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 22px;
    align-items: start;
    margin-bottom: 22px;
}

.reader-hub-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 24px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .05);
}

.reader-hub-card--push {
    margin-bottom: 22px;
}

.reader-hub-card--wide {
    margin-top: 0;
}

.reader-hub-card-head {
    margin-bottom: 18px;
}

.reader-hub-card-title {
    margin: 0 0 6px;
    font-size: 1.35rem;
    line-height: 1.25;
}

.reader-hub-muted {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.45;
}

.reader-hub-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.reader-hub-form--compact {
    gap: 14px;
}

.reader-hub-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    min-width: 0;
}

.reader-hub-label {
    font-weight: 800;
    font-size: .88rem;
    color: var(--ink);
    letter-spacing: .01em;
}

.reader-hub-field input,
.reader-hub-field select {
    width: 100%;
    min-height: 48px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.reader-hub-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23232323' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.reader-hub-field input:hover,
.reader-hub-field select:hover {
    border-color: rgba(35, 35, 35, .35);
}

.reader-hub-field input:focus,
.reader-hub-field select:focus {
    outline: none;
    border-color: var(--accent-2);
    box-shadow: 0 0 0 3px rgba(11, 107, 79, .18);
}

.reader-hub-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.reader-hub-field-row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reader-hub-form--reminders {
    gap: 16px;
    margin-bottom: 22px;
}

.reader-hub-form-actions {
    margin-top: 4px;
}

.reader-hub-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.reader-hub-push-status {
    min-height: 1.25em;
    margin: 12px 0 0;
    font-size: .95rem;
    color: var(--muted);
}

.reader-hub-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reader-hub-list-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.reader-hub-list-item--empty {
    background: rgba(255, 255, 255, .65);
}

.reader-hub-reminder-results {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.reader-hub-reminder-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    background: var(--soft);
}

.reader-hub-reminder-meta {
    font-size: .82rem;
    font-weight: 800;
    color: var(--accent-2);
    text-transform: none;
    letter-spacing: .02em;
}

.reader-hub-reminder-body {
    margin: 8px 0 0;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.5;
}

.reader-hub-empty-msg {
    margin: 0;
    padding: 12px 0;
}

@media (max-width: 920px) {
    .reader-hub-grid {
        grid-template-columns: 1fr;
    }

    .reader-hub-field-row,
    .reader-hub-field-row--3 {
        grid-template-columns: 1fr;
    }

    .reader-hub-page {
        width: min(100% - 28px, 1160px);
    }

    .reader-hub-hero {
        margin-bottom: 20px;
    }
}

.reader-search {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 18px;
    align-items: start;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: var(--soft);
}

.reader-search h2 {
    margin-bottom: 0;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.reader-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.reader-search-form label {
    display: grid;
    gap: 7px;
    color: #222222;
    font-weight: 900;
}

.reader-search-form input,
.reader-search-form button {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    font: inherit;
}

.reader-search-form button {
    min-width: 112px;
    color: #fff;
    background: var(--ink);
    cursor: pointer;
    font-weight: 900;
}

.reader-search-results,
.reader-search-message {
    grid-column: 1 / -1;
}

.reader-search-results {
    display: grid;
    gap: 10px;
}

.reader-search-summary {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.reader-search-summary span,
.reader-search-result p {
    color: var(--muted);
}

.reader-search-result {
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: #fff;
}

.reader-search-result span {
    color: var(--accent-2);
    font-weight: 900;
}

.reader-search-result p {
    margin-bottom: 0;
}

.reader-search-message {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    color: var(--muted);
    font-weight: 800;
}

.reader-panel,
.reader-chapter,
.reader-plans article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.reader-panel {
    display: grid;
    gap: 18px;
    padding: 22px;
}

@media (min-width: 921px) {
    .reader-layout > .reader-panel {
        position: sticky;
        top: 88px;
        align-self: start;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.reader-sidebar-details {
    border-bottom: 1px solid var(--line);
    margin-bottom: 4px;
    padding-bottom: 4px;
}

.reader-sidebar-summary-btn {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px 12px;
    padding: 8px 2px 10px 0;
    cursor: pointer;
}

.reader-sidebar-summary-btn::-webkit-details-marker {
    display: none;
}

.reader-sidebar-summary-title {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.reader-sidebar-summary-hint {
    font-size: .86rem;
    font-weight: 800;
    color: var(--ink);
    text-align: right;
}

.reader-sidebar-details-inner {
    display: grid;
    gap: 10px;
    padding: 2px 0 12px;
}

.reader-sidebar-details[open] > .reader-sidebar-summary-btn {
    margin-bottom: 4px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

@media (min-width: 921px) {
    .reader-sidebar-details > .reader-sidebar-summary-btn {
        display: none;
    }

    .reader-sidebar-details[open] > .reader-sidebar-details-inner {
        padding-top: 0;
    }
}

.reader-sidebar-title {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.3;
}

.reader-sidebar-version {
    font-weight: 700;
    color: var(--muted);
    font-size: .88em;
}

.reader-sidebar-meta,
.reader-sidebar-summary {
    margin: 0;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.45;
}

.reader-sidebar-subhead {
    margin: 6px 0 0;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.reader-sidebar-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

a.reader-sidebar-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--soft);
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--ink);
}

a.reader-sidebar-chip:hover,
a.reader-sidebar-chip:focus-visible {
    border-color: var(--accent, #0c5c42);
    color: var(--accent, #0c5c42);
}

a.reader-sidebar-chip--ghost {
    background: #fff;
}

.reader-sidebar-vod-text {
    margin: 0;
    font-size: .9rem;
    line-height: 1.5;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

a.reader-sidebar-vod-cta {
    font-size: .88rem;
    font-weight: 900;
    color: var(--accent, #0c5c42);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.reader-panel .reader-panel-heading {
    margin: 0;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 1.35rem;
}

.reader-panel .reader-panel-heading--flush {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.reader-panel h2 {
    margin: 0;
    font-size: 1.35rem;
}

.reader-panel p,
.reader-panel span {
    color: var(--muted);
}

.reader-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.reader-mini-grid a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: var(--soft);
    font-size: .82rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.reader-note-box,
.study-list div,
.cross-reference-list div,
.cross-reference-link {
    display: grid;
    gap: 6px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.reader-note-box strong,
.study-list strong,
.cross-reference-list strong {
    font-size: .96rem;
}

.cross-reference-link {
    color: inherit;
}

.cross-reference-link span {
    display: grid;
    gap: 3px;
}

.cross-reference-link small {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
}

.cross-reference-link span strong {
    color: var(--accent);
    font-size: .98rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cross-reference-link:hover span strong,
.cross-reference-link:focus-visible span strong {
    color: var(--ink);
}

.reader-note-box a {
    color: var(--ink);
    font-weight: 900;
    text-decoration: underline;
}

.reader-continue-card {
    display: grid;
    gap: 6px;
    border: 1px solid rgba(49, 95, 140, .22);
    border-radius: 8px;
    padding: 14px;
    background: #f4f8ff;
}

.reader-continue-card span {
    color: var(--accent-2);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reader-continue-card strong {
    font-size: 1.04rem;
}

.reader-continue-card small {
    color: var(--muted);
}

.reader-chapter {
    padding: clamp(26px, 4vw, 52px);
}

.reader-chapter-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
    padding-bottom: 16px;
}

.reader-chapter-header span {
    color: var(--accent);
    font-weight: 900;
}

.reader-chapter-header strong {
    font-size: 1.18rem;
}

.reader-verse {
    scroll-margin-top: 94px;
    border-bottom: 1px solid var(--line);
    padding: 18px 0 22px;
}

.reader-verse:last-child {
    border-bottom: 0;
}

.reader-verse.is-highlighted {
    border-radius: 8px;
    margin: 0 -16px;
    padding-inline: 16px;
}

.highlight-yellow {
    background: #fff8c7;
}

.highlight-green {
    background: #e4f7eb;
}

.highlight-blue {
    background: #e7f0ff;
}

.highlight-rose {
    background: #ffe8ef;
}

.reader-verse p {
    margin-bottom: 12px;
    color: #232323;
    font-size: 1.22rem;
    line-height: 1.86;
}

.reader-chapter sup {
    color: var(--accent-2);
    font-size: .8rem;
    font-weight: 900;
    margin-right: 8px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.verse-tools {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 6px 22px rgba(15, 23, 42, .06);
    margin-top: 8px;
}

.verse-tools-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
}

.verse-tools form {
    margin: 0;
}

.verse-tool-favorite-form,
.highlight-swatch-form {
    display: inline;
}

.verse-tool-highlights {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.highlight-swatch-form {
    line-height: 0;
}

.verse-highlight-swatch {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 2px solid rgba(35, 35, 35, .22);
    border-radius: 50%;
    cursor: pointer;
    box-sizing: border-box;
    transition: transform .12s ease, box-shadow .12s ease;
}

.verse-highlight-swatch:hover {
    transform: scale(1.08);
}

.verse-highlight-swatch:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
}

.verse-highlight-swatch.is-selected {
    box-shadow: 0 0 0 2px var(--ink);
    border-color: var(--ink);
}

.verse-highlight-swatch--yellow {
    background: #e8d44a;
}

.verse-highlight-swatch--green {
    background: #4caf7a;
}

.verse-highlight-swatch--blue {
    background: #5b8cef;
}

.verse-highlight-swatch--rose {
    background: #e878a8;
}

.verse-tool-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    vertical-align: middle;
    transition: background .12s ease, color .12s ease, border-color .12s ease;
}

.verse-tool-icon svg {
    display: block;
}

.verse-tool-icon--favorite:not(.is-active) svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linejoin: round;
}

.verse-tool-icon--favorite.is-active svg path {
    fill: currentColor;
    stroke: none;
}

.verse-tool-icon--save svg path {
    fill: currentColor;
}

.verse-tool-icon--note svg path {
    fill: currentColor;
}

.verse-tool-icon--note.has-saved-note {
    border-color: var(--accent-2);
}

.verse-tool-note-details {
    flex: 1 1 220px;
    min-width: min(100%, 200px);
}

.verse-tool-note-summary {
    list-style: none;
    cursor: pointer;
    width: fit-content;
}

.verse-tool-note-summary::-webkit-details-marker {
    display: none;
}

.verse-tool-note-summary::marker {
    content: '';
}

.verse-note-panel {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    width: 100%;
}

.verse-tool-note-details[open] .verse-tool-note-summary .verse-tool-icon--note {
    background: var(--soft);
}

.verse-tool-icon:hover {
    background: var(--soft);
}

.verse-tool-icon:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
}

.verse-tool-icon.is-active {
    color: #fff;
    border-color: var(--ink);
    background: var(--ink);
}

.verse-tool-note-form {
    display: flex;
    flex: 1 1 220px;
    align-items: flex-start;
    gap: 10px;
    min-width: min(100%, 200px);
}

.verse-tool-note-form textarea {
    flex: 1;
    min-width: 0;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 12px;
    font: inherit;
    resize: vertical;
    width: 100%;
}

.verse-tool-note-form .verse-tool-icon {
    align-self: flex-end;
}

@media (hover: hover) and (pointer: fine) {
    .reader-verse .verse-tools {
        opacity: 0;
        max-height: 0;
        margin-top: 0;
        padding-block: 0;
        padding-inline: 0;
        border-width: 0;
        overflow: hidden;
        pointer-events: none;
        transition: opacity .18s ease, max-height .22s ease, margin-top .18s ease,
            padding-block .18s ease, padding-inline .18s ease, border-width .12s ease;
    }

    .reader-verse:hover .verse-tools,
    .reader-verse:focus-within .verse-tools {
        opacity: 1;
        max-height: 22rem;
        margin-top: 8px;
        padding-block: 12px;
        padding-inline: 12px;
        border-width: 1px;
        pointer-events: auto;
        overflow: visible;
    }
}

/* Tablet e janelas estreitas: barra sempre visível e alvos de toque um pouco maiores */
@media (max-width: 1024px) {
    .reader-verse .verse-tools {
        opacity: 1;
        max-height: none;
        margin-top: 8px;
        padding-block: 12px;
        padding-inline: 12px;
        border-width: 1px;
        pointer-events: auto;
        overflow: visible;
    }

    .verse-tool-icon {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .verse-highlight-swatch {
        width: 32px;
        height: 32px;
    }
}

.verse-guest-callout {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: var(--soft);
}

.verse-guest-callout a {
    font-weight: 900;
    text-decoration: underline;
}

.reader-plans {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 32px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 82px;
    border-top: 1px solid var(--line);
    padding-top: 54px;
}

.reader-plan-grid {
    display: grid;
    gap: 14px;
}

.reader-plans article {
    padding: 24px;
}

.reader-plans article span {
    color: var(--accent-2);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reader-plans article p {
    color: var(--muted);
}

.plugin-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 36px;
    align-items: end;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 84px 0 42px;
}

.plugin-hero h1 {
    margin-bottom: 18px;
    max-width: 780px;
    font-size: clamp(2.75rem, 4.9vw, 4.45rem);
    font-weight: 800;
    line-height: 1.02;
}

.plugin-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.16rem;
}

.plugin-card {
    display: grid;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    background: #fff;
}

.plugin-card span,
.plugin-grid span,
.plugin-roadmap article span {
    color: var(--accent-2);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plugin-card strong {
    font-size: 1.35rem;
}

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

.plugin-grid,
.shortcode-section,
.plugin-steps,
.plugin-roadmap {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto 74px;
}

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

.plugin-grid article,
.plugin-steps,
.plugin-roadmap article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.plugin-grid article {
    padding: 26px;
}

.plugin-grid h2 {
    margin: 12px 0;
    font-size: 1.35rem;
}

.plugin-grid p,
.plugin-steps li,
.plugin-roadmap p {
    color: var(--muted);
}

.shortcode-section {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 32px;
    border-top: 1px solid var(--line);
    padding-top: 54px;
}

.shortcode-list {
    display: grid;
    gap: 12px;
}

.shortcode-list pre {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin: 0;
    padding: 18px;
    background: #0d0d0d;
    color: #fff;
    font-size: .95rem;
}

.plugin-steps {
    padding: 30px;
}

.plugin-steps ol {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding-left: 24px;
}

.plugin-roadmap {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 32px;
}

.plugin-roadmap .compact {
    display: grid;
    gap: 14px;
}

.plugin-roadmap article {
    padding: 22px;
}

.lead-section,
.help-hero,
.help-grid,
.faq-section {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.lead-section {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(360px, .68fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 72px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.lead-section.compact {
    margin-top: 72px;
}

.lead-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

.lead-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lead-hints span,
.help-grid span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--accent);
    background: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.lead-form {
    display: grid;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.lead-form label {
    display: grid;
    gap: 6px;
    font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

.lead-form textarea {
    resize: vertical;
}

.lead-form small {
    color: #9f1d1d;
}

.lead-success {
    border: 1px solid #9ad7bc;
    border-radius: 8px;
    padding: 12px;
    color: #064d38;
    background: #effaf5;
    font-weight: 900;
}

.lead-privacy {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.help-hero {
    padding: 82px 0 42px;
}

.help-hero h1 {
    max-width: 880px;
}

.help-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.2rem;
}

.donate-impact-footnote {
    margin-top: 0.75rem;
    max-width: 760px;
}

.donate-impact-footnote small {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 72px;
}

.help-grid article,
.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}

.help-grid h2 {
    margin-top: 16px;
    font-size: 1.35rem;
}

.help-grid p,
.faq-list p {
    color: var(--muted);
}

.help-grid a {
    color: var(--accent);
    font-weight: 900;
}

.faq-section {
    margin-bottom: 70px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    margin: 12px 0 0;
}

.legal-page {
    padding: 82px 0 72px;
}

.legal-intro {
    max-width: 880px;
    margin-bottom: 34px;
}

.legal-lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.15rem;
}

.legal-meta {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 12px;
    color: #333;
    background: var(--soft);
    font-size: .85rem;
    font-weight: 800;
}

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

.legal-stack article {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    background: #fff;
}

.legal-stack h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.legal-stack p {
    max-width: 860px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.legal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

@media (max-width: 920px) {
    .reader-chapter {
        order: -1;
    }

    .hero,
    .section-grid,
    .app-section,
    .monetize-paths,
    .pricing-grid,
    .lead-section,
    .reader-layout,
    .reader-plans,
    .plugin-hero,
    .plugin-grid,
    .shortcode-section,
    .plugin-roadmap,
    .pricing-hero,
    .pricing-detail-grid,
    .plan-cards-grid,
    .use-case-grid {
        grid-template-columns: 1fr;
    }

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

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

    .app-face-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 56px;
    }

    .product-showcase {
        min-height: 520px;
    }

    .carousel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .audience-slide {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 38px 58px;
    }

    .slide-art {
        min-height: 240px;
    }
}

@media (max-width: 640px) {
    .site-nav,
    .hero,
    .audience-carousel,
    .section-grid,
    .app-section,
    .pricing-section,
    .legal-page,
    .lead-section,
    .help-hero,
    .help-grid,
    .faq-section,
    .conversion-panel,
    .pricing-hero,
    .pricing-detail-grid,
    .pricing-use-cases,
    .plan-cards-grid,
    .pricing-matrix-section,
    .journey-grid {
        width: min(100% - 28px, 1160px);
    }

    .site-nav {
        min-height: 66px;
    }

    .brand-link img {
        width: 142px;
    }

    .nav-toggle-button {
        display: inline-flex;
        flex-direction: column;
        margin-left: auto;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .16);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    .nav-links {
        position: fixed;
        top: 78px;
        left: 14px;
        right: 14px;
        z-index: 30;
        display: grid;
        gap: 8px;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 14px;
        background: #fff;
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .nav-links a {
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 12px 14px;
        background: var(--soft);
    }

    .nav-links .nav-login {
        border-color: var(--accent);
        background: var(--accent);
    }

    .nav-links .nav-more {
        width: 100%;
    }

    .nav-links .nav-more > summary {
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 12px 14px;
        background: var(--soft);
    }

    .nav-links .nav-more[open] > summary {
        border-color: var(--accent);
    }

    .nav-links .nav-more[open] .nav-more-links {
        margin-top: 8px;
        padding-top: 0;
        border-top: none;
        gap: 8px;
    }

    .nav-links .nav-more[open] .nav-more-links a {
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 12px 14px;
        background: var(--soft);
    }

    #nav-toggle:checked ~ .site-header .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    #nav-toggle:checked ~ .site-header .nav-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    #nav-toggle:checked ~ .site-header .nav-toggle-button span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    #nav-toggle:checked ~ .site-header .nav-toggle-button span:nth-child(2) {
        opacity: 0;
    }

    #nav-toggle:checked ~ .site-header .nav-toggle-button span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    h1 {
        font-size: clamp(2.45rem, 10vw, 3.65rem);
    }

    .phone-preview {
        position: relative;
        right: auto;
        bottom: auto;
        width: 78%;
        margin: -34px auto 0;
    }

    .audience-carousel {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
        margin-bottom: 64px;
    }

    .carousel-heading {
        gap: 18px;
        margin-bottom: 18px;
    }

    .carousel-heading h2 {
        font-size: 1.72rem;
    }

    .carousel-heading .button,
    .slide-actions .button {
        width: 100%;
    }

    .carousel-shell,
    .carousel-track,
    .audience-slide {
        width: 100%;
        max-width: 100%;
    }

    .audience-slide {
        display: block;
        gap: 24px;
        padding: 28px 22px 24px;
    }

    .audience-slide h3 {
        font-size: 1.58rem;
    }

    .audience-slide p {
        font-size: 1rem;
    }

    .slide-actions {
        align-items: stretch;
        gap: 10px;
    }

    .slide-link {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

    .slide-art {
        min-height: 220px;
        margin-top: 28px;
        overflow: hidden;
    }

    .art-browser,
    .art-dashboard,
    .art-reader,
    .art-plugin {
        width: 100%;
    }

    .carousel-arrows {
        position: static;
        inset: auto;
        padding: 0 22px 22px;
    }

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

    .carousel-dots label {
        min-height: 46px;
        padding-inline: 8px;
        font-size: .82rem;
    }

    .feature-list article {
        grid-template-columns: 1fr;
    }

    .feature-list article p {
        grid-column: auto;
    }

    .conversion-panel {
        padding: 24px;
    }

    .lead-section {
        padding: 22px;
    }

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

    .journey-grid,
    .pricing-detail-cards,
    .plan-cards-grid,
    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .legal-page {
        padding: 48px 0 56px;
    }

    .legal-stack article {
        padding: 20px;
    }

    .legal-actions .button {
        width: 100%;
    }

    .reader-hero,
    .reader-search,
    .reader-after-chapter,
    .reader-layout,
    .reader-plans,
    .plugin-hero,
    .plugin-grid,
    .shortcode-section,
    .plugin-steps,
    .plugin-roadmap {
        width: min(100% - 28px, 1160px);
    }

    .reader-flash {
        width: min(100% - 28px, 1160px);
    }

    .reader-search,
    .reader-search-form {
        grid-template-columns: 1fr;
    }

    .reader-hero,
    .plugin-hero {
        display: grid;
        padding-top: 48px;
    }

    .reader-hero--compact {
        padding: 22px 0 12px;
    }

    .reader-hero-tagline {
        font-size: .94rem;
    }

    .reader-hero-preview {
        padding: 12px 12px;
        margin-top: 10px;
    }

    .reader-hero-preview-text {
        font-size: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .reader-actions .button {
        min-height: 44px;
    }

    .plugin-hero h1 {
        font-size: clamp(2.25rem, 9.5vw, 3.05rem);
    }

    .reader-actions {
        justify-content: flex-start;
    }

    .verse-tool-note-details {
        flex-basis: 100%;
    }

    .verse-tool-note-form {
        flex-direction: column;
        flex-basis: 100%;
    }

    .verse-tool-note-form .verse-tool-icon {
        align-self: flex-end;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        width: min(100% - 28px, 1160px);
        padding: 28px 0 34px;
    }
}

/* Google AdSense (o Blade só emite markup quando há client + slot) */
.site-ad-unit {
    margin: 1rem auto;
    max-width: min(100%, 728px);
}

.site-footer-ad {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
}

.reader-ad-slot {
    max-width: min(100%, 900px);
    margin: 0 auto 1.5rem;
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .reader-ad-slot {
        display: none;
    }
}

.home-ad-slot {
    max-width: min(100%, 728px);
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}

.reader-devotional-card p {
    margin-bottom: 0.65rem;
}

.reader-devotional-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* --- Página /integrar (hub API + WordPress) --- */
.integrate-hero {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    align-items: start;
    max-width: min(100% - 32px, 1160px);
    margin: 0 auto 2.5rem;
    padding: 2.25rem 0 0;
}

.integrate-hero h1 {
    margin: 0.35rem 0 0.75rem;
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    letter-spacing: -0.02em;
}

.integrate-lead {
    margin: 0 0 1.25rem;
    max-width: 52ch;
    color: var(--muted, #5c5c5c);
    line-height: 1.55;
}

.integrate-toc {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    border: 1px solid var(--line, #e6e6e0);
    background: var(--soft, #f6f6f2);
    position: sticky;
    top: 1rem;
}

.integrate-toc a {
    font-weight: 700;
    color: var(--ink, #1a1a1a);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
}

.integrate-toc a:hover {
    background: rgba(12, 92, 66, 0.1);
    color: var(--accent, #0c5c42);
}

.integrate-section {
    max-width: min(100% - 32px, 1160px);
    margin: 0 auto 2.75rem;
    padding-bottom: 0.5rem;
    scroll-margin-top: 100px;
}

.integrate-section .section-heading {
    margin-bottom: 1.25rem;
}

.integrate-section .section-heading p {
    margin-bottom: 0.35rem;
}

.integrate-section-accent {
    padding: 1.75rem 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(12, 92, 66, 0.22);
    background: linear-gradient(135deg, rgba(12, 92, 66, 0.07), rgba(255, 255, 255, 0.96));
}

.integrate-section-muted {
    padding: 1.5rem 1.35rem;
    border-radius: 14px;
    background: var(--soft, #f6f6f2);
    border: 1px solid var(--line, #e6e6e0);
}

.integrate-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.integrate-card {
    border-radius: 12px;
    border: 1px solid var(--line, #e6e6e0);
    padding: 1.15rem 1.2rem;
    background: #ffffff;
    display: grid;
    gap: 0.5rem;
}

.integrate-card h3 {
    margin: 0.15rem 0 0.25rem;
    font-size: 1.05rem;
}

.integrate-card p {
    margin: 0;
    color: var(--muted, #5c5c5c);
    font-size: 0.95rem;
    line-height: 1.5;
}

.integrate-card a {
    font-weight: 700;
    margin-top: 0.35rem;
    color: var(--accent, #0c5c42);
}

.integrate-card-tag {
    display: inline-block;
    align-self: start;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 4px 8px;
    border-radius: 6px;
}

.integrate-card-tag-api {
    color: #0d4a73;
    background: rgba(13, 110, 168, 0.14);
}

.integrate-card-tag-wp {
    color: #5c3d0d;
    background: rgba(180, 120, 20, 0.16);
}

.integrate-card-tag-dl {
    color: #3d2d6b;
    background: rgba(94, 66, 176, 0.14);
}

.integrate-actions-row {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.integrate-code-block {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #0d0d0d;
    color: #f2f2f2;
}

.integrate-code-label {
    display: block;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #1a1a1a;
    color: #b0b0b0;
}

.integrate-code-block pre {
    margin: 0;
    padding: 14px 16px;
    overflow-x: auto;
    font-size: 0.82rem;
    line-height: 1.45;
}

.integrate-wp-panel {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
    align-items: start;
}

.integrate-version {
    margin: 0 0 0.75rem;
    color: var(--muted, #5c5c5c);
}

.integrate-shortcode-preview {
    margin: 0;
    padding: 1rem;
    border-radius: 10px;
    background: #0d0d0d;
    color: #c8e6c8;
    font-size: 0.88rem;
    overflow-x: auto;
}

.integrate-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.integrate-table th,
.integrate-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line, #e6e6e0);
    vertical-align: top;
}

.integrate-table thead th {
    font-weight: 800;
    background: rgba(12, 92, 66, 0.06);
}

.integrate-table tbody tr:last-child th,
.integrate-table tbody tr:last-child td {
    border-bottom: none;
}

.integrate-table-link {
    font-weight: 800;
    color: var(--accent, #0c5c42);
    white-space: nowrap;
}

.integrate-steps {
    margin: 0 0 1.25rem;
    padding-left: 1.2rem;
    max-width: 62ch;
    line-height: 1.55;
}

.integrate-steps li + li {
    margin-top: 0.5rem;
}

.integrate-footnote {
    margin: 1.25rem 0 0;
    font-size: 0.88rem;
    color: var(--muted, #5c5c5c);
    max-width: 62ch;
}

.integrate-footnote code {
    font-size: 0.85em;
}

.integrate-passos {
    scroll-margin-top: 100px;
}

.integrate-three-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.integrate-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid var(--line, #e6e6e0);
    border-radius: 12px;
    padding: 1.1rem 1.15rem;
    background: #ffffff;
}

.integrate-step-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--accent, #0c5c42);
    color: #ffffff;
    font-weight: 900;
    font-size: 1rem;
    display: grid;
    place-items: center;
}

.integrate-step h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.integrate-step p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted, #5c5c5c);
    line-height: 1.5;
}

.integrate-step a {
    font-weight: 800;
    color: var(--accent, #0c5c42);
}

.integrate-hash {
    font-size: 0.78rem;
    word-break: break-all;
}

/* —— /conta: auth hub —— */
.account-hub-page {
    background: linear-gradient(180deg, var(--mint) 0%, var(--soft) 24%, #ffffff 62%);
    border-bottom: 1px solid rgba(220, 231, 224, 0.78);
    margin: 0;
    min-height: min(70vh, 900px);
}

.account-hub-shell {
    width: min(520px, calc(100% - 40px));
    margin: 0 auto;
    padding: 2.25rem 0 3.5rem;
}

.account-hub-hero {
    text-align: center;
    margin-bottom: 1.5rem;
}

.account-hub-hero h1 {
    margin: 0.35rem 0 0.5rem;
    font-size: clamp(1.55rem, 3.4vw, 1.9rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink, #0d0d0d);
}

.account-hub-hero .eyebrow {
    margin: 0;
    color: var(--accent, #0b6b4f);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.account-hub-lead {
    margin: 0;
    color: var(--muted, #5c5c5c);
    line-height: 1.6;
    font-size: 0.98rem;
    max-width: 44ch;
    margin-left: auto;
    margin-right: auto;
}

.account-hub-card {
    border-radius: 16px;
    border: 1px solid rgba(222, 222, 216, 0.95);
    background: #fff;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 18px 48px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.account-hub-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 6px;
    background: var(--soft, #f0f0ec);
    border-bottom: 1px solid var(--line, #e6e6e0);
}

.account-hub-tabs--segmented .account-hub-tab {
    flex: 1;
    justify-content: center;
    text-align: center;
    min-width: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
}

.account-hub-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    color: var(--muted, #5c5c5c);
    text-decoration: none;
    font-size: 0.94rem;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.account-hub-tab:hover {
    color: var(--ink, #111);
    background: rgba(255, 255, 255, 0.65);
}

.account-hub-tab.is-active {
    color: var(--ink, #111);
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.account-hub-card-body {
    padding: 0;
}

.account-hub-panel {
    border: 1px solid var(--line, #e6e6e0);
    border-radius: 12px;
    padding: 1.65rem 1.5rem;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .05);
}

.account-hub-panel--in-card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 1.75rem 1.5rem 2rem;
    background: #fff;
}

.account-hub-panel[hidden] {
    display: none !important;
}

.account-hub-alert {
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff5f5;
    border: 1px solid #f5c2c2;
    color: #7a1e1e;
    font-weight: 700;
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
}

.account-hub-social {
    display: grid;
    gap: 10px;
}

.account-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 750;
    font-size: 0.94rem;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.account-social-btn:active {
    transform: scale(0.99);
}

.account-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-social-btn--google {
    border: 1px solid #dadce0;
    background: #fff;
    color: #3c4043;
}

.account-social-btn--google:hover {
    border-color: #d2d2d2;
    box-shadow: 0 2px 8px rgba(60, 64, 67, 0.12);
}

.account-social-btn--apple {
    border: 1px solid #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.account-social-btn--apple:hover {
    background: #000;
    border-color: #000;
}

.account-social-btn--apple .account-social-icon svg {
    fill: #fff;
}

.account-hub-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--muted, #6b6b6b);
    margin: 1.35rem 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.account-hub-divider::before,
.account-hub-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line, #deded8), transparent);
}

.account-hub-divider span {
    flex-shrink: 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 750;
    font-size: 0.85rem;
    color: var(--muted, #5c5c5c);
}

.account-hub-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.account-hub-benefits span {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f5f6f3;
    border: 1px solid rgba(222, 222, 216, 0.9);
    color: var(--ink, #111);
}

.account-hub-quota-hint {
    font-size: 0.9rem;
    color: var(--muted, #5c5c5c);
    margin: 0 0 1rem;
    line-height: 1.45;
}

.account-hub-form.lead-form {
    margin-top: 0;
    border: none;
    padding: 0;
    background: transparent;
    gap: 16px;
}

.account-hub-form.lead-form label {
    gap: 8px;
}

.account-hub-form.lead-form input,
.account-hub-form.lead-form select,
.account-hub-form.lead-form textarea {
    min-height: 48px;
    padding: 10px 14px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.account-hub-form.lead-form input:hover,
.account-hub-form.lead-form select:hover,
.account-hub-form.lead-form textarea:hover {
    border-color: rgba(35, 35, 35, 0.35);
}

.account-hub-form.lead-form input:focus,
.account-hub-form.lead-form select:focus,
.account-hub-form.lead-form textarea:focus {
    outline: none;
    border-color: var(--accent-2, #0b6b4f);
    box-shadow: 0 0 0 3px rgba(11, 107, 79, 0.18);
}

.account-hub-form.lead-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23232323' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.account-hub-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 600;
    font-size: 0.95rem;
}

.account-hub-check input {
    margin-top: 4px;
    flex-shrink: 0;
}

.account-hub-check a {
    color: var(--accent, #0c5c42);
    font-weight: 800;
}

.account-hub-submit.button-primary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.account-hub-foot {
    margin-top: 2rem;
    font-size: 0.92rem;
    color: var(--muted, #5c5c5c);
    text-align: center;
    line-height: 1.65;
}

.account-hub-foot a {
    color: var(--accent, #0c5c42);
    font-weight: 800;
}

.account-hub-foot a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .integrate-hero {
        grid-template-columns: 1fr;
    }

    .integrate-toc {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .integrate-wp-panel {
        grid-template-columns: 1fr;
    }

    .integrate-three-steps {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 640px) {
    .account-hub-shell {
        width: min(100% - 28px, 1160px);
        padding-top: 1.5rem;
    }

    .account-hub-hero h1 {
        font-size: 1.45rem;
    }

    .site-continue-reading-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-continue-reading-hub {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
