:root {
    --ct-ink: #172129;
    --ct-muted: #5e6b73;
    --ct-paper: #ffffff;
    --ct-soft: #f2f5f3;
    --ct-mist: #e6eeea;
    --ct-green: #185f53;
    --ct-green-deep: #0e443d;
    --ct-gold: #e7bc57;
    --ct-gold-deep: #a46c12;
    --ct-blue: #3059a8;
    --ct-burgundy: #8f3f4d;
    --ct-line: #cdd8d3;
    --ct-shadow: 0 20px 55px rgba(12, 46, 40, 0.16);
}

html {
    scroll-behavior: smooth;
}

body.ct-showcase-site {
    margin: 0;
    background: var(--ct-paper);
    color: var(--ct-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.ct-showcase-site *,
.ct-showcase-site *::before,
.ct-showcase-site *::after {
    box-sizing: border-box;
}

.ct-showcase-site h1,
.ct-showcase-site h2,
.ct-showcase-site h3,
.ct-showcase-site p,
.ct-showcase-site figure {
    margin-top: 0;
}

.ct-showcase-site h1,
.ct-showcase-site h2,
.ct-showcase-site h3,
.ct-showcase-site strong {
    color: inherit;
}

.ct-showcase-site h1,
.ct-showcase-site h2,
.ct-showcase-site h3 {
    padding: 0;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
}

.ct-showcase-site h2 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: 58px;
}

.ct-showcase-site h3 {
    margin-bottom: 12px;
    font-size: 25px;
}

.ct-showcase-site p {
    margin-bottom: 20px;
}

.ct-showcase-site a {
    color: inherit;
    text-decoration: none;
}

.ct-wrap {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

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

.ct-site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.admin-bar .ct-site-header {
    top: 32px;
}

.ct-site-header.is-scrolled {
    border-color: var(--ct-line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 30px rgba(18, 42, 36, 0.09);
    color: var(--ct-ink);
}

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

.ct-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 18px;
    line-height: 1;
}

.ct-brand strong,
.ct-brand small {
    display: block;
    letter-spacing: 0;
}

.ct-brand strong {
    font-weight: 850;
}

.ct-brand small {
    margin-top: 5px;
    color: var(--ct-gold);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.ct-site-header.is-scrolled .ct-brand small {
    color: var(--ct-gold-deep);
}

.ct-brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    align-items: end;
}

.ct-brand-mark span {
    display: block;
    background: var(--ct-gold);
}

.ct-brand-mark span:nth-child(1) { height: 50%; }
.ct-brand-mark span:nth-child(2) { height: 100%; }
.ct-brand-mark span:nth-child(3) { height: 72%; }

.ct-primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 750;
}

.ct-primary-nav a:not(.ct-nav-action) {
    border-bottom: 2px solid transparent;
}

.ct-primary-nav a:not(.ct-nav-action):hover,
.ct-primary-nav a:not(.ct-nav-action):focus {
    border-color: var(--ct-gold);
}

.ct-nav-action {
    padding: 10px 15px;
    border: 1px solid currentColor;
    border-radius: 4px;
}

.ct-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid currentColor;
    border-radius: 4px;
    background: transparent;
    color: inherit;
}

.ct-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
}

.ct-hero {
    position: relative;
    height: 88svh;
    overflow: hidden;
    background-color: var(--ct-green-deep);
    background-image: var(--ct-hero-image);
    background-position: 66% 3%;
    background-size: cover;
    color: #ffffff;
}

.ct-hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(8, 36, 32, 0.79);
}

