.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 18px 0;
    color: #fff;
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, padding .35s ease;
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    padding: 12px 0;
    color: #000;
    background: rgba(255, 255, 255, .94);
    border-bottom-color: var(--color-line);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    backdrop-filter: blur(18px) saturate(1.4);
}

.nav-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-layout>.button {
    justify-self: end;
}

.primary-nav {
    display: flex;
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(139, 139, 139, .1);
    border-radius: 999px;
    background: rgba(139, 139, 139, .08);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
}

.primary-nav a {
    padding: 9px 22px;
    transition: color .2s ease;
    color: #8b8b8b;
    font-size: 16px;
    font-weight: 500;
}

.primary-nav a.is-active {
    color: #fff;
}

.site-header.is-scrolled .nav-layout>.button {
    color: #FFFFFF;
    background: #1A191F;
}

.site-header.is-scrolled .nav-layout>.button svg path {
    fill: #FFFFFF;
}

.site-header.is-scrolled .primary-nav a {
    color: var(--color-muted);
}

.site-header.is-scrolled .primary-nav a.is-active {
    color: #000;
}

.site-header.is-scrolled .brand--nav img {
    filter: invert(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
    z-index: 110;
    transition: border-color .25s ease, background .25s ease;
}

.nav-toggle:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background: #fff;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}

.site-header.is-scrolled .nav-toggle {
    border-color: rgba(0, 0, 0, .12);
    background: rgba(0, 0, 0, .04);
}

.site-header.is-scrolled .nav-toggle:hover {
    border-color: rgba(0, 0, 0, .25);
    background: rgba(0, 0, 0, .08);
}

.site-header.is-scrolled .nav-toggle span {
    background: #000;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    background: url("/bg.png") 50% 50% / cover no-repeat;
    background-color: #151517;
    min-height: clamp(760px, 77.78vw, 1120px);
    overflow: hidden;
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: clamp(760px, 77.78vw, 1120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(180px, 15vw, 216px);
    text-align: center;
    container-type: inline-size;
}

.hero h1 {
    width: 100%;
    margin: 0 auto 48px;
    font-family: var(--font-sans);
    font-size: clamp(2.8rem, 7.7cqw, 6.35rem);
    line-height: 1.02;
    font-weight: 700;
}

.hero h1>span {
    display: block;
}


/* .hero-title-line {
    white-space: nowrap;
} */

.hero h1 em {
    color: var(--color-accent);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
}


/* removed */


/* .cta h2 em { */


/* color: var(--color-accent);
    font-style: normal;
} */

.hero h1 em {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: -0.02em;
}

.hero-glow,
.cta-glow,
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(78px);
    pointer-events: none;
}

.hero-glow {
    filter: blur(200px);
    animation: hero-glow-float 5s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-glow--tr {
    width: 400px;
    height: 400px;
    right: 145px;
    top: 145px;
    background: #B6FF00;
    opacity: 0.5;
    --glow-x: -30px;
    --glow-y: 30px;
    animation-delay: -1s;
}

.hero-glow--br {
    width: 400px;
    height: 400px;
    right: 78px;
    bottom: 3px;
    background: #B6FF00;
    opacity: 0.5;
    --glow-x: -20px;
    --glow-y: -20px;
    animation-delay: -2.5s;
}

.hero-glow--bl {
    width: 400px;
    height: 400px;
    left: 0;
    bottom: 0;
    background: #B6FF00;
    opacity: 0.5;
    --glow-x: 30px;
    --glow-y: -30px;
    animation-delay: -4s;
}

@keyframes hero-glow-float {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(var(--glow-x), var(--glow-y), 0) scale(1.08);
    }
}

.dashboard-frame {
    width: 100%;
    /* height: clamp(220px, 33.75vw, 483px); */
    flex: 0 0 auto;
    align-self: stretch;
    margin-top: 80px;
    padding-top: 8px;
    padding-left: 8px;
    padding-right: 8px;
    overflow: hidden;
    border-top: 1px solid #7CFC00;
    border-left: 1px solid #7CFC00;
    border-right: 1px solid #7CFC00;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
    background: rgba(252, 252, 251, 0.1);
    box-shadow: 0 0 32px 4px rgba(26, 25, 31, 0.8);
}

.dashboard-image {
    width: 100%;
    height: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 0;
}

.section-heading h2 {
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 3.33vw, 3rem);
    line-height: 1.3;
    color: #1A191F;
}

