/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: #1a1a2e;
    --text-color: #e8e8f0;
    --text-secondary: #a8a8b8;
    --text-muted: #707080;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.6);
    --glow: 0 0 40px rgba(102, 126, 234, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Parallax Container */
.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: radial-gradient(ellipse at top, rgba(102, 126, 234, 0.15), transparent 60%),
                radial-gradient(ellipse at bottom, rgba(118, 75, 162, 0.15), transparent 60%),
                var(--darker-bg);
    color: white;
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero .container {
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-logo {
    margin-top: 30px;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(102, 126, 234, 0.7));
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #f8fafc 0%, #67e8f9 18%, #22d3ee 40%, #34d399 68%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.4;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
    margin-bottom: 60px;
}

.hero-image {
    margin-top: 60px;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo a {
    display: inline-flex;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6), var(--glow);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--border-color);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

/* Section Titles */
.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    background: linear-gradient(135deg, #ffffff 0%, #a8a8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 19px;
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: -30px auto 50px;
    line-height: 1.8;
}

/* Story Flow Section */
.story-flow {
    padding: 80px 0 60px;
    background: var(--dark-bg);
    position: relative;
}

.flow-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.flow-step .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.flow-step:nth-child(even) .container {
    direction: rtl;
}

.flow-step:nth-child(even) .flow-content,
.flow-step:nth-child(even) .flow-visual {
    direction: ltr;
}

.flow-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.flow-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.flow-visual {
    position: relative;
}

.flow-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-large);
    border: 1px solid var(--border-color);
    transition: transform 0.6s ease;
}

.flow-step:hover .flow-visual img {
    transform: scale(1.02);
    box-shadow: var(--shadow-large), var(--glow);
}

/* Features and Actions - Bento Layout */
.features-section {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: clip;
}

.actions-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.1), transparent 32%),
        var(--dark-bg);
    position: relative;
    overflow: clip;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.bento-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    padding: 34px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 60px rgba(3, 7, 18, 0.36);
    isolation: isolate;
    opacity: 0;
    transform: translateY(48px) scale(0.98);
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-panel::before {
    content: '';
    position: absolute;
    inset: auto -10% -40% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(70px);
    z-index: -1;
}

.bento-panel.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bento-panel:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 28px 80px rgba(3, 7, 18, 0.5);
}

.bento-panel-hero {
    grid-column: span 8;
    min-height: 460px;
}

.bento-panel-half {
    grid-column: span 6;
    min-height: 460px;
}

.bento-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-stack-half {
    grid-column: span 6;
    min-height: 460px;
}

.bento-panel-stack {
    min-height: 0;
    flex: 1;
    padding: 28px;
}

.bento-panel-tall {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 460px;
}

.bento-panel-wide {
    grid-column: span 7;
    min-height: 360px;
}

.bento-panel-spotlight {
    grid-column: span 5;
    min-height: 360px;
}

.bento-panel-compact {
    grid-column: span 6;
    min-height: 260px;
}

.bento-panel-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 28px;
}

.panel-copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.panel-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.bento-panel h3 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 16px;
    color: #ffffff;
}

.bento-panel p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.75;
}

.panel-visual {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.panel-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 28px 50px rgba(4, 10, 24, 0.45));
}

.visual-bottom-right {
    align-self: flex-end;
    width: min(100%, 620px);
    margin: 18px -24px -34px auto;
}

.visual-center {
    width: 100%;
    margin-top: auto;
}

.visual-large-center {
    width: min(100%, 520px);
    margin: 24px auto 0;
}

.visual-indicator-center {
    width: min(100%, 360px);
    margin: 18px auto 0;
}

.visual-wide-strip {
    width: calc(100% + 34px);
    margin: 22px -34px -34px;
    height: 180px;
}

.visual-wide-strip-large {
    width: calc(100% + 90px);
    height: 240px;
    margin: 30px -45px -34px;
}

