@font-face {
    font-family: 'General Sans';
    src: url('https://cdn.jsdelivr.net/npm/@aspect-ratio/general-sans@1.0.0/fonts/GeneralSans-Variable.woff2') format('woff2');
    font-weight: 300 700;
    font-display: swap;
}
@font-face {
    font-family: 'Quizy';
    src: url('Quizy.ttf') format('truetype');
    font-display: swap;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --white: #ffffff;
    --black: #000000;
    --gray-50: #fafafa;
    --gray-100: #f5f5f7;
    --gray-200: #e8e8ed;
    --gray-300: #d2d2d7;
    --gray-400: #afafb2;
    --gray-500: #86868b;
    --gray-600: #6e6e73;
    --gray-700: #424245;
    --gray-800: #1d1d1f;
    --blue: #0077B6;
    --blue-hover: #005f8a;
    --blue-light: #e0f1fa;
    --gradient-start: #0077B6;
    --gradient-mid: #5B2D8E;
    --gradient-end: #7CB518;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== UTILITIES ========== */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 120px 0; }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--gray-800); color: var(--white); }

.text-center { text-align: center; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.overline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gradient-mid);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-500);
    line-height: 1.5;
    max-width: 760px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 980px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    border: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0,119,182,0.25);
}
.btn--primary:hover {
    box-shadow: 0 6px 24px rgba(91,45,142,0.35);
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    color: var(--gradient-mid);
    border: 1.5px solid var(--gray-300);
}
.btn--secondary:hover {
    border-color: var(--gradient-mid);
    background: rgba(91,45,142,0.05);
    color: var(--gradient-mid);
}

.btn--demo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    font-size: 0.8125rem;
    padding: 10px 22px;
    font-weight: 500;
}
.btn--demo:hover {
    border-color: var(--gray-400);
    color: var(--gray-700);
    background: var(--gray-50);
}
.btn--demo svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.6;
}
.btn--ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-group--center { justify-content: center; }

/* ========== NAVBAR ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}
.nav__logo {
    display: flex;
    align-items: center;
}
.nav__logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #0077B6 0%, #1B2B7B 30%, #5B2D8E 55%, #7CB518 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav__logo-text em {
    font-style: normal;
}
.nav__logo-text--footer {
    background: linear-gradient(90deg, #4DA8DA 0%, #8B7BC8 40%, #A8D55E 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav__links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav__links a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}
.nav__links a:hover { color: var(--gray-800); }
.nav__cta {
    display: flex;
    gap: 12px;
    align-items: center;
}
.nav__cta .btn {
    padding: 8px 20px;
    font-size: 0.8125rem;
}

.nav__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
}
.nav__mobile-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--gray-800);
    position: absolute;
    left: 3px;
    transition: all 0.3s;
}
.nav__mobile-toggle span:nth-child(1) { top: 7px; }
.nav__mobile-toggle span:nth-child(2) { top: 12px; }
.nav__mobile-toggle span:nth-child(3) { top: 17px; }

/* Mobile menu open state */
.nav__mobile-toggle.open span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
}
.nav__mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav__mobile-toggle.open span:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg);
}

/* Mobile menu overlay */
.nav__mobile-menu {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav__mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.nav__mobile-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: color 0.2s;
}
.nav__mobile-menu a:hover { color: var(--gradient-mid); }
.nav__mobile-menu .btn {
    margin-top: 16px;
    text-align: center;
}

/* ========== HERO ========== */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0,119,182,0.06) 0%, rgba(91,45,142,0.03) 40%, transparent 70%);
    pointer-events: none;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--gray-100);
    border-radius: 980px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 32px;
}
.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34c759;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero__title {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero__title-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 40px;
}
.hero__connector {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--gray-400);
    margin: 0 auto 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.hero__arrow {
    display: block;
    opacity: 0.35;
    animation: arrow-bob 2s ease-in-out infinite;
}
@keyframes arrow-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}
.hero__stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}
.hero__stat h3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__stat p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ========== AI SHOWCASE ========== */
.ai-showcase {
    position: relative;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
}

/* Central orb */
.ai-showcase__orb {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulsing glow behind the orb */
.ai-showcase__glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,119,182,0.18) 0%, rgba(91,45,142,0.10) 35%, rgba(124,181,24,0.05) 55%, transparent 70%);
    animation: orb-glow 4s ease-in-out infinite;
}
@keyframes orb-glow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.25); opacity: 1; }
}

/* Spinning rings */
.ai-showcase__ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: rgba(0,119,182,0.3);
    border-right-color: rgba(91,45,142,0.15);
    animation: ring-spin 8s linear infinite;
}
.ai-showcase__ring--2 {
    inset: -20px;
    border-top-color: rgba(124,181,24,0.25);
    border-left-color: rgba(91,45,142,0.1);
    animation: ring-spin 12s linear infinite reverse;
}
@keyframes ring-spin {
    to { transform: rotate(360deg); }
}

