:root {
    --hp-ink: #101114;
    --hp-black: #090a0d;
    --hp-paper: #f4f2ec;
    --hp-white: #fff;
    --hp-muted: #65666c;
    --hp-line: rgba(16, 17, 20, .14);
    --hp-acid: #dafa68;
    --hp-coral: #ff7965;
    --hp-violet: #8a72ff;
    --hp-blue: #7bdff6;
    --hp-radius-xl: 36px;
    --hp-radius-lg: 26px;
    --hp-radius-md: 18px;
    --hp-shadow: 0 32px 90px rgba(5, 7, 15, .2);
}

html {
    scroll-behavior: smooth;
}

body.homepage-v2-page {
    margin: 0;
    overflow-x: hidden;
    background: var(--hp-black);
    color: var(--hp-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.homepage-v2-page *,
.homepage-v2-page *::before,
.homepage-v2-page *::after {
    box-sizing: border-box;
}

.homepage-v2-page img {
    display: block;
    max-width: 100%;
}

.homepage-v2-page a {
    color: inherit;
    text-decoration: none;
}

.homepage-v2-page button,
.homepage-v2-page input {
    font: inherit;
}

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

.hp-skip-link {
    position: fixed;
    z-index: 9999999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--hp-white);
    color: var(--hp-black);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

.hp-shell {
    width: min(100% - 32px, 1240px);
    margin-inline: auto;
}

.hp-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    padding: 10px 0;
    color: rgba(255, 255, 255, .9);
    transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

body.staging-environment .hp-header {
    top: 35px;
}

.hp-header.is-scrolled,
.hp-header:has(.hp-nav-links.is-open),
.hp-header:has(.hp-nav-state:checked) {
    background: rgba(8, 9, 12, .82);
    box-shadow: 0 1px rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px) saturate(140%);
}

.hp-nav {
    position: relative;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hp-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.hp-logo-mark {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--hp-coral), var(--hp-violet));
    box-shadow: 0 8px 24px rgba(138, 114, 255, .26);
    color: white;
    font-size: .9rem;
    font-weight: 900;
}

.hp-nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(13, 14, 18, .97);
    box-shadow: var(--hp-shadow);
}

.hp-nav-links.is-open {
    display: grid;
}

.hp-nav-state:checked ~ .hp-nav-links {
    display: grid;
}

.hp-nav-links a {
    padding: 13px 14px;
    border-radius: 11px;
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    font-weight: 700;
    transition: color .2s ease, background .2s ease;
}

.hp-nav-links a:hover,
.hp-nav-links a:focus-visible {
    background: rgba(255, 255, 255, .06);
    color: white;
    outline: none;
}

.hp-nav-state {
    position: absolute;
    top: 6px;
    right: 0;
    z-index: 2;
    width: 42px;
    height: 42px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.hp-nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: white;
    cursor: pointer;
}

.hp-nav-toggle > span:not(.hp-sr-only) {
    width: 17px;
    height: 1.5px;
    background: currentColor;
    transition: transform .2s ease;
}

.hp-nav-state:checked + .hp-nav-toggle > span:nth-last-child(2) {
    transform: translateY(3.25px) rotate(45deg);
}

.hp-nav-state:checked + .hp-nav-toggle > span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
}

.hp-nav-state:focus-visible + .hp-nav-toggle {
    outline: 3px solid rgba(218, 250, 104, .55);
    outline-offset: 2px;
}

.hp-nav-mobile-primary {
    margin-top: 4px;
    background: var(--hp-acid);
    color: #11130d !important;
    text-align: center;
}

.hp-nav-cta {
    display: none !important;
}

.hp-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hp-button:hover {
    transform: translateY(-2px);
}

.hp-button:focus-visible,
.hp-text-link:focus-visible,
.hp-capability-card:focus-visible,
.hp-dialog-close:focus-visible {
    outline: 3px solid var(--hp-blue);
    outline-offset: 3px;
}

