@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');
@import url('https://fonts.cdnfonts.com/css/satoshi');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --bg: #F4F4F4;
    --surface: #FFFFFF;
    --text: #0F172A;
    --muted: #6B7280;
    --border: #E1E2E3;
    --accent: #111827;
    --soft: #F8FAFC;
    --orbit-icon-size: 38px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Satoshi', system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--text);
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.6;
}

section {
    max-width: 1200px;
    width: 100%;
    padding-inline: 13px;
    border-style: solid;
    border-color: var(--border);
    border-width: 0 1px 0 1px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 36px;
    gap: 24px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-name {
    font-family: 'Cal Sans', sans-serif;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    color: #4B5563;
}

.nav-links a {
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
    border-color: var(--text);
}

.nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.top-left-decor {
    height: 22px;
}

.header {
    display: flex;
    background-color: #FFFFFF;
    box-shadow: 0 1px 5px -4px #242424b3, 0 4px 8px #2424240d;
    border-radius: 12px;
    border: 1px solid #E1E2E3;
}

.big-title {
    font-family: 'Cal Sans', sans-serif;
    font-weight: 200;
    font-size: 64px;
    line-height: 70px;
    margin-bottom: 20px;
}

.under-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-inline: 62px;
}

.under-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #898989;
}

.image {
    min-width: 480px;
    padding: 16px;
}

.image > img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    color: #000000;
    border: 1px solid #DEDEDE;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 12px;
}

.email-container {
    width: 100%;
    max-width: 520px;
    margin-top: 24px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    padding: 4px 7px 4px 24px;
    height: 60px;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.input-wrapper:focus-within {
    border-color: #1a1a1a;
}

.email-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 0;
    min-width: 0;
    height: 100%;
}

.email-input::placeholder {
    color: transparent;
}

.floating-label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 400;
    color: #898989;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 6px;
    margin-left: -6px;
}

.email-input:focus ~ .floating-label,
.email-input:not(:placeholder-shown) ~ .floating-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 500;
    color: #666;
    background: #fff;
}

.join-btn {
    flex-shrink: 0;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.join-btn:hover {
    background: #333;
}

.join-btn:active {
    transform: scale(0.98);
}

.divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 13px 0;
}

.divider-side {
    flex: 1;
    display: flex;
    align-items: center;
}

.divider-side:first-child {
    justify-content: flex-end;
}

.divider-side:last-child {
    justify-content: flex-start;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #E0E0E0;
}

.divider-center {
    width: 1200px;
    height: 1px;
    background-color: #E0E0E0;
    flex-shrink: 0;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.section-head.left {
    align-items: flex-start;
    text-align: left;
    max-width: 520px;
}

.section-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #94A3B8;
}

.section-title {
    font-family: 'Cal Sans', sans-serif;
    font-size: 40px;
    font-weight: 200;
    line-height: 1.2;
}

.section-lead {
    font-size: 16px;
    color: var(--muted);
    max-width: 720px;
}

.section-block {
    padding-block: 56px;
}

.prompts-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px 24px;
}

.prompt-stage {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.prompt-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 52px 40px;
}

.prompt-text {
    font-family: 'Cal Sans', sans-serif;
    font-size: 48px;
    font-weight: 200;
    line-height: 1.25;
    color: #111827;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 12px;
    text-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.prompt-word {
    display: inline-block;
    opacity: 1;
    filter: blur(0px);
    transition: none;
}

.prompt-blur {
    position: absolute;
    width: 420px;
    height: 260px;
    filter: blur(60px);
    opacity: 0.65;
    will-change: transform;
    z-index: 1;
}

.prompt-blur--one {
    top: -80px;
    left: -60px;
    background: radial-gradient(circle at 30% 30%, rgba(126, 206, 255, 0.7), rgba(126, 206, 255, 0));
    animation-delay: -6s;
}

.prompt-blur--two {
    bottom: -90px;
    right: -40px;
    background: radial-gradient(circle at 70% 50%, rgba(164, 240, 205, 0.7), rgba(164, 240, 205, 0));
    animation-delay: -12s;
}

.prompt-blur--three {
    top: 15%;
    right: 10%;
    width: 320px;
    height: 220px;
    background: radial-gradient(circle at 50% 50%, rgba(244, 208, 166, 0.6), rgba(244, 208, 166, 0));
    animation-delay: -18s;
}

.orbit-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}

.orbit-icon {
    position: absolute;
    width: var(--orbit-icon-size);
    height: var(--orbit-icon-size);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background-image: var(--icon-image, none), linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(200, 210, 220, 0.4));
    background-size: cover, 100% 100%;
    background-position: center, center;
    box-shadow:
        0 18px 36px rgba(15, 23, 42, 0.18),
        0 6px 12px rgba(15, 23, 42, 0.1);
    opacity: 0.9;
    will-change: transform;
}

.advantages {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0 40px;
}

.advantages h1 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 42px;
    font-weight: 200;
    line-height: 52px;
    color: #000000;
}

.advantages p {
    font-size: 16px;
    color: #898989;
}

