:root {
    --ink-900: #213a56;
    --ink-800: #354b64;
    --ink-500: #62748a;
    --paper: #f9f3ef;
    --card: #ffffff;
    --brand-red: #ff5921;
    --brand-orange: #fe7241;
    --brand-deep: #e84913;
    --amber: #f5be5f;
    --line: #efe8e3;
    --shadow-card: 0 8px 24px rgba(21, 33, 48, 0.08);
    --shadow-strong: 0 16px 34px rgba(21, 33, 48, 0.12);
    --shadow: var(--shadow-card);
    --font-heading: "bornamedium", "Helvetica Neue", Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body.newsite {
    font-family: "Public Sans", "Helvetica Neue", Helvetica, sans-serif;
    background: #f8f7f3;
    line-height: 1.55;
    padding-top: 66px;
}

.newsite-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: none;
    z-index: 0;
}

main,
.newsite-header,
.newsite-footer {
    position: relative;
    z-index: 1;
}

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

body.newsite-landing {
    --landing-section-gap: 112px;
    --landing-section-gap-mobile: 68px;
}

body.newsite-landing main > section + section {
    margin-top: var(--landing-section-gap);
}

body.newsite-landing main > section.client-strip {
    margin-top: 60px !important;
}

.horizontal-story {
    margin-top: 0 !important;
}

.newsite-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: #fbfaf7;
    border-bottom: 1px solid rgba(53, 75, 100, 0.14);
    box-shadow: none;
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
    gap: 20px;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-heading);
    text-decoration: none;
    color: var(--ink-900);
    letter-spacing: 0.03em;
}

.brand-logo {
    display: block;
    height: 34px;
    width: auto;
    padding-top: 6px;
}

.newsite-nav {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    justify-self: center;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
}

.nav-signup-mobile {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--ink-500);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    border: 0;
    background: transparent;
    cursor: default;
    padding: 0;
    font-family: inherit;
    gap: 6px;
}

.nav-dropdown-trigger i {
    font-size: 0.72rem;
    line-height: 1;
    margin-top: 2px;
    transition: transform 0.18s ease;
}

.nav-dropdown.is-open .nav-dropdown-trigger i,
.nav-dropdown:hover .nav-dropdown-trigger i,
.nav-dropdown:focus-within .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 420px;
    padding: 8px;
    border: 1px solid rgba(53, 75, 100, 0.14);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    column-gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 14px;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    border-radius: 8px;
    padding: 9px 10px;
    color: var(--ink-800);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
    background: rgba(255, 89, 33, 0.08);
    color: var(--brand-red);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--brand-red);
}

.language-switcher {
    position: relative;
    color: var(--ink-500);
}

.language-switcher summary {
    list-style: none;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 300;
}

.language-switcher summary::-webkit-details-marker {
    display: none;
}

.language-flag {
    width: 18px;
    height: auto;
    display: inline-block;
    flex: 0 0 auto;
    border-radius: 1px;
}

.language-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 168px;
    padding: 7px;
    border: 1px solid rgba(53, 75, 100, 0.14);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    z-index: 60;
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    padding: 9px 10px;
    color: var(--ink-800);
    font-size: 0.9rem;
    text-decoration: none;
}

.language-menu a:hover,
.language-menu a.is-active {
    background: rgba(255, 89, 33, 0.08);
    color: var(--brand-red);
}

.mobile-language-choice {
    display: none;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--brand-red);
    cursor: pointer;
    padding: 0;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}

.header-mobile-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-login-link {
    text-decoration: none;
    color: var(--ink-800);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 2px;
}

.mobile-login-link:hover {
    color: var(--brand-red);
}

.button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.92rem;
}

.newsite-nav .button {
    padding: 10px 16px;
}

.button-strong {
    background: var(--brand-red);
    color: #fff;
    border: 1px solid var(--brand-red);
}

.button-strong:hover {
    background: var(--brand-deep);
    border-color: var(--brand-deep);
    color: #fff;
}

.button-quiet {
    background: #fff;
    color: var(--ink-900);
    border: 1px solid var(--line);
}

.hero {
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.audience-hero {
    margin-top: 64px;
    padding: 0;
    border-radius: 24px;
    border: 0;
    background: transparent;
    color: var(--ink-900);
    display: block;
    overflow: visible;
    box-shadow: none;
    position: relative;
    isolation: isolate;
}

.feature-detail-hero {
    margin-top: 98px;
}

.audience-hero-boxed {
    padding: 34px 48px 0;
    border: 0;
    background:
        linear-gradient(180deg, rgba(19, 47, 75, 0.12), rgba(19, 47, 75, 0.28)),
        var(--audience-hero-image, none),
        var(--audience-hero-bg);
    background-position: center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-strong);
}

.audience-hero-boxed > * {
    position: relative;
    z-index: 1;
}

.audience-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: min(860px, 100%);
}

.audience-hero-copy h1 {
    max-width: inherit;
    font-weight: 500;
    color: #171116;
}

.audience-hero-copy .lead {
    max-width: 62ch;
    color: #5a4f59;
}

.audience-hero .eyebrow {
    font-size: 1rem;
    color: var(--brand-red);
}

.audience-hero-boxed .audience-hero-copy {
    align-items: center;
    text-align: center;
    width: min(760px, 100%);
}

.audience-hero-boxed .audience-hero-copy h1 {
    color: #fff;
}

.audience-hero-boxed .audience-hero-copy .lead {
    color: rgba(255, 255, 255, 0.9);
}

.audience-hero-boxed .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.audience-hero-media {
    margin: 26px auto -168px;
    width: min(1100px, 100%);
    min-height: 360px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.audience-hero-media-overlay {
    position: relative;
    overflow: visible;
}

.audience-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.audience-hero-media-overlay > img:first-child {
    border-radius: inherit;
}

.audience-hero-media .audience-hero-overlay-image {
    position: absolute;
    right: 7%;
    bottom: -76px;
    width: clamp(120px, 13vw, 210px);
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.26));
    z-index: 2;
}