.hp-button svg {
    width: 20px;
    height: 20px;
}

.hp-button-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: .82rem;
}

.hp-button-primary {
    background: var(--hp-acid);
    box-shadow: 0 16px 38px rgba(218, 250, 104, .16);
    color: #11130b;
}

.hp-button-primary:hover {
    box-shadow: 0 20px 48px rgba(218, 250, 104, .24);
}

.hp-button-dark {
    background: var(--hp-black);
    color: white;
}

.hp-button-ghost {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .05);
    color: white;
}

.hp-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .7);
    font-size: .88rem;
    font-weight: 750;
}

.hp-text-link span {
    transition: transform .2s ease;
}

.hp-text-link:hover span {
    transform: translateY(3px);
}

.hp-text-link-dark {
    color: var(--hp-ink);
}

.hp-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding: 108px 0 32px;
    background:
        radial-gradient(circle at 68% 24%, rgba(138, 114, 255, .16), transparent 36%),
        radial-gradient(circle at 10% 48%, rgba(255, 121, 101, .12), transparent 30%),
        linear-gradient(180deg, #090a0d 0%, #0d0e12 100%);
    color: white;
}

.hp-hero::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .14) .65px, transparent .65px);
    background-size: 22px 22px;
    content: "";
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .65), transparent 74%);
    opacity: .28;
    pointer-events: none;
}

.hp-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hp-hero-glow-one {
    top: 13%;
    right: -130px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 0 90px rgba(123, 223, 246, .1) inset;
}

.hp-hero-glow-two {
    bottom: 16%;
    left: -80px;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(218, 250, 104, .18);
}

.hp-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 52px;
    align-items: center;
}

.hp-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .66);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hp-kicker > span {
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--hp-acid);
}

.hp-kicker-dark {
    color: #74746f;
}

.hp-hero h1,
.hp-section-heading h2,
.hp-how-intro h2,
.hp-audience-copy h2,
.hp-final-cta h2 {
    margin: 0;
    font-size: clamp(2.8rem, 12vw, 5.8rem);
    font-weight: 820;
    letter-spacing: -.065em;
    line-height: .94;
}

.hp-hero h1 em,
.hp-section-heading h2 em,
.hp-how-intro h2 em,
.hp-audience-copy h2 em,
.hp-final-cta h2 em {
    color: transparent;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.055em;
    -webkit-text-stroke: 1.2px currentColor;
    -webkit-text-fill-color: transparent;
}

.hp-hero h1 em {
    color: var(--hp-coral);
}

.hp-hero-lead {
    max-width: 610px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.65;
}

.hp-hero-actions {
    display: flex;
    margin-top: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hp-hero-checks {
    display: flex;
    margin: 32px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px 18px;
    list-style: none;
    color: rgba(255, 255, 255, .57);
    font-size: .76rem;
    font-weight: 700;
}

.hp-hero-checks span {
    margin-right: 4px;
    color: var(--hp-acid);
}

.hp-hero-visual {
    position: relative;
}

.hp-compare {
    --position: 50%;
    margin: 0;
}

.hp-compare-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #d7d5cf;
    isolation: isolate;
}

.hp-compare-media > img,
.hp-compare-before,
.hp-compare-before img {
    width: 100%;
    height: 100%;
}

.hp-compare-media > img,
.hp-compare-before img {
    object-fit: cover;
}

.hp-compare-before {
    position: absolute;
    z-index: 2;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.hp-compare-handle {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 2px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 0 0 1px rgba(10, 10, 12, .12), 0 0 24px rgba(0, 0, 0, .18);
    transform: translateX(-1px);
    pointer-events: none;
}

.hp-compare-handle::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(16, 17, 20, .12);
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .2);
    content: "";
    transform: translate(-50%, -50%);
}

.hp-compare-handle span {
    position: absolute;
    z-index: 1;
    top: 50%;
    color: #17181b;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-55%);
}

.hp-compare-handle span:first-child {
    right: 5px;
}