.advantages-box {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.box {
    background-color: #FFFFFF;
    box-shadow: 0 1px 5px -4px #242424b3, 0 4px 8px #2424240d;
    border-radius: 16px;
    border: 1px solid #E1E2E3;
    width: 100%;
    padding: 24px;
}

.number {
    background-color: #e5e7eb;
    color: #14141499;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    width: 32px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box > h1 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
    margin-bottom: 6px;
}

.box > h2 {
    font-size: 15px;
    font-weight: 400;
    color: #898989;
    line-height: 22px;
}

.steps-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 5px -4px #242424b3, 0 4px 8px #2424240d;
}

.step-number {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 15px;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
}

.split-center {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.split-center .split-content {
    align-items: center;
    text-align: center;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.split-list {
    display: grid;
    gap: 12px;
}

.split-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
}

.split-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.split-item p {
    font-size: 14px;
    color: var(--muted);
}

.image-placeholder {
    min-height: 320px;
    border: 1.5px dashed #CBD5F5;
    border-radius: 18px;
    background: #F8FAFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #64748B;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.image-placeholder::after {
    content: attr(data-label);
}

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

.case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 1px 5px -4px #242424b3, 0 4px 8px #2424240d;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #E2E8F0;
    font-size: 12px;
    color: #64748B;
    background: #F8FAFC;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.case-card h3 {
    font-size: 18px;
}

.case-copy {
    font-size: 15px;
    color: var(--muted);
}

.case-foot {
    font-size: 13px;
    color: #94A3B8;
}

.safety-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.safety-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 5px -4px #242424b3, 0 4px 8px #2424240d;
}

.safety-card h3 {
    margin-bottom: 8px;
}

.safety-card p {
    color: var(--muted);
    font-size: 15px;
}

.system-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.system-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 5px -4px #242424b3, 0 4px 8px #2424240d;
}

.system-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

.system-card p {
    font-size: 14px;
    color: var(--muted);
}

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

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 5px -4px #242424b3, 0 4px 8px #2424240d;
}

.stat-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.stat-card p {
    font-size: 15px;
    color: var(--muted);
}

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

.quote-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 5px -4px #242424b3, 0 4px 8px #2424240d;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote {
    font-size: 16px;
    color: #111827;
}

.quote-author {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94A3B8;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 840px;
    margin: 0 auto;
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    background: #fff;
    box-shadow: 0 1px 5px -4px #242424b3, 0 4px 8px #2424240d;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    list-style: none;
}

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

.faq-list p {
    font-size: 14px;
    color: var(--muted);
}

.cta-section {
    padding-block: 56px 80px;
}

.cta-card {
    background: #111827;
    color: #fff;
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-card .section-kicker,
.cta-card .section-lead {
    color: rgba(255, 255, 255, 0.7);
}

.cta-card .section-title {
    color: #fff;
}

.cta-button {
    background: #fff;
    color: #111827;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
}

.footer {
    width: 100%;
    background: #0F172A;
    color: #E2E8F0;
    padding: 64px 24px 32px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    height: 22px;
}

.footer-tagline {
    font-family: 'Cal Sans', sans-serif;
    font-size: 20px;
}

.footer-note {
    color: rgba(226, 232, 240, 0.6);
    font-size: 13px;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(226, 232, 240, 0.7);
}

.footer-column a,
.footer-placeholder {
    font-size: 14px;
    color: rgba(226, 232, 240, 0.75);
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(226, 232, 240, 0.6);
}

.footer-domain {
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 50;
}

.drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: absolute;
    top: 24px;
    bottom: 24px;
    right: 24px;
    width: min(420px, calc(100vw - 48px));
    height: auto;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    transform: translateX(120%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.drawer-overlay.is-open .drawer {
    transform: translateX(0);
}

.drawer-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.drawer-confetti canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.drawer-content {
    position: relative;
    z-index: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: center;
}

.drawer-eyebrow,
.drawer-copy,
.drawer-subtitle {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9AA3AE;
}

.drawer-title {
    font-family: 'Cal Sans', sans-serif;
    font-weight: 200;
    font-size: 36px;
    color: #0F172A;
}

.drawer-count {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Cal Sans', sans-serif;
    font-size: 54px;
    color: #0F172A;
}

.drawer-count-label {
    font-size: 24px;
    color: #64748B;
}

.drawer-subtitle {
    text-transform: none;
    letter-spacing: 0;
    font-size: 15px;
    margin-top: 8px;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    background: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.drawer-close span {
    position: absolute;
    width: 14px;
    height: 2px;
    background: #0F172A;
    border-radius: 999px;
}

.drawer-close span:first-child {
    transform: rotate(45deg);
}

.drawer-close span:last-child {
    transform: rotate(-45deg);
}

.drawer-close:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

@media (max-width: 1200px) {
    .divider-center {
        width: calc(100vw - 100px);
        max-width: 1200px;
    }

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

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

    .use-cases-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .advantages-box {
        grid-template-columns: 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        flex-direction: column;
    }

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

@media (max-width: 720px) {
    section {
        padding-inline: 16px;
        padding-block: 24px;
    }

    .prompt-text {
        font-size: 34px;
    }

    .steps-grid,
    .use-cases-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .prompt-stage {
        min-height: 230px;
        border-radius: 18px;
    }

    .prompt-text {
        font-size: 28px;
    }

    :root {
        --orbit-icon-size: 30px;
    }

    .input-wrapper {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        gap: 10px;
        padding: 16px;
        border-radius: 20px;
    }

    .join-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .prompt-blur,
    .orbit-icon {
        animation: none;
    }
}