/* Logo container inside orb */
.ai-showcase__logos {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 2;
}
.ai-showcase__logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5) rotateY(90deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.1));
}
.ai-showcase__logo.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}
.ai-showcase__logo.exiting {
    opacity: 0;
    transform: scale(0.5) rotateY(-90deg);
    transition: all 0.5s cubic-bezier(0.55, 0, 1, 0.45);
}
.ai-showcase__logo svg,
.ai-showcase__logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* Brand name text under the orb */
.ai-showcase__name-wrapper {
    position: relative;
    height: 52px;
    margin-top: 20px;
    overflow: hidden;
}
.ai-showcase__name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}
.ai-showcase__name.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.ai-showcase__name.exiting {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px);
    transition: all 0.4s ease-in;
}

/* Per-brand name colors */
.ai-showcase__name[data-brand="claude"] { color: #D97757; }
.ai-showcase__name[data-brand="chatgpt"] { color: #10a37f; }
.ai-showcase__name[data-brand="gemini"] { color: #4285F4; }

.ai-showcase__tagline {
    font-family: 'General Sans', var(--font);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: 8px;
    opacity: 0;
    animation: tagline-in 1s 0.5s forwards;
}
@keyframes tagline-in {
    to { opacity: 1; }
}
.tagline-rotate-wrapper {
    display: inline-block;
}
.tagline-rotate {
    font-weight: 600;
    color: var(--gray-800);
    transition: opacity 0.35s, transform 0.35s;
}
.tagline-rotate.out {
    opacity: 0;
    transform: translateY(-6px);
}
.tagline-rotate.in {
    opacity: 1;
    transform: translateY(0);
}

/* Orbiting platform pills */
.ai-showcase__orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.ai-showcase__pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    white-space: nowrap;
    animation: float-pill 6s ease-in-out infinite;
    animation-delay: calc(var(--i) * -1.5s);
    pointer-events: auto;
    transition: transform 0.3s, box-shadow 0.3s;
}
.ai-showcase__pill:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Position each pill around the orb */
.ai-showcase__pill:nth-child(1) { top: 10px; left: -60px; }
.ai-showcase__pill:nth-child(2) { top: 10px; right: -40px; }
.ai-showcase__pill:nth-child(3) { bottom: 60px; left: -50px; }
.ai-showcase__pill:nth-child(4) { bottom: 60px; right: -50px; }

@keyframes float-pill {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Connector lines from pills to center */
.ai-showcase__pill::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300));
    animation: pulse-line 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * -0.75s);
}
.ai-showcase__pill:nth-child(1)::after { right: -40px; top: 50%; }
.ai-showcase__pill:nth-child(2)::after { left: -40px; top: 50%; background: linear-gradient(270deg, transparent, var(--gray-300)); }
.ai-showcase__pill:nth-child(3)::after { right: -40px; top: 50%; }
.ai-showcase__pill:nth-child(4)::after { left: -40px; top: 50%; background: linear-gradient(270deg, transparent, var(--gray-300)); }

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Particle dots traveling along connectors */
.ai-showcase__pill::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color);
    box-shadow: 0 0 8px var(--color);
    animation: travel-dot 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * -0.75s);
}
.ai-showcase__pill:nth-child(1)::before { right: -40px; top: calc(50% - 2px); animation-name: dot-right; }
.ai-showcase__pill:nth-child(2)::before { left: -40px; top: calc(50% - 2px); animation-name: dot-left; }
.ai-showcase__pill:nth-child(3)::before { right: -40px; top: calc(50% - 2px); animation-name: dot-right; }
.ai-showcase__pill:nth-child(4)::before { left: -40px; top: calc(50% - 2px); animation-name: dot-left; }

@keyframes dot-right {
    0% { transform: translateX(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(40px); opacity: 0; }
}
@keyframes dot-left {
    0% { transform: translateX(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(-40px); opacity: 0; }
}

@media (max-width: 768px) {
    .ai-showcase { min-height: 300px; }
    .ai-showcase__pill:nth-child(1) { top: 0; left: 0; }
    .ai-showcase__pill:nth-child(2) { top: 0; right: 0; }
    .ai-showcase__pill:nth-child(3) { bottom: 50px; left: 10px; }
    .ai-showcase__pill:nth-child(4) { bottom: 50px; right: 10px; }
    .ai-showcase__pill::after, .ai-showcase__pill::before { display: none; }
    .ai-showcase__name { font-size: 1.375rem; }
}

/* ========== LOGOS MARQUEE ========== */
.logos {
    padding: 60px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}
.logos__label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 32px;
}
.logos__track {
    display: flex;
    gap: 64px;
    animation: scroll-logos 30s linear infinite;
}
.logos__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
}
.logos__item svg,
.logos__item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(100%);
}
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== FEATURES (Why) ========== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}
.feature-card {
    padding: 40px 32px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.25rem;
}
.feature-card__icon--blue { background: #e0f1fa; color: var(--gradient-start); }
.feature-card__icon--purple { background: #f0e6fa; color: var(--gradient-mid); }
.feature-card__icon--green { background: #eef7dc; color: var(--gradient-end); }
.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 80px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 64px;
}
.step:last-child { padding-bottom: 0; }
.step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-800);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.step::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}
.step:last-child::before { display: none; }
.step__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    margin-top: 4px;
}
.step__content p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.step__platforms {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.step__platform-tag {
    padding: 4px 12px;
    border-radius: 980px;
    background: var(--gray-100);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
}

/* ========== USE CASES ========== */
.usecases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}
.usecase-card {
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}
.usecase-card:hover {
    border-color: transparent;
    box-shadow: 0 24px 64px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}