.visual-offset-card {
    width: 88%;
    margin: 12px 0 -6px auto;
    padding: 14px;
    border-radius: 24px;
    background: rgba(6, 10, 28, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.visual-bottom-band {
    width: calc(100% + 34px);
    height: 170px;
    margin: 28px -34px -34px;
    overflow: hidden;
}

.visual-bottom-float {
    width: min(100%, 320px);
    margin: 18px 0 -18px auto;
}

.visual-audio-center {
    width: min(100%, 300px);
    margin: 24px auto 0;
}

.visual-timeline-center {
    width: min(100%, 380px);
    margin: 18px auto 0;
}

.visual-preview-center {
    width: min(100%, 500px);
    margin: 28px auto 0;
}

.visual-actions-center {
    width: min(100%, 460px);
    margin: 24px auto 0;
}

.visual-ptz-center {
    width: min(100%, 390px);
    margin: 18px auto 0;
}

.visual-stage-right {
    width: min(100%, 560px);
    margin: 0 -16px 0 auto;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.visual-tall-stack {
    width: calc(100% + 34px);
    margin: 30px -34px -34px;
    height: 260px;
}

.glow-frame {
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.bento-cobalt {
    background:
        radial-gradient(circle at top right, rgba(125, 211, 252, 0.28), transparent 34%),
        linear-gradient(145deg, #151933 0%, #1f2550 52%, #15182d 100%);
}

.bento-aurora {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.28), transparent 30%),
        linear-gradient(155deg, #5b21b6 0%, #7c3aed 38%, #06b6d4 100%);
}

.bento-midnight {
    background:
        radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.22), transparent 30%),
        linear-gradient(145deg, #12162d 0%, #1d2144 55%, #171a30 100%);
}

.bento-fuchsia {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 24%),
        linear-gradient(160deg, #31124d 0%, #6d28d9 45%, #ec4899 100%);
}

.bento-violet {
    background:
        radial-gradient(circle at top right, rgba(216, 180, 254, 0.18), transparent 26%),
        linear-gradient(150deg, #17152f 0%, #4c1d95 56%, #26174f 100%);
}

.bento-sunset {
    background:
        radial-gradient(circle at top right, rgba(254, 215, 170, 0.18), transparent 26%),
        linear-gradient(150deg, #2b1630 0%, #7c2d12 45%, #ea580c 100%);
}

.bento-ruby {
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.14), transparent 24%),
        linear-gradient(145deg, #171733 0%, #7c3aed 44%, #ec4899 100%);
}

.bento-teal {
    background:
        radial-gradient(circle at top right, rgba(165, 243, 252, 0.18), transparent 26%),
        linear-gradient(145deg, #0f172a 0%, #164e63 60%, #0b1327 100%);
}

.bento-lime {
    background:
        radial-gradient(circle at top right, rgba(187, 247, 208, 0.18), transparent 28%),
        linear-gradient(145deg, #101926 0%, #166534 62%, #0d1524 100%);
}

.bento-indigo {
    background:
        radial-gradient(circle at top right, rgba(129, 140, 248, 0.24), transparent 30%),
        linear-gradient(145deg, #11162f 0%, #312e81 55%, #171d35 100%);
}

.bento-rose {
    background:
        radial-gradient(circle at top right, rgba(244, 114, 182, 0.22), transparent 28%),
        linear-gradient(145deg, #1a162a 0%, #9d174d 60%, #24162d 100%);
}

.bento-electric {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.26), transparent 30%),
        linear-gradient(150deg, #1e1b4b 0%, #2563eb 48%, #06b6d4 100%);
}

.bento-plasma {
    background:
        radial-gradient(circle at top right, rgba(217, 70, 239, 0.22), transparent 26%),
        linear-gradient(145deg, #1f1630 0%, #6b21a8 58%, #271937 100%);
}

.bento-magenta {
    background:
        radial-gradient(circle at top right, rgba(244, 114, 182, 0.24), transparent 26%),
        linear-gradient(145deg, #22152c 0%, #be185d 58%, #2a1634 100%);
}

.bento-amber {
    background:
        radial-gradient(circle at top right, rgba(253, 186, 116, 0.22), transparent 28%),
        linear-gradient(145deg, #24171c 0%, #b45309 58%, #291b1f 100%);
}

.bento-ice {
    background:
        radial-gradient(circle at top right, rgba(147, 197, 253, 0.22), transparent 32%),
        linear-gradient(145deg, #101a2a 0%, #0f4c81 58%, #101925 100%);
}

/* Settings Section */
.settings-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.08), transparent 26%),
        var(--darker-bg);
}

.setup-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 56px;
}

.setup-hero,
.setup-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(155deg, rgba(18, 24, 44, 0.98), rgba(28, 36, 63, 0.92));
    box-shadow: 0 20px 70px rgba(3, 7, 18, 0.4);
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.setup-hero.visible,
.setup-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.setup-hero:hover,
.setup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 90px rgba(3, 7, 18, 0.55);
}

.setup-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    min-height: 560px;
}

.setup-copy {
    padding: 42px;
}

.setup-copy h3 {
    font-size: 38px;
    line-height: 1.08;
    margin-bottom: 18px;
    color: #ffffff;
}

.setup-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.setup-hero-visual {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.06), rgba(0, 0, 0, 0));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 18px 18px 0;
}

.setup-hero-visual img {
    width: 112%;
    max-width: 820px;
    object-fit: contain;
    filter: drop-shadow(0 32px 54px rgba(0, 0, 0, 0.45));
}

.setup-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-content: start;
}

.setup-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    min-height: 152px;
    padding: 18px;
}

.setup-card-text {
    grid-template-columns: 1fr;
    min-height: 190px;
    padding: 24px 26px;
    align-items: start;
}

.setup-card:nth-child(2) {
    transform: translateX(0) translateY(40px);
}

.setup-card:nth-child(3) {
    transform: translateX(0) translateY(40px);
}

.setup-card:nth-child(4) {
    transform: translateX(0) translateY(40px);
}

.setup-card.visible:nth-child(2) {
    transform: translateX(0) translateY(0);
}

.setup-card.visible:nth-child(3) {
    transform: translateX(0) translateY(0);
}

.setup-card.visible:nth-child(4) {
    transform: translateX(0) translateY(0);
}

.setup-card-visual {
    height: 116px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.setup-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.setup-card-copy {
    padding: 0 8px 0 22px;
}

.setup-card-text .setup-card-copy {
    padding: 0;
    align-self: start;
}

.setup-card-copy h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #ffffff;
}

.setup-card-copy p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    font-size: 14px;
}