.services {
    padding-top: 124px;
}

.intelligence {
    padding-bottom: 122px;
}

.prompts,
.process,
.rewards,
.prototype {
    scroll-margin-top: 96px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    margin: 0 0 8px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #1A191F;
}

.service-image,
.reward-media {
    width: 100%;
    height: 300px;
    margin-bottom: 24px;
    border-radius: 12px;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reward-media {
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #f5f5f5;
}

.service-image img,
.reward-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card p {
    min-height: auto;
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.35;
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    color: #8B8B8B;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    
}

.tag-list li {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(139, 139, 139, .1);
    color: #111;
    font-size: .875rem;
    font-weight: 500;
    line-height: 20px;
}

.tag-list li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    vertical-align: middle;
}

.ambient-glow {
    width: 530px;
    height: 430px;
    right: -110px;
    top: 270px;
    background: rgba(112, 239, 0, .14);
}

.split-heading {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(40px, 5.7vw + 18px, 100px);
    margin-bottom: clamp(40px, 3.6vw + 26px, 78px);
}

.split-copy p {
    color: #000;
}

.feature-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-panel {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 24px;
    gap: 24px;
    isolation: isolate;
    height: 300px;
    background: rgba(252, 252, 251, 0.5);
    border: 1px solid rgba(139, 139, 139, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 12px;
}

.feature-panel > *:not(.ai-blob) {
    position: relative;
    z-index: 1;
}

.feature-panel--dark {
    color: #fff;
    border-color: #000;
    background: var(--color-ink);
}

.feature-panel p {
    margin-bottom: 0;
}

.ai-blob {
    --blob-color: #1A191F;
    position: absolute;
    inset: 12px;
    z-index: 0;
    pointer-events: none;
    opacity: .72;
}

.feature-panel--dark .ai-blob {
    --blob-color: #fff;
    opacity: .86;
}

.ai-blob::before {
    content: none;
}

.ai-blob i {
    position: absolute;
    top: var(--particle-top);
    left: var(--particle-left);
    display: block;
    width: var(--particle-size, 8px);
    height: var(--particle-size, 8px);
    border-radius: var(--particle-radius, 50%);
    background: var(--blob-color);
    opacity: var(--particle-opacity, .78);
    box-shadow: 0 0 var(--particle-glow, 7px) rgba(112, 239, 0, .16);
    transform: translate(-50%, -50%) rotate(var(--particle-rotate, 0deg));
    animation: ai-debris-float var(--particle-speed, 8s) ease-in-out infinite alternate;
    animation-delay: var(--particle-delay, 0s);
}

.ai-blob i:nth-child(1) {
    --particle-top: 12%;
    --particle-left: 10%;
    --particle-drift-x: 28px;
    --particle-drift-y: 18px;
    --particle-size: 10px;
    --particle-speed: 7.2s;
    --particle-radius: 3px;
    --particle-rotate: 18deg;
}

.ai-blob i:nth-child(2) {
    --particle-top: 8%;
    --particle-left: 34%;
    --particle-drift-x: -18px;
    --particle-drift-y: 32px;
    --particle-size: 6px;
    --particle-speed: 8.2s;
    --particle-delay: -.5s;
}

.ai-blob i:nth-child(3) {
    --particle-top: 10%;
    --particle-left: 74%;
    --particle-drift-x: -34px;
    --particle-drift-y: 24px;
    --particle-size: 8px;
    --particle-speed: 7.7s;
    --particle-radius: 2px;
    --particle-rotate: -12deg;
    --particle-delay: -1.1s;
}

.ai-blob i:nth-child(4) {
    --particle-top: 28%;
    --particle-left: 88%;
    --particle-drift-x: -36px;
    --particle-drift-y: -20px;
    --particle-size: 5px;
    --particle-speed: 9.1s;
    --particle-delay: -.8s;
}

.ai-blob i:nth-child(5) {
    --particle-top: 34%;
    --particle-left: 14%;
    --particle-drift-x: 34px;
    --particle-drift-y: -24px;
    --particle-size: 9px;
    --particle-speed: 7.4s;
    --particle-radius: 1px;
    --particle-rotate: 32deg;
    --particle-delay: -1.4s;
}

.ai-blob i:nth-child(6) {
    --particle-top: 38%;
    --particle-left: 42%;
    --particle-drift-x: 26px;
    --particle-drift-y: -28px;
    --particle-size: 6px;
    --particle-speed: 8.8s;
    --particle-delay: -.2s;
}

.ai-blob i:nth-child(7) {
    --particle-top: 44%;
    --particle-left: 66%;
    --particle-drift-x: -26px;
    --particle-drift-y: 30px;
    --particle-size: 12px;
    --particle-speed: 7.9s;
    --particle-opacity: .5;
    --particle-radius: 2px;
    --particle-rotate: -26deg;
}

.ai-blob i:nth-child(8) {
    --particle-top: 68%;
    --particle-left: 8%;
    --particle-drift-x: 26px;
    --particle-drift-y: 18px;
    --particle-size: 5px;
    --particle-speed: 6s;
    --particle-delay: -1.8s;
    --particle-opacity: .42;
}

.ai-blob i:nth-child(9) {
    --particle-top: 76%;
    --particle-left: 32%;
    --particle-drift-x: -22px;
    --particle-drift-y: -32px;
    --particle-size: 7px;
    --particle-speed: 5.8s;
    --particle-delay: -.9s;
    --particle-opacity: .5;
    --particle-radius: 2px;
    --particle-rotate: 22deg;
}

.ai-blob i:nth-child(10) {
    --particle-top: 78%;
    --particle-left: 58%;
    --particle-drift-x: 36px;
    --particle-drift-y: -22px;
    --particle-size: 6px;
    --particle-speed: 6.4s;
    --particle-delay: -2.2s;
    --particle-opacity: .46;
}

.ai-blob i:nth-child(11) {
    --particle-top: 70%;
    --particle-left: 86%;
    --particle-drift-x: -34px;
    --particle-drift-y: -30px;
    --particle-size: 5px;
    --particle-speed: 5.5s;
    --particle-delay: -1.2s;
    --particle-opacity: .44;
}

.ai-blob i:nth-child(12) {
    --particle-top: 22%;
    --particle-left: 54%;
    --particle-drift-x: 24px;
    --particle-drift-y: 36px;
    --particle-size: 4px;
    --particle-speed: 6.8s;
    --particle-delay: -2.8s;
    --particle-opacity: .38;
}

.ai-blob i:nth-child(13) {
    --particle-top: 20%;
    --particle-left: 24%;
    --particle-drift-x: 20px;
    --particle-drift-y: -34px;
    --particle-size: 4px;
    --particle-speed: 5.9s;
    --particle-delay: -3.1s;
    --particle-opacity: .42;
}

.ai-blob i:nth-child(14) {
    --particle-top: 56%;
    --particle-left: 48%;
    --particle-drift-x: -28px;
    --particle-drift-y: 20px;
    --particle-size: 7px;
    --particle-speed: 4.9s;
    --particle-delay: -1.7s;
    --particle-opacity: .52;
    --particle-radius: 2px;
    --particle-rotate: -18deg;
}

.ai-blob i:nth-child(15) {
    --particle-top: 18%;
    --particle-left: 82%;
    --particle-drift-x: 22px;
    --particle-drift-y: 34px;
    --particle-size: 4px;
    --particle-speed: 6.2s;
    --particle-delay: -.4s;
    --particle-opacity: .4;
}

.ai-blob i:nth-child(16) {
    --particle-top: 88%;
    --particle-left: 18%;
    --particle-drift-x: 30px;
    --particle-drift-y: -20px;
    --particle-size: 5px;
    --particle-speed: 5.4s;
    --particle-delay: -2.4s;
    --particle-opacity: .46;
}

.ai-blob i:nth-child(17) {
    --particle-top: 50%;
    --particle-left: 88%;
    --particle-drift-x: -24px;
    --particle-drift-y: 32px;
    --particle-size: 8px;
    --particle-speed: 4.6s;
    --particle-delay: -3.4s;
    --particle-opacity: .5;
    --particle-radius: 1px;
    --particle-rotate: 38deg;
}

.ai-blob i:nth-child(18) {
    --particle-top: 52%;
    --particle-left: 8%;
    --particle-drift-x: 34px;
    --particle-drift-y: 26px;
    --particle-size: 6px;
    --particle-speed: 6.6s;
    --particle-delay: -2s;
    --particle-opacity: .44;
}

@keyframes ai-debris-float {
    from {
        transform: translate(-50%, -50%) rotate(var(--particle-rotate, 0deg)) scale(.82);
    }
    to {
        transform: translate(calc(-50% + var(--particle-drift-x)), calc(-50% + var(--particle-drift-y))) rotate(calc(var(--particle-rotate, 0deg) + 80deg)) scale(1.08);
    }
}

.node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.node-icon svg {
    display: block;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.feature-grid div {
    min-height: 98px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 19px;
    background: rgba(252, 252, 251, 0.5);
    border: 1px solid rgba(139, 139, 139, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    font-size: .84rem;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    cursor: default;
}

.feature-grid div:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(112, 239, 0, .12);
    transform: translateY(-2px);
}

.feature-grid span {
    display: flex;
    width: 20px;
    height: 20px;
    color: #1A191F;
}

.feature-grid span svg {
    display: block;
}

.split-heading--compact {
    align-items: end;
    margin-bottom: 52px;
}

.split-heading--compact>p {
    color: #000;
    margin-bottom: 0;
}

.chat {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    background: var(--color-paper);
    box-shadow: 0 30px 70px rgba(23, 23, 29, .14);
}

.chat-header {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    color: #fff;
    background: var(--color-ink);
}

.chat-header>div:last-child {
    display: flex;
    flex-direction: column;
}

.chat-header strong {
    font-size: .94rem;
}

.chat-header span {
    color: var(--color-muted);
    font-size: .73rem;
}

.chat-avatar {
    width: 46px;
    height: 46px;
    display: grid;
    flex: 0 0 46px;
    place-items: center;
    color: #111;
    border-radius: 50%;
    background: var(--color-accent);
    font-size: 1.4rem;
}

.chat-log {
    height: 590px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    padding: 28px 6%;
    background-color: #161616;
    background-size: 82px 82px;
    scroll-behavior: smooth;
}

.chat-day {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
}

.chat-day span {
    padding: 6px 12px;
    color: var(--color-muted);
    border-radius: 7px;
    background: var(--color-ink-soft);
    font-size: .68rem;
    text-transform: uppercase;
}

.chat-bubble {
    position: relative;
    max-width: min(68%, 680px);
    padding: 9px 12px 7px;
    border-radius: 9px;
    color: #fff;
    font-size: .86rem;
    line-height: 1.42;
    animation: bubble-in .22s ease both;
}

.chat-bubble p {
    margin: 0;
    padding-right: 58px;
    color: inherit;
}

.chat-bubble--sent {
    align-self: flex-end;
    border-top-right-radius: 2px;
    background: var(--color-accent-deep);
}

.chat-bubble--received {
    align-self: flex-start;
    border-top-left-radius: 2px;
    background: var(--color-ink-soft);
}

.chat-bubble--sent::after,
.chat-bubble--received::before {
    content: "";
    position: absolute;
    top: 0;
    border: 7px solid transparent;
}

.chat-bubble--sent::after {
    right: -7px;
    border-top-color: var(--color-accent-deep);
}

.chat-bubble--received::before {
    left: -7px;
    border-top-color: var(--color-ink-soft);
}

.chat-meta {
    display: block;
    margin-top: 2px;
    color: var(--color-muted);
    font-size: .65rem;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
}

.message-ticks {
    margin-left: 3px;
    color: var(--color-muted);
    font-style: normal;
    letter-spacing: -3px;
}

.message-ticks.is-read {
    color: var(--color-accent);
}

.chat-bubble--typing {
    min-width: 68px;
    padding: 14px 17px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-muted);
    animation: typing 1s infinite ease-in-out;
}

.typing-dots i:nth-child(2) {
    animation-delay: .15s;
}

.typing-dots i:nth-child(3) {
    animation-delay: .3s;
}

.chat-simulator {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--color-ink);
}