.hp-compare-handle span:last-child {
    left: 5px;
}

.hp-compare-range {
    position: absolute;
    z-index: 6;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: ew-resize;
    opacity: 0;
}

.hp-compare-range:focus-visible + * {
    outline: none;
}

.hp-compare:focus-within .hp-compare-media {
    box-shadow: 0 0 0 3px var(--hp-blue);
}

.hp-compare-label {
    position: absolute;
    z-index: 5;
    top: 12px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(7, 8, 10, .62);
    color: white;
    font-size: .65rem;
    font-style: normal;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.hp-compare-label-before {
    left: 12px;
}

.hp-compare-label-after {
    right: 12px;
}

.hp-compare-hero {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .48);
}

.hp-compare-hero figcaption {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 15px;
    color: rgba(255, 255, 255, .64);
    font-size: .75rem;
}

.hp-compare-hero figcaption strong {
    color: white;
}

.hp-model-pill {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .72);
    font-size: .62rem;
    font-weight: 800;
}

.hp-floating-chip {
    position: absolute;
    z-index: 8;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 13px;
    background: rgba(15, 16, 20, .78);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .25);
    color: rgba(255, 255, 255, .74);
    font-size: .68rem;
    font-weight: 750;
    backdrop-filter: blur(14px);
}

.hp-floating-chip-top {
    top: -18px;
    right: 18px;
}

.hp-floating-chip-bottom {
    bottom: 30px;
    left: -26px;
}

.hp-floating-chip-bottom span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 8px;
    background: var(--hp-acid);
    color: var(--hp-black);
    font-weight: 900;
}

.hp-chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hp-acid);
    box-shadow: 0 0 0 5px rgba(218, 250, 104, .1);
}

.hp-proof-strip {
    position: relative;
    z-index: 2;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hp-proof-strip > p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .4);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hp-proof-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 18px;
}

.hp-proof-logos img {
    width: 100%;
    max-width: 112px;
    max-height: 30px;
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: .42;
}

.hp-section {
    position: relative;
    padding: 86px 0;
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.hp-showcase-section,
.hp-how-section,
.hp-faq-section {
    background: var(--hp-paper);
}

.hp-section-heading {
    max-width: 830px;
    margin-bottom: 42px;
}

.hp-section-heading h2,
.hp-how-intro h2,
.hp-audience-copy h2 {
    font-size: clamp(2.35rem, 9vw, 5.5rem);
}

.hp-section-heading h2 em,
.hp-how-intro h2 em,
.hp-faq-heading h2 em {
    color: var(--hp-violet);
}

.hp-section-heading > p:last-child,
.hp-how-intro > p,
.hp-audience-copy > p:last-child {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--hp-muted);
    font-size: .98rem;
    line-height: 1.75;
}

.hp-featured-grid {
    display: grid;
    gap: 20px;
}

.hp-featured-card {
    overflow: hidden;
    border: 1px solid var(--hp-line);
    border-radius: var(--hp-radius-lg);
    background: white;
    box-shadow: 0 14px 50px rgba(12, 14, 22, .06);
}

.hp-featured-card .hp-compare-media {
    border-radius: 0;
}

.hp-featured-copy {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 19px;
}

.hp-featured-copy p {
    margin: 0 0 5px;
    color: #83837f;
    font-size: .63rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hp-featured-copy h3 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: -.035em;
}

.hp-featured-copy > span {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f0eee8;
    color: #6d6c68;
    font-size: .62rem;
    font-weight: 800;
}

.hp-capabilities-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 121, 101, .12), transparent 28%),
        radial-gradient(circle at 90% 45%, rgba(138, 114, 255, .15), transparent 32%),
        #0a0b0e;
    color: white;
}

.hp-section-heading-light > p:last-child {
    color: rgba(255, 255, 255, .55);
}

.hp-section-heading-light h2 em {
    color: var(--hp-coral);
}

.hp-capability-grid {
    display: grid;
    gap: 16px;
}

