:root {
    --primary: #6b38fb;
    --primary-dark: #4f25c7;
    --primary-light: #8b5cf6;
    --bg: #ffffff;
    --bg-alt: #f8f9fc;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --code-bg: #1e1e2e;
    --dark-section-bg: #0b1121;
    --text-on-dark: #e2e8f0;
    --muted-on-dark: #94a3b8;
    --primary-accent: #a78bfa;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --max-w: 1240px;
    --header-h: 80px;
    --dvce-glass: rgba(255, 255, 255, 0.05);
    --dvce-glass-hover: rgba(255, 255, 255, 0.1);
    --dvce-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --dvce-glow: 0 0 20px rgba(107, 56, 251, 0.3)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

#capabilities,
#integrations,
#method,
#faq,
#contact {
    scroll-margin-top: 120px
}

h1,
h2,
h3,
.logo,
.dvce-title {
    font-family: 'Outfit', sans-serif
}

code,
.mono {
    font-family: 'JetBrains Mono', monospace
}

.shell {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px
}

.btn-primary,
.dvce-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.dvce-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .2)
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .2)
}

.btn-primary:active {
    transform: scale(.98)
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease
}

.btn-ghost:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-2px)
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(107, 56, 251, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 56, 251, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
    pointer-events: none;
    animation: gridMove 20s linear infinite
}

@keyframes gridMove {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 60px 60px
    }
}

.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrbs 20s infinite ease-in-out
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--primary);
    animation-delay: 0s
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--primary-light);
    animation-delay: -10s
}

@keyframes floatOrbs {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(30px, 50px)
    }
}

.header {
    height: var(--header-h);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all .3s ease
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .96)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%
}

.logo {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    transition: transform .3s ease
}

.logo:hover {
    transform: scale(1.05)
}

.logo-mark {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    transform: rotate(45deg);
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: rotate(45deg) scale(1)
    }

    50% {
        transform: rotate(45deg) scale(1.1)
    }
}

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

.nav-items a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s;
    text-decoration: none;
    position: relative
}

.nav-items a:not(.btn-primary):not(.btn-ghost)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .3s ease
}

.nav-items a:not(.btn-primary):not(.btn-ghost)::after:hover {
    width: 100%
}

.nav-items a:hover {
    color: var(--primary)
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1100
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s ease
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px)
}

.hero {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(-50px, 50px) scale(1.1)
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -.03em;
    font-weight: 900;
    animation: fadeInUp 1s ease
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero p {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.7;
    animation: fadeInUp 1s ease .2s backwards
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease .4s backwards
}

.trust-badges {
    display: flex;
    gap: 32px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    animation: fadeInUp 1s ease .6s backwards
}

.badge-item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.badge-val {
    font-weight: 800;
    font-size: 18px;
    color: var(--text)
}

.badge-lbl {
    font-size: 13px;
    color: var(--text-muted)
}

.terminal-window {
    background: var(--code-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .25);
    overflow: hidden;
    font-size: 13px;
    color: #a9b1d6;
    border: 1px solid rgba(255, 255, 255, .1);
    position: relative;
    animation: fadeInRight 1s ease .4s backwards;
    transform-style: preserve-3d
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.terminal-window::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: .3;
    filter: blur(20px)
}

.term-header {
    background: #161622;
    padding: 14px 18px;
    display: flex;
    gap: 7px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #414868;
    transition: all .3s ease
}

.dot.red {
    background: #f7768e
}

.dot.yellow {
    background: #e0af68
}

.dot.green {
    background: #9ece6a
}

.term-body {
    padding: 24px;
    min-height: 360px;
    max-height: 360px;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto
}

.term-body::-webkit-scrollbar {
    width: 6px
}

.term-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .1);
    border-radius: 3px
}

.log-line {
    display: flex;
    gap: 14px;
    opacity: 0;
    animation: fadeIn .4s forwards
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.log-time {
    color: #565f89;
    min-width: 75px;
    font-size: 12px
}

.log-proc {
    color: #7aa2f7;
    font-weight: 700;
    min-width: 95px
}

.log-msg {
    color: #c0caf5;
    flex: 1
}

.log-msg.success {
    color: #9ece6a
}

.log-msg.warn {
    color: #e0af68
}

.log-msg.info {
    color: #7dcfff
}

.bento-section {
    padding: 120px 0;
    background: var(--bg-alt)
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px
}

.section-header h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted)
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px
}