.simulator-add,
.simulator-send {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--color-muted);
    border-radius: 50%;
    font-size: 1.35rem;
}

.simulator-input {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    overflow: hidden;
    color: #fff;
    border-radius: 999px;
    background: var(--color-ink-soft);
    font-size: .88rem;
    white-space: nowrap;
}

#typing-preview:empty::before {
    content: "Message";
    color: var(--color-muted);
}

.typing-caret {
    width: 1px;
    height: 19px;
    margin-left: 2px;
    background: #fff;
    opacity: 0;
}

.chat-simulator.is-typing .typing-caret {
    opacity: 1;
    animation: caret-blink .75s steps(1) infinite;
}

.simulator-send {
    color: #000;
    background: var(--color-muted);
    font-size: 16px;
    transition: transform .16s ease, background .16s ease;
}

.chat-simulator.is-ready .simulator-send {
    background: var(--color-accent);
    transform: scale(1.06);
}

.chat-simulator.is-sending .simulator-send {
    transform: scale(.86);
}

.chat-status {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--color-muted);
    border-top: 1px solid rgba(255, 255, 255, .04);
    background: var(--color-ink);
    font-size: .7rem;
}

.chat-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 5px rgba(112, 239, 0, .12);
    animation: status-pulse 1.8s infinite;
}