.hp-capability-card {
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 22px;
    background: rgba(255, 255, 255, .045);
    color: white;
    cursor: pointer;
    text-align: left;
    transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.hp-capability-card:hover {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .075);
    transform: translateY(-4px);
}

.hp-mini-compare {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #202126;
}

.hp-mini-compare > img,
.hp-mini-before,
.hp-mini-before img {
    width: 100%;
    height: 100%;
}

.hp-mini-compare img {
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.hp-capability-card:hover .hp-mini-compare img {
    transform: scale(1.025);
}

.hp-mini-before {
    position: absolute;
    inset: 0;
    clip-path: inset(0 50% 0 0);
}

.hp-mini-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1.5px;
    background: rgba(255, 255, 255, .9);
}

.hp-mini-divider::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
    background: white;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .2);
    content: "";
    transform: translate(-50%, -50%);
}

.hp-mini-badges {
    position: absolute;
    right: 9px;
    bottom: 9px;
    left: 9px;
    display: flex;
    justify-content: space-between;
}

.hp-mini-badges i {
    padding: 5px 7px;
    border-radius: 999px;
    background: rgba(7, 8, 10, .58);
    color: white;
    font-size: .54rem;
    font-style: normal;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.hp-capability-copy {
    display: flex;
    min-height: 204px;
    padding: 20px;
    flex-direction: column;
}

.hp-capability-eyebrow {
    margin-bottom: 8px;
    color: var(--hp-acid) !important;
    font-size: .6rem !important;
    font-weight: 850 !important;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hp-capability-copy strong {
    font-size: 1.22rem;
    letter-spacing: -.035em;
}

.hp-capability-copy > span:not(.hp-capability-eyebrow):not(.hp-capability-open) {
    margin-top: 10px;
    color: rgba(255, 255, 255, .52);
    font-size: .78rem;
    line-height: 1.55;
}

.hp-capability-open {
    display: flex;
    margin-top: auto;
    padding-top: 20px;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .8);
    font-size: .68rem;
    font-weight: 800;
}

.hp-capability-open b {
    font-size: 1rem;
    transition: transform .2s ease;
}

.hp-capability-card:hover .hp-capability-open b {
    transform: translate(2px, -2px);
}

.hp-how-grid {
    display: grid;
    gap: 54px;
}

.hp-how-intro .hp-button {
    margin-top: 28px;
}

.hp-steps {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--hp-line);
    list-style: none;
}

.hp-steps li {
    display: grid;
    padding: 25px 0;
    grid-template-columns: 54px 1fr;
    gap: 15px;
    border-bottom: 1px solid var(--hp-line);
}

.hp-steps li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--hp-ink);
    color: var(--hp-acid);
    font-size: .7rem;
    font-weight: 850;
}

.hp-steps h3 {
    margin: 2px 0 9px;
    font-size: 1.2rem;
    letter-spacing: -.035em;
}

.hp-steps p {
    margin: 0;
    color: var(--hp-muted);
    font-size: .84rem;
    line-height: 1.65;
}

.hp-audience-section {
    background: var(--hp-paper);
    padding-top: 0;
}

.hp-audience-card {
    position: relative;
    display: grid;
    overflow: hidden;
    padding: 32px 24px;
    gap: 42px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 86% 18%, rgba(138, 114, 255, .34), transparent 27%),
        radial-gradient(circle at 10% 100%, rgba(255, 121, 101, .22), transparent 34%),
        #111217;
    color: white;
}

.hp-audience-card::before {
    position: absolute;
    top: -50px;
    right: 7%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    content: "";
}

.hp-audience-copy {
    position: relative;
    z-index: 1;
}

.hp-audience-copy h2 em {
    color: var(--hp-blue);
}

.hp-audience-copy > p:last-child {
    color: rgba(255, 255, 255, .56);
}

.hp-audience-list {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    list-style: none;
}

.hp-audience-list li {
    display: flex;
    padding: 17px 0;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: .9rem;
    font-weight: 750;
}

