@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("/fonts/inter/inter-var.woff2") format("woff2");
}

.cj-landing-v2 {
    --cj-b-night: #070b18;
    --cj-b-night-soft: #0c1224;
    --cj-b-panel: #10172b;
    --cj-b-panel-strong: #151d34;
    --cj-b-ink: #f8f7f3;
    --cj-b-muted: #a8afc0;
    --cj-b-dim: #727b90;
    --cj-b-line: rgba(210, 221, 255, 0.14);
    --cj-b-line-strong: rgba(210, 221, 255, 0.25);
    --cj-b-coral: #ff6044;
    --cj-b-coral-bright: #ff765d;
    --cj-b-violet: #8867ff;
    --cj-b-cyan: #39d1e4;
    --cj-b-green: #6ed6a0;
    --cj-b-paper: #f5f1e9;
    --cj-b-radius-sm: 9px;
    --cj-b-radius-md: 16px;
    --cj-b-radius-lg: 26px;
    --cj-b-shell: 1280px;
    --cj-b-ease: cubic-bezier(0.2, 0.85, 0.25, 1);
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--cj-b-night);
    color: var(--cj-b-ink);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.cj-landing-v2 *,
.cj-landing-v2 *::before,
.cj-landing-v2 *::after {
    box-sizing: border-box;
}

.cj-landing-v2 img {
    display: block;
    max-width: 100%;
}

.cj-landing-v2 a {
    color: inherit;
    text-decoration: none;
}

.cj-landing-v2 button,
.cj-landing-v2 textarea {
    color: inherit;
    font: inherit;
}

.cj-landing-v2 button {
    border: 0;
}

.cj-landing-v2 [hidden] {
    display: none !important;
}

.cj-shell {
    width: min(calc(100% - 64px), var(--cj-b-shell));
    margin-inline: auto;
}

.cj-skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: var(--cj-b-radius-sm);
    background: white;
    color: var(--cj-b-night);
    font-weight: 750;
    transition: transform 180ms var(--cj-b-ease);
}

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

.cj-site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--cj-b-line);
    background: rgba(7, 11, 24, 0.82);
    backdrop-filter: blur(18px);
}

.cj-navigation {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.cj-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    font-size: 18px;
    font-weight: 790;
    letter-spacing: -0.035em;
}

.cj-brand__mark-wrap {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: white;
}

.cj-brand__mark {
    width: 39px;
    height: 39px;
}

.cj-navigation__panel {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(24px, 4vw, 58px);
}

.cj-navigation__links,
.cj-navigation__actions {
    display: flex;
    align-items: center;
}

.cj-navigation__links {
    gap: clamp(18px, 2vw, 31px);
}

.cj-navigation__actions {
    gap: 22px;
}

.cj-navigation__links a,
.cj-navigation__login {
    padding-block: 8px;
    color: #c0c5d0;
    font-size: 14px;
    font-weight: 640;
    transition: color 160ms var(--cj-b-ease);
}

.cj-navigation__links a:hover,
.cj-navigation__login:hover {
    color: white;
}

.cj-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
}

.cj-menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.cj-menu-toggle__lines,
.cj-menu-toggle__lines::before {
    width: 20px;
    height: 1.5px;
    background: currentColor;
    content: "";
    transition: transform 180ms var(--cj-b-ease);
}

.cj-menu-toggle__lines {
    position: relative;
    transform: translateY(-4px);
}

.cj-menu-toggle__lines::before {
    position: absolute;
    top: 8px;
    left: 0;
}

.cj-navigation--open .cj-menu-toggle__lines {
    transform: rotate(45deg);
}

.cj-navigation--open .cj-menu-toggle__lines::before {
    top: 0;
    transform: rotate(90deg);
}

.cj-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--cj-b-radius-sm);
    background: var(--cj-b-coral);
    color: white;
    font-size: 14px;
    font-weight: 760;
    letter-spacing: -0.02em;
    box-shadow: 0 12px 35px rgba(255, 96, 68, 0.19);
    cursor: pointer;
    transition:
        transform 180ms var(--cj-b-ease),
        background-color 180ms var(--cj-b-ease),
        box-shadow 180ms var(--cj-b-ease);
}