.stage-monitor-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.08), transparent 28%),
        var(--dark-bg);
}

.stage-monitor-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    margin-top: 56px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(155deg, rgba(18, 24, 44, 0.98), rgba(28, 36, 63, 0.92));
    box-shadow: 0 20px 70px rgba(3, 7, 18, 0.4);
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-monitor-hero.visible {
    opacity: 1;
    transform: translateY(0);
}

.stage-monitor-hero:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 90px rgba(3, 7, 18, 0.55);
}

.stage-monitor-copy {
    padding: 42px;
}

.stage-monitor-copy h3 {
    font-size: 38px;
    line-height: 1.08;
    margin-bottom: 18px;
    color: #ffffff;
}

.stage-monitor-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.stage-monitor-copy p:last-child {
    margin-bottom: 0;
}

.stage-monitor-visual {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.06), rgba(0, 0, 0, 0));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 18px 18px 0;
}

.stage-monitor-visual img {
    width: 112%;
    max-width: 820px;
    object-fit: contain;
    filter: drop-shadow(0 32px 54px rgba(0, 0, 0, 0.45));
}

/* Free Section */
.free-section {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at center, rgba(102, 126, 234, 0.2), transparent 70%),
        var(--dark-bg);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.free-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(240, 147, 251, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.free-content {
    position: relative;
    z-index: 1;
}

.free-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.large-text {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.free-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: var(--darker-bg);
    position: relative;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.story-content p strong {
    color: var(--text-color);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-page {
    background: var(--darker-bg);
}

.story-hero {
    padding: 140px 0 48px;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.08), transparent 24%),
        var(--darker-bg);
}

.story-hero-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.story-hero-title {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #67e8f9 18%, #22d3ee 40%, #34d399 68%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-hero-intro {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.story-article-section {
    padding: 36px 0 100px;
}

.story-article {
    max-width: 860px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(155deg, rgba(18, 24, 44, 0.92), rgba(20, 27, 48, 0.86));
    box-shadow: 0 18px 60px rgba(3, 7, 18, 0.34);
}

.story-article p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 24px;
}

.story-article p:last-child {
    margin-bottom: 0;
}

.download-page {
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.07), transparent 24%),
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.05), transparent 20%),
        var(--darker-bg);
}

.download-hero {
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), transparent 26%),
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(5, 5, 8, 0.98), rgba(7, 10, 20, 0.98));
}

.download-main-section,
.registration-section {
    padding: 36px 0 100px;
}