.hp-audience-list span {
    color: var(--hp-acid);
    font-size: .64rem;
    font-weight: 850;
}

.hp-faq-grid {
    display: grid;
    gap: 42px;
}

.hp-faq-heading {
    margin-bottom: 0;
}

.hp-faq-heading .hp-text-link {
    margin-top: 24px;
}

.hp-faq-list {
    border-top: 1px solid var(--hp-line);
}

.hp-faq-list details {
    border-bottom: 1px solid var(--hp-line);
}

.hp-faq-list summary {
    display: grid;
    padding: 21px 0;
    grid-template-columns: 1fr 30px;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-size: .96rem;
    font-weight: 760;
    letter-spacing: -.02em;
    list-style: none;
}

.hp-faq-list summary::-webkit-details-marker {
    display: none;
}

.hp-faq-list summary i {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    border: 1px solid var(--hp-line);
    border-radius: 50%;
}

.hp-faq-list summary i::before,
.hp-faq-list summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.hp-faq-list summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.hp-faq-list details[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.hp-faq-list details > p {
    margin: -3px 42px 23px 0;
    color: var(--hp-muted);
    font-size: .84rem;
    line-height: 1.7;
}

.hp-final-cta {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(138, 114, 255, .26), transparent 33%),
        radial-gradient(circle at 5% 100%, rgba(255, 121, 101, .18), transparent 32%),
        var(--hp-black);
    color: white;
}

.hp-final-cta::after {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    content: "";
}

.hp-final-cta-inner {
    position: relative;
    z-index: 1;
}

.hp-final-cta h2 {
    max-width: 920px;
    font-size: clamp(2.55rem, 10vw, 6.6rem);
}

.hp-final-cta h2 em {
    color: var(--hp-acid);
}

.hp-final-actions {
    display: flex;
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 12px;
}

.hp-final-note {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .42);
    font-size: .7rem;
    line-height: 1.55;
}

.hp-footer {
    padding: 52px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #07080a;
    color: white;
}

.hp-footer-grid {
    display: grid;
    gap: 38px;
}

.hp-logo-footer {
    margin-bottom: 17px;
}

.hp-footer-grid > div:first-child > p {
    margin: 0;
    color: rgba(255, 255, 255, .43);
    font-size: .8rem;
    line-height: 1.6;
}

.hp-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

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

.hp-footer-links strong {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .82);
    font-size: .72rem;
}

.hp-footer-links a {
    color: rgba(255, 255, 255, .43);
    font-size: .74rem;
    transition: color .2s ease;
}

.hp-footer-links a:hover {
    color: white;
}

.hp-footer-bottom {
    display: flex;
    margin-top: 42px;
    padding-top: 18px;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .3);
    font-size: .62rem;
}

.hp-showcase-dialog {
    width: min(calc(100% - 24px), 1080px);
    max-height: calc(100svh - 24px);
    padding: 0;
    overflow: hidden auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background: #f6f4ee;
    box-shadow: 0 40px 140px rgba(0, 0, 0, .52);
    color: var(--hp-ink);
}

.hp-showcase-dialog::backdrop {
    background: rgba(3, 4, 6, .78);
    backdrop-filter: blur(12px);
}

.hp-dialog-close {
    position: absolute;
    z-index: 20;
    top: 12px;
    right: 12px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: rgba(8, 9, 11, .72);
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.hp-dialog-layout {
    display: grid;
}

.hp-dialog-compare .hp-compare-media {
    aspect-ratio: 3 / 2;
}

.hp-dialog-copy {
    padding: 25px;
}

.hp-dialog-copy > span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #e7e4dc;
    color: #6b6963;
    font-size: .62rem;
    font-weight: 850;
}

.hp-dialog-copy h2 {
    margin: 0;
    font-size: clamp(1.8rem, 8vw, 3rem);
    letter-spacing: -.055em;
}