.ct-hero-content {
    position: relative;
    display: flex;
    height: 100%;
    padding-top: 150px;
    padding-bottom: 70px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.ct-eyebrow,
.ct-kicker {
    margin-bottom: 19px;
    color: var(--ct-gold);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ct-hero h1 {
    max-width: 900px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 108px;
}

.ct-hero-mantra {
    max-width: 790px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
}

.ct-hero-lede {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 27px;
    line-height: 1.42;
}

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

.ct-button {
    display: inline-flex;
    min-height: 49px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.ct-button-primary,
.ct-button-gold {
    background: var(--ct-gold);
    color: #2c240e;
}

.ct-button-primary:hover,
.ct-button-primary:focus,
.ct-button-gold:hover,
.ct-button-gold:focus {
    background: #f4d27f;
    color: #1f1a0d;
}

.ct-button-quiet {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(6, 34, 30, 0.28);
    color: #ffffff;
}

.ct-button-quiet:hover,
.ct-button-quiet:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.ct-button-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.ct-button-outline:hover,
.ct-button-outline:focus {
    background: #ffffff;
    color: var(--ct-green-deep);
}

.ct-hero-proof {
    display: flex;
    max-width: 810px;
    margin-top: 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.ct-hero-proof span {
    display: grid;
    min-width: 190px;
    padding: 19px 30px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.3;
}

.ct-hero-proof span + span {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.ct-hero-proof strong {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
}

.ct-intro {
    padding: 115px 0 105px;
}

.ct-intro-grid,
.ct-final-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 80px;
    align-items: start;
}

.ct-intro-copy {
    padding-top: 37px;
    color: var(--ct-muted);
    font-size: 18px;
}

.ct-intro .ct-kicker,
.ct-feature-band .ct-kicker,
.ct-chordpro-band .ct-kicker,
.ct-audience-band .ct-kicker {
    color: var(--ct-gold-deep);
}

.ct-outcome-row {
    display: grid;
    margin-top: 70px;
    border-top: 1px solid var(--ct-line);
    border-bottom: 1px solid var(--ct-line);
    grid-template-columns: repeat(4, 1fr);
}

.ct-outcome-row > div {
    display: grid;
    gap: 9px;
    padding: 26px 26px 28px;
}

.ct-outcome-row > div + div {
    border-left: 1px solid var(--ct-line);
}

.ct-outcome-row strong {
    color: var(--ct-green);
    font-size: 18px;
}

.ct-outcome-row span {
    color: var(--ct-muted);
    font-size: 13px;
    line-height: 1.5;
}

.ct-feature-band {
    padding: 115px 0;
    overflow: hidden;
}

.ct-friction-band {
    padding: 105px 0;
    background: #eaf1ee;
}

.ct-friction-grid {
    display: grid;
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
    gap: 80px;
    align-items: start;
}

.ct-friction-heading {
    position: sticky;
    top: 112px;
}

.ct-friction-heading .ct-kicker {
    color: var(--ct-gold-deep);
}

.ct-friction-heading h2 {
    font-size: 50px;
}

.ct-friction-heading > p:not(.ct-kicker) {
    color: var(--ct-muted);
    font-size: 18px;
}

.ct-friction-list {
    border-top: 1px solid #b8c9c2;
}

.ct-friction-list article {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 24px;
    padding: 27px 0;
    border-bottom: 1px solid #b8c9c2;
}

.ct-friction-list article > strong {
    color: var(--ct-green);
    font-size: 12px;
    text-transform: uppercase;
}

.ct-friction-list h3 {
    margin-bottom: 8px;
    font-size: 21px;
}

.ct-friction-list p {
    margin: 0;
    color: var(--ct-muted);
    font-size: 15px;
}

.ct-feature-planner,
.ct-feature-choir {
    background: var(--ct-soft);
}

.ct-feature-worship {
    background: #ffffff;
}

.ct-feature-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.83fr) minmax(0, 1.17fr);
    gap: 76px;
    align-items: center;
}

.ct-feature-reverse {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
}

.ct-feature-reverse .ct-feature-copy {
    grid-column: 2;
}

.ct-feature-reverse figure {
    grid-column: 1;
    grid-row: 1;
}

.ct-feature-copy > p:not(.ct-kicker),
.ct-section-heading > p:not(.ct-kicker),
.ct-chordpro-grid > div > p:not(.ct-kicker) {
    color: var(--ct-muted);
    font-size: 18px;
}

.ct-check-list {
    display: grid;
    gap: 11px;
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.ct-check-list li {
    position: relative;
    padding-left: 28px;
    color: #334148;
}

.ct-check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--ct-green);
    content: "\2713";
    font-weight: 900;
}

.ct-text-link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    border-bottom: 2px solid var(--ct-gold);
    color: var(--ct-green-deep);
    font-weight: 850;
}

