@font-face {
    font-family: 'TikTok Sans';
    src: url('TikTokSans-VariableFont_opsz,slnt,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('/assets/vendor/oswald-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors */
    --bg-color: #08080a;
    --bg-main: #08080a;
    --card-bg: rgba(25, 25, 30, 0.6);
    --card-border: rgba(255, 255, 255, 0.05);
    
    --text-main: #f5f5f7;
    --text-muted: #8b8b93;
    
    --accent-primary: #8a2be2; /* Blue violet / purple */
    --accent-secondary: #4169e1; /* Royal blue */
    --accent-gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    
    --white: #ffffff;
    
    /* Layout */
    --container-width: 1200px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 8rem;
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'TikTok Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    min-width: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-header {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transition:
        background-color var(--transition-normal),
        color var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal),
        transform var(--transition-normal);
}

.btn-header:hover,
.btn-header:focus-visible {
    background: var(--white);
    color: var(--bg-main);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 0 22px rgba(255, 255, 255, 0.38),
        0 0 44px rgba(138, 43, 226, 0.24);
    transform: translateY(-1px);
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-width);
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(25, 25, 30, 0.7);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 2rem;
    position: relative;
}

.logo-img {
    height: 48px;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

@media (min-width: 769px) {
    .nav-list {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: var(--spacing-lg);
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-btn::before {
    content: "";
}

/* Hero Section */
.hero {
    padding-top: calc(80px + var(--spacing-xxl));
    padding-bottom: 0;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    min-width: 0;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: var(--radius-full);
    color: #d1b3ff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    max-width: 100%;
}

.badge-text {
    min-width: 0;
}

.badge-icon {
    color: var(--accent-primary);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff, #a5a5b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-wrapper {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    color: var(--accent-primary);
    -webkit-text-fill-color: initial;
    background: none;
}

.highlight-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -2%;
    height: 35%;
    width: 104%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2300a661' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2300a661' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background-image: linear-gradient(to right, currentcolor 40%, transparent 50%);
    background-repeat: no-repeat;
    animation: background-size-300 0.5s 0.8s ease-in both;
    background-size: 300%;
    pointer-events: none;
}

@keyframes background-size-300 {
  from { background-size: 0%; }
  to { background-size: 300%; }
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: var(--spacing-xl);
}

.hero-actions {
    margin-bottom: var(--spacing-xl);
    max-width: 100%;
}

/* Hero Screen Showcase */
.hero-screen-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* Aurora gradient orbs — positioned in .hero, behind content */
.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aurora-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.9) 0%, rgba(138, 43, 226, 0.3) 50%, transparent 75%);
    bottom: 8%;
    left: 15%;
    animation: aurora-drift-1 8s ease-in-out infinite;
}

.aurora-orb-2 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.85) 0%, rgba(65, 105, 225, 0.25) 50%, transparent 75%);
    bottom: 5%;
    right: 15%;
    animation: aurora-drift-2 10s ease-in-out infinite;
}

@keyframes aurora-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.08); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes aurora-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 20px) scale(1.06); }
    66% { transform: translate(35px, -10px) scale(0.97); }
}



/* Screen container with 3D tilt */
.hero-screen-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 880px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    will-change: transform;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.hero-screen-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(65, 105, 225, 0.2), rgba(0, 200, 255, 0.15));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-screen-container:hover .hero-screen-glow {
    opacity: 1;
}

.hero-screen-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.hero-screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 40%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .hero-screen-wrapper {
        max-width: 100%;
        padding: 30px 0 10px;
    }
    .aurora-orb {
        filter: blur(80px);
        opacity: 0.5;
    }
    .aurora-orb-1 { width: 400px; height: 400px; }
    .aurora-orb-2 { width: 350px; height: 350px; }
}