.download-status {
    display: none;
    max-width: 860px;
    margin: 0 auto 28px;
    padding: 18px 22px;
    border-radius: 20px;
    border: 1px solid rgba(52, 211, 153, 0.22);
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.35), rgba(15, 23, 42, 0.92));
    color: rgba(236, 253, 245, 0.92);
    box-shadow: 0 18px 50px rgba(3, 7, 18, 0.28);
}

.download-status.is-active {
    display: block;
}

.download-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: stretch;
}

.download-hero-panel,
.download-offer,
.access-card,
.registration-card,
.registration-side-card {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 60px rgba(3, 7, 18, 0.34);
}

.download-hero-panel {
    padding: 38px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 28%),
        linear-gradient(155deg, rgba(18, 24, 44, 0.96), rgba(20, 27, 48, 0.9));
}

.download-hero-panel h2,
.registration-side-card h2 {
    font-size: 40px;
    line-height: 1.08;
    margin-bottom: 18px;
    color: #ffffff;
}

.download-hero-panel p,
.download-offer li,
.access-card p,
.registration-side-card p,
.form-note,
.registration-success p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.download-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.download-offer {
    padding: 32px;
    background: linear-gradient(155deg, rgba(17, 24, 39, 0.98), rgba(30, 41, 59, 0.92));
}

.download-step-list {
    list-style: none;
    display: grid;
    gap: 18px;
}

.download-step-list li {
    position: relative;
    padding-left: 22px;
}

.download-step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22d3ee, #fbbf24);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.5);
}

.download-access-section {
    margin-top: 68px;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.access-card {
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.16), transparent 28%),
        linear-gradient(155deg, rgba(18, 24, 44, 0.95), rgba(20, 27, 48, 0.88));
}

.access-card h3,
.registration-success h3 {
    font-size: 30px;
    line-height: 1.12;
    margin: 14px 0 16px;
    color: #ffffff;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #93c5fd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.access-card .btn {
    margin-top: 24px;
}

.registration-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: start;
}

.registration-side {
    display: grid;
    gap: 24px;
}

.registration-side-card {
    padding: 32px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 28%),
        linear-gradient(155deg, rgba(18, 24, 44, 0.95), rgba(20, 27, 48, 0.88));
}

.registration-side-list ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.registration-side-list li {
    color: rgba(255, 255, 255, 0.82);
    padding-left: 20px;
    position: relative;
}

.registration-side-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #34d399;
}

.registration-card {
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.1), transparent 24%),
        linear-gradient(155deg, rgba(17, 24, 39, 0.98), rgba(30, 41, 59, 0.92));
}

.registration-form {
    display: grid;
    gap: 22px;
}

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

.form-field {
    display: grid;
    gap: 10px;
}

.form-field-wide {
    grid-column: 1 / -1;
}

.form-field span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.78);
    color: #ffffff;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(34, 211, 238, 0.72);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.14);
    background: rgba(15, 23, 42, 0.95);
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
}

.checkbox-row input {
    margin-top: 5px;
}

.checkbox-row a,
.form-note a {
    color: #67e8f9;
    text-decoration: none;
}

.checkbox-row a:hover,
.form-note a:hover {
    color: #fbbf24;
}

.form-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.form-note {
    margin-top: -4px;
}

.form-note-success {
    color: #86efac;
}

.form-note-error {
    color: #fca5a5;
}

.registration-success {
    margin-top: 22px;
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(52, 211, 153, 0.22);
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.3), rgba(15, 23, 42, 0.92));
}