.usecase-card__illustration {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.usecase-card__illustration--agencies {
    background: linear-gradient(160deg, #f0f4ff 0%, #e8eeff 100%);
}
.usecase-card__illustration--founders {
    background: linear-gradient(160deg, #f3f0ff 0%, #ece6ff 100%);
}
.usecase-card__illustration--creators {
    background: linear-gradient(160deg, #edfcf0 0%, #e2f9e8 100%);
}
.usecase-card__illustration svg {
    width: 160px;
    height: 120px;
}
.usecase-card__body {
    padding: 32px 28px 36px;
}
.usecase-card__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gradient-mid);
    margin-bottom: 12px;
}
.usecase-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
    line-height: 1.3;
}
.usecase-card__desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.55;
    margin-bottom: 24px;
}
.usecase-card ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.usecase-card li {
    font-size: 0.8125rem;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.45;
}
.usecase-card li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ========== TESTIMONIALS ========== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}
.testimonial-card {
    padding: 32px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: #FFB800;
    font-size: 0.875rem;
}
.testimonial-card p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-card__name {
    font-size: 0.875rem;
    font-weight: 600;
}
.testimonial-card__role {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ========== PRICING ========== */
.pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 56px;
}
.pricing__toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}
.pricing__toggle-label.active { color: var(--gray-800); }
.pricing__toggle-switch {
    width: 48px;
    height: 28px;
    border-radius: 14px;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}
.pricing__toggle-switch.active { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid)); }
.pricing__toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.pricing__toggle-switch.active::after { transform: translateX(20px); }
.pricing__save-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gradient-end);
    background: #eef7dc;
    padding: 4px 10px;
    border-radius: 980px;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pricing-card {
    border-radius: 20px;
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.4s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.pricing-card--featured {
    border: 2px solid var(--gradient-mid);
    box-shadow: 0 8px 40px rgba(91,45,142,0.14);
}
.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 980px;
    white-space: nowrap;
}
.pricing-card__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 4px;
}
.pricing-card__price span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}
.pricing-card__desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.5;
}
.pricing-card .btn {
    width: 100%;
    margin-bottom: 24px;
}
.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-card__features li {
    font-size: 0.8125rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}
.pricing-card__features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gradient-mid);
}

/* ========== CTA ========== */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: var(--gray-800);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,119,182,0.15) 0%, rgba(91,45,142,0.06) 40%, transparent 60%);
    pointer-events: none;
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-subtitle { color: var(--white); }

.cta-rotate-wrapper {
    display: inline-block;
}
.cta-rotate {
    font-weight: 700;
    -webkit-text-fill-color: var(--white);
    transition: opacity 0.4s, transform 0.4s;
}
.cta-rotate.out {
    opacity: 0;
    transform: translateY(-8px);
}
.cta-rotate.in {
    opacity: 1;
    transform: translateY(0);
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-gradient {
    background: linear-gradient(
        90deg,
        var(--gradient-start) 0%,
        var(--gradient-mid) 25%,
        var(--gradient-end) 50%,
        var(--gradient-start) 75%,
        var(--gradient-mid) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s linear infinite;
}
@keyframes gradient-flow {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* ========== FOOTER ========== */
.footer {
    padding: 64px 0 32px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}
.footer__brand-desc {
    font-size: 0.8125rem;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 300px;
}
.footer__col-title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
    font-size: 0.8125rem;
    color: var(--gray-400);
    transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .pricing__grid { grid-template-columns: repeat(2, 1fr); }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .usecases__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .hero { padding: 120px 0 64px; }
    .hero__stats { flex-direction: column; gap: 24px; }
    .nav__links, .nav__cta { display: none; }
    .nav__mobile-toggle { display: block; }
    .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .features__grid { grid-template-columns: 1fr; }
    .usecases__grid { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .btn-group { justify-content: center; }
    .steps { margin-top: 48px; }
}

/* ========== DEMO WINDOW ========== */
.demo-window {
    margin-top: 64px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    background: var(--gray-800);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}
.demo-window__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
}
.demo-window__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.demo-window__dot--red { background: #ff5f57; }
.demo-window__dot--yellow { background: #ffbd2e; }
.demo-window__dot--green { background: #28ca42; }
.demo-window__body {
    padding: 28px 24px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 0.8125rem;
    line-height: 1.8;
    color: var(--gray-300);
}
.demo-window__body .prompt { color: var(--blue); }
.demo-window__body .ai { color: #a78bfa; }
.demo-window__body .success { color: #34c759; }
.demo-window__body .dim { color: var(--gray-500); }

.typing-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--blue);
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