@keyframes bubble-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.98);
    }
}

@keyframes typing {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

@keyframes status-pulse {
    50% {
        opacity: .45;
        transform: scale(.8);
    }
}

@keyframes caret-blink {
    50% {
        opacity: 0;
    }
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.process-layout header .button {
    margin-top: 24px;
}

.process-list {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 500px;
}

.process-list li {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    gap: 20px;
    height: 120px;
    width: 100%;
    background: #FCFCFB;
    border: 1px solid rgba(139, 139, 139, 0.2);
    border-radius: 8px;
}

.process-thumb {
    width: 184px;
    height: 104px;
    border-radius: 8px;
    flex: 0 0 auto;
    overflow: hidden;
}

.process-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.process-list h3,
.process-list p {
    margin-bottom: 4px;
}

.process-list p {
    font-size: .84rem;
}

.cta {
    position: relative;
    padding: 120px 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #161616;
    background: url("footer.png") / cover no-repeat;
    background-color: #161616;
}

.cta-glow--tl {
    width: 448px;
    height: 448px;
    top: -313px;
    left: -408px;
    background: #B6FF00;
    box-shadow: 300px 300px 300px;
    border-radius: 9999px;
    filter: blur(150px);
}

.cta-glow--tr {
    width: 448px;
    height: 448px;
    top: -313px;
    right: -127px;
    background: #B6FF00;
    box-shadow: 300px 300px 300px;
    border-radius: 9999px;
    filter: blur(150px);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h2 em {
    color: #7CFC00;
    font-style: normal;
}

.cta-content p {
    max-width: 504px;
    margin: 0 auto;
    color: #8B8B8B;
    font-size: 18px;
    line-height: 27px;
}

.cta-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
}

.cta h2 {
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 3.33vw, 48px);
    line-height: 1.3;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 16px;
}

.cta .button-row {
    margin-top: 48px;
}

.site-footer {
    padding: 48px 0;
    background: #fff;
    border-top: 1px solid rgba(139, 139, 139, .2);
}

.footer-layout,
.footer-brand,
.site-footer nav {
    display: flex;
    align-items: center;
}

.footer-layout {
    justify-content: space-between;
}

.footer-brand {
    gap: 32px;
}

.footer-brand .brand {
    width: auto;
}

.footer-brand span,
.site-footer nav {
    color: #8B8B8B;
    font-size: 14px;
    line-height: 20px;
}

.site-footer nav {
    gap: 20px;
}

.site-footer nav a {
    color: #8B8B8B;
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-glow {
        animation: none;
    }
}
.process-icon {
    display: grid;
    place-items: center;
    background: #161616;
    position: relative;
}

.icon-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 239, 0, .15), transparent 70%);
    pointer-events: none;
    animation: icon-glow-pulse 3s ease-in-out infinite;
}