/* Hero Visual & Glow */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: -100px;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    bottom: -200px;
    right: 5%;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-mockup {
    background: rgba(20, 20, 24, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-body {
    flex: 1;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.layer {
    position: absolute;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.layer-bg {
    top: 10%; left: 10%; right: 10%; bottom: 10%;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.2), rgba(65, 105, 225, 0.2));
    z-index: 1;
}

.layer-image {
    top: 20%; left: 20%; width: 40%; height: 50%;
    background: rgba(255, 255, 255, 0.05);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.layer-text {
    top: 30%; right: 20%; width: 30%; height: auto;
    border: none;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
    align-items: flex-start;
}

.text-line {
    height: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
}

.text-line.short {
    width: 70%;
    background: rgba(255, 255, 255, 0.5);
}

.layer-ui {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 10;
}

.ui-panel {
    position: absolute;
    top: 10%; right: 2rem;
    width: 60px; height: 80%;
    background: rgba(10, 10, 12, 0.8);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ui-tools {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 40px;
    background: rgba(10, 10, 12, 0.8);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Features */
.features {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxl);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image-placeholder {
    flex: 1;
    aspect-ratio: 4/3;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(138,43,226,0.1), rgba(65,105,225,0.1));
}

/* Feature 1 — Layered composition */
.feature-layers-container {
    flex: 1;
    position: relative;
    aspect-ratio: 4/3;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-layer {
    position: absolute;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Layer 1 (can1) — bottom, centered */
.feature-layer-1 {
    width: 65%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 16px;
}

/* Layer 2 (cat2) — overlay on top of can1, same position */
.feature-layer-2 {
    width: 65%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Layer 3 (cat3) — bottom-right, offset */
.feature-layer-3 {
    width: 38%;
    right: 2%;
    bottom: 0%;
    z-index: 3;
}

/* Layer 4 (cat4) — top-left, offset */
.feature-layer-4 {
    width: 35%;
    left: 2%;
    top: 50%;
    z-index: 4;
}

.feature-content {
    flex: 1;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 0.75rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: var(--radius-md);
}

.feature-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-row, .feature-row:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
}

/* Pricing */
.pricing {
    padding: var(--spacing-xxl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-pro {
    background: linear-gradient(180deg, rgba(25, 25, 30, 0.9), rgba(15, 15, 18, 0.9));
    border: 1px solid var(--accent-primary);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.15);
}

@media (max-width: 1024px) {
    .pricing-pro {
        transform: scale(1);
    }
}

.pro-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    min-height: 45px;
}

.pricing-features {
    margin-bottom: 2.5rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.pricing-features li i {
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
}

.pricing-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
    background: rgba(25, 25, 30, 0.4);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
}

.pricing-extra-text {
    flex: 1;
    text-align: left;
}

.pricing-extra h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.pricing-extra p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    max-width: 800px;
}

.btn-outline-muted {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.btn-outline-muted:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .pricing-extra {
        flex-direction: column;
        text-align: center;
    }
    .pricing-extra-text {
        text-align: center;
    }
}

/* FAQ */
.faq {
    padding: var(--spacing-xxl) 0;
}

.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question i {
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
    color: var(--accent-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-normal);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer-inner {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--card-border);
    padding: var(--spacing-xxl) 0 2rem;
    background: rgba(8, 8, 10, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-nav h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Mobile Nav */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
    }

    .mobile-menu-btn i {
        display: none;
    }

    .mobile-menu-btn::before {
        content: "☰";
        font-size: 1.35rem;
        line-height: 1;
    }

    .mobile-menu-btn.is-open::before {
        content: "×";
        font-size: 1.8rem;
        transform: translateY(-1px);
    }

    .nav {
        position: fixed;
        top: 82px;
        left: 50%;
        width: min(90vw, 420px);
        background: rgba(10, 10, 12, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.25rem;
        gap: 1.25rem;
        transform: translate(-50%, -16px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-normal);
        border: 1px solid var(--card-border);
        border-radius: 24px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    }

    .nav.active {
        transform: translate(-50%, 0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        width: 100%;
    }

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

/* Utility for GSAP initial state */
.gs-reveal {
    opacity: 0;
    visibility: hidden;
}

/* Hero Marquee */
.hero-marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    height: 80px;
    margin-top: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 20;
}

.marquee-band {
    position: absolute;
    width: 120vw;
    left: -10vw;
    background: #ffd700;
    color: #000000;
    transform: rotate(-3deg);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    z-index: 10;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 30s linear infinite;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-content span {
    /* padding-right removed to fix loop gap */
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



/* Override Framer injected body background */
html body {
    background: var(--bg-main) !important;
}


/* Fix Framer components stretching and backgrounds */
.framer-KksaP.framer-72rtr7,
.framer-91ohp.framer-72rtr7,
.framer-iHT44.framer-72rtr7,
.framer-CUdLH.framer-72rtr7 {
    min-height: auto !important;
    background: transparent !important;
    background-color: transparent !important;
}

#framer-main-2, #framer-main-3 {
    max-height: 500px;
    align-items: center;
    justify-content: center;
}

/* Feature 2: keep the Framer card larger while allowing the glow to breathe. */
#framer-main-2 {
    min-height: 450px !important;
    max-height: none;
    overflow: visible !important;
}

#framer-main-2 .framer-KksaP.framer-72rtr7 {
    width: min(100%, 620px) !important;
    overflow: visible !important;
}

#framer-main-2 .framer-jx0221 {
    height: 450px !important;
    overflow: visible !important;
}

#framer-main-2 .framer-rg8h97 {
    overflow: visible !important;
}

#framer-main-2 .framer-4sswin {
    left: -56px !important;
    right: -56px !important;
    bottom: -42px !important;
    height: 292px !important;
    opacity: 0.36 !important;
    overflow: visible !important;
}

#framer-main-2 .framer-1saw74l {
    width: 260px !important;
    height: 360px !important;
}

#framer-main-2 .framer-yszt5i {
    height: var(--framer-aspect-ratio-supported, 492px) !important;
    left: -34px !important;
    right: -34px !important;
    top: -18px !important;
}

#framer-main-2 .framer-1eg7xm0 {
    height: var(--framer-aspect-ratio-supported, 556px) !important;
    left: -55px !important;
    right: -55px !important;
    bottom: -160px !important;
}

