:root {
    --cx-ink: #102654;
    --cx-ink-deep: #071735;
    --cx-blue: #155ad8;
    --cx-blue-soft: #eaf1ff;
    --cx-coral: #e95d57;
    --cx-coral-soft: #fdeae6;
    --cx-ochre: #c98418;
    --cx-mint: #198b73;
    --cx-plum: #78528d;
    --cx-paper: #f7f3eb;
    --cx-paper-deep: #eee8dd;
    --cx-white: #fffefb;
    --cx-text: #27344c;
    --cx-muted: #657086;
    --cx-line: #d9d5cc;
    --cx-line-blue: #cad5ea;
    --cx-serif: "DM Serif Display", Georgia, "Times New Roman", serif;
    --cx-sans: "DM Sans", "Segoe UI", Arial, sans-serif;
    --cx-shell: min(1180px, calc(100vw - 48px));
    --cx-shadow: 0 28px 80px rgba(16, 38, 84, 0.13);
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
    overflow-x: clip;
}

body.celebrax-home-retention,
body.celebrax-home-retention * {
    box-sizing: border-box;
}

body.celebrax-home-retention {
    margin: 0;
    min-width: 320px;
    min-height: 100%;
    overflow-x: clip;
    color: var(--cx-text);
    background: var(--cx-paper);
    font-family: var(--cx-sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.celebrax-home-retention button,
body.celebrax-home-retention input,
body.celebrax-home-retention select,
body.celebrax-home-retention textarea {
    font: inherit;
}

body.celebrax-home-retention button,
body.celebrax-home-retention a {
    -webkit-tap-highlight-color: transparent;
}

body.celebrax-home-retention a {
    color: inherit;
}

body.celebrax-home-retention img,
body.celebrax-home-retention svg {
    display: block;
}

body.celebrax-home-retention svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.celebrax-home-retention h1,
body.celebrax-home-retention h2,
body.celebrax-home-retention h3,
body.celebrax-home-retention p,
body.celebrax-home-retention ul,
body.celebrax-home-retention ol {
    margin-top: 0;
}

body.celebrax-home-retention section {
    scroll-margin-top: 94px;
}

.skip-link {
    position: fixed;
    z-index: 4000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--cx-white);
    background: var(--cx-ink);
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.home-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.5vw, 34px);
    width: 100%;
    min-height: 78px;
    padding: 12px max(24px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid rgba(16, 38, 84, 0.1);
    background: rgba(247, 243, 235, 0.93);
    backdrop-filter: blur(18px);
    transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-header.is-scrolled {
    min-height: 70px;
    background: rgba(255, 254, 251, 0.96);
    box-shadow: 0 10px 40px rgba(16, 38, 84, 0.08);
}

.home-logo {
    display: block;
    flex: 0 0 auto;
}

.home-logo img {
    width: auto;
    height: 45px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2vw, 28px);
}

.main-nav > a {
    position: relative;
    color: #4d5970;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav > a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--cx-blue);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 180ms ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.main-nav > a[aria-current="true"] {
    color: var(--cx-ink);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.main-nav > a[aria-current="true"]::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.header-demo,
.nav-demo-mobile {
    border: 0;
    cursor: pointer;
}

.header-demo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 17px;
    color: var(--cx-white);
    background: var(--cx-ink);
    border-radius: 3px;
    font-size: 0.84rem;
    font-weight: 700;
    transition: background 180ms ease, transform 180ms ease;
}

.header-demo svg {
    width: 17px;
    height: 17px;
}

.header-demo:hover {
    background: var(--cx-blue);
    transform: translateY(-1px);
}

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

.celebrax-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(16, 38, 84, 0.22);
    border-radius: 3px;
    color: var(--cx-ink);
    background: transparent;
    cursor: pointer;
}

.celebrax-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.celebrax-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.celebrax-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.celebrax-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.home-header > .celebrax-language-switcher {
    z-index: 5;
    flex: 0 0 auto;
    margin-left: auto !important;
}

.editorial-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
    gap: clamp(44px, 7vw, 100px);
    width: var(--cx-shell);
    min-height: 720px;
    margin: 0 auto;
    padding: clamp(70px, 9vw, 118px) 0 clamp(76px, 9vw, 112px);
    align-items: center;
}

.editorial-hero::before {
    position: absolute;
    z-index: -1;
    top: 34px;
    right: -15vw;
    width: 52vw;
    height: 1px;
    content: "";
    background: var(--cx-line);
}

.editorial-hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
    color: var(--cx-blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 31px;
    height: 1px;
    background: currentColor;
}