.bento-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all .4s ease;
    position: relative;
    overflow: hidden
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(107, 56, 251, .05));
    opacity: 0;
    transition: opacity .4s ease
}

.bento-card:hover::before {
    opacity: 1
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(107, 56, 251, .15)
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2
}

.bento-wide {
    grid-column: span 2
}

.icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(107, 56, 251, .25);
    transition: transform .3s ease
}

.bento-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg)
}

.bento-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700
}

.integration-section {
    background: var(--dark-section-bg);
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
    position: relative
}

.integration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle, rgba(107, 56, 251, .15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.protocol-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 70px
}

.protocol-tag {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--muted-on-dark);
    transition: all .3s ease;
    cursor: default
}

.protocol-tag:hover {
    background: rgba(167, 139, 250, .25);
    border-color: var(--primary-accent);
    color: #fff;
    transform: translateY(-2px)
}

.marquee-wrapper {
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    margin-bottom: 90px;
    padding: 30px 0;
    position: relative
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 50s linear infinite
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0)
    }

    100% {
        transform: translate3d(-50%, 0, 0)
    }
}

.marquee-track img {
    height: 48px;
    width: 48px;
    filter: brightness(0) invert(1);
    opacity: .5;
    transition: all .4s ease
}

.marquee-track img:hover {
    opacity: 1;
    transform: scale(1.2);
    filter: brightness(0) saturate(100%) invert(21%) sepia(96%) saturate(4339%) hue-rotate(258deg) brightness(94%) contrast(104%)
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 70px
}

.stack-card {
    padding: 32px;
    background: rgba(255, 255, 255, .04);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: all .4s ease
}

.stack-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-4px)
}

.stack-card.highlight {
    background: linear-gradient(135deg, rgba(107, 56, 251, .2), rgba(168, 85, 247, .15));
    border-color: rgba(107, 56, 251, .5);
    box-shadow: 0 0 30px rgba(107, 56, 251, .3)
}

.stack-head {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
    color: #fff;
    font-family: 'Outfit', sans-serif
}

.stack-list {
    font-size: 15px;
    color: var(--muted-on-dark);
    line-height: 1.8
}

.method-section {
    padding: 120px 0;
    background: #fff
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 70px;
    position: relative
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    z-index: 0;
    border-radius: 2px
}

.step-card {
    background: var(--bg-alt);
    padding: 32px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    transition: all .4s ease
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08)
}

.step-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 8px 24px rgba(107, 56, 251, .3)
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700
}

.reviews-section {
    padding: 120px 0;
    background: var(--bg-alt)
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px
}

.review-card {
    background: #fff;
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .4s ease;
    position: relative
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 80px;
    color: var(--primary);
    opacity: .1;
    font-family: 'Outfit', sans-serif;
    font-weight: 900
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    border-color: var(--primary)
}

.review-text {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 28px;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: #ddd;
    border-radius: 50%;
    background-size: cover;
    border: 3px solid var(--bg-alt)
}

.review-meta h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px
}

.review-meta p {
    font-size: 13px;
    color: var(--text-muted)
}

.sim-section {
    padding: 100px 0;
    background: #111827;
    color: #fff
}

.sim-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 28px;
    background: linear-gradient(135deg, #0b1121, #1a1f35);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .4)
}

.sim-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .2)
}

.sim-tab {
    flex: 1;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    transition: all .3s ease;
    border-right: 1px solid rgba(255, 255, 255, .08);
    position: relative
}

.sim-tab:last-child {
    border-right: none
}

.sim-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .3s ease
}

.sim-tab.active::after {
    transform: scaleX(1)
}

.sim-tab:hover {
    background: rgba(255, 255, 255, .05);
    color: #fff
}

.sim-tab.active {
    background: rgba(107, 56, 251, .15);
    color: #fff
}

.sim-display {
    padding: 60px 40px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.sim-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.flow-step {
    background: rgba(255, 255, 255, .06);
    border: 2px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 28px;
    width: 30%;
    opacity: .3;
    transform: translateY(20px);
    transition: all .6s cubic-bezier(.34, 1.56, .64, 1)
}

.flow-step.active {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--primary);
    background: rgba(107, 56, 251, .15);
    box-shadow: 0 0 30px rgba(107, 56, 251, .3)
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 8px
}