#framer-main-2 .framer-1r6a6fe-container {
    top: 86px !important;
}

#framer-main-2 .framer-wehd6c {
    height: 102px !important;
}

#framer-main-2 .framer-j5vuyn .framer-text {
    font-family: 'Oswald', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
}

#framer-main-2 .framer-1asro10 .framer-text {
    font-size: 62px !important;
}

/* Registration modal */
.registration-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.registration-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.registration-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 6, 0.72);
    backdrop-filter: blur(16px);
}

.registration-modal__dialog {
    position: relative;
    width: min(100%, 480px);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 20% 0%, rgba(138, 43, 226, 0.24), transparent 32%),
        linear-gradient(180deg, rgba(25, 25, 30, 0.98), rgba(10, 10, 14, 0.98));
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.22s ease;
    outline: none;
}

.registration-modal.is-open .registration-modal__dialog {
    transform: translateY(0) scale(1);
}

.registration-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.registration-modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.registration-modal__dialog h2 {
    margin-bottom: 1rem;
    padding-right: 3rem;
    color: var(--white);
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.12;
}

.registration-modal__dialog p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.registration-modal__button {
    width: 100%;
}

/* Cookie notice */
.cookie-notice {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: min(calc(100vw - 2rem), 620px);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(18, 18, 23, 0.94);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
    transform: translate(-50%, 16px);
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.cookie-notice.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.cookie-notice p {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.45;
}

.cookie-notice__button {
    flex: 0 0 auto;
    padding: 0.7rem 1rem;
    font-size: 0.9375rem;
}

/* Responsive pass */
@media (max-width: 900px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-xxl: 5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        top: 12px;
        width: calc(100% - 1rem);
        border-radius: 28px;
    }

    .header-container {
        height: 60px;
        padding: 0 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        padding-top: 108px;
    }

    .hero-title {
        font-size: clamp(2.15rem, 12vw, 3.6rem);
        line-height: 1.05;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .hero-actions .btn {
        flex-wrap: wrap;
        min-width: 0;
    }

    .btn-large {
        padding: 0.9rem 1.1rem;
        font-size: 1rem;
    }

    .hero-screen-wrapper {
        padding-top: 18px;
    }

    .hero-screen-container {
        border-radius: 10px;
    }

    .hero-screen-img,
    .hero-screen-reflection {
        border-radius: 10px;
    }

    .hero-marquee-container {
        height: 60px;
        margin-top: -20px;
        overflow: hidden;
    }

    .marquee-band {
        width: 132vw;
        left: -16vw;
        padding: 0.55rem 0;
    }

    .marquee-content {
        font-size: 0.86rem;
        letter-spacing: 1px;
    }

    .features,
    .pricing,
    .faq,
    .footer {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .features-list {
        gap: 4rem;
    }

    .feature-row {
        gap: 1.75rem;
    }

    .feature-layers-container {
        width: 100%;
        max-width: 420px;
        min-height: 280px;
    }

    .feature-title {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .feature-desc {
        font-size: 1rem;
    }

    #main,
    #framer-main-2,
    #framer-main-3 {
        width: 100% !important;
        min-height: 300px !important;
        max-height: 380px;
        flex: 0 0 auto !important;
    }

    #framer-main-2 {
        min-height: 380px !important;
        max-height: none;
    }

    #framer-main-2 .framer-KksaP.framer-72rtr7 {
        width: min(100%, 390px) !important;
    }

    #framer-main-2 .framer-jx0221 {
        height: 376px !important;
    }

    #framer-main-2 .framer-4sswin {
        left: -34px !important;
        right: -34px !important;
        bottom: -34px !important;
        height: 258px !important;
    }

    #framer-main-2 .framer-1saw74l {
        width: 248px !important;
        height: 343px !important;
    }

    #framer-main-2 .framer-yszt5i {
        height: var(--framer-aspect-ratio-supported, 468px) !important;
    }

    #framer-main-2 .framer-1eg7xm0 {
        height: var(--framer-aspect-ratio-supported, 530px) !important;
        bottom: -152px !important;
    }

    #framer-main-2 .framer-1asro10 .framer-text {
        font-size: 56px !important;
    }

    .framer-91ohp .framer-mtac78-container {
        width: min(82vw, 340px) !important;
        height: min(82vw, 340px) !important;
    }

    .pricing-card {
        padding: 2rem 1.25rem;
    }

    .pricing-price {
        font-size: 2.35rem;
    }

    .pricing-features li {
        align-items: flex-start;
    }

    .faq-question {
        padding: 1.2rem;
        gap: 1rem;
        font-size: 1rem;
    }

    .footer-desc {
        max-width: none;
    }

    .cookie-notice {
        align-items: stretch;
        flex-direction: column;
        width: calc(100vw - 1rem);
        bottom: 0.5rem;
        padding: 0.9rem;
    }
}