.process-icon-svg {
    display: block;
    position: relative;
    z-index: 1;
}

/* Step 1: Connect - node pulse */
.icon-dot { animation: icon-dot-pulse 2s ease-in-out infinite; }
.icon-dot--b { animation-delay: .5s; }
.icon-dot--c { animation-delay: 1s; }
.icon-dot--d { animation-delay: 1.5s; }
.icon-line { stroke-dasharray: 12; stroke-dashoffset: 12; animation: icon-line-draw 2s ease-in-out infinite; }
.icon-line--v { animation-delay: 1s; }
.icon-pulse { animation: icon-pulse-fade 2s ease-in-out infinite; }

/* Step 2: Brain + sparkles */
.icon-brain { animation: icon-brain-glow 4s ease-in-out infinite; }
.icon-sparkle { opacity: 0; animation: icon-sparkle-pop 2s ease-in-out infinite; }
.icon-sparkle--2 { animation-delay: .4s; }
.icon-sparkle--3 { animation-delay: .8s; }
.icon-sparkle--4 { animation-delay: 1.2s; }

/* Step 3: Gear + orbiting dots */
.icon-gear { animation: icon-gear-spin 6s linear infinite; transform-origin: 12px 12px; }
.icon-orbit-dot { animation: icon-orbit 3s linear infinite; transform-origin: 12px 12px; }
.icon-orbit-dot--2 { animation-delay: 1s; }
.icon-orbit-dot--3 { animation-delay: 2s; }