.step-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5
}

.flow-arrow {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, .15);
    position: relative;
    overflow: hidden;
    border-radius: 2px
}

.flow-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    transform: translateX(-100%);
    transition: transform .8s ease
}

.flow-step.active+.flow-arrow::after {
    transform: translateX(0);
    transition-delay: .3s
}

.faq-section {
    padding: 120px 0;
    background: #fff
}

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

.faq-details {
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease
}

.faq-details[open] {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(107, 56, 251, .1)
}

.faq-summary {
    padding: 24px 28px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background .3s ease
}

.faq-summary:hover {
    background: rgba(107, 56, 251, .05)
}

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

.faq-icon {
    transition: transform .3s ease;
    font-size: 24px;
    color: var(--text-muted);
    font-weight: 300
}

.faq-details[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--primary)
}

.faq-body {
    padding: 0 28px 28px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    animation: fadeIn .4s ease
}

.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-alt), #fff)
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid var(--border);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
    transition: all .4s ease
}

.contact-form-wrapper:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, .12);
    transform: translateY(-4px)
}

#intakeForm {
    display: grid;
    gap: 24px
}

#intakeForm label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    color: var(--text)
}

#intakeForm input,
#intakeForm select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all .3s ease;
    background: #fff
}

#intakeForm input:focus,
#intakeForm select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(107, 56, 251, .1)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.footer-dark {
    background: #0b1121;
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    font-size: 14px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px
}

.footer-brand .footer-desc {
    margin: 16px 0 24px;
    line-height: 1.6;
    max-width: 300px
}

.social-links {
    display: flex;
    gap: 12px
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px)
}

.social-icon svg {
    width: 20px;
    height: 20px
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s
}

.footer-col a:hover {
    color: var(--primary-light);
    padding-left: 4px
}

.footer-link-highlight {
    color: #fff !important;
    font-weight: 500
}

.legal-info {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.6
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.legal-links {
    display: flex;
    gap: 24px
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s
}

.legal-links a:hover {
    color: #fff
}

.dvce-card {
    background: var(--dark-section-bg);
    color: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4)
}

.dvce-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: border-color 0.3s
}

.dvce-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(107, 56, 251, 0.2)
}

.dvce-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.dvce-subtitle {
    color: var(--muted-on-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem
}

.dvce-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.dvce-strength-bar {
    display: flex;
    gap: 4px;
    margin-top: 8px;
    margin-bottom: 4px
}

.dvce-strength-bar div {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s
}

.dvce-strength-text {
    font-size: 12px;
    display: block;
    text-align: right
}

@media (max-width:900px) {
    .hamburger {
        display: flex
    }

    .nav-items {
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-h));
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 32px;
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(.4, 0, .2, 1);
        border-top: 1px solid var(--border);
        display: flex
    }

    .nav-items.active {
        transform: translateX(0)
    }

    .nav-items a {
        font-size: 20px
    }

    .hero h1 {
        font-size: 42px
    }

    .hero-grid,
    .bento-grid,
    .timeline-steps,
    .stack-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .bento-large,
    .bento-wide {
        grid-column: auto
    }

    .shell {
        padding: 0 20px
    }

    .sim-flow {
        flex-direction: column
    }

    .flow-step {
        width: 100%
    }

    .flow-arrow {
        width: 2px;
        height: 40px;
        margin: 0 auto;
        flex: none
    }

    .flow-arrow::after {
        transform: translateY(-100%)
    }

    .flow-step.active+.flow-arrow::after {
        transform: translateY(0)
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .footer-brand,
    .social-links,
    .footer-bottom {
        justify-content: center;
        align-items: center
    }

    .footer-brand .footer-desc {
        margin: 16px auto 24px
    }

    .footer-col a:hover {
        padding-left: 0
    }

    .footer-bottom {
        flex-direction: column-reverse
    }
}

@media (max-width:480px) {
    .dvce-form-row {
        grid-template-columns: 1fr
    }
}

.dvce-auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 16px;
    position: relative;
    z-index: 10
}