.ct-product-frame,
.ct-chart-frame {
    position: relative;
    margin: 0;
}

.ct-product-frame img,
.ct-chart-frame img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--ct-line);
    box-shadow: var(--ct-shadow);
}

.ct-product-wide {
    height: 600px;
    overflow: hidden;
    border: 1px solid var(--ct-line);
    background: #e9efec;
    box-shadow: var(--ct-shadow);
}

.ct-product-wide img {
    border: 0;
    box-shadow: none;
}

.ct-product-frame figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: 320px;
    padding: 10px 13px;
    border-left: 3px solid var(--ct-gold);
    background: rgba(255, 255, 255, 0.95);
    color: var(--ct-muted);
    font-size: 12px;
}

.ct-product-library {
    height: 570px;
    overflow: hidden;
    border: 1px solid var(--ct-line);
    background: var(--ct-soft);
    box-shadow: var(--ct-shadow);
}

.ct-product-library img {
    border: 0;
    box-shadow: none;
}

.ct-choir-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
}

.ct-phone-frame {
    width: min(100%, 390px);
    margin: 0 auto;
    padding: 12px;
    border: 1px solid #a9b8b1;
    border-radius: 30px;
    background: #111817;
    box-shadow: var(--ct-shadow);
}

.ct-phone-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.ct-mini-grid {
    display: grid;
    margin: 36px 0 32px;
    border-top: 1px solid var(--ct-line);
    grid-template-columns: 1fr 1fr;
}

.ct-mini-grid > div {
    display: grid;
    gap: 7px;
    padding: 20px 22px 20px 0;
    border-bottom: 1px solid var(--ct-line);
}

.ct-mini-grid > div:nth-child(even) {
    padding-left: 22px;
    border-left: 1px solid var(--ct-line);
}

.ct-mini-grid strong {
    color: var(--ct-green-deep);
    font-size: 14px;
}

.ct-mini-grid span {
    color: var(--ct-muted);
    font-size: 13px;
}

.ct-feature-production {
    background: var(--ct-green-deep);
    color: #ffffff;
}

.ct-feature-production .ct-kicker {
    color: var(--ct-gold);
}

.ct-feature-production .ct-section-heading > p:not(.ct-kicker) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.73);
}

.ct-tool-grid {
    display: grid;
    margin-top: 65px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    grid-template-columns: repeat(4, 1fr);
}

.ct-tool-grid article {
    padding: 28px 26px 32px;
}

.ct-tool-grid article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.ct-tool-grid p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.ct-tool-number {
    display: block;
    margin-bottom: 62px;
    color: var(--ct-gold);
    font-size: 12px;
    font-weight: 850;
}

.ct-chordpro-band {
    padding: 115px 0;
    background: #fbf8f1;
}

.ct-chordpro-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: 75px;
    align-items: center;
}

.ct-note {
    padding: 17px 20px;
    border-left: 4px solid var(--ct-gold);
    background: #ffffff;
    color: #4c5558 !important;
    font-size: 14px !important;
}

.ct-chart-frame {
    max-height: 610px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--ct-shadow);
}

.ct-chart-frame img {
    border: 0;
    box-shadow: none;
}

.ct-audience-band {
    padding: 115px 0;
}

.ct-audience-band h2 {
    max-width: 820px;
}

.ct-audience-grid {
    display: grid;
    margin-top: 60px;
    border-top: 1px solid var(--ct-line);
    grid-template-columns: repeat(3, 1fr);
}

.ct-audience-grid > div {
    display: grid;
    min-height: 175px;
    gap: 12px;
    padding: 28px;
    align-content: start;
    border-bottom: 1px solid var(--ct-line);
}

.ct-audience-grid > div:not(:nth-child(3n + 1)) {
    border-left: 1px solid var(--ct-line);
}

.ct-audience-grid strong {
    color: var(--ct-green-deep);
    font-size: 18px;
}

.ct-audience-grid span {
    color: var(--ct-muted);
    font-size: 14px;
}

.ct-final-cta {
    padding: 100px 0;
    background: var(--ct-burgundy);
    color: #ffffff;
}

.ct-final-cta .ct-kicker {
    color: #f5d990;
}

.ct-final-cta p:not(.ct-kicker) {
    color: rgba(255, 255, 255, 0.83);
    font-size: 18px;
}

.ct-final-cta .ct-final-mantra {
    margin-top: 28px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.ct-site-footer {
    padding: 70px 0 25px;
    background: #101a1f;
    color: #ffffff;
}

.ct-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
}

.ct-footer-grid > div:first-child p {
    max-width: 420px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.57);
}

.ct-footer-links {
    display: grid;
    gap: 11px;
    align-content: start;
}

.ct-footer-links strong {
    margin-bottom: 8px;
    color: var(--ct-gold);
    font-size: 12px;
    text-transform: uppercase;
}

.ct-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.ct-footer-links a:hover,
.ct-footer-links a:focus {
    color: #ffffff;
}

.ct-promise-badge {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin: 48px auto 0;
    padding: 16px 20px;
    border: 1px solid rgba(231, 188, 87, 0.48);
    border-radius: 6px;
    background: #16262a;
    align-items: center;
    gap: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ct-promise-mark {
    display: inline-grid;
    flex: 0 0 auto;
    grid-template-columns: repeat(3, 4px);
    height: 30px;
    align-items: end;
    gap: 3px;
}

.ct-promise-mark span {
    display: block;
    width: 4px;
    background: var(--ct-gold);
}

.ct-promise-mark span:nth-child(1) {
    height: 14px;
}

.ct-promise-mark span:nth-child(2) {
    height: 22px;
}

.ct-promise-mark span:nth-child(3) {
    height: 30px;
}

.ct-promise-badge p {
    display: flex;
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    gap: 22px;
}

.ct-promise-badge p span + span {
    position: relative;
}

.ct-promise-badge p span + span::before {
    position: absolute;
    top: 50%;
    left: -13px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ct-gold);
    content: "";
    transform: translateY(-50%);
}

.ct-footer-base {
    display: flex;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}

@media (max-width: 1040px) {
    .ct-hero h1 {
        font-size: 82px;
    }

    .ct-showcase-site h2 {
        font-size: 49px;
    }

    .ct-primary-nav {
        gap: 17px;
    }

    .ct-feature-grid,
    .ct-feature-reverse,
    .ct-chordpro-grid,
    .ct-friction-grid {
        gap: 42px;
    }

    .ct-tool-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ct-tool-grid article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .ct-tool-grid article:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }
}

@media (max-height: 800px) and (min-width: 821px) {
    .ct-hero-content {
        padding-top: 115px;
        padding-bottom: 25px;
    }

    .ct-hero h1 {
        margin-bottom: 17px;
        font-size: 88px;
    }

    .ct-hero-lede {
        margin-bottom: 13px;
        font-size: 24px;
    }

    .ct-hero-proof {
        display: none;
    }
}

@media (max-width: 820px) {
    body.admin-bar .ct-site-header {
        top: 46px;
    }

    .ct-wrap {
        width: min(100% - 32px, 680px);
    }

    .ct-menu-toggle {
        display: block;
    }

    .ct-primary-nav {
        position: absolute;
        top: 76px;
        right: 16px;
        left: 16px;
        display: none;
        padding: 14px;
        border: 1px solid var(--ct-line);
        background: #ffffff;
        box-shadow: var(--ct-shadow);
        color: var(--ct-ink);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .ct-primary-nav.is-open {
        display: flex;
    }

    .ct-primary-nav a {
        padding: 11px 10px;
    }

    .ct-nav-action {
        margin-top: 6px;
        text-align: center;
    }

    .ct-hero {
        height: 86svh;
    }

    .ct-hero h1 {
        font-size: 68px;
    }

    .ct-showcase-site h2 {
        font-size: 43px;
    }

    .ct-hero {
        background-position: 48% 0;
    }

    .ct-hero-content {
        padding-top: 125px;
        padding-bottom: 46px;
    }

    .ct-hero-proof {
        width: 100%;
        margin-top: 42px;
    }

    .ct-hero-proof span {
        min-width: 0;
        padding-right: 14px;
        flex: 1;
    }

    .ct-hero-proof span + span {
        padding-left: 14px;
    }

    .ct-intro,
    .ct-friction-band,
    .ct-feature-band,
    .ct-chordpro-band,
    .ct-audience-band {
        padding: 78px 0;
    }

    .ct-intro-grid,
    .ct-friction-grid,
    .ct-feature-grid,
    .ct-feature-reverse,
    .ct-choir-grid,
    .ct-chordpro-grid,
    .ct-final-grid,
    .ct-footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .ct-friction-heading {
        position: static;
    }

    .ct-intro-copy {
        padding-top: 0;
    }

    .ct-outcome-row {
        grid-template-columns: 1fr 1fr;
    }

    .ct-outcome-row > div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--ct-line);
    }

    .ct-outcome-row > div:nth-child(4) {
        border-top: 1px solid var(--ct-line);
    }

    .ct-feature-reverse .ct-feature-copy,
    .ct-feature-reverse figure {
        grid-column: 1;
        grid-row: auto;
    }

    .ct-feature-reverse .ct-feature-copy {
        grid-row: 1;
    }

    .ct-product-wide,
    .ct-product-library {
        height: 460px;
    }

    .ct-phone-frame {
        width: 340px;
    }

    .ct-audience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ct-audience-grid > div:not(:nth-child(3n + 1)) {
        border-left: 0;
    }

    .ct-audience-grid > div:nth-child(even) {
        border-left: 1px solid var(--ct-line);
    }
}