.hp-dialog-copy p {
    margin: 14px 0 22px;
    color: var(--hp-muted);
    font-size: .86rem;
    line-height: 1.7;
}

body.hp-dialog-open {
    overflow: hidden;
}

.hp-js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

.hp-js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 520px) {
    .hp-shell {
        width: min(100% - 48px, 1240px);
    }

    .hp-hero-actions {
        flex-direction: row;
        align-items: center;
    }

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

    .hp-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 760px) {
    .hp-header {
        padding: 13px 0;
    }

    .hp-nav-toggle {
        display: none;
    }

    .hp-nav-state {
        display: none;
    }

    .hp-nav-links {
        position: static;
        display: flex;
        padding: 0;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border: 0;
        background: none;
        box-shadow: none;
    }

    .hp-nav-links a {
        padding: 10px 12px;
        font-size: .78rem;
    }

    .hp-nav-mobile-primary {
        display: none;
    }

    .hp-nav-cta {
        display: inline-flex !important;
    }

    .hp-hero {
        padding-top: 130px;
    }

    .hp-hero-grid {
        gap: 66px;
    }

    .hp-floating-chip {
        display: flex;
    }

    .hp-proof-strip {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .hp-proof-strip > p {
        margin: 0;
        flex: 0 0 auto;
    }

    .hp-proof-logos {
        display: flex;
        flex: 1;
        justify-content: flex-end;
        gap: 30px;
    }

    .hp-section {
        padding: 120px 0;
    }

    .hp-section-heading {
        margin-bottom: 62px;
    }

    .hp-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .hp-capability-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .hp-audience-card {
        padding: 58px;
        border-radius: var(--hp-radius-xl);
    }

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

    .hp-dialog-copy {
        padding: 35px;
    }
}

@media (min-width: 980px) {
    .hp-hero {
        display: flex;
        min-height: 100svh;
        padding-bottom: 28px;
        flex-direction: column;
        justify-content: center;
    }

    .hp-hero-grid {
        grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
        gap: 68px;
    }

    .hp-hero h1 {
        font-size: clamp(4.3rem, 6.6vw, 6.2rem);
    }

    .hp-proof-strip {
        margin-top: 74px;
    }

    .hp-section-heading > p:last-child {
        margin-left: auto;
        max-width: 520px;
    }

    .hp-featured-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        align-items: start;
    }

    .hp-featured-card {
        grid-column: span 6;
    }

    .hp-featured-card:nth-child(2),
    .hp-featured-card:nth-child(4) {
        margin-top: 58px;
    }

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

    .hp-how-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: 100px;
        align-items: start;
    }

    .hp-how-intro {
        position: sticky;
        top: 120px;
    }

    .hp-audience-card {
        grid-template-columns: 1.15fr .85fr;
        gap: 90px;
        align-items: end;
    }

    .hp-faq-grid {
        grid-template-columns: .8fr 1.2fr;
        gap: 110px;
        align-items: start;
    }

    .hp-faq-heading {
        position: sticky;
        top: 120px;
    }

    .hp-final-cta {
        padding: 140px 0;
    }

    .hp-footer-grid {
        grid-template-columns: 1.2fr .8fr;
        gap: 100px;
    }

    .hp-dialog-layout {
        grid-template-columns: minmax(0, 1.6fr) minmax(270px, .6fr);
        align-items: stretch;
    }

    .hp-dialog-compare,
    .hp-dialog-compare .hp-compare-media {
        min-height: 100%;
    }

    .hp-dialog-copy {
        display: flex;
        padding: 40px;
        flex-direction: column;
        justify-content: center;
    }

    .hp-dialog-copy .hp-button {
        align-self: flex-start;
    }
}

@media (min-width: 1240px) {
    .hp-capability-copy {
        min-height: 216px;
        padding: 23px;
    }

    .hp-featured-copy {
        padding-inline: 23px;
    }
}

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

    .homepage-v2-page *,
    .homepage-v2-page *::before,
    .homepage-v2-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .hp-js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
