:root {
    --primary: #7B4DFF;
    --primary-soft: #A78BFA;
    --primary-light: #EDE7FF;
    --text: #111111;
    --muted: #666666;
    --bg: #FFFFFF;
    --line: rgba(0,0,0,0.08);
    --transition-base: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background-color: var(--primary);
    color: white;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
    transition: transform 0.15s var(--transition-base);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    z-index: 9998;
    pointer-events: none;
    transition: transform 0.3s var(--transition-base), opacity 0.2s var(--transition-base);
    mix-blend-mode: difference;
}

/* Grain Texture */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    opacity: 0.03;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
    transition: all 0.5s var(--transition-base);
}

.nav.scrolled {
    padding: 16px 60px;
}

.logo {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text span {
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

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

.nav-links a {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    position: relative;
    transition: color 0.3s var(--transition-base);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-soft), var(--primary));
    transition: width 0.5s var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 1px;
    background: var(--text);
    transition: all 0.3s var(--transition-base);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.hero-left {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: clamp(50px, 12vw, 100px);
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--text);
    overflow: hidden;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: revealUp 1s var(--transition-base) forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.4s; }
.hero-title span:nth-child(3) { animation-delay: 0.6s; }
.hero-title span:nth-child(4) { animation-delay: 0.8s; }

.hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-top: 40px;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.8s var(--transition-base) 1s forwards;
}

.hero-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-svg {
    width: 500px;
    height: 500px;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 1.2s var(--transition-base) 0.5s forwards;
}

.path-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawPath 3s var(--transition-base) 0.8s forwards;
}

.path-dot {
    opacity: 0;
    animation: dotReveal 0.5s var(--transition-base) 1.5s forwards;
}

.particle {
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) { animation-delay: 0s; }
.particle:nth-child(2) { animation-delay: 2s; }
.particle:nth-child(3) { animation-delay: 4s; }
.particle:nth-child(4) { animation-delay: 6s; }

/* Brand Section */
.brand-section {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    text-align: center;
}

/* Product Showcase Section */
.product-showcase {
    min-height: 100vh;
    padding: 100px 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.product-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.product-image {
    display: flex;
    justify-content: center;
}

.app-mockup {
    width: 320px;
    height: 680px;
    background: linear-gradient(145deg, #f5f5f5, #ffffff);
    border-radius: 50px;
    padding: 20px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 0 0 1px var(--line);
}

.app-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.app-header {
    background: white;
    padding: 24px 20px 16px;
    border-bottom: 1px solid var(--line);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.status-icons {
    display: flex;
    gap: 8px;
    color: var(--text);
}

.app-content {
    padding: 24px;
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.path-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 20px;
    padding: 20px;
}

.preview-svg {
    width: 100%;
    height: 80px;
}

.preview-svg path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s var(--transition-base) 0.5s forwards;
}

.preview-svg circle {
    opacity: 0;
    animation: dotReveal 0.5s var(--transition-base) 1.5s forwards;
}

.app-stats {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    background: rgba(123, 77, 255, 0.05);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
}

.stat-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-category {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

.product-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.1;
    color: var(--text);
}

.product-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 450px;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--text);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    margin-top: 16px;
    align-self: flex-start;
    transition: all 0.3s var(--transition-base);
}

.product-cta:hover {
    background: var(--primary-soft);
    transform: translateY(-2px);
}

.brand-text {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
    color: var(--text);
    max-width: 900px;
    opacity: 0;
}

.brand-text span {
    color: var(--primary);
}

.brand-sub {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 16px;
    opacity: 0;
}

.brand-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 600px;
    margin-top: 20px;
    opacity: 0;
}

/* Advantages Section */
.advantages-section {
    min-height: 70vh;
    padding: 60px;
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    opacity: 0;
    transform: translateY(30px);
}

.advantage-number {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: clamp(50px, 10vw, 80px);
    line-height: 0.8;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.advantage-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 8px;
}

.advantage-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 280px;
}

.advantage-item:nth-child(2),
.advantage-item:nth-child(4) {
    margin-top: 40px;
}

/* Gallery Section */
.gallery-section {
    padding: 60px;
    position: relative;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-text {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-category {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

.gallery-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.1;
    color: var(--text);
    margin-top: 12px;
}

.gallery-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin-top: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    opacity: 0;
}

.gallery-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.4s var(--transition-base);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-base);
}

.gallery-image:hover {
    transform: translateY(-8px);
}

.gallery-image:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s var(--transition-base);
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

/* News Section */
.news-section {
    min-height: 100vh;
    padding: 100px 60px;
    position: relative;
    background: var(--primary-light);
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.news-featured {
    position: relative;
    height: 600px;
    background: white;
    border-radius: 32px;
    overflow: hidden;
}

.news-featured-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-soft));
    position: relative;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
}

.news-category {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.news-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
}

.news-excerpt {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: white;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s var(--transition-base);
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.4s var(--transition-base);
}

.news-item:hover::before {
    height: 100%;
}

.news-item:hover {
    transform: translateX(8px);
}

.news-item-image {
    width: 120px;
    height: 80px;
    border-radius: 12px;
    background: var(--primary-light);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.news-item-image svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 6px;
    transition: color 0.3s var(--transition-base);
}