.home-hero-boxed {
    margin-top: 64px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 246, 240, 0.18)),
        url("../img/gradient.jpg");
    background-size: cover;
    background-position: center;
}

.home-hero-media img {
    object-fit: cover;
    object-position: center top;
}

.audience-section-intro {
    padding-top: 248px;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.audience-section-intro h2 {
    margin: 0;
    color: #171116;
    font-size: clamp(1.8rem, 5.8vw, 2.8rem);
    line-height: 0.98;
    font-weight: 500;
}

.audience-section-intro p {
    margin: 16px 0 0;
    color: #5a4f59;
    font-size: 1.04rem;
}

.audience-section-intro .button {
    flex: 0 0 auto;
}

.audience-showcase-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px 28px;
}

.audience-showcase-item {
    min-width: 0;
}

.audience-showcase-media {
    margin: 0;
    aspect-ratio: 1.28 / 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(228, 219, 211, 0.88);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0, rgba(246, 241, 237, 0.94) 100%);
    box-shadow: var(--shadow-card);
}

.audience-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.audience-showcase-copy {
    margin-top: 22px;
}

.audience-showcase-copy h2 {
    margin: 0;
    font-size: clamp(1.08rem, 1.8vw, 1.32rem);
    line-height: 1.18;
    color: #171116;
    font-weight: 500;
}

.audience-showcase-copy p:not(.eyebrow) {
    margin: 4px 0 0;
    max-width: 58ch;
    color: #5a4f59;
    font-size: 0.95rem;
}

.feature-detail-screenshot {
    margin-top: 74px;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(228, 219, 211, 0.88);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-card);
}

.feature-detail-hero-centered .audience-hero-copy {
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-detail-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.feature-detail-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
    gap: 28px;
    align-items: start;
    padding: 28px 0;
    border-top: 1px solid rgba(53, 75, 100, 0.12);
}

.feature-detail-row:last-child {
    border-bottom: 1px solid rgba(53, 75, 100, 0.12);
}

.feature-detail-copy h2 {
    margin: 0;
    color: #171116;
    font-size: clamp(1.08rem, 1.8vw, 1.32rem);
    line-height: 1.18;
    font-weight: 500;
}

.feature-detail-copy p {
    margin: 10px 0 0;
    max-width: 68ch;
    color: #5a4f59;
    font-size: 1rem;
}

.feature-detail-thumb {
    margin: 0;
    width: min(100%, 340px);
    height: 220px;
    justify-self: end;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(228, 219, 211, 0.88);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-card);
    padding: 14px;
}

.feature-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.audience-story-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
}

.audience-story-row-reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.audience-story-row-reverse .audience-story-copy {
    order: 2;
}

.audience-story-row-reverse .audience-story-media {
    order: 1;
}

.audience-story-copy p:not(.eyebrow) {
    margin: 14px 0 0;
    max-width: 48ch;
    color: #5a4f59;
}

.audience-story-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.audience-story-list li {
    position: relative;
    padding-left: 24px;
    color: #4f5565;
}

.audience-story-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.12em;
    color: var(--brand-orange);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1;
}

.audience-story-media {
    margin: 0;
    min-height: 420px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(228, 219, 211, 0.88);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0, rgba(246, 241, 237, 0.94) 100%);
    box-shadow: var(--shadow-card);
}

.audience-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.audience-feature-grid {
    margin-top: 24px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-brand-card {
    margin-top: 64px;
    padding: 28px 30px;
    border-radius: 24px;
    background: linear-gradient(160deg, #22254a 0, #292752 52%, #272449 100%);
    box-shadow: var(--shadow-strong);
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    overflow: hidden;
    position: relative;
}


.audience-brand-card-media,
.audience-brand-card-copy {
    position: relative;
    z-index: 1;
}

.audience-brand-card-media {
    display: flex;
    align-items: center;
}

.audience-brand-card-logo {
    width: 100%;
    max-width: 134px;
    display: block;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.22));
}

.audience-store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    align-items: flex-start;
}

.audience-store-badges a {
    display: block;
    height: 40px;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.audience-store-badges a:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.audience-store-badges img {
    display: block;
    width: auto;
    height: 100%;
}

.audience-brand-card-copy h3 {
    color: #f7f6fb;
    font-size: clamp(1.34rem, 2.4vw, 2rem);
    line-height: 1.08;
}

.audience-brand-card-copy p {
    margin: 12px 0 0;
    color: rgba(230, 231, 245, 0.8);
    font-size: 1rem;
}

.audience-brand-card-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.audience-brand-card-actions .button-strong {
    background: #fff8f2;
    color: #1f2347;
    border-color: #fff8f2;
}

.audience-brand-card-actions .button-strong:hover {
    background: #ffffff;
    color: var(--brand-red);
    border-color: #ffffff;
}

.audience-brand-card-actions .button-quiet {
    background: rgba(255, 255, 255, 0.06);
    color: #f2f4ff;
    border-color: rgba(227, 232, 255, 0.22);
}

.audience-brand-card-actions .button-quiet:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(227, 232, 255, 0.4);
}

.payoff-hero {
    margin-top: 0;
    padding: 136px 0 20px;
    position: relative;
    overflow: visible;
    background: #f2f2f2;
}

.payoff-hero::before,
.payoff-hero::after {
    content: none;
}

.payoff-copy {
    position: relative;
    z-index: 2;
    text-align: center;
}

.payoff-hero .eyebrow {
    color: var(--brand-red);
}

.hero-switch {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.hero-chip {
    border: 1px solid #d8cbc0;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink-500);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    padding: 9px 14px;
    cursor: pointer;
}

.hero-chip:hover,
.hero-chip.is-active {
    color: var(--ink-900);
    border-color: #d18b73;
    background: #fff;
}

.payoff-hero .hero-chip {
    border-color: rgba(255, 228, 199, 0.4);
    color: rgba(255, 242, 227, 0.78);
    background: rgba(255, 255, 255, 0.08);
}

.payoff-hero .hero-chip:hover,
.payoff-hero .hero-chip.is-active {
    border-color: rgba(255, 244, 226, 0.75);
    color: #fffaf3;
    background: rgba(255, 255, 255, 0.14);
}

.eyebrow {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    color: var(--brand-deep);
    font-weight: 700;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin: 0;
}

h2,
h3,
h4 {
    font-weight: 500;
}

h1 {
    font-weight: 400;
    margin-top: 10px;
    font-size: clamp(2rem, 5vw, 3.35rem);
    max-width: 13ch;
}

.lead {
    margin: 16px 0 0;
    max-width: 58ch;
    color: var(--ink-500);
    font-size: 1.25rem;
}

.payoff-hero h1 {
    margin: 0 auto;
    max-width: 760px;
    color: #0f0e0d;
    font-size: clamp(2.55rem, 5vw, 3.35rem);
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1.04;
}

.payoff-hero .lead {
    margin: 14px auto 0;
    color: #776f69;
    max-width: 660px;
    font-weight: 300;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.34;
}

.payoff-actions {
    justify-content: center;
}

.payoff-hero .button-strong {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
}

.payoff-hero .button-strong:hover {
    background: var(--brand-deep);
    color: #fff;
    border-color: var(--brand-deep);
}

.payoff-hero .button-quiet {
    background: #fff;
    color: var(--ink-900);
    border-color: rgba(53, 75, 100, 0.14);
}

.payoff-metrics {
    margin: 20px auto 0;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 980px;
}

.payoff-metric {
    border: 1px solid rgba(255, 226, 194, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 14px;
    text-align: left;
}

.payoff-metric strong {
    display: block;
    color: #fff7f8;
    font-size: 0.94rem;
}

.payoff-metric span {
    margin-top: 4px;
    display: block;
    color: rgba(255, 241, 226, 0.88);
    font-size: 0.86rem;
}

.hero-state,
.panel-state {
    display: none;
}

.hero-state.is-active,
.panel-state.is-active {
    display: block;
    animation: none;
}

.hero-progress {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-progress-dot {
    width: 38px;
    height: 5px;
    border-radius: 999px;
    background: rgba(18, 37, 63, 0.18);
    transition: background-color 0.28s ease, transform 0.28s ease;
}

.hero-progress-dot.is-active {
    background: var(--brand-red);
    transform: scaleX(1.08);
}

.payoff-hero .hero-progress-dot {
    background: rgba(255, 224, 194, 0.32);
}

.payoff-hero .hero-progress-dot.is-active {
    background: #fff1df;
}

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

.stats-grid {
    margin-top: 24px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 14px;
}

.stat-card strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.stat-card span {
    color: var(--ink-500);
    font-size: 0.9rem;
}

.hero-panel {
    background: linear-gradient(170deg, var(--ink-900) 0, var(--ink-800) 100%);
    border-radius: 18px;
    color: #f6fbff;
    padding: 26px 24px;
    box-shadow: var(--shadow);
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 14px;
}

.hero-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-panel li {
    position: relative;
    margin: 0;
    padding: 0 0 0 22px;
    color: rgba(246, 251, 255, 0.85);
}

.hero-panel li + li {
    margin-top: 11px;
}

.hero-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--amber);
}

@keyframes hero-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payoff-stage-wrap {
    position: relative;
    z-index: 2;
    margin-top: 58px;
    margin-bottom: 64px;
    padding: 64px;
    border-radius: 24px;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 246, 240, 0.18)), url("../img/gradient.png");
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 54px rgba(48, 38, 30, 0.12);
}

.payoff-stage {
    position: relative;
    min-height: 0;
    padding-bottom: 0;
}

.payoff-board {
    width: min(980px, 100%);
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: #f4f5f7;
    box-shadow: 0 22px 58px rgba(34, 10, 24, 0.26);
    overflow: hidden;
}

.payoff-hero .payoff-float {
    display: none;
}

.payoff-board-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
}

.payoff-board-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 16px;
    border-bottom: 1px solid #e3e4e9;
}

.payoff-board-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25344d;
}

.payoff-board-title strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
}

.payoff-board-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(155deg, #ff7f58 0, #fb4b65 100%);
}

.payoff-board-action {
    border-radius: 10px;
    background: var(--ink-800);
    color: #f6f9ff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 7px 12px;
}

.payoff-board-tabs {
    display: flex;
    gap: 22px;
    align-items: center;
    padding: 10px 22px 14px;
    border-bottom: 1px solid #e6e7ec;
}

.payoff-board-tabs span {
    color: #69758a;
    font-size: 0.92rem;
    font-weight: 500;
}

.payoff-board-tabs .is-active {
    color: #29374b;
    font-weight: 700;
}

.payoff-board-grid {
    position: relative;
    height: 250px;
    padding: 18px;
}

.payoff-grid-lines {
    position: absolute;
    inset: 18px;
    border-radius: 12px;
    background-image: linear-gradient(to right, rgba(161, 170, 186, 0.23) 1px, transparent 1px), linear-gradient(to bottom, rgba(161, 170, 186, 0.23) 1px, transparent 1px);
    background-size: calc(100% / 8) calc(100% / 4);
}

.payoff-pill {
    position: absolute;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1;
    padding: 10px 12px;
    box-shadow: 0 8px 22px rgba(44, 50, 62, 0.18);
}

.payoff-pill-yellow {
    top: 78px;
    left: 36%;
    background: #f5c452;
    color: #5f4c1b;
}

.payoff-pill-blue {
    top: 168px;
    left: 58%;
    background: #74a6ff;
    color: #173f7a;
}

.payoff-pill-green {
    top: 156px;
    left: 16%;
    background: #fe7241;
    color: #6f230b;
}

.payoff-pill-note {
    top: 166px;
    left: 75%;
    background: #f1f4fb;
    color: #39485f;
    border: 1px solid #d3d9e7;
}

.payoff-float {
    position: absolute;
    width: 250px;
    border-radius: 15px;
    border: 1px solid rgba(255, 223, 194, 0.5);
    background: rgba(255, 245, 236, 0.95);
    box-shadow: 0 20px 42px rgba(41, 23, 12, 0.22);
    padding: 14px 14px 12px;
}

.payoff-stage.payoff-scroll-reveal:not(.payoff-sequence) .payoff-float-left,
.payoff-stage.payoff-scroll-reveal:not(.payoff-sequence) .payoff-float-device {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    pointer-events: none;
}

.payoff-stage.payoff-sequence .payoff-float-left,
.payoff-stage.payoff-sequence .payoff-float-right {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    animation: payoff-float-in 0.48s ease forwards;
    pointer-events: none;
}

.payoff-stage.payoff-sequence .payoff-float-right {
    animation-delay: 1.2s;
}

.payoff-stage.payoff-sequence .payoff-float-left {
    animation-delay: 0s;
}

@keyframes payoff-float-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.payoff-float ul {
    margin: 9px 0 0;
}

.payoff-float li {
    color: #4e3d49;
    font-size: 0.84rem;
}

.payoff-float li + li {
    margin-top: 5px;
}

.payoff-float-left {
    left: -10px;
    top: 112px;
}

.payoff-float-workflow {
    width: 320px;
    border: 1px solid rgba(146, 176, 206, 0.38);
    background: linear-gradient(168deg, rgba(14, 27, 43, 0.99) 0, rgba(20, 40, 63, 0.99) 55%, rgba(24, 48, 73, 0.99) 100%);
    box-shadow: 0 24px 46px rgba(11, 20, 34, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 14px 14px 26px;
}

.payoff-float-workflow .panel-title {
    margin-bottom: 10px;
    font-size: 1rem;
    letter-spacing: 0.01em;
    color: #e8f3ff;
}

.workflow-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.workflow-points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 11px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0, rgba(178, 212, 246, 0.13) 100%);
    color: #d9e8f8;
    font-size: 0.83rem;
    font-weight: 700;
    line-height: 1.25;
    opacity: 0;
    transform: translateY(8px);
}

.workflow-points li::before {
    content: none;
}

.workflow-points li::after {
    content: none;
}

.workflow-points li i {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    color: #425f7e;
    background: linear-gradient(150deg, #f5f2ff, #fffcfb);
    box-shadow: 0 8px 14px rgba(12, 40, 66, 0.44);
}

.workflow-points li span {
    display: block;
    color: #dcecfb;
}

.payoff-stage.payoff-sequence .workflow-points li {
    animation: workflow-point-in 0.45s ease forwards;
}

.payoff-stage.payoff-sequence .workflow-points li:nth-child(1) {
    animation-delay: 0.62s;
}

.payoff-stage.payoff-sequence .workflow-points li:nth-child(2) {
    animation-delay: 0.82s;
}

.payoff-stage.payoff-sequence .workflow-points li:nth-child(3) {
    animation-delay: 1.02s;
}

.payoff-stage.payoff-sequence .workflow-points li:nth-child(4) {
    animation-delay: 1.22s;
}

.payoff-stage.payoff-sequence .workflow-points li:nth-child(5) {
    animation-delay: 1.42s;
}

@keyframes workflow-point-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payoff-float-right {
    right: 30px;
    top: 52px;
}

.payoff-float-device {
    width: auto;
    right: 24px;
    top: 74px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.payoff-device-image {
    display: block;
    width: auto;
    height: 440px;
    filter: drop-shadow(0 18px 30px rgba(41, 23, 12, 0.34));
}

.client-strip {
    margin-top: 34px;
    width: min(1060px, calc(100% - 20px));
    margin-left: auto;
    margin-right: auto;
}

.client-strip-frame {
    width: 100%;
    margin: 0 auto;
}

.client-strip-title {
    margin: 9px auto 0;
    max-width: 66ch;
    text-align: center;
    color: #5a4f59;
    font-size: 1rem;
}

.client-strip-logos {
    margin-top: 10px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.client-logo {
    margin: 0;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    width: 100%;
    max-width: 92px;
    height: auto;
    display: block;
}

.horizontal-story {
    position: relative;
    height: auto;
    margin-top: 96px;
}

.horizontal-story-sticky {
    position: relative;
    overflow: hidden;
    padding: 18px 0 26px;
}

.horizontal-story-head {
    text-align: center;
}

.horizontal-story-head h2 {
    font-size: 2.5rem;
    color: #241c27;
    font-weight: 500;
}

.horizontal-story-head p {
    margin: 12px auto 0;
    max-width: 62ch;
    color: #566073;
    font-size: 1.25rem;
}

.horizontal-story-viewport {
    margin-top: 30px;
    overflow: hidden;
    padding: 0 0 30px;
}

.horizontal-story-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 0 48px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.story-card {
    width: min(440px, 74vw);
    height: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0, rgba(249, 244, 239, 0.96) 100%);
    box-shadow: var(--shadow-card);
}

.story-card-media {
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0, rgba(246, 242, 237, 0.98) 100%);
    overflow: hidden;
}

.story-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lane {
    margin-top: 98px;
}

.pricing-hero {
    margin-top: 30px;
}

.pricing-group {
    margin-top: 64px;
}

.pricing-group-head h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.05rem);
}

.pricing-group-head p {
    margin: 10px 0 0;
    color: #5a4f59;
}

.pricing-plan-grid {
    margin-top: 22px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.pricing-plan-card {
    border-radius: 12px;
    border: 1px solid rgba(237, 237, 237, 0.86);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-card);
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.pricing-plan-head h3 {
    margin: 0;
    font-size: 1.28rem;
    color: #2f1f1f;
}

.pricing-plan-head p {
    margin: 8px 0 0;
    color: #5a4f59;
}

.pricing-price-row {
    margin-top: 14px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.2vw, 2.15rem);
    color: #213a56;
    line-height: 1;
}

.pricing-period {
    color: #5a4f59;
    font-size: 0.92rem;
    font-weight: 600;
}

.pricing-subprice {
    margin: 7px 0 0;
    color: #6f6270;
    font-size: 0.9rem;
    min-height: 42px;
}

.pricing-feature-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.pricing-feature-list li {
    position: relative;
    padding-left: 22px;
    color: #4f4752;
    font-size: 0.92rem;
}

.pricing-feature-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--brand-orange);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-plan-card .button {
    margin-top: auto;
    padding: 11px 16px;
}

.pricing-compare {
    margin-top: 96px;
}

.pricing-compare-shell {
    margin-top: 20px;
    border-radius: 22px;
    overflow: auto;
    border: 1px solid rgba(195, 172, 159, 0.6);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
}

.pricing-compare-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(187, 174, 172, 0.4);
    text-align: left;
    font-size: 0.93rem;
}

.pricing-compare-table th {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #4a3f50;
    background: rgba(255, 255, 255, 0.72);
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
    color: #2f1f1f;
    font-weight: 700;
    width: 29%;
}

.pricing-compare-table td {
    color: #4f4752;
}

.pricing-compare-table td i {
    color: var(--brand-orange);
    font-size: 0.92rem;
}

.pricing-faq {
    margin-top: 108px;
}

.pricing-faq-layout {
    display: grid;
    grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.pricing-faq-intro h2 {
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #0f0d12;
}

.pricing-faq-list {
    border-top: 1px solid rgba(206, 194, 186, 0.9);
}

.pricing-faq-item {
    border-bottom: 1px solid rgba(206, 194, 186, 0.9);
}

.pricing-faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 22px 62px 22px 0;
    color: #1f1a1d;
    font-size: 1.22rem;
    line-height: 1.35;
}

.pricing-faq-item summary::-webkit-details-marker {
    display: none;
}

.pricing-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 240, 232, 0.92);
    color: #1e1a1d;
    font-size: 1.35rem;
    font-weight: 500;
}

.pricing-faq-item[open] summary::after {
    content: "−";
}

.pricing-faq-answer {
    padding: 0 62px 20px 0;
}

.pricing-faq-answer p {
    margin: 0;
    max-width: 62ch;
    color: #5a4f59;
}

.brand-color {
    color: #ff5921;
}

.brand-divider {
    margin-top: 72px;
    background: #2f2f50;
    position: relative;
    overflow: hidden;
    padding: 56px 0;
}

.brand-divider::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    top: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 104, 168, 0.24) 0, rgba(26, 104, 168, 0) 68%);
    pointer-events: none;
}

.brand-divider-wrap {
    width: min(1140px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brand-divider-logo {
    width: min(220px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.42));
}

.brand-divider-copy h2 {
    margin: 0;
    color: #f6f8ff;
    font-size: clamp(2.55rem, 4vw, 3.4rem);
    line-height: 1.12;
}

.brand-divider-copy p {
    margin: 14px 0 0;
    color: rgba(216, 226, 245, 0.9);
    font-size: 1.02rem;
    max-width: 70ch;
}

.lane-head h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

.lane-head p {
    margin: 10px 0 0;
    color: #5a4f59;
    font-size: 1.04rem;
}

.lane-head-centered {
    text-align: center;
}

.lane-head-centered p {
    margin-left: auto;
    margin-right: auto;
}

.target-hero-grid {
    margin: 16px auto 0;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.target-hero-card {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(145deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.32)),
        url('../img/gradient-orange2.jpg') center / cover no-repeat;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.target-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 64%);
    transform: translateX(-128%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.target-hero-card::after {
    content: "";
    position: absolute;
    left: -22%;
    top: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}


.target-hero-media {
    position: relative;
    height: 248px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.target-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: normal;
    opacity: 1;
}

.target-hero-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 220px;
    padding: 24px;
}

.target-hero-label {
    margin: 0;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
    font-weight: 700;
}

.target-hero-body h3 {
    margin-top: 0;
    font-size: clamp(1.36rem, 2.4vw, 1.74rem);
    line-height: 1.2;
    color: #ffffff;
    font-weight: 300;
}

.target-hero-body p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.target-hero-body span {
    margin-top: auto;
    padding-top: 20px;
    color: #ffffff;
    font-weight: 700;
}

.target-hero-artists .target-hero-body span,
.target-hero-agencies .target-hero-body span {
    margin-top: 16px;
    padding-top: 0;
}

.target-hero-card-wide {
    grid-column: 1 / -1;
}

.target-hero-team {
    background:
        linear-gradient(145deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.36)),
        url('../img/gradient-black.jpg') center / cover no-repeat;
}

.target-hero-team::after {
    left: auto;
    right: -12%;
    top: -140px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(172, 179, 193, 0.2) 0, rgba(122, 132, 148, 0) 72%);
}

.target-hero-team .target-hero-label {
    color: #586474;
}

.target-hero-team .target-hero-body h3 {
    color: #ffffff;
}

.target-hero-team .target-hero-body p {
    color: rgba(255, 255, 255, 0.82);
}

.target-hero-team .target-hero-body span {
    color: #ffffff;
}

.target-hero-body-wide {
    padding: 24px 28px 28px;
}

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

.target-hero-list li {
    position: relative;
    padding-left: 22px;
    color: #4e5a6b;
    font-size: 0.98rem;
}

.target-hero-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.24em;
    color: var(--brand-orange);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1;
}

.target-hero-agencies {
    background:
        linear-gradient(145deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
        url('../img/gradient-blue.jpg') center / cover no-repeat;
}

.target-hero-agencies::after {
    background: radial-gradient(circle, rgba(145, 198, 241, 0.32) 0, rgba(145, 198, 241, 0) 72%);
}

.target-hero-agencies .target-hero-label {
    color: #1a68a8;
}

.target-hero-agencies .target-hero-body h3 {
    color: #ffffff;
}

.target-hero-agencies .target-hero-body p {
    color: rgba(255, 255, 255, 0.82);
}

.target-hero-agencies .target-hero-body span {
    color: #ffffff;
}

.card-grid {
    margin-top: 18px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-card,
.feature-card {
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 20px;
}

.route-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.route-card:hover {
    transform: translateY(-2px);
    border-color: #edb39a;
}

.route-card h3,
.feature-card h3 {
    font-size: 1rem;
}

.route-card p,
.feature-card p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--ink-500);
}

.route-card span {
    margin-top: 14px;
    display: inline-block;
    color: var(--brand-red);
    font-weight: 600;
}

.sticky-suite {
    margin-top: 128px;
}

.suite-layout {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.suite-payoff {
    position: sticky;
    top: 94px;
}

.suite-payoff h2 {
    margin-top: 16px;
    font-size: clamp(1.08rem, 1.8vw, 1.32rem);
    line-height: 1.08;
    color: #2a1c1f;
    font-weight: 500;
}

.suite-payoff p {
    margin: 16px 0 0;
    color: #5a4f59;
    font-size: 1.06rem;
}

.suite-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suite-actions .button {
    padding: 12px 18px;
}

.suite-cards {
    display: grid;
    gap: 16px;
}

.suite-card {
    border-radius: 12px;
    border: 1px solid rgba(237, 237, 237, 0.86);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.suite-card-wide {
    grid-column: span 2;
    min-height: 220px;
}

.suite-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.suite-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #135384;
}

.suite-card h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2f1f1f;
}

.suite-card p {
    margin: 12px 0 0;
    color: #5a4f59;
    font-size: 0.98rem;
}

.suite-card ul {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.suite-card li {
    position: relative;
    padding-left: 22px;
    color: #4f4752;
    font-size: 0.92rem;
}

.suite-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.68em;
    transform: translateY(-50%);
    color: var(--brand-orange);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}


.newsite-post-grid {
    margin-top: 24px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.newsite-post-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    border: 1px solid rgba(237, 237, 237, 0.9);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.newsite-post-image {
    aspect-ratio: 1.5 / 1;
    background: #f1ede8;
}

.newsite-post-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsite-post-meta {
    padding: 16px 20px 0;
    color: var(--ink-500);
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.newsite-post-card h2 {
    margin: 16px 0 0;
    padding: 0 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2f1f1f;
}

.newsite-post-card p {
    margin: 10px 0 0;
    padding: 0 20px 20px;
    color: #5a4f59;
    font-size: 0.98rem;
}

.home-blog-carousel {
    overflow: visible;
}

.home-carousel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.home-carousel-head h2 {
    margin-top: 8px;
    color: #171116;
    font-size: 2.5rem;
    line-height: 0.98;
}

.home-carousel-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-carousel-buttons {
    display: flex;
    gap: 8px;
}

.home-carousel-button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--ink-900);
    box-shadow: var(--shadow-card);
    cursor: pointer;
}

.home-carousel-button:hover {
    color: var(--brand-red);
}

.home-blog-carousel-viewport {
    margin-top: 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.home-blog-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.home-blog-carousel-track {
    display: flex;
    gap: 18px;
    padding: 2px 2px 24px;
}

.home-blog-card {
    flex: 0 0 min(390px, calc(100vw - 42px));
    scroll-snap-align: start;
}

.help-card-grid {
    margin-top: 24px;
}

.resource-layout {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.resource-stack {
    margin-top: 24px;
    display: grid;
    gap: 18px;
}

.resource-sidebar {
    display: grid;
    gap: 16px;
}

.resource-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-900);
    text-decoration: none;
    font-weight: 500;
}

.resource-sidebar-card,
.resource-article,
.changelog-card {
    border-radius: 12px;
    border: 1px solid rgba(237, 237, 237, 0.9);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
}

.resource-sidebar-card {
    padding: 18px;
}

.resource-sidebar-list {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.resource-sidebar-list a {
    color: var(--ink-500);
    text-decoration: none;
    line-height: 1.45;
}

.resource-sidebar-list a.is-active,
.resource-sidebar-list a:hover {
    color: var(--brand-red);
}

.resource-article {
    padding: 28px;
}

.resource-article-full {
    width: 100%;
    max-width: none;
}

.resource-back-top {
    width: fit-content;
}

.resource-article-grid {
    display: grid;
    gap: 16px;
}

.resource-hero-media {
    margin-bottom: 22px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1ede8;
}

.resource-hero-media img {
    display: block;
    width: 100%;
    height: auto;
}

.resource-richtext {
    color: #3f4e61;
}

.resource-richtext > *:first-child {
    margin-top: 0;
}

.resource-richtext h1,
.resource-richtext h2,
.resource-richtext h3,
.resource-richtext h4 {
    color: #2f1f1f;
    font-weight: 500;
    line-height: 1.16;
}

.resource-richtext h2 {
    font-size: 1.65rem;
    margin: 1.6em 0 0.55em;
}

.resource-richtext h3 {
    font-size: 1.24rem;
    margin: 1.45em 0 0.5em;
}

.resource-richtext p,
.resource-richtext li {
    color: #4f4752;
    font-size: 1rem;
}

.resource-richtext a {
    color: var(--brand-red);
}

.resource-richtext img,
.resource-richtext iframe,
.resource-richtext video {
    max-width: 100%;
    border-radius: 12px;
}

.resource-richtext pre,
.resource-richtext code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.resource-richtext pre {
    overflow-x: auto;
    padding: 16px;
    border-radius: 12px;
    background: #f6efe9;
}

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

.resource-richtext th,
.resource-richtext td {
    border: 1px solid var(--line);
    padding: 10px 12px;
    text-align: left;
}

.changelog-list {
    margin-top: 24px;
    display: grid;
    gap: 18px;
}

.changelog-card {
    padding: 24px 28px;
}


.legal-article {
    margin: 24px auto 0;
}
.changelog-card-date {
    margin-bottom: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-500);
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.quick-links a {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-900);
    text-decoration: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 500;
}

.newsite-footer {
    margin-top: 64px;
    border-top: 1px solid rgba(18, 37, 63, 0.1);
    background: rgba(255, 255, 255, 0.75);
}

.footer-grid {
    padding: 30px 0;
    display: grid;
    grid-template-columns: 1.9fr 1fr 1fr 1fr;
    gap: 18px;
}

.footer-grid a {
    display: block;
    color: var(--ink-500);
    text-decoration: none;
    margin-top: 6px;
}

.footer-grid a:hover {
    color: var(--ink-900);
}

.footer-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-brand-logo {
    display: block;
    height: 24px;
    width: auto;
}

.footer-copy {
    margin: 10px 0 0;
    color: var(--ink-500);
    max-width: 40ch;
}

.footer-bottom {
    border-top: 1px solid rgba(18, 37, 63, 0.08);
    color: var(--ink-500);
    padding: 14px 0 22px;
    font-size: 0.87rem;
}

.reveal {
    animation: none;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) and (min-width: 831px) {
    .newsite-nav {
        gap: 18px;
    }

    .newsite-nav .nav-link-optional {
        display: none;
    }
}

@media (max-width: 1020px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
    }

    .payoff-hero {
        padding-top: 54px;
    }

    .payoff-stage-wrap {
        margin-top: 42px;
        margin-bottom: 48px;
        padding: 44px 34px;
        border-radius: 22px;
    }

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

    .payoff-board {
        width: 100%;
    }

    .payoff-float-left {
        left: 0;
    }

    .payoff-float-workflow {
        width: 350px;
    }

    .payoff-float-right {
        right: 0;
    }

    .payoff-device-image {
        height: 490px;
    }

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

    .audience-story-row,
    .audience-story-row-reverse {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .audience-hero {
        padding: 0;
    }

    .audience-hero-boxed {
        padding: 28px 34px 0;
    }

    .audience-hero-media {
        min-height: 280px;
        margin-bottom: -58px;
    }

    .audience-hero-media .audience-hero-overlay-image {
        bottom: -46px;
        width: clamp(100px, 18vw, 170px);
    }

    .audience-section-intro {
        padding-top: 72px;
        align-items: flex-start;
    }

    .audience-showcase-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .feature-detail-row {
        grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
    }

    .audience-story-row-reverse .audience-story-copy,
    .audience-story-row-reverse .audience-story-media {
        order: initial;
    }

    .audience-story-media {
        min-height: 340px;
    }

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

    .audience-brand-card {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 20px;
        padding: 24px;
    }

    .stats-grid,
    .card-grid,
    .card-grid.three-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .pricing-plan-card {
        min-height: 0;
    }

    .brand-divider-wrap {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 20px;
    }

    .suite-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .suite-payoff {
        position: static;
    }

    .client-strip-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .horizontal-story {
        height: auto;
        margin-top: 72px;
    }

    .horizontal-story-sticky {
        position: static;
        padding: 0;
    }

    .horizontal-story-viewport {
        margin-top: 22px;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .horizontal-story-viewport::-webkit-scrollbar {
        display: none;
    }

    .horizontal-story-track {
        padding: 0 24px;
    }

    .story-card {
        width: min(420px, 82vw);
    }

    .story-card-media {
        height: 340px;
    }

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

@media (max-width: 830px) {
    body.newsite-landing main > section + section {
        margin-top: var(--landing-section-gap-mobile) !important;
    }

    body.newsite-landing main > section.client-strip {
        margin-top: 22px !important;
    }

    .payoff-hero {
        margin-top: 0;
        padding-top: 38px;
        padding-bottom: 10px;
    }

    .payoff-hero h1 {
        font-size: clamp(2rem, 8.8vw, 2.75rem);
        max-width: 13ch;
    }

    .payoff-hero .lead {
        max-width: 36ch;
    }

    .payoff-stage-wrap {
        width: calc(100% - 26px);
        margin-top: 34px;
        margin-bottom: 36px;
        padding: 26px 18px;
        border-radius: 18px;
    }

    .suite-payoff h2,
    .lane-head h2 {
        font-size: clamp(1.24rem, 5.8vw, 1.56rem);
    }

    .suite-card h4 {
        font-size: 0.96rem;
    }

    .payoff-metrics {
        grid-template-columns: minmax(0, 1fr);
    }

    .payoff-stage {
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-bottom: 0;
    }

    .payoff-board {
        width: 100%;
    }

    .payoff-float {
        display: none;
    }

    .target-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .target-hero-card-wide {
        grid-column: auto;
    }

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

    .home-carousel-actions {
        width: 100%;
        justify-content: space-between;
    }

    .home-carousel-head h2 {
        max-width: 14ch;
        font-size: clamp(1.8rem, 8vw, 2.55rem);
    }

    .target-hero-body-wide {
        padding: 20px 22px 24px;
    }

    .audience-hero {
        margin-top: 22px;
        padding: 0;
    }

    .audience-hero-boxed .audience-hero-copy h1 {
        max-width: 13ch;
    }

    .audience-hero-boxed {
        padding-bottom: 0;
    }

    .audience-hero-media {
        min-height: 210px;
        margin-top: 48px;
        margin-bottom: -90px;
        border-radius: 14px;
    }

    .audience-hero-media .audience-hero-overlay-image {
        right: 4%;
        bottom: -42px;
        width: clamp(82px, 24vw, 128px);
        max-width: 30%;
    }

    .audience-section-intro {
        padding-top: 52px;
        flex-direction: column;
        gap: 18px;
    }

    .audience-section-intro h2 {
        font-size: clamp(1.8rem, 11vw, 2.6rem);
    }

    .audience-section-intro .button {
        width: 100%;
    }

    .feature-detail-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .feature-detail-thumb {
        max-width: 320px;
        justify-self: start;
    }

    .audience-story-media {
        min-height: 280px;
    }

    .horizontal-story {
        margin-top: 52px;
    }

    .horizontal-story-head {
        width: min(1140px, calc(100% - 26px));
        margin: 0 auto;
    }

    .horizontal-story-head p {
        max-width: 34ch;
    }

    .horizontal-story-track {
        padding: 0 13px;
        gap: 14px;
    }

    .story-card {
        width: min(360px, calc(100vw - 46px));
    }

    .story-card-media {
        height: 100%;
    }

    .pricing-plan-grid,
    .pricing-plan-grid-two {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .pricing-group {
        margin-top: 52px;
    }

    .pricing-compare {
        margin-top: 56px;
    }

    .pricing-compare-table {
        min-width: 700px;
    }

    .pricing-faq-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .pricing-faq-intro h2 {
        font-size: clamp(2.2rem, 9vw, 4rem);
    }

    .brand-divider {
        margin-top: 54px;
        padding: 40px 0;
    }

    .brand-divider-wrap {
        width: min(1140px, calc(100% - 26px));
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        text-align: center;
    }

    .brand-divider-logo {
        width: min(180px, 68vw);
        margin: 0 auto;
    }

    .audience-brand-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        padding: 22px;
    }

    .audience-brand-card-logo {
        max-width: 110px;
    }

    .brand-divider-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .suite-cards {
        grid-template-columns: minmax(0, 1fr);
    }

    .suite-card,
    .suite-card-wide {
        grid-column: auto;
        min-height: 0;
    }

    .client-strip-frame {
        width: 100%;
        border-radius: 18px;
    }

    .client-strip {
        width: calc(100% - 20px);
    }

    .client-strip-logos {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
    }

    .client-logo {
        min-width: 0;
        min-height: 50px;
    }

    .client-logo img {
        max-width: 58px;
    }

    .target-hero-card {
        min-height: 0;
    }

    .target-hero-media {
        height: 220px;
    }

    .newsite-wrap {
        width: min(1140px, calc(100% - 26px));
    }

    .header-mobile-actions {
        display: inline-flex;
    }

    .header-actions {
        display: none;
    }

    .menu-button {
        display: inline-block;
    }

    .newsite-nav {
        display: none;
        position: absolute;
        right: 13px;
        top: 76px;
        width: min(220px, calc(100vw - 26px));
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow);
        padding: 14px;
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        cursor: pointer;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        padding: 6px;
        border-radius: 10px;
        background: rgba(255, 246, 241, 0.78);
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(4, auto);
        grid-auto-flow: column;
    }

    .nav-dropdown-menu::before {
        content: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
        transform: none;
    }

    .newsite-nav.is-open {
        display: flex;
    }

    .newsite-nav .button {
        width: 100%;
    }

    .newsite-nav .nav-language-switcher {
        display: none;
    }

    .newsite-nav .nav-signup-mobile {
        display: inline-flex;
    }

    .mobile-language-choice {
        border-top: 1px solid var(--line);
        margin-top: 2px;
        padding-top: 10px;
        display: grid;
        gap: 6px;
    }

    .mobile-language-choice a {
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 8px;
        padding: 8px 10px;
        color: var(--ink-800);
        font-size: 0.9rem;
        text-decoration: none;
    }

    .mobile-language-choice a:hover,
    .mobile-language-choice a.is-active {
        background: rgba(255, 89, 33, 0.08);
        color: var(--brand-red);
    }

    h1 {
        font-size: clamp(1.8rem, 10vw, 2.65rem);
    }

    .sticky-suite {
        margin-top: 64px;
    }
}

@media (max-width: 640px) {
    .payoff-hero .hero-switch {
        margin-top: 12px;
    }

    .payoff-hero .hero-chip {
        flex: 1 1 auto;
        min-width: 95px;
    }

    .payoff-hero .hero-progress {
        margin-top: 14px;
    }

    .payoff-board-action {
        font-size: 0.75rem;
        padding: 6px 8px;
    }

    .hero-progress-dot {
        width: 26px;
    }

    .stats-grid,
    .card-grid,
    .card-grid.three-up,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .client-logo {
        min-height: 44px;
    }

    .client-logo img {
        max-width: 46px;
    }

    .client-strip-title {
        margin-top: 0;
    }

    .target-hero-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .audience-hero-boxed {
        padding: 18px;
        border-radius: 20px;
    }

    .audience-hero-copy .lead,
    .audience-story-copy p:not(.eyebrow) {
        font-size: 1rem;
    }

    .audience-story-list li {
        font-size: 0.94rem;
    }

    .suite-payoff h2,
    .lane-head h2,
    .audience-story-copy h2 {
        font-size: clamp(1.16rem, 6.2vw, 1.36rem);
    }

    .audience-showcase-copy h2 {
        font-size: clamp(1.16rem, 6.2vw, 1.36rem);
    }

    .suite-card h4 {
        font-size: 0.92rem;
    }

    .audience-story-media {
        min-height: 220px;
    }

    .audience-feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .horizontal-story-head h2 {
        font-size: clamp(1.16rem, 6.2vw, 1.36rem);
    }

    .horizontal-story-head p {
        font-size: 0.95rem;
    }

    .story-card-media {
        height: 100%;
    }

    .pricing-plan-card {
        padding: 16px;
    }

    .pricing-compare-table {
        min-width: 620px;
    }

    .pricing-faq-item summary {
        font-size: 1.04rem;
        padding-right: 52px;
    }

    .pricing-faq-answer {
        padding-right: 0;
    }

    .audience-brand-card {
        padding: 18px;
        border-radius: 20px;
    }

    .audience-brand-card-copy p {
        font-size: 0.96rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-state.is-active,
    .panel-state.is-active,
    .reveal {
        animation: none;
    }

    .workflow-points li {
        animation: none;
        opacity: 1;
        transform: none;
    }

}

@media (max-width: 1020px) {
    .newsite-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .resource-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}