.cj-button:hover {
    transform: translateY(-2px);
    background: var(--cj-b-coral-bright);
    box-shadow: 0 16px 42px rgba(255, 96, 68, 0.25);
}

.cj-button:active {
    transform: translateY(0);
}

.cj-button:disabled {
    cursor: wait;
    opacity: 0.74;
}

.cj-button--nav {
    min-height: 40px;
    gap: 9px;
    padding: 0 16px;
    font-size: 13px;
}

.cj-button--primary {
    min-height: 52px;
    gap: 16px;
    padding: 0 11px 0 21px;
}

.cj-button__disc {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.17);
}

.cj-hero {
    position: relative;
    isolation: isolate;
    min-height: 960px;
    overflow: hidden;
    padding: 48px 0 50px;
    background:
        radial-gradient(circle at 50% 28%, rgba(91, 66, 196, 0.2), transparent 32%),
        var(--cj-b-night);
}

.cj-hero__atmosphere {
    position: absolute;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cj-hero__atmosphere::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 220, 255, 0.23) 0.65px, transparent 0.65px);
    background-size: 24px 24px;
    content: "";
    opacity: 0.16;
    mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.cj-hero__beam {
    position: absolute;
    top: 100px;
    width: 420px;
    height: 820px;
    transform: rotate(-21deg);
    background: linear-gradient(to bottom, rgba(115, 83, 246, 0.17), transparent 68%);
    filter: blur(1px);
    opacity: 0.5;
}

.cj-hero__beam--one {
    left: -180px;
}

.cj-hero__beam--two {
    right: -140px;
    transform: rotate(23deg);
    background: linear-gradient(to bottom, rgba(0, 183, 215, 0.11), transparent 68%);
}

.cj-hero__horizon {
    position: absolute;
    right: 12%;
    bottom: 120px;
    left: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90, 180, 255, 0.4), transparent);
    box-shadow: 0 0 40px rgba(90, 180, 255, 0.38);
}

.cj-hero__content {
    position: relative;
}

.cj-hero__copy {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.cj-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #b8bed0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cj-eyebrow__pulse {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cj-b-coral);
    box-shadow: 0 0 0 5px rgba(255, 96, 68, 0.12);
}

.cj-eyebrow__pulse::after {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(255, 96, 68, 0.34);
    border-radius: 50%;
    content: "";
    animation: cj-b-pulse 2.2s ease-out infinite;
}

@keyframes cj-b-pulse {
    70%,
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.cj-hero h1 {
    margin: 0;
    font-size: clamp(50px, 5.35vw, 76px);
    font-weight: 690;
    letter-spacing: -0.06em;
    line-height: 0.99;
}

.cj-hero h1 span {
    background: linear-gradient(90deg, #f8f7f3 18%, #bfc5ff 55%, #f0c7bb);
    background-clip: text;
    color: transparent;
}

.cj-hero__dek {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--cj-b-muted);
    font-size: 16px;
    line-height: 1.6;
}

.cj-prompt-composer {
    position: relative;
    width: min(880px, 100%);
    margin: 35px auto 0;
    padding: 18px;
    border: 1px solid var(--cj-b-line-strong);
    border-radius: var(--cj-b-radius-md);
    background: linear-gradient(145deg, rgba(22, 30, 53, 0.97), rgba(12, 18, 36, 0.97));
    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.36),
        0 0 0 7px rgba(255, 255, 255, 0.018);
}

.cj-prompt-composer::before {
    position: absolute;
    right: 18%;
    bottom: -1px;
    left: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cj-b-violet), transparent);
    content: "";
}

.cj-prompt-composer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.cj-prompt-composer__label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #d7dbe6;
    font-size: 14px;
    font-weight: 680;
}

.cj-prompt-composer__spark {
    color: var(--cj-b-coral);
}

.cj-prompt-composer__shortcut {
    color: #717a8e;
    font-size: 11px;
    font-weight: 650;
}

.cj-prompt-composer__textarea {
    width: 100%;
    min-height: 80px;
    resize: vertical;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 10px;
    outline: 0;
    background: rgba(5, 9, 19, 0.56);
    color: white;
    font-size: 15px;
    line-height: 1.55;
    transition:
        border-color 180ms var(--cj-b-ease),
        box-shadow 180ms var(--cj-b-ease),
        background-color 180ms var(--cj-b-ease);
}