.editorial-hero h1 {
    max-width: 680px;
    margin-bottom: 27px;
    color: var(--cx-ink);
    font-family: var(--cx-serif);
    font-size: clamp(3.35rem, 5.8vw, 5.85rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

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

.hero-lede {
    max-width: 650px;
    margin-bottom: 33px;
    color: #505d73;
    font-size: clamp(1.04rem, 1.6vw, 1.22rem);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 43px;
}

.button {
    display: inline-flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button svg {
    width: 19px;
    height: 19px;
}

.button-primary {
    color: var(--cx-white);
    background: var(--cx-blue);
    box-shadow: 0 12px 28px rgba(21, 90, 216, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
    color: var(--cx-white);
    background: var(--cx-ink);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(16, 38, 84, 0.22);
}

.button-quiet {
    color: var(--cx-ink);
    background: transparent;
    border-color: var(--cx-line);
}

.button-quiet:hover,
.button-quiet:focus-visible {
    border-color: var(--cx-ink);
    background: var(--cx-white);
}

.button-outline {
    color: var(--cx-ink);
    background: transparent;
    border-color: rgba(16, 38, 84, 0.35);
}

.button-outline:hover,
.button-outline:focus-visible {
    color: var(--cx-white);
    background: var(--cx-ink);
    border-color: var(--cx-ink);
}

.button-paper {
    color: var(--cx-ink);
    background: var(--cx-paper);
}

.button-paper:hover,
.button-paper:focus-visible {
    color: var(--cx-white);
    background: var(--cx-coral);
    transform: translateY(-2px);
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 680px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-facts li {
    padding-top: 13px;
    border-top: 1px solid var(--cx-line);
}

.hero-facts strong,
.hero-facts span {
    display: block;
}

.hero-facts strong {
    margin-bottom: 2px;
    color: var(--cx-ink);
    font-size: 0.88rem;
}

.hero-facts span {
    color: var(--cx-muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

.hero-product {
    position: relative;
    min-height: 590px;
    isolation: isolate;
}

.hero-product::before {
    position: absolute;
    z-index: -2;
    inset: 2% -18% 4% 13%;
    content: "";
    background: #dfe8fa;
    transform: rotate(-2.5deg);
}

.hero-product::after {
    position: absolute;
    z-index: -1;
    right: -13%;
    bottom: 1%;
    width: 48%;
    height: 38%;
    content: "";
    background-image: radial-gradient(rgba(16, 38, 84, 0.21) 1px, transparent 1px);
    background-size: 12px 12px;
}

.event-preview {
    position: absolute;
    z-index: 2;
    top: 24px;
    right: 2%;
    width: min(520px, 90%);
    overflow: hidden;
    border: 1px solid rgba(16, 38, 84, 0.16);
    border-radius: 7px;
    background: var(--cx-white);
    box-shadow: var(--cx-shadow);
    transform: rotate(1.2deg);
}

.event-preview-bar {
    display: grid;
    grid-template-columns: 58px 1fr 24px;
    min-height: 42px;
    padding: 0 14px;
    align-items: center;
    color: #7d8491;
    background: #f4f1eb;
    border-bottom: 1px solid #e2ded6;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b8b5af;
}

.browser-dots i:first-child {
    background: #df7b75;
}

.event-preview-bar small {
    overflow: hidden;
    font-size: 0.65rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-lock svg {
    width: 13px;
    height: 13px;
}

.event-preview-body {
    position: relative;
    min-height: 465px;
    padding: 52px 52px 45px;
    color: #f8f3ea;
    background:
        linear-gradient(rgba(7, 23, 53, 0.86), rgba(7, 23, 53, 0.94)),
        radial-gradient(circle at 80% 15%, rgba(233, 93, 87, 0.4), transparent 34%),
        #071735;
}

.event-preview-body::after {
    position: absolute;
    right: 24px;
    bottom: 26px;
    width: 138px;
    height: 138px;
    border: 1px solid rgba(247, 243, 235, 0.18);
    border-radius: 50%;
    content: "";
}

.event-date {
    display: inline-block;
    margin-bottom: 64px;
    color: #e7c68f;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.event-preview-body > p {
    margin-bottom: 9px;
    color: rgba(248, 243, 234, 0.68);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-preview-body h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    color: inherit;
    font-family: var(--cx-serif);
    font-size: clamp(2.7rem, 4.8vw, 4.4rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.94;
}

.event-preview-body h2 em {
    color: #e7c68f;
}

.event-preview-meta {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 34px;
    color: rgba(248, 243, 234, 0.77);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-preview-meta i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
}

.event-preview-body > a {
    position: relative;
    z-index: 3;
    display: inline-flex;
    min-height: 39px;
    padding: 0 17px;
    align-items: center;
    color: var(--cx-ink);
    background: #e7c68f;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}

.hero-dashboard-card,
.hero-update-card {
    position: absolute;
    z-index: 4;
    color: var(--cx-text);
    background: var(--cx-white);
    border: 1px solid rgba(16, 38, 84, 0.15);
    box-shadow: 0 20px 50px rgba(16, 38, 84, 0.17);
}

.hero-dashboard-card {
    bottom: 38px;
    left: -10px;
    width: 244px;
    padding: 20px 21px 18px;
    transform: rotate(-2.2deg);
}

.mini-card-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 13px;
}

.mini-card-heading span {
    color: var(--cx-muted);
    font-size: 0.74rem;
    font-weight: 700;
}

.mini-card-heading strong {
    color: var(--cx-ink);
    font-family: var(--cx-serif);
    font-size: 1.8rem;
    font-weight: 400;
}

.mini-progress {
    height: 4px;
    margin-bottom: 11px;
    overflow: hidden;
    background: #e7e6e1;
}

.mini-progress span {
    display: block;
    width: 74%;
    height: 100%;
    background: var(--cx-coral);
}

.hero-dashboard-card small {
    color: var(--cx-muted);
    font-size: 0.67rem;
}

.hero-update-card {
    display: flex;
    right: -18px;
    bottom: 0;
    align-items: center;
    gap: 12px;
    width: 218px;
    padding: 14px 15px;
}

.update-icon {
    display: grid;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    place-items: center;
    color: white;
    background: var(--cx-mint);
    border-radius: 50%;
}

.update-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.3;
}

.hero-update-card strong,
.hero-update-card small {
    display: block;
}

.hero-update-card strong {
    color: var(--cx-ink);
    font-size: 0.78rem;
}

.hero-update-card small {
    color: var(--cx-muted);
    font-size: 0.66rem;
}

.product-caption {
    position: absolute;
    z-index: 5;
    right: 16px;
    bottom: -34px;
    color: #7b8290;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-proofline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: var(--cx-shell);
    margin: 0 auto;
    border-top: 1px solid var(--cx-line);
    border-bottom: 1px solid var(--cx-line);
}

.home-proofline > div {
    min-height: 157px;
    padding: 29px clamp(18px, 2.7vw, 34px);
    border-right: 1px solid var(--cx-line);
}

.home-proofline > div:first-child {
    padding-left: 0;
}

.home-proofline > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.home-proofline span {
    display: block;
    margin-bottom: 14px;
    color: var(--cx-coral);
    font-family: var(--cx-serif);
    font-size: 1rem;
}

.home-proofline strong {
    display: block;
    margin-bottom: 4px;
    color: var(--cx-ink);
    font-size: 0.93rem;
}

.home-proofline p {
    max-width: 205px;
    margin-bottom: 0;
    color: var(--cx-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.editorial-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    gap: clamp(70px, 10vw, 150px);
    width: var(--cx-shell);
    padding: clamp(110px, 12vw, 168px) 0;
    margin: 0 auto;
    align-items: start;
}

.editorial-intro-copy {
    position: sticky;
    top: 120px;
}

.editorial-intro h2,
.section-heading h2,
.event-kinds-intro h2,
.faq-intro h2,
.payment-clarity h2,
.provider-story h2 {
    color: var(--cx-ink);
    font-family: var(--cx-serif);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.editorial-intro h2 {
    max-width: 650px;
    margin-bottom: 24px;
    font-size: clamp(2.65rem, 4.5vw, 4.45rem);
}

.editorial-intro-copy > p:not(.eyebrow) {
    max-width: 590px;
    margin-bottom: 26px;
    color: var(--cx-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--cx-blue);
    border-bottom: 1px solid currentColor;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.value-ledger {
    border-top: 4px solid var(--cx-ink);
    background: var(--cx-white);
    box-shadow: 18px 22px 0 var(--cx-paper-deep);
}

.ledger-head,
.ledger-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ledger-head {
    padding: 14px 24px;
    color: var(--cx-muted);
    border-bottom: 1px solid var(--cx-line);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ledger-head span:last-child,
.ledger-row strong {
    padding-left: 25px;
    border-left: 1px solid var(--cx-line);
}

.ledger-row {
    padding: 0 24px;
    border-bottom: 1px solid var(--cx-line);
}

.ledger-row span,
.ledger-row strong {
    padding-top: 21px;
    padding-bottom: 21px;
}

.ledger-row span {
    color: #8b8e95;
    font-size: 0.9rem;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.ledger-row strong {
    color: var(--cx-ink);
    font-size: 0.94rem;
}

.ledger-note {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 17px;
    padding: 25px 24px 27px;
    align-items: start;
}

.ledger-note > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--cx-white);
    background: var(--cx-coral);
    border-radius: 50%;
    font-family: var(--cx-serif);
    font-size: 1.2rem;
}

.ledger-note p {
    margin: 0;
    color: var(--cx-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.ledger-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--cx-ink);
    font-size: 0.9rem;
}

.capabilities {
    padding: clamp(100px, 11vw, 150px) max(24px, calc((100vw - 1180px) / 2));
    background: var(--cx-white);
}

.section-heading {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto clamp(55px, 7vw, 84px);
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: end;
}

.section-heading h2 {
    max-width: 740px;
    margin: 0;
    font-size: clamp(2.7rem, 4.8vw, 4.7rem);
}

.section-heading > p {
    margin-bottom: 5px;
    color: var(--cx-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.capability-list {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    border-top: 1px solid var(--cx-line);
}

.capability-item {
    display: grid;
    grid-template-columns: 55px 58px minmax(280px, 1fr) minmax(190px, 0.38fr);
    gap: clamp(15px, 2.5vw, 32px);
    min-height: 146px;
    padding: 27px 0;
    align-items: center;
    border-bottom: 1px solid var(--cx-line);
    transition: background 180ms ease, padding 180ms ease;
}

.capability-item:hover {
    padding-right: 18px;
    padding-left: 18px;
    background: var(--cx-paper);
}

.capability-number {
    color: #9a9da4;
    font-family: var(--cx-serif);
    font-size: 0.95rem;
}

.capability-icon {
    display: grid;
    width: 51px;
    height: 51px;
    place-items: center;
    color: var(--cx-blue);
    background: var(--cx-blue-soft);
}

.capability-icon.coral { color: var(--cx-coral); background: var(--cx-coral-soft); }
.capability-icon.ochre { color: var(--cx-ochre); background: #fbf0dc; }
.capability-icon.mint { color: var(--cx-mint); background: #e1f3ee; }
.capability-icon.blue { color: #176aa4; background: #e2f0f7; }
.capability-icon.plum { color: var(--cx-plum); background: #efe6f2; }

.capability-icon svg {
    width: 24px;
    height: 24px;
}

.capability-item h3 {
    margin-bottom: 6px;
    color: var(--cx-ink);
    font-size: 1.12rem;
}

.capability-item h3 a {
    text-decoration: none;
}

.capability-item h3 a:hover {
    color: var(--cx-blue);
}

.capability-item p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--cx-muted);
    font-size: 0.87rem;
    line-height: 1.65;
}

.capability-result {
    color: #747d8e;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: right;
}

.dashboard-story {
    display: grid;
    grid-template-columns: minmax(300px, 0.67fr) minmax(580px, 1.33fr);
    gap: clamp(60px, 8vw, 115px);
    padding: clamp(100px, 11vw, 150px) max(24px, calc((100vw - 1180px) / 2));
    color: #dce5f6;
    background: var(--cx-ink-deep);
    align-items: center;
}

.eyebrow-light {
    color: #91b8ff;
}

.dashboard-story-copy h2 {
    margin-bottom: 25px;
    color: var(--cx-white);
    font-family: var(--cx-serif);
    font-size: clamp(2.65rem, 4.6vw, 4.55rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.03;
}

.dashboard-story-copy > p:not(.eyebrow) {
    margin-bottom: 32px;
    color: #a8b8d2;
    font-size: 1rem;
    line-height: 1.75;
}

.dashboard-story-copy ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dashboard-story-copy li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: #cbd6e9;
    font-size: 0.88rem;
}

.dashboard-story-copy li span {
    color: #69d7b7;
    font-weight: 800;
}

.dashboard-window {
    position: relative;
    overflow: visible;
    color: var(--cx-text);
    background: #f7f8fb;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 30px 35px 0 rgba(20, 80, 173, 0.2);
}

.dashboard-window .product-caption {
    right: 4px;
    bottom: -29px;
    color: #8fa1be;
}

.dashboard-topbar {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    min-height: 43px;
    padding: 0 16px;
    align-items: center;
    border-bottom: 1px solid #e2e6ed;
    background: #fff;
}

.dashboard-topbar > div {
    display: flex;
    gap: 5px;
}

.dashboard-topbar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c9ced8;
}

.dashboard-topbar i:first-child {
    background: #e77a75;
}

.dashboard-topbar span,
.dashboard-topbar small {
    color: #7a8496;
    font-size: 0.63rem;
}

.dashboard-topbar span {
    text-align: center;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 61px 1fr;
    min-height: 438px;
}

.dashboard-body aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 19px 0;
    background: var(--cx-ink);
}

.dashboard-body aside .aside-brand {
    width: 29px;
    height: 17px;
    margin-bottom: 18px;
    border: 2px solid #fff;
    border-right-color: #6da5ff;
    border-radius: 50%;
}

.dashboard-body aside i {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.dashboard-body aside i.is-active {
    background: #4b85eb;
    border-color: #4b85eb;
    box-shadow: 0 0 0 6px rgba(75, 133, 235, 0.14);
}

.dashboard-content {
    padding: clamp(19px, 3vw, 31px);
}

.dashboard-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.dashboard-welcome small,
.dashboard-welcome strong {
    display: block;
}

.dashboard-welcome small {
    color: #8c96a8;
    font-size: 0.61rem;
}

.dashboard-welcome strong {
    color: var(--cx-ink);
    font-size: clamp(0.86rem, 1.4vw, 1.06rem);
}

.dashboard-welcome button {
    min-height: 33px;
    padding: 0 12px;
    color: #fff;
    background: var(--cx-blue);
    border: 0;
    border-radius: 3px;
    font-size: 0.58rem;
    font-weight: 700;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.dashboard-stats > div {
    padding: 15px;
    background: #fff;
    border: 1px solid #e1e6ef;
}

.dashboard-stats span,
.dashboard-stats strong,
.dashboard-stats small {
    display: block;
}

.dashboard-stats span {
    margin-bottom: 6px;
    color: #7b8799;
    font-size: 0.59rem;
}

.dashboard-stats strong {
    margin-bottom: 3px;
    color: var(--cx-ink);
    font-family: var(--cx-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
}

.dashboard-stats small {
    color: #368977;
    font-size: 0.53rem;
}

.dashboard-lower {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
}

.dashboard-chart,
.dashboard-feed {
    min-height: 177px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e1e6ef;
}

.dashboard-chart > span,
.dashboard-feed > span {
    display: block;
    color: var(--cx-ink);
    font-size: 0.63rem;
    font-weight: 700;
}

.chart-bars {
    display: flex;
    height: 96px;
    gap: 7px;
    align-items: end;
    padding: 10px 4px 5px;
    border-bottom: 1px solid #dfe4ec;
}

.chart-bars i {
    width: 100%;
    height: 48%;
    background: #99b6ea;
}

.chart-bars i:nth-child(2) { height: 66%; }
.chart-bars i:nth-child(3) { height: 42%; }
.chart-bars i:nth-child(4) { height: 82%; background: var(--cx-blue); }
.chart-bars i:nth-child(5) { height: 70%; }
.chart-bars i:nth-child(6) { height: 91%; background: var(--cx-coral); }
.chart-bars i:nth-child(7) { height: 77%; }

.dashboard-chart small {
    color: #9aa3b1;
    font-size: 0.51rem;
}

.dashboard-feed p {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    gap: 7px;
    margin: 13px 0 0;
    align-items: center;
}

.dashboard-feed p i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cx-mint);
}

.dashboard-feed p strong,
.dashboard-feed p small {
    font-size: 0.49rem;
}

.dashboard-feed p strong {
    color: #556174;
}

.dashboard-feed p small {
    color: #9da6b4;
}

.process {
    padding: clamp(110px, 12vw, 170px) max(24px, calc((100vw - 1180px) / 2));
    background: var(--cx-paper);
}

.process .section-heading {
    margin-bottom: 68px;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    border-top: 1px solid var(--cx-line);
    list-style: none;
}

.process-list li {
    position: relative;
    min-height: 260px;
    padding: 28px clamp(20px, 3vw, 41px) 10px;
    border-right: 1px solid var(--cx-line);
}

.process-list li:first-child {
    padding-left: 0;
}

.process-list li:last-child {
    padding-right: 0;
    border-right: 0;
}

.process-list li > span {
    display: inline-block;
    margin-bottom: 72px;
    color: var(--cx-coral);
    font-family: var(--cx-serif);
    font-size: 1rem;
}

.process-list h3 {
    margin-bottom: 10px;
    color: var(--cx-ink);
    font-family: var(--cx-serif);
    font-size: 1.65rem;
    font-weight: 400;
}

.process-list p {
    max-width: 300px;
    margin-bottom: 0;
    color: var(--cx-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.event-kinds {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
    gap: clamp(70px, 10vw, 150px);
    padding: clamp(100px, 11vw, 145px) max(24px, calc((100vw - 1180px) / 2));
    background: #e8e1d5;
    align-items: center;
}

.event-kinds-intro h2 {
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 4.7vw, 4.5rem);
}

.event-kinds-intro > p:not(.eyebrow) {
    max-width: 490px;
    margin-bottom: 0;
    color: #626a79;
    font-size: 0.95rem;
    line-height: 1.75;
}

.event-kinds-list {
    border-top: 1px solid rgba(16, 38, 84, 0.2);
}

.event-kinds-list a {
    display: grid;
    grid-template-columns: 1fr 72px 22px;
    gap: 18px;
    min-height: 104px;
    padding: 14px 3px;
    align-items: center;
    color: var(--cx-ink);
    border-bottom: 1px solid rgba(16, 38, 84, 0.2);
    text-decoration: none;
    transition: padding 180ms ease, background 180ms ease;
}

.event-kinds-list a:hover,
.event-kinds-list a:focus-visible {
    padding-right: 14px;
    padding-left: 14px;
    background: rgba(255, 254, 251, 0.45);
}

.event-kinds-list span {
    font-family: var(--cx-serif);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.event-kinds-list img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.event-kinds-list i {
    color: var(--cx-blue);
    font-style: normal;
    font-size: 1.2rem;
}

.demo-interlude {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 26px 70px;
    padding: clamp(78px, 9vw, 112px) max(24px, calc((100vw - 1180px) / 2));
    color: var(--cx-white);
    background: var(--cx-blue);
}

.demo-interlude .eyebrow {
    grid-column: 1;
    margin: 9px 0 0;
}

.demo-interlude h2 {
    grid-column: 2;
    margin: 0;
    color: var(--cx-white);
    font-family: var(--cx-serif);
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
}

.demo-interlude > p:not(.eyebrow) {
    grid-column: 2;
    max-width: 650px;
    margin: 0;
    color: #d8e4fb;
    font-size: 1rem;
}

.demo-interlude > div {
    display: flex;
    grid-column: 2;
    flex-wrap: wrap;
    gap: 16px 25px;
    align-items: center;
}

.demo-interlude > div > a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

body.celebrax-home-retention .pricing.pricing-comparison {
    padding: clamp(105px, 12vw, 170px) max(24px, calc((100vw - 1280px) / 2));
    color: var(--cx-text);
    background: var(--cx-white);
}

body.celebrax-home-retention .pricing-shell {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

body.celebrax-home-retention .pricing-heading {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

body.celebrax-home-retention .pricing-eyebrow {
    display: inline-block;
    margin-bottom: 17px;
    padding: 0;
    color: var(--cx-blue);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.celebrax-home-retention .pricing-heading .section-title {
    margin-bottom: 19px;
    color: var(--cx-ink);
    font-family: var(--cx-serif);
    font-size: clamp(2.8rem, 5vw, 4.85rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-shadow: none;
}

body.celebrax-home-retention .pricing-heading .section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: var(--cx-muted);
    font-size: 1rem;
}

body.celebrax-home-retention .pricing-promise {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto 42px;
    padding: 20px 24px;
    color: var(--cx-text);
    background: var(--cx-paper);
    border: 1px solid var(--cx-line);
    border-radius: 0;
    box-shadow: none;
}

body.celebrax-home-retention .pricing-promise-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--cx-white);
    background: var(--cx-coral);
    border-radius: 50%;
    font-family: var(--cx-serif);
}

body.celebrax-home-retention .pricing-promise strong {
    display: block;
    margin-bottom: 2px;
    color: var(--cx-ink);
    font-size: 0.88rem;
}

body.celebrax-home-retention .pricing-promise p {
    margin: 0;
    color: var(--cx-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

body.celebrax-home-retention .plan-table-wrap {
    overflow: auto;
    border: 1px solid var(--cx-line);
    border-radius: 0;
    background: var(--cx-white);
    box-shadow: 18px 20px 0 var(--cx-paper-deep);
}

body.celebrax-home-retention .plan-table {
    color: var(--cx-text);
    background: var(--cx-white);
}

body.celebrax-home-retention .plan-table th,
body.celebrax-home-retention .plan-table td {
    border-color: var(--cx-line);
}

body.celebrax-home-retention .plan-table thead th {
    color: var(--cx-ink);
    background: #f9f7f2;
}

body.celebrax-home-retention .plan-table .recommended-col,
body.celebrax-home-retention .plan-table .recommended-col .plan-heading {
    background: #edf3ff;
}

body.celebrax-home-retention .plan-table .limited-col,
body.celebrax-home-retention .plan-table .limited-col .plan-heading {
    background: #fff8ed;
}

body.celebrax-home-retention .plan-summary,
body.celebrax-home-retention .plan-mobile-card {
    border-radius: 0;
    box-shadow: none;
}

body.celebrax-home-retention .btn-plan {
    border-radius: 3px;
}

body.celebrax-home-retention .group-row td,
body.celebrax-home-retention .group-row th {
    color: var(--cx-ink);
    background: var(--cx-paper);
}

body.celebrax-home-retention .plan-mobile-card {
    color: var(--cx-text);
    background: var(--cx-white);
    border: 1px solid var(--cx-line);
}

body.celebrax-home-retention .plan-mobile-card.is-recommended,
body.celebrax-home-retention .plan-mobile-card.recommended {
    border-top: 4px solid var(--cx-blue);
}

body.celebrax-home-retention .plan-comparison-loading,
body.celebrax-home-retention .plan-comparison-error {
    color: var(--cx-muted);
}

body.celebrax-home-retention .pricing-note {
    max-width: 850px;
    margin: 40px auto 0;
    color: var(--cx-muted);
    font-size: 0.76rem;
    line-height: 1.6;
    text-align: center;
}

.payment-clarity {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(500px, 1.15fr);
    gap: clamp(70px, 10vw, 145px);
    padding: clamp(100px, 11vw, 150px) max(24px, calc((100vw - 1180px) / 2));
    background: var(--cx-paper);
}

.payment-clarity h2 {
    margin-bottom: 0;
    font-size: clamp(2.55rem, 4.2vw, 4.1rem);
}

.clarity-list {
    border-top: 4px solid var(--cx-ink);
}

.clarity-list article {
    padding: 28px 0;
    border-bottom: 1px solid var(--cx-line);
}

.clarity-list article > span {
    display: block;
    margin-bottom: 9px;
    color: var(--cx-blue);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.clarity-list h3 {
    margin-bottom: 8px;
    color: var(--cx-ink);
    font-size: 1.1rem;
}

.clarity-list p {
    margin: 0;
    color: var(--cx-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.provider-story {
    display: grid;
    grid-template-columns: minmax(330px, 0.85fr) minmax(440px, 1.15fr);
    gap: clamp(70px, 10vw, 145px);
    padding: clamp(105px, 12vw, 165px) max(24px, calc((100vw - 1180px) / 2));
    background: var(--cx-white);
    align-items: center;
}

.provider-story-mark {
    position: relative;
    display: flex;
    min-height: 470px;
    align-items: flex-end;
    padding: 45px;
    overflow: hidden;
    color: var(--cx-white);
    background: var(--cx-coral);
}

.provider-story-mark::before {
    position: absolute;
    top: -75px;
    right: -70px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    content: "";
}

.provider-story-mark::after {
    position: absolute;
    top: 30px;
    right: 33px;
    width: 155px;
    height: 155px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    content: "";
}

.provider-story-mark svg {
    position: absolute;
    top: 52px;
    left: 45px;
    width: 70px;
    height: 70px;
    stroke-width: 1.2;
}

.provider-story-mark span {
    position: relative;
    z-index: 2;
    max-width: 330px;
    font-family: var(--cx-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    letter-spacing: -0.035em;
    line-height: 1.02;
}

.provider-story h2 {
    margin-bottom: 24px;
    font-size: clamp(2.65rem, 4.5vw, 4.45rem);
}

.provider-story-copy > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--cx-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.provider-story ol {
    display: grid;
    gap: 0;
    margin: 0 0 31px;
    padding: 0;
    border-top: 1px solid var(--cx-line);
    list-style: none;
}

.provider-story li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 13px 0;
    color: var(--cx-ink);
    border-bottom: 1px solid var(--cx-line);
    font-size: 0.88rem;
    font-weight: 650;
}

.provider-story li span {
    color: var(--cx-coral);
    font-family: var(--cx-serif);
}

.provider-story-copy > small {
    display: block;
    margin-top: 12px;
    color: var(--cx-muted);
    font-size: 0.7rem;
}

body.celebrax-home-retention .faq.faq-accordion-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(500px, 1.3fr);
    gap: clamp(70px, 10vw, 145px);
    padding: clamp(105px, 12vw, 165px) max(24px, calc((100vw - 1180px) / 2));
    color: var(--cx-text);
    background: var(--cx-paper);
}

.faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-intro h2 {
    margin-bottom: 22px;
    font-size: clamp(2.65rem, 4.4vw, 4.25rem);
}

.faq-intro > p:not(.eyebrow) {
    margin-bottom: 25px;
    color: var(--cx-muted);
    font-size: 0.92rem;
}

.faq-intro > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cx-ink);
    border-bottom: 1px solid var(--cx-line);
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
}

.faq-intro > a img {
    width: 21px;
    height: 21px;
}

body.celebrax-home-retention .faq-accordion {
    display: block;
    max-width: none;
    margin: 0;
    border-top: 4px solid var(--cx-ink);
}

body.celebrax-home-retention .faq-item {
    margin: 0;
    overflow: visible;
    color: var(--cx-text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--cx-line);
    border-radius: 0;
    box-shadow: none;
}

body.celebrax-home-retention .faq-item summary {
    position: relative;
    padding: 24px 52px 24px 0;
    color: var(--cx-ink);
    font-size: 1rem;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

body.celebrax-home-retention .faq-item summary::-webkit-details-marker {
    display: none;
}

body.celebrax-home-retention .faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 4px;
    content: "+";
    color: var(--cx-blue);
    font-family: var(--cx-serif);
    font-size: 1.75rem;
    font-weight: 400;
    transform: translateY(-50%);
}

body.celebrax-home-retention .faq-item[open] summary::after {
    content: "−";
}

body.celebrax-home-retention .faq-answer {
    padding: 0 52px 24px 0;
}

body.celebrax-home-retention .faq-answer p {
    max-width: 650px;
    margin: 0;
    color: var(--cx-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.closing-statement {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
    gap: clamp(70px, 10vw, 145px);
    padding: clamp(95px, 11vw, 150px) max(24px, calc((100vw - 1180px) / 2));
    color: var(--cx-white);
    background: var(--cx-ink);
    align-items: end;
}

.closing-statement h2 {
    max-width: 760px;
    margin: 0;
    color: var(--cx-white);
    font-family: var(--cx-serif);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.closing-statement > div:last-child > p {
    margin-bottom: 24px;
    color: #b6c3d9;
    font-size: 0.97rem;
    line-height: 1.7;
}

.closing-statement > div:last-child > a {
    display: block;
    width: fit-content;
    margin-top: 17px;
    color: #c9d5e9;
    border-bottom: 1px solid rgba(201, 213, 233, 0.4);
    font-size: 0.8rem;
    text-decoration: none;
}

.home-footer {
    padding: 70px max(24px, calc((100vw - 1180px) / 2)) 28px;
    color: #566174;
    background: #f0ece4;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.1fr 1.6fr 0.6fr;
    gap: clamp(45px, 7vw, 100px);
    padding-bottom: 65px;
}

.footer-brand img {
    width: auto;
    height: 49px;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 310px;
    margin: 0;
    color: var(--cx-muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.footer-links div {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-links strong,
.footer-contact strong {
    margin-bottom: 8px;
    color: var(--cx-ink);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
    width: fit-content;
    color: #626d80;
    font-size: 0.76rem;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--cx-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-contact {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    color: #7a8290;
    border-top: 1px solid var(--cx-line);
    font-size: 0.69rem;
}

.footer-bottom p {
    margin: 0;
}

body.celebrax-home-retention :focus-visible {
    outline: 3px solid rgba(21, 90, 216, 0.38);
    outline-offset: 4px;
}

@media (max-width: 1100px) {
    :root {
        --cx-shell: min(100% - 40px, 1040px);
    }

    .home-header {
        padding-right: 20px;
        padding-left: 20px;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav > a {
        font-size: 0.8rem;
    }

    .header-demo {
        padding: 0 13px;
        font-size: 0.75rem;
    }

    .editorial-hero {
        grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
        gap: 40px;
    }

    .editorial-hero h1 {
        font-size: clamp(3rem, 5.6vw, 4.9rem);
    }

    .hero-product {
        min-height: 540px;
    }

    .event-preview {
        width: 94%;
    }

    .event-preview-body {
        min-height: 420px;
        padding: 44px 42px 38px;
    }

    .event-date {
        margin-bottom: 50px;
    }

    .dashboard-story {
        grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1.38fr);
        gap: 50px;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 80px;
    }

    .home-header {
        min-height: 72px;
    }

    .home-logo img {
        height: 42px;
    }

    .header-demo {
        display: none;
    }

    .celebrax-menu-toggle {
        display: flex;
        order: 5;
    }

    .home-header > .celebrax-language-switcher {
        margin-left: auto;
        order: 4;
    }

    .main-nav {
        position: absolute;
        z-index: 1001;
        top: calc(100% + 1px);
        right: 16px;
        left: 16px;
        display: none;
        padding: 14px;
        background: var(--cx-white);
        border: 1px solid var(--cx-line);
        box-shadow: 0 24px 55px rgba(16, 38, 84, 0.17);
    }

    .main-nav.active {
        display: grid;
        gap: 0;
    }

    .main-nav > a {
        padding: 16px 10px;
        border-bottom: 1px solid var(--cx-line);
        font-size: 0.93rem;
    }

    .main-nav > a::after {
        display: none;
    }

    .nav-demo-mobile {
        display: inline-flex;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
        color: var(--cx-white);
        background: var(--cx-blue);
        border-radius: 3px;
        font-size: 0.88rem;
        font-weight: 700;
    }

    .editorial-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 72px;
    }

    .editorial-hero-copy {
        max-width: 740px;
    }

    .editorial-hero h1 {
        max-width: 760px;
        font-size: clamp(3.3rem, 9.5vw, 5.4rem);
    }

    .hero-product {
        width: min(720px, 100%);
        min-height: 600px;
        margin: 0 auto;
    }

    .event-preview {
        right: 3%;
        width: 82%;
    }

    .event-preview-body {
        min-height: 465px;
    }

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

    .home-proofline > div {
        border-bottom: 1px solid var(--cx-line);
    }

    .home-proofline > div:nth-child(2) {
        border-right: 0;
    }

    .home-proofline > div:nth-child(3),
    .home-proofline > div:nth-child(4) {
        border-bottom: 0;
    }

    .home-proofline > div:first-child,
    .home-proofline > div:nth-child(3) {
        padding-left: 0;
    }

    .home-proofline > div:nth-child(2),
    .home-proofline > div:last-child {
        padding-right: 0;
    }

    .editorial-intro,
    .payment-clarity,
    .provider-story,
    body.celebrax-home-retention .faq.faq-accordion-section {
        grid-template-columns: 1fr;
    }

    .editorial-intro-copy,
    .faq-intro {
        position: static;
    }

    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .section-heading > p {
        max-width: 660px;
    }

    .capability-item {
        grid-template-columns: 45px 52px 1fr;
    }

    .capability-result {
        display: none;
    }

    .dashboard-story {
        grid-template-columns: 1fr;
    }

    .dashboard-story-copy {
        max-width: 720px;
    }

    .dashboard-window {
        width: min(800px, 100%);
    }

    .event-kinds {
        grid-template-columns: 1fr;
    }

    .event-kinds-intro {
        max-width: 680px;
    }

    .demo-interlude {
        grid-template-columns: 1fr;
    }

    .demo-interlude .eyebrow,
    .demo-interlude h2,
    .demo-interlude > p:not(.eyebrow),
    .demo-interlude > div {
        grid-column: 1;
    }

    .closing-statement {
        grid-template-columns: 1fr;
    }

    .closing-statement > div:last-child {
        max-width: 540px;
    }

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

    .footer-contact {
        grid-column: 1 / -1;
        display: flex;
        flex-wrap: wrap;
        gap: 12px 24px;
        align-items: center;
        padding-top: 24px;
        border-top: 1px solid var(--cx-line);
    }

    .footer-contact strong {
        margin: 0;
    }
}

@media (max-width: 680px) {
    :root {
        --cx-shell: calc(100% - 32px);
    }

    .home-header {
        min-height: 67px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .home-logo img {
        width: 118px;
        height: auto;
    }

    .celebrax-menu-toggle {
        width: 41px;
        height: 41px;
        flex-basis: 41px;
    }

    .editorial-hero {
        gap: 45px;
        padding-top: 54px;
        padding-bottom: 74px;
    }

    .eyebrow {
        margin-bottom: 17px;
        font-size: 0.67rem;
    }

    .editorial-hero h1 {
        margin-bottom: 21px;
        font-size: clamp(2.72rem, 13vw, 4.1rem);
        line-height: 0.98;
    }

    .hero-lede {
        margin-bottom: 25px;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 33px;
    }

    .button {
        width: 100%;
    }

    .hero-facts {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-facts li {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 8px;
    }

    .hero-product {
        min-height: 480px;
    }

    .hero-product::before {
        inset: 0 -8px 3% 10%;
    }

    .event-preview {
        top: 12px;
        right: 0;
        width: 94%;
    }

    .event-preview-body {
        min-height: 365px;
        padding: 34px 25px 29px;
    }

    .event-date {
        margin-bottom: 35px;
    }

    .event-preview-body h2 {
        font-size: clamp(2.4rem, 13vw, 3.55rem);
    }

    .event-preview-body::after {
        width: 95px;
        height: 95px;
    }

    .hero-dashboard-card {
        bottom: 25px;
        left: 0;
        width: 190px;
        padding: 15px;
    }

    .hero-update-card {
        display: none;
    }

    .product-caption {
        right: 0;
        bottom: -25px;
    }

    .home-proofline {
        grid-template-columns: 1fr;
    }

    .home-proofline > div {
        min-height: 0;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid var(--cx-line);
    }

    .home-proofline > div:nth-child(3) {
        border-bottom: 1px solid var(--cx-line);
    }

    .home-proofline p {
        max-width: none;
    }

    .editorial-intro,
    .capabilities,
    .dashboard-story,
    .process,
    .event-kinds,
    .demo-interlude,
    body.celebrax-home-retention .pricing.pricing-comparison,
    .payment-clarity,
    .provider-story,
    body.celebrax-home-retention .faq.faq-accordion-section,
    .closing-statement {
        padding-top: 82px;
        padding-right: 16px;
        padding-bottom: 82px;
        padding-left: 16px;
    }

    .editorial-intro {
        gap: 48px;
    }

    .editorial-intro h2,
    .section-heading h2,
    .event-kinds-intro h2,
    .faq-intro h2,
    .payment-clarity h2,
    .provider-story h2,
    .dashboard-story-copy h2 {
        font-size: clamp(2.4rem, 11vw, 3.45rem);
    }

    .value-ledger {
        box-shadow: 8px 10px 0 var(--cx-paper-deep);
    }

    .ledger-head,
    .ledger-row {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .ledger-head,
    .ledger-row {
        padding-right: 15px;
        padding-left: 15px;
    }

    .ledger-head span:last-child,
    .ledger-row strong {
        padding-left: 13px;
    }

    .ledger-row span,
    .ledger-row strong {
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 0.76rem;
    }

    .ledger-note {
        grid-template-columns: 44px 1fr;
        padding: 20px 15px;
    }

    .ledger-note > span {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-heading {
        margin-bottom: 43px;
    }

    .capability-item {
        grid-template-columns: 36px 43px 1fr;
        gap: 10px;
        min-height: 0;
        padding: 23px 0;
        align-items: start;
    }

    .capability-item:hover {
        padding-right: 8px;
        padding-left: 8px;
    }

    .capability-icon {
        width: 40px;
        height: 40px;
    }

    .capability-icon svg {
        width: 20px;
        height: 20px;
    }

    .capability-item h3 {
        font-size: 0.99rem;
    }

    .capability-item p {
        font-size: 0.79rem;
    }

    .dashboard-story {
        gap: 48px;
    }

    .dashboard-window {
        box-shadow: 10px 12px 0 rgba(20, 80, 173, 0.2);
    }

    .dashboard-body {
        grid-template-columns: 42px 1fr;
        min-height: 350px;
    }

    .dashboard-body aside {
        gap: 12px;
    }

    .dashboard-body aside .aside-brand {
        width: 23px;
        margin-bottom: 7px;
    }

    .dashboard-body aside i {
        width: 14px;
        height: 14px;
    }

    .dashboard-content {
        padding: 13px;
    }

    .dashboard-welcome button {
        display: none;
    }

    .dashboard-stats {
        gap: 6px;
    }

    .dashboard-stats > div {
        padding: 10px 8px;
    }

    .dashboard-stats span {
        font-size: 0.48rem;
    }

    .dashboard-stats strong {
        font-size: 1.2rem;
    }

    .dashboard-stats small {
        font-size: 0.42rem;
    }

    .dashboard-lower {
        grid-template-columns: 1fr;
    }

    .dashboard-feed {
        display: none;
    }

    .dashboard-chart {
        min-height: 148px;
    }

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

    .process-list li,
    .process-list li:first-child,
    .process-list li:last-child {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 14px;
        min-height: 0;
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--cx-line);
    }

    .process-list li > span {
        margin: 4px 0 0;
    }

    .event-kinds-list a {
        grid-template-columns: 1fr 54px 18px;
        min-height: 82px;
    }

    .event-kinds-list img {
        width: 50px;
        height: 50px;
    }

    .demo-interlude h2 {
        font-size: clamp(2.6rem, 12vw, 3.8rem);
    }

    .demo-interlude > div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .demo-interlude > div > a {
        width: fit-content;
    }

    body.celebrax-home-retention .pricing-promise {
        grid-template-columns: 43px 1fr;
        padding: 17px;
    }

    body.celebrax-home-retention .pricing-promise-icon {
        width: 39px;
        height: 39px;
    }

    body.celebrax-home-retention .plan-table-wrap {
        display: none;
    }

    body.celebrax-home-retention .plan-mobile-cards {
        display: grid;
    }

    .provider-story {
        gap: 55px;
    }

    .provider-story-mark {
        min-height: 350px;
        padding: 30px;
    }

    .provider-story-mark svg {
        top: 35px;
        left: 30px;
        width: 56px;
        height: 56px;
    }

    .provider-story-mark span {
        font-size: 2.6rem;
    }

    body.celebrax-home-retention .faq.faq-accordion-section {
        gap: 50px;
    }

    body.celebrax-home-retention .faq-item summary {
        padding-top: 21px;
        padding-bottom: 21px;
        font-size: 0.91rem;
    }

    .closing-statement {
        gap: 44px;
    }

    .closing-statement h2 {
        font-size: clamp(2.75rem, 12.5vw, 4.2rem);
    }

    .home-footer {
        padding: 58px 16px 24px;
    }

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

    .footer-main {
        gap: 42px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-contact {
        display: grid;
        grid-column: auto;
    }

    .footer-bottom {
        display: grid;
    }
}

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

    body.celebrax-home-retention *,
    body.celebrax-home-retention *::before,
    body.celebrax-home-retention *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (forced-colors: active) {
    .button,
    .header-demo,
    .nav-demo-mobile,
    .event-preview,
    .dashboard-window,
    .value-ledger {
        border: 1px solid CanvasText;
    }
}

html[data-theme="dark"] body.celebrax-home-retention,
body.celebrax-home-retention.dark-mode {
    --cx-paper: #0c1424;
    --cx-paper-deep: #151f31;
    --cx-white: #111d30;
    --cx-text: #d7e0ef;
    --cx-muted: #9eabc0;
    --cx-line: #28364b;
    --cx-line-blue: #344865;
    color: var(--cx-text);
    background: var(--cx-paper);
}

html[data-theme="dark"] body.celebrax-home-retention .home-header,
body.celebrax-home-retention.dark-mode .home-header {
    background: rgba(12, 20, 36, 0.94);
    border-color: var(--cx-line);
}

html[data-theme="dark"] body.celebrax-home-retention .home-logo img,
html[data-theme="dark"] body.celebrax-home-retention .footer-brand img,
body.celebrax-home-retention.dark-mode .home-logo img,
body.celebrax-home-retention.dark-mode .footer-brand img {
    filter: brightness(0) invert(1);
}

html[data-theme="dark"] body.celebrax-home-retention h1,
html[data-theme="dark"] body.celebrax-home-retention h2,
html[data-theme="dark"] body.celebrax-home-retention h3,
html[data-theme="dark"] body.celebrax-home-retention strong,
body.celebrax-home-retention.dark-mode h1,
body.celebrax-home-retention.dark-mode h2,
body.celebrax-home-retention.dark-mode h3,
body.celebrax-home-retention.dark-mode strong {
    color: #f3f6fb;
}

html[data-theme="dark"] body.celebrax-home-retention .capabilities,
html[data-theme="dark"] body.celebrax-home-retention .provider-story,
body.celebrax-home-retention.dark-mode .capabilities,
body.celebrax-home-retention.dark-mode .provider-story {
    background: #111d30;
}

html[data-theme="dark"] body.celebrax-home-retention .event-kinds,
body.celebrax-home-retention.dark-mode .event-kinds {
    background: #182335;
}

html[data-theme="dark"] body.celebrax-home-retention .home-footer,
body.celebrax-home-retention.dark-mode .home-footer {
    background: #0a1220;
}