/* Step 4: Chart bars + trend */
.icon-bar { animation: icon-bar-rise 2s ease-out infinite alternate; }
.icon-bar--2 { animation-delay: .15s; }
.icon-bar--3 { animation-delay: .3s; }
.icon-bar--4 { animation-delay: .45s; }
.icon-trend { stroke-dasharray: 40; stroke-dashoffset: 40; animation: icon-trend-draw 3s ease-in-out infinite; }
.icon-flash { animation: icon-flash-pulse 2s ease-in-out infinite; }

@keyframes icon-glow-pulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes icon-dot-pulse {
    0%, 100% { r: 2; opacity: .4; }
    50% { r: 3; opacity: 1; }
}

@keyframes icon-line-draw {
    0%, 100% { stroke-dashoffset: 12; }
    50% { stroke-dashoffset: 0; }
}

@keyframes icon-pulse-fade {
    0%, 100% { opacity: .3; }
    50% { opacity: 1; }
}

@keyframes icon-brain-glow {
    0%, 100% { opacity: .7; }
    50% { opacity: 1; }
}

@keyframes icon-sparkle-pop {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes icon-gear-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes icon-orbit {
    from { transform: rotate(0deg) translateX(5px); }
    to { transform: rotate(360deg) translateX(5px); }
}

@keyframes icon-bar-rise {
    from { transform: scaleY(.6); transform-origin: bottom; }
    to { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes icon-trend-draw {
    0%, 100% { stroke-dashoffset: 40; }
    50% { stroke-dashoffset: 0; }
}

@keyframes icon-flash-pulse {
    0%, 100% { opacity: .3; transform: scale(.8); }
    50% { opacity: 1; transform: scale(1.2); }
}