@media (max-width: 560px) {
    body.admin-bar .ct-site-header {
        top: 46px;
    }

    .ct-wrap {
        width: min(100% - 28px, 500px);
    }

    .ct-header-inner {
        min-height: 68px;
    }

    .ct-primary-nav {
        top: 68px;
    }

    .ct-hero {
        height: 88svh;
    }

    .ct-hero-content {
        padding-top: 118px;
        padding-bottom: 34px;
    }

    .ct-hero h1 {
        font-size: 54px;
    }

    .ct-hero-lede {
        font-size: 19px;
    }

    .ct-hero-mantra {
        font-size: 23px;
    }

    .ct-hero-actions,
    .ct-hero-actions .ct-button {
        width: 100%;
    }

    .ct-hero-proof {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .ct-hero-proof span {
        padding-top: 14px;
        font-size: 10px;
    }

    .ct-hero-proof strong {
        font-size: 14px;
    }

    .ct-showcase-site h2 {
        font-size: 36px;
    }

    .ct-friction-heading h2 {
        font-size: 36px;
    }

    .ct-friction-list article {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ct-outcome-row,
    .ct-mini-grid,
    .ct-tool-grid,
    .ct-audience-grid {
        grid-template-columns: 1fr;
    }

    .ct-outcome-row > div + div,
    .ct-outcome-row > div:nth-child(4),
    .ct-mini-grid > div:nth-child(even),
    .ct-tool-grid article + article,
    .ct-tool-grid article:nth-child(4),
    .ct-audience-grid > div:nth-child(even) {
        border-left: 0;
    }

    .ct-outcome-row > div + div,
    .ct-mini-grid > div:nth-child(even),
    .ct-tool-grid article + article {
        border-top: 1px solid var(--ct-line);
    }

    .ct-mini-grid > div:nth-child(even) {
        padding-left: 0;
    }

    .ct-tool-grid article + article {
        border-top-color: rgba(255, 255, 255, 0.22);
    }

    .ct-tool-number {
        margin-bottom: 28px;
    }

    .ct-product-wide,
    .ct-product-library {
        height: 355px;
    }

    .ct-product-wide img {
        width: 720px;
        max-width: none;
    }

    .ct-product-library img {
        width: 680px;
        max-width: none;
    }

    .ct-phone-frame {
        width: min(100%, 360px);
    }

    .ct-footer-grid {
        gap: 34px;
    }

    .ct-promise-badge {
        width: 100%;
        padding: 17px 18px;
        align-items: flex-start;
    }

    .ct-promise-badge p {
        display: grid;
        gap: 4px;
        font-size: 16px;
    }

    .ct-promise-badge p span + span::before {
        display: none;
    }

    .ct-footer-base {
        gap: 8px;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ct-site-header,
    .ct-button {
        transition: none;
    }
}