.registration-success .btn {
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

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

.footer-column p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-logo img {
        height: 140px;
    }

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

    .story-hero-title {
        font-size: 52px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .bento-panel-hero,
    .bento-panel-half,
    .bento-panel-wide,
    .bento-panel-spotlight,
    .bento-panel-tall,
    .bento-panel-compact {
        grid-column: span 3;
        min-height: 320px;
    }

    .bento-stack-half {
        grid-column: span 3;
        min-height: 320px;
    }

    .bento-panel-hero,
    .bento-panel-half,
    .bento-panel-wide {
        grid-column: span 6;
    }

    .bento-stack-half {
        grid-column: span 6;
    }

    .bento-panel h3 {
        min-height: 0;
    }

    .setup-stage {
        grid-template-columns: 1fr;
    }

    .setup-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .setup-hero-visual img {
        width: 100%;
    }

    .setup-stack {
        grid-template-columns: 1fr 1fr;
    }

    .setup-card,
    .setup-card:nth-child(2),
    .setup-card:nth-child(3),
    .setup-card:nth-child(4),
    .setup-card.visible:nth-child(2),
    .setup-card.visible:nth-child(3),
    .setup-card.visible:nth-child(4) {
        transform: translateX(0) translateY(0);
    }

    .setup-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .setup-card-visual {
        height: 180px;
    }

    .setup-card-copy {
        padding: 18px 4px 4px;
    }

    .stage-monitor-hero {
        grid-template-columns: 1fr;
    }

    .stage-monitor-visual {
        padding: 0 24px 24px;
    }

    .stage-monitor-visual img {
        width: 100%;
        max-width: 680px;
    }

    .download-grid,
    .registration-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--card-bg);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 30px;
        border-bottom: 1px solid var(--border-color);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-logo img {
        height: 120px;
    }

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

    .story-hero {
        padding: 120px 0 40px;
    }

    .stage-monitor-copy {
        padding: 28px;
    }

    .stage-monitor-copy h3 {
        font-size: 30px;
    }

    .stage-monitor-visual {
        padding: 0 20px 20px;
    }

    .download-hero-panel,
    .download-offer,
    .access-card,
    .registration-card,
    .registration-side-card {
        padding: 28px;
    }

    .download-hero-panel h2,
    .registration-side-card h2 {
        font-size: 32px;
    }

    .access-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-wide {
        grid-column: auto;
    }

    .story-hero-title {
        font-size: 42px;
    }

    .story-hero-intro {
        font-size: 18px;
    }

    .story-article {
        padding: 28px 24px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .section-kicker {
        margin-bottom: 16px;
    }

    .section-subtitle {
        margin: -20px auto 36px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bento-panel,
    .bento-panel-hero,
    .bento-panel-half,
    .bento-panel-wide,
    .bento-panel-spotlight,
    .bento-panel-tall,
    .bento-panel-compact {
        grid-column: auto;
        min-height: 0;
        padding: 24px;
    }

    .bento-stack-half {
        grid-column: auto;
        min-height: 0;
    }

    .bento-panel h3 {
        font-size: 24px;
    }

    .bento-panel-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .visual-wide-strip,
    .visual-bottom-band,
    .visual-tall-stack {
        width: calc(100% + 24px);
        margin-left: -24px;
        margin-right: -24px;
        margin-bottom: -24px;
    }

    .visual-bottom-right,
    .visual-bottom-float,
    .visual-offset-card,
    .visual-center,
    .visual-large-center,
    .visual-indicator-center,
    .visual-audio-center,
    .visual-timeline-center,
    .visual-preview-center,
    .visual-actions-center,
    .visual-ptz-center,
    .visual-stage-right {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .setup-copy {
        padding: 28px;
    }

    .setup-copy h3 {
        font-size: 30px;
    }

    .setup-stack {
        grid-template-columns: 1fr;
    }

    .free-content h2 {
        font-size: 38px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .hero-logo img {
        height: 100px;
    }

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

    .story-hero-title {
        font-size: 32px;
    }

    .stage-monitor-copy {
        padding: 22px;
    }

    .stage-monitor-copy h3 {
        font-size: 26px;
    }

    .stage-monitor-copy p {
        font-size: 15px;
    }

    .download-hero-panel,
    .download-offer,
    .access-card,
    .registration-card,
    .registration-side-card,
    .registration-success {
        padding: 22px;
        border-radius: 24px;
    }

    .download-hero-panel h2,
    .registration-side-card h2,
    .access-card h3,
    .registration-success h3 {
        font-size: 26px;
    }

    .story-hero-intro,
    .story-article p {
        font-size: 16px;
    }

    .story-article {
        padding: 22px 18px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .bento-panel {
        padding: 22px 18px;
    }

    .bento-panel h3 {
        font-size: 22px;
    }

    .bento-panel p {
        font-size: 15px;
    }

    .visual-wide-strip,
    .visual-bottom-band,
    .visual-tall-stack {
        width: calc(100% + 18px);
        margin-left: -18px;
        margin-right: -18px;
        margin-bottom: -18px;
    }

    .visual-wide-strip-large {
        height: 180px;
    }

    .setup-copy {
        padding: 22px;
    }

    .setup-copy h3 {
        font-size: 26px;
    }

    .setup-card-visual {
        height: 150px;
    }

    .free-content h2 {
        font-size: 32px;
    }

    .large-text {
        font-size: 20px;
    }

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

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
