@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #7C3AED;
    --primary-light: #A78BFA;
    --secondary: #F472B6;
    --accent: #FB923C;

    --bg-white: #ffffff;
    --bg-mesh: #f8fafc;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);

    --bg-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");

    transition: background-color 0.4s ease, color 0.4s ease;

    --bg-theme-1: rgba(124, 58, 237, 0.05);
    --bg-theme-2: rgba(244, 114, 182, 0.05);

    --primary-shadow: rgba(124, 58, 237, 0.2);
    --primary-shadow-hover: rgba(124, 58, 237, 0.3);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.6s ease, color 0.6s ease;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.nav-logo {
    font-family: 'Instrument Serif', serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-noise);
    pointer-events: none;
    z-index: 9999;
}

.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, var(--bg-theme-1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--bg-theme-2) 0%, transparent 50%),
        var(--bg-white);
    transition: background 1.5s ease-in-out;
}

.top-bar {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.top-bar a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
}

.navbar {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    z-index: 1000;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.site-footer {
    background: #ffffff;
    padding: 80px 0 40px;
    border-top: 1px solid #f1f1f1;
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--text-primary);
}

.footer-brand .footer-logo span {
    font-family: 'Instrument Serif', serif;
    font-size: 24px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

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

.social-links a {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}


.nav-logo {
    font-size: 26px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    white-space: nowrap;
}

.logo-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.nav-search {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.search-container {
    width: 100%;
    background: #ffffff;
    border: 1px solid #f1f1f1;
    border-radius: 100px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.search-container input {
    border: none;
    background: none;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-primary);
    outline: none;
}

.search-container input::placeholder {
    color: var(--text-muted);
}

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

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #7C3AED;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #6d28d9;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-ghost {
    background: #f1f5f9;
    color: var(--text-primary);
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-content {
    width: 65%;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 84px;
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-content .subhead {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
}

.hero-visual {
    width: 40%;
    position: relative;
    z-index: 1;
    margin-right: 9.5rem;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--glass-border);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1;
}

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

.modules-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.module-card {
    padding: 40px;
    border-radius: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px -20px rgba(124, 58, 237, 0.15);
}

.module-number {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    width: fit-content;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.module-card h3 {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-primary);
}

.module-card p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.module-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(90deg,
            rgba(124, 58, 237, 0.05) 0%,
            rgba(244, 114, 182, 0.08) 25%,
            rgba(251, 146, 60, 0.05) 50%,
            rgba(167, 139, 250, 0.08) 75%,
            rgba(124, 58, 237, 0.05) 100%);
    background-size: 300% 100%;
    animation: gradientShift 8s ease infinite;
    border: 1px solid rgba(124, 58, 237, 0.2);
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.module-highlight .module-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(124, 58, 237, 0.6);
    }
}

.module-highlight h3 {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.module-highlight:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px -10px rgba(124, 58, 237, 0.25);
    transform: translateY(-5px) scale(1.01);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    opacity: 0;
    transform: rotate(45deg);
    transition: all 0.5s ease;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.module-highlight:hover .card-glow {
    opacity: 0.1;
    transform: rotate(45deg) translateY(-20px);
}

.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 60px;
    position: relative;
    box-shadow: 0 40px 100px -40px rgba(124, 58, 237, 0.1);
}

.glass-container img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.deliverable-visual {
    text-align: center;
    margin-top: 60px;
}

.deliverable-visual img {
    max-width: 900px;
    width: 100%;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--card-shadow);
}

.deliverable-visual img:hover {
    transform: scale(1.02);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    flex: 1;
    max-width: 380px;
    min-width: 280px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: #ffffff;
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.07) translateY(-10px);
}

.pricing-card .badge {
    display: inline-block;
    background: var(--primary);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.pricing-card .price-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-card ul li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-card ul li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
}

.token-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.token-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.token-item:last-child {
    border-bottom: none;
}

.token-action {
    font-size: 14px;
    color: var(--text-secondary);
}

.token-cost {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.token-note {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 8px 16px;
        top: 10px;
    }

    .nav-search {
        display: none;
    }

    .nav-actions {
        gap: 12px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .hero-content .subhead {
        margin: 0 auto 30px;
    }

    .hero-visual {
        width: 100%;
        margin-right: 0rem;
    }

    .section-header {
        text-align: center;
        margin: 0 auto 40px;
    }

    .section-header h2 {
        font-size: 48px;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .glass-container {
        padding: 30px;
    }

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

    .footer-brand .footer-logo {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}



@media (max-width: 600px) {
    .top-bar {
        font-size: 11px;
        padding: 6px 12px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .top-bar span {
        display: inline;
    }

    .navbar {
        top: 28px;
        width: 100%;
        padding: 8px 14px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .modules-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .module-card {
        padding: 28px;
    }

    .module-card h3 {
        font-size: 22px;
    }

    .module-card p {
        font-size: 14px;
    }

    .module-highlight h3 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 16px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        min-width: unset;
        width: 100%;
        max-width: 400px;
        padding: 30px;
    }

    .pricing-card .price {
        font-size: 36px;
    }

    .glass-container {
        padding: 20px;
        border-radius: 24px;
    }

    .deliverable-visual img {
        border-radius: 16px;
    }

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

    .footer-brand .footer-logo {
        justify-content: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .site-footer {
        padding: 50px 0 30px;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content .subhead {
        font-size: 16px;
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .nav-logo {
        font-size: 22px;
    }

    .logo-icon {
        width: 26px;
        height: 26px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .module-number {
        font-size: 10px;
        padding: 3px 10px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .pricing-card .price {
        font-size: 32px;
    }

    .pricing-card ul li {
        font-size: 14px;
    }

    #backToTop {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .module-card h3 {
        font-size: 20px;
    }

    .pricing-card {
        padding: 24px;
    }

    .top-bar {
        font-size: 10px;
    }

    .navbar {
        padding: 6px 12px;
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

#backToTop.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#backToTop:hover {
    background-color: #6d28d9;
    transform: translateY(-4px);
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-actions {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        padding: 60px 40px;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .nav-actions.active {
        transform: translateY(0);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        width: 100%;
    }

    .nav-links a {
        font-family: 'Instrument Serif', serif;
        font-size: 32px;
        font-weight: 400;
        color: var(--text-primary);
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 16px;
    }

    .nav-buttons a,
    .nav-buttons button {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 16px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.module-card,
.pricing-card,
.glass-container {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s ease, border-color 0.6s ease;
}

.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: calc(100% - 40px);
    max-width: 600px;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 24px;
    z-index: 2000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    flex: 1;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-actions .btn {
    padding: 10px 24px;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        bottom: 20px;
        padding: 20px;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}

.demo-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, rgba(244, 114, 182, 0.04) 100%);
}

.demo-video-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.demo-video-section .section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.demo-video-section .section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(124, 58, 237, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
    background: #fff;
    padding-bottom: calc(54.02% + 25px);
    height: 0;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .demo-video-section {
        padding: 56px 0;
    }

    .video-wrapper {
        border-radius: 14px;
    }
}