@media (max-width: 420px) {
    .hero-badge {
        font-size: 0.78rem;
        padding: 0.45rem 0.75rem;
        width: 100%;
        justify-content: center;
        white-space: normal;
    }

    .badge-text {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .btn {
        white-space: normal;
        text-align: center;
    }

    .feature-layers-container {
        min-height: 240px;
    }

    #main,
    #framer-main-2,
    #framer-main-3 {
        min-height: 260px !important;
    }

    #framer-main-2 {
        min-height: 340px !important;
    }

    #framer-main-2 .framer-jx0221 {
        height: 338px !important;
    }

    #framer-main-2 .framer-4sswin {
        left: -24px !important;
        right: -24px !important;
        bottom: -28px !important;
        height: 232px !important;
    }

    #framer-main-2 .framer-1saw74l {
        width: 228px !important;
        height: 315px !important;
    }

    #framer-main-2 .framer-yszt5i {
        height: var(--framer-aspect-ratio-supported, 430px) !important;
        left: -30px !important;
        right: -30px !important;
    }

    #framer-main-2 .framer-1eg7xm0 {
        height: var(--framer-aspect-ratio-supported, 488px) !important;
        left: -48px !important;
        right: -48px !important;
        bottom: -140px !important;
    }

    #framer-main-2 .framer-1asro10 .framer-text {
        font-size: 50px !important;
    }

    .registration-modal__dialog {
        padding: 1.5rem;
    }
}