.cj-prompt-composer__textarea::placeholder {
    color: #7f8798;
}

.cj-prompt-composer__textarea:focus {
    border-color: rgba(136, 103, 255, 0.78);
    background: rgba(5, 9, 19, 0.78);
    box-shadow: 0 0 0 3px rgba(136, 103, 255, 0.13);
}

.cj-has-error .cj-prompt-composer__textarea {
    border-color: var(--cj-b-coral);
    box-shadow: 0 0 0 3px rgba(255, 96, 68, 0.12);
}

.cj-prompt-composer__error {
    min-height: 16px;
    margin: 4px 0 0;
    color: #ff9b88;
    font-size: 12px;
    font-weight: 650;
    text-align: left;
}

.cj-prompt-composer__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 7px;
}

.cj-example-prompts {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 7px;
}

.cj-example-prompts button {
    min-height: 31px;
    padding: 5px 11px;
    border: 1px solid var(--cj-b-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: #9fa7b8;
    font-size: 12px;
    font-weight: 630;
    cursor: pointer;
    transition:
        border-color 160ms var(--cj-b-ease),
        background-color 160ms var(--cj-b-ease),
        color 160ms var(--cj-b-ease);
}

.cj-example-prompts button:hover,
.cj-example-prompts button.cj-is-selected {
    border-color: rgba(136, 103, 255, 0.62);
    background: rgba(136, 103, 255, 0.11);
    color: #d5ceff;
}

.cj-prompt-composer__reassurance {
    margin: 13px 0 0;
    color: #8991a3;
    font-size: 12px;
    text-align: center;
}

.cj-prompt-composer__reassurance span {
    margin-right: 5px;
    color: var(--cj-b-green);
}

.cj-is-loading .cj-button__disc {
    animation: cj-b-spin 700ms linear infinite;
}

@keyframes cj-b-spin {
    to {
        transform: rotate(360deg);
    }
}

.cj-transformation {
    position: relative;
    margin-top: 35px;
    overflow: hidden;
    border: 1px solid var(--cj-b-line-strong);
    border-radius: var(--cj-b-radius-lg);
    background:
        linear-gradient(180deg, rgba(20, 28, 50, 0.96), rgba(8, 13, 26, 0.98));
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.42);
}

.cj-transformation::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(136, 103, 255, 0.08), transparent 35%, rgba(57, 209, 228, 0.05));
    content: "";
    pointer-events: none;
}

.cj-transformation__header {
    position: relative;
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 22px;
    border-bottom: 1px solid var(--cj-b-line);
    color: #8891a5;
    font-size: 11px;
    font-weight: 650;
}

.cj-transformation__status {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #cdd2df;
}

.cj-transformation__live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cj-b-green);
    box-shadow: 0 0 0 4px rgba(110, 214, 160, 0.09);
}

.cj-progress-rail {
    position: relative;
    display: grid;
    min-height: 74px;
    grid-template-columns: repeat(5, 1fr);
    padding: 0 34px;
    border-bottom: 1px solid var(--cj-b-line);
}

.cj-progress-rail::before {
    position: absolute;
    top: 37px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 96, 68, 0.55), rgba(136, 103, 255, 0.48), rgba(57, 209, 228, 0.38));
    content: "";
}

.cj-progress-rail__origin,
.cj-progress-step {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #818a9e;
}

.cj-progress-rail__origin span,
.cj-progress-step small {
    color: #677084;
    font-size: 10px;
    font-weight: 720;
}

.cj-progress-rail__origin b,
.cj-progress-step b {
    font-size: 12px;
    font-weight: 680;
}

.cj-progress-rail__origin::before,
.cj-progress-step__dot {
    width: 9px;
    height: 9px;
    border: 2px solid #182039;
    border-radius: 50%;
    background: var(--cj-b-coral);
    box-shadow: 0 0 0 4px var(--cj-b-panel);
    content: "";
}

.cj-progress-step {
    cursor: pointer;
}

.cj-progress-step > span:last-child {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cj-progress-step__dot {
    background: #485169;
    transition:
        transform 180ms var(--cj-b-ease),
        background-color 180ms var(--cj-b-ease),
        box-shadow 180ms var(--cj-b-ease);
}

.cj-progress-step:hover,
.cj-progress-step.cj-is-active {
    color: white;
}

.cj-progress-step.cj-is-active .cj-progress-step__dot {
    transform: scale(1.18);
    background: var(--cj-b-violet);
    box-shadow:
        0 0 0 4px var(--cj-b-panel),
        0 0 20px rgba(136, 103, 255, 0.65);
}

.cj-stage-deck {
    position: relative;
    min-height: 368px;
}

.cj-stage-panel {
    position: relative;
    min-height: 368px;
    animation: cj-b-stage-in 260ms var(--cj-b-ease);
}

@keyframes cj-b-stage-in {
    from {
        transform: translateY(9px) scale(0.99);
        opacity: 0;
    }
}

.cj-stage-panel--website {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 120px 62px;
    overflow: hidden;
}

.cj-browser-preview {
    position: relative;
    z-index: 2;
    width: min(780px, 100%);
    height: 292px;
    overflow: hidden;
    border: 1px solid rgba(219, 226, 255, 0.32);
    border-radius: 10px;
    background: white;
    box-shadow: 0 27px 60px rgba(0, 0, 0, 0.38);
}

.cj-browser-preview__bar {
    display: flex;
    height: 28px;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    border-bottom: 1px solid #e4e2df;
    background: #f8f6f1;
}

.cj-browser-preview__bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c5c3bf;
}

.cj-browser-preview__bar span:first-child {
    background: #f77762;
}

.cj-browser-preview__bar span:nth-child(2) {
    background: #e8b25c;
}

.cj-browser-preview__bar span:nth-child(3) {
    background: #6ab57f;
}

.cj-browser-preview__bar b {
    margin-left: 18px;
    color: #878b91;
    font-size: 10px;
    font-weight: 550;
}

.cj-browser-preview__bar i {
    margin-left: auto;
    color: #636873;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.cj-browser-preview img {
    width: 100%;
    height: calc(100% - 28px);
    object-fit: cover;
    object-position: center top;
}

.cj-stage-panel__ambient {
    position: absolute;
    top: 66px;
    z-index: 1;
    width: 170px;
    height: 190px;
    padding: 17px;
    border: 1px solid var(--cj-b-line);
    border-radius: 11px;
    background: rgba(13, 19, 37, 0.84);
    color: #798296;
    font-size: 10px;
    transform: perspective(600px) rotateY(8deg);
}

.cj-stage-panel__ambient--left {
    left: 29px;
}

.cj-stage-panel__ambient--right {
    right: 29px;
    transform: perspective(600px) rotateY(-8deg);
}

.cj-stage-panel__ambient i {
    display: block;
    width: 100%;
    height: 6px;
    margin-top: 13px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
}

.cj-stage-panel__ambient i:nth-of-type(2) {
    width: 74%;
}

.cj-stage-panel__ambient i:nth-of-type(3) {
    width: 48%;
}

.cj-stage-panel__ambient b {
    display: block;
    margin: 22px 0;
    color: white;
    font-size: 26px;
    letter-spacing: -0.05em;
}

.cj-stage-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
    border-top: 1px solid var(--cj-b-line);
    background: rgba(6, 10, 21, 0.72);
    backdrop-filter: blur(12px);
}

.cj-stage-caption span {
    color: #d7dbe7;
    font-size: 11px;
    font-weight: 720;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cj-stage-caption p {
    margin: 0;
    color: #7f8798;
    font-size: 11px;
}

.cj-search-stage {
    display: grid;
    min-height: 320px;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 14px;
    padding: 24px;
}

.cj-search-stage__result,
.cj-search-stage__signals {
    border: 1px solid var(--cj-b-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.cj-search-stage__result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px clamp(28px, 5vw, 68px);
}

.cj-search-stage__query {
    display: block;
    margin-bottom: 35px;
    padding: 11px 17px;
    border: 1px solid var(--cj-b-line-strong);
    border-radius: 999px;
    color: #aab2c2;
    font-size: 12px;
}

.cj-search-stage__result small {
    margin-bottom: 7px;
    color: var(--cj-b-green);
    font-size: 11px;
}

.cj-search-stage__result h2 {
    max-width: 580px;
    margin: 0;
    color: white;
    font-size: clamp(22px, 2.5vw, 34px);
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.cj-search-stage__result p {
    max-width: 580px;
    margin: 12px 0 0;
    color: #929aab;
    font-size: 13px;
}

.cj-search-stage__signals {
    padding: 22px;
}

.cj-search-stage__signals > p {
    margin: 0 0 22px;
    color: #cbd0dc;
    font-size: 12px;
    font-weight: 700;
}

.cj-search-stage__signals > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--cj-b-line);
    color: #858ea0;
    font-size: 12px;
}

.cj-search-stage__signals b {
    color: var(--cj-b-green);
    font-size: 11px;
}

.cj-social-stage {
    display: grid;
    min-height: 320px;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    grid-template-rows: 1fr auto;
    gap: 12px;
    padding: 22px;
}

.cj-social-post {
    overflow: hidden;
    padding: 14px;
    border: 1px solid var(--cj-b-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.cj-social-post header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    color: #cfd4df;
    font-size: 12px;
    font-weight: 700;
}

.cj-social-post header small {
    color: #737c90;
    font-size: 10px;
}

.cj-social-post img {
    width: 100%;
    height: 150px;
    border-radius: 6px;
    object-fit: cover;
}

.cj-social-post p {
    margin: 15px 0 0;
    color: #9ba3b3;
    font-size: 12px;
    line-height: 1.5;
}

.cj-social-post--feature p {
    margin-top: 8px;
}

.cj-social-stage__platforms {
    grid-column: 1 / -1;
    color: #737c8f;
    font-size: 11px;
    text-align: center;
}

.cj-publish-stage {
    display: flex;
    min-height: 320px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.cj-publish-stage__orb {
    position: relative;
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    place-items: center;
    border: 1px solid rgba(110, 214, 160, 0.48);
    border-radius: 50%;
    color: var(--cj-b-green);
}

.cj-publish-stage__orb::before,
.cj-publish-stage__orb::after {
    position: absolute;
    border: 1px solid rgba(110, 214, 160, 0.19);
    border-radius: 50%;
    content: "";
}

.cj-publish-stage__orb::before {
    inset: -10px;
}

.cj-publish-stage__orb::after {
    inset: -21px;
}

.cj-publish-stage > p {
    margin: 8px 0;
    color: var(--cj-b-green);
    font-size: 11px;
    font-weight: 720;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cj-publish-stage h2 {
    margin: 0;
    font-size: clamp(29px, 4vw, 50px);
    font-weight: 650;
    letter-spacing: -0.055em;
}

.cj-publish-stage__checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.cj-publish-stage__checks span {
    padding: 7px 11px;
    border: 1px solid rgba(110, 214, 160, 0.2);
    border-radius: 999px;
    background: rgba(110, 214, 160, 0.06);
    color: #9cc5ac;
    font-size: 11px;
}

.cj-hero__trust {
    display: flex;
    justify-content: center;
    gap: 38px;
    margin-top: 23px;
    color: #7d869a;
    font-size: 12px;
    font-weight: 620;
}

.cj-hero__trust b {
    margin-right: 6px;
    color: var(--cj-b-green);
}

.cj-proof-section {
    border-top: 1px solid #ddd8cf;
    border-bottom: 1px solid #ddd8cf;
    background: var(--cj-b-paper);
    color: #11182a;
}

.cj-proof-section__inner {
    display: grid;
    min-height: 132px;
    grid-template-columns: 1.7fr repeat(4, 0.75fr);
    align-items: stretch;
}

.cj-proof-section__statement,
.cj-proof-section__fact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 25px;
    border-right: 1px solid #ddd8cf;
}

.cj-proof-section__statement {
    padding-left: 0;
}

.cj-proof-section__statement > span {
    margin-bottom: 6px;
    color: #78766f;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cj-proof-section__statement p {
    max-width: 450px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.cj-proof-section__fact:last-child {
    border-right: 0;
}

.cj-proof-section__fact b {
    margin-bottom: 9px;
    color: var(--cj-b-coral);
    font-size: 11px;
}

.cj-proof-section__fact span {
    font-size: 12px;
    font-weight: 680;
}

.cj-next-section {
    min-height: 680px;
    padding: clamp(90px, 10vw, 150px) 0 0;
    overflow: hidden;
    background: #0a1020;
}

.cj-next-section__eyebrow {
    margin: 0 0 20px;
    color: #8d95a8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cj-next-section__heading {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: end;
    gap: 70px;
}

.cj-next-section h2 {
    margin: 0;
    font-size: clamp(54px, 6.4vw, 90px);
    font-weight: 650;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.cj-next-section__heading > p {
    max-width: 480px;
    margin: 0 0 6px;
    color: #949cad;
    font-size: 16px;
}

.cj-next-section__preview {
    height: 260px;
    margin-top: 70px;
    overflow: hidden;
    border: 1px solid var(--cj-b-line);
    border-radius: 24px 24px 0 0;
    opacity: 0.7;
}

.cj-next-section__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.cj-landing-v2 :focus-visible {
    outline: 3px solid rgba(136, 103, 255, 0.8);
    outline-offset: 3px;
}

@media (max-width: 1120px) {
    .cj-shell {
        width: min(calc(100% - 44px), var(--cj-b-shell));
    }

    .cj-navigation__panel {
        gap: 26px;
    }

    .cj-navigation__links {
        gap: 17px;
    }

    .cj-stage-panel--website {
        padding-inline: 90px;
    }

    .cj-stage-panel__ambient {
        width: 140px;
    }

    .cj-stage-panel__ambient--left {
        left: 18px;
    }

    .cj-stage-panel__ambient--right {
        right: 18px;
    }

    .cj-proof-section__inner {
        grid-template-columns: 1.4fr repeat(4, 0.75fr);
    }

    .cj-proof-section__statement,
    .cj-proof-section__fact {
        padding-inline: 16px;
    }
}

@media (max-width: 899px) {
    .cj-menu-lock {
        overflow: hidden;
    }

    .cj-shell {
        width: min(calc(100% - 34px), var(--cj-b-shell));
    }

    .cj-navigation {
        min-height: 68px;
    }

    .cj-menu-toggle {
        display: inline-flex;
        cursor: pointer;
    }

    .cj-navigation__panel {
        position: absolute;
        z-index: 30;
        top: 100%;
        right: auto;
        bottom: auto;
        left: 50%;
        display: flex;
        visibility: hidden;
        width: 100vw;
        min-height: calc(100vh - 68px);
        min-height: calc(100dvh - 68px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 28px;
        padding: 29px 22px 40px;
        transform: translate(-50%, -12px);
        background: #070b18;
        opacity: 0;
        transition:
            opacity 180ms var(--cj-b-ease),
            transform 180ms var(--cj-b-ease),
            visibility 0s;
    }

    .cj-navigation--open .cj-navigation__panel {
        visibility: visible;
        transform: translate(-50%, 0);
        opacity: 1;
    }

    .cj-navigation__links {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .cj-navigation__links a {
        padding: 14px 0;
        border-bottom: 1px solid var(--cj-b-line);
        color: white;
        font-size: 23px;
        font-weight: 620;
        letter-spacing: -0.035em;
    }

    .cj-navigation__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cj-button--nav {
        min-height: 54px;
    }

    .cj-navigation__login {
        order: 2;
        text-align: center;
    }

    .cj-hero {
        padding-top: 43px;
    }

    .cj-stage-panel--website {
        padding-inline: 60px;
    }

    .cj-stage-panel__ambient {
        width: 110px;
        opacity: 0.6;
    }

    .cj-search-stage {
        grid-template-columns: 1fr;
    }

    .cj-search-stage__signals {
        display: none;
    }

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

    .cj-proof-section__statement {
        grid-column: 1 / -1;
        padding-left: 16px;
        border-bottom: 1px solid #ddd8cf;
    }

    .cj-proof-section__fact {
        min-height: 88px;
    }

    .cj-proof-section__fact:nth-child(3),
    .cj-proof-section__fact:last-child {
        border-right: 0;
    }

    .cj-next-section__heading {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .cj-shell {
        width: min(calc(100% - 26px), var(--cj-b-shell));
    }

    .cj-brand {
        font-size: 17px;
    }

    .cj-brand__mark-wrap,
    .cj-brand__mark {
        width: 35px;
        height: 35px;
    }

    .cj-hero {
        min-height: 0;
        padding: 34px 0 35px;
    }

    .cj-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .cj-hero h1 {
        font-size: clamp(39px, 11.5vw, 48px);
        line-height: 1;
    }

    .cj-hero__dek {
        margin-top: 17px;
        font-size: 14px;
        line-height: 1.52;
    }

    .cj-prompt-composer {
        margin-top: 28px;
        padding: 13px;
        border-radius: 13px;
    }

    .cj-prompt-composer__top {
        align-items: flex-start;
    }

    .cj-prompt-composer__label {
        font-size: 13px;
        text-align: left;
    }

    .cj-prompt-composer__shortcut {
        display: none;
    }

    .cj-prompt-composer__textarea {
        min-height: 105px;
        padding: 13px;
        font-size: 15px;
    }

    .cj-prompt-composer__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 11px;
    }

    .cj-example-prompts {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .cj-example-prompts::-webkit-scrollbar {
        display: none;
    }

    .cj-example-prompts button {
        min-height: 34px;
        flex: 0 0 auto;
    }

    .cj-button--primary {
        min-height: 54px;
    }

    .cj-prompt-composer__reassurance {
        padding-inline: 8px;
        line-height: 1.45;
    }

    .cj-transformation {
        margin-top: 25px;
        border-radius: 15px;
    }

    .cj-transformation__header {
        padding-inline: 13px;
    }

    .cj-transformation__source {
        display: none;
    }

    .cj-progress-rail {
        min-height: 66px;
        grid-template-columns: repeat(4, 1fr);
        padding: 0 4px;
    }

    .cj-progress-rail::before {
        top: 28px;
        right: 13%;
        left: 13%;
    }

    .cj-progress-rail__origin {
        display: none;
    }

    .cj-progress-step {
        flex-direction: column;
        gap: 5px;
    }

    .cj-progress-step > span:last-child {
        display: block;
    }

    .cj-progress-step small {
        display: none;
    }

    .cj-progress-step b {
        font-size: 11px;
    }

    .cj-stage-deck,
    .cj-stage-panel {
        min-height: 306px;
    }

    .cj-stage-panel--website {
        padding: 14px 12px 58px;
    }

    .cj-browser-preview {
        height: 233px;
    }

    .cj-stage-panel__ambient {
        display: none;
    }

    .cj-stage-caption {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        padding-inline: 13px;
    }

    .cj-stage-caption p {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .cj-search-stage {
        min-height: 258px;
        padding: 12px;
    }

    .cj-search-stage__result {
        padding: 25px 18px;
    }

    .cj-search-stage__query {
        margin-bottom: 25px;
    }

    .cj-search-stage__result h2 {
        font-size: 22px;
    }

    .cj-social-stage {
        min-height: 258px;
        grid-template-columns: 1.1fr 0.9fr;
        padding: 10px;
    }

    .cj-social-post:last-of-type {
        display: none;
    }

    .cj-social-post img {
        height: 112px;
    }

    .cj-social-post p {
        font-size: 11px;
    }

    .cj-publish-stage {
        min-height: 258px;
    }

    .cj-publish-stage__orb {
        width: 50px;
        height: 50px;
    }

    .cj-publish-stage h2 {
        font-size: 28px;
    }

    .cj-publish-stage__checks {
        max-width: 300px;
    }

    .cj-hero__trust {
        display: none;
    }

    .cj-proof-section__statement {
        min-height: 122px;
    }

    .cj-proof-section__fact {
        padding: 16px;
    }

    .cj-next-section {
        min-height: 590px;
        padding-top: 80px;
    }

    .cj-next-section h2 {
        font-size: clamp(49px, 14vw, 66px);
    }

    .cj-next-section__heading > p {
        font-size: 14px;
    }

    .cj-next-section__preview {
        height: 210px;
        margin-top: 45px;
    }
}

@media (max-width: 340px) {
    .cj-shell {
        width: calc(100% - 22px);
    }

    .cj-brand__name {
        font-size: 15px;
    }

    .cj-hero h1 {
        font-size: 37px;
    }

    .cj-prompt-composer__label {
        max-width: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cj-landing-v2 *,
    .cj-landing-v2 *::before,
    .cj-landing-v2 *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