.news-item:hover .news-item-title {
    color: var(--primary);
}

.news-item-date {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: var(--muted);
}

/* CTA Section */
.cta-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
}

.cta-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 12vw, 96px);
    line-height: 0.9;
    color: var(--text);
    opacity: 0;
}

.cta-title span {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.cta-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-top: 40px;
    opacity: 0;
}

.cta-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    pointer-events: none;
    opacity: 0.3;
}

.cta-path {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: drawPath 4s var(--transition-base) 1s forwards;
}

/* About Section */
.about-section {
    min-height: 100vh;
    padding: 100px 60px;
    position: relative;
}

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

.about-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1;
    color: var(--text);
    margin-bottom: 60px;
    opacity: 0;
}

.about-content {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text);
    max-width: 800px;
    opacity: 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.culture-item {
    padding: 40px;
    background: var(--primary-light);
    border-radius: 24px;
    text-align: center;
    opacity: 0;
    transition: transform 0.4s var(--transition-base);
}

.culture-item:hover {
    transform: translateY(-8px);
}

.culture-word {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.1em;
    color: var(--text);
}

/* Services Section */
.services-section {
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-bg-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

.services-bg-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid var(--line);
    border-radius: 50%;
    opacity: 0.5;
}

.services-track {
    display: flex;
    gap: 32px;
    padding: 0 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    position: relative;
    z-index: 10;
}

.services-track::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 360px;
    min-height: 400px;
    padding: 44px 32px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    scroll-snap-align: center;
    opacity: 0;
    transition: all 0.4s var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--transition-base);
    border-radius: 0 0 3px 3px;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(123, 77, 255, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 16px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-number {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: 52px;
    color: var(--primary-light);
    line-height: 0.75;
    margin-bottom: 16px;
    letter-spacing: -0.05em;
}

.service-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.service-arrow {
    margin-top: 20px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s var(--transition-base);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-arrow svg {
    width: 20px;
    height: 20px;
}

/* Story Section */
.story-section {
    min-height: 100vh;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.story-bg-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flow-path {
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.flow-line {
    animation: flowMove 20s linear infinite;
}

.flow-line-secondary {
    animation: flowMove 25s linear infinite reverse;
}

@keyframes flowMove {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -100;
    }
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.story-intro {
    text-align: center;
    margin-bottom: 80px;
}

.story-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

.story-heading {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.1;
    color: var(--text);
    margin-top: 16px;
    margin-bottom: 20px;
}

.story-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.story-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    transition: all 0.4s var(--transition-base);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.story-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(123, 77, 255, 0.12);
}

.story-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 20px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.4s var(--transition-base);
}

.story-card:hover .story-card-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.story-card-icon svg {
    width: 28px;
    height: 28px;
}

.story-card-year {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: var(--primary-light);
    line-height: 0.8;
    margin-bottom: 12px;
    letter-spacing: -0.05em;
}

.story-card-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.story-card-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}

.story-card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at bottom right, var(--primary-light) 0%, transparent 70%);
    opacity: 0.5;
    border-radius: 0 0 24px 0;
}

/* Footer */
.footer {
    padding: 80px 60px 40px;
    border-top: 1px solid var(--line);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-copyright {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: var(--muted);
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.footer-column-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column li a {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s var(--transition-base);
}

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

.footer-contact {
    flex: 1;
    text-align: right;
}

.footer-contact p {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 8px;
}

/* Page Header */
.page-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 60px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.page-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 10vw, 80px);
    line-height: 1;
    color: var(--text);
    text-align: center;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: revealUp 1s var(--transition-base) 0.3s forwards;
}

/* Animations */
@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dotReveal {
    to {
        opacity: 1;
    }
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) translateX(50px);
    }
}

@keyframes floatFragment {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pathGrow {
    to {
        height: 100%;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .product-showcase-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .app-mockup {
        width: 280px;
        height: 600px;
    }

    .product-cta {
        align-self: center;
    }

    .product-features {
        align-items: center;
    }

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

    .hero-left {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .hero-right {
        max-width: 100%;
    }

    .hero-svg {
        width: 400px;
        height: 400px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advantage-item:nth-child(2),
    .advantage-item:nth-child(4) {
        margin-top: 0;
    }

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

    .news-container {
        grid-template-columns: 1fr;
    }

    .news-featured {
        height: 400px;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 40px;
    }

    .footer-contact {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 20px 30px;
    }

    .nav.scrolled {
        padding: 12px 30px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(40px, 10vw, 72px);
    }

    .hero-svg {
        width: 300px;
        height: 300px;
    }

    .brand-section,
    .product-section,
    .advantages-section,
    .news-section,
    .cta-section,
    .about-section,
    .services-section,
    .story-section {
        padding: 60px 30px;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item-image {
        width: 100%;
        height: 120px;
    }

    .service-card {
        flex: 0 0 320px;
        padding: 40px 24px;
    }

    .story-timeline {
        padding-left: 40px;
    }

    .story-path {
        left: 15px;
    }

    .story-item::before {
        left: -40px;
    }
}

/* Section Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-base);
}

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

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }