:root {
    --color-bg: #0a0a12;
    --color-bg-alt: #0f0f1a;
    --color-bg-card: rgba(22, 22, 37, 0.6);
    --color-primary: #9b8fd4;
    --color-primary-dark: #7c6fae;
    --color-accent: #e8b4b4;
    --color-accent-warm: #f5d0d0;
    --color-text: #fafafa;
    --color-text-muted: #a8a8b8;
    --color-text-dim: #6a6a7a;
    --color-border: rgba(155, 143, 212, 0.15);
    --gradient-primary: linear-gradient(135deg, #9b8fd4 0%, #b8a8e8 50%, #9b8fd4 100%);
    --gradient-accent: linear-gradient(135deg, #e8b4b4 0%, #f5d0d0 100%);
    --gradient-hero: radial-gradient(ellipse at 30% 20%, rgba(155, 143, 212, 0.15) 0%, transparent 50%),
                       radial-gradient(ellipse at 70% 80%, rgba(232, 180, 180, 0.08) 0%, transparent 50%),
                       linear-gradient(180deg, #0a0a12 0%, #0d0d18 100%);
    --gradient-glass: linear-gradient(135deg, rgba(155, 143, 212, 0.1) 0%, rgba(232, 180, 180, 0.05) 100%);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(155, 143, 212, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% - 40px);
    max-width: 1160px;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 0 8px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(155, 143, 212, 0.3);
    transition: var(--transition-bounce);
}

.logo:hover .logo-img {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(155, 143, 212, 0.4);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
    transition: var(--transition);
    position: relative;
    padding: 8px 16px;
    border-radius: 100px;
}

.nav-link:hover {
    color: var(--color-text);
    background: rgba(155, 143, 212, 0.1);
}

.nav-link::after {
    display: none;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 100px;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(155, 143, 212, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(155, 143, 212, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(155, 143, 212, 0.3);
    box-shadow: inset 0 0 20px rgba(155, 143, 212, 0.05);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(155, 143, 212, 0.1);
    box-shadow: inset 0 0 30px rgba(155, 143, 212, 0.1), 0 4px 20px rgba(155, 143, 212, 0.2);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ========================================
   CINEMATIC EDITORIAL HERO
   Luxury Editorial / A24 Aesthetic
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px;
    overflow: hidden;
    background: #0a0a0f;
}

/* Atmospheric Background Layers */
.hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.atmosphere-layer {
    position: absolute;
    inset: 0;
}

.layer-deep { z-index: 1; }
.layer-mid { z-index: 2; }
.layer-near { z-index: 3; }

/* Deep Layer - Ambient Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: glow-breathe 15s ease-in-out infinite;
}

.glow-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(155, 143, 212, 0.4) 0%, transparent 70%);
    top: -20%;
    left: -15%;
    animation-delay: 0s;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 180, 220, 0.25) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 143, 212, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes glow-breathe {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    50% { transform: scale(1.1) translate(20px, -10px); opacity: 0.45; }
}

/* Mid Layer - Celestial & Light Beams */
.celestial-body {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 15%;
    right: 20%;
    background: radial-gradient(circle at 35% 35%, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(232, 228, 255, 0.7) 25%, 
        rgba(180, 170, 220, 0.3) 60%, 
        transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 80px rgba(155, 143, 212, 0.25),
        0 0 160px rgba(155, 143, 212, 0.1);
    opacity: 0.5;
    animation: celestial-drift 20s ease-in-out infinite;
}

@keyframes celestial-drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.48; }
    50% { transform: translate(15px, -20px); opacity: 0.58; }
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 400px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.08) 20%, 
        rgba(255, 255, 255, 0.03) 50%,
        transparent 100%);
    transform-origin: top center;
    animation: beam-sway 12s ease-in-out infinite;
}

.beam-1 {
    top: 0;
    left: 25%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.beam-2 {
    top: 0;
    right: 35%;
    transform: rotate(-10deg);
    animation-delay: -6s;
    height: 350px;
    opacity: 0.6;
}

@keyframes beam-sway {
    0%, 100% { opacity: 0.04; transform: rotate(var(--base-rotation, 0deg)) translateX(0); }
    50% { opacity: 0.08; transform: rotate(var(--base-rotation, 0deg)) translateX(10px); }
}

.beam-1 { --base-rotation: 15deg; }
.beam-2 { --base-rotation: -10deg; }

/* Near Layer - Floating Abstract Forms */
.floating-form {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    animation: form-float 18s ease-in-out infinite;
}

.form-1 {
    width: 200px;
    height: 200px;
    background: rgba(155, 143, 212, 0.3);
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.form-2 {
    width: 150px;
    height: 150px;
    background: rgba(200, 190, 230, 0.25);
    bottom: 25%;
    right: 15%;
    animation-delay: -9s;
}

.form-3 {
    width: 100px;
    height: 100px;
    background: rgba(180, 170, 210, 0.2);
    top: 60%;
    left: 60%;
    animation-delay: -4s;
}

@keyframes form-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Grain Overlay */
.grain-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: grain-shift 8s steps(10) infinite;
    pointer-events: none;
}

@keyframes grain-shift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-1px, 1px); }
    40% { transform: translate(1px, -1px); }
    50% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    70% { transform: translate(-1px, -1px); }
    80% { transform: translate(1px, 1px); }
    90% { transform: translate(-2px, 2px); }
}

/* Hero Content Layout */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
}

/* Editorial Layout */
.editorial-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 680px;
}

/* Editorial Header */
.editorial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fade-up 1s ease-out 0.1s both;
}

.super-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.9);
}

.title-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(155, 143, 212, 0.5), transparent);
}

.subtitle-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(155, 143, 212, 0.7);
}

/* Typographic Composition */
.typographic-composition {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.headline-primary {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin: 0;
    animation: fade-up 1s ease-out 0.3s both;
}

.headline-primary .line {
    display: block;
    color: #fafafa;
}

.headline-primary .line-1 {
    font-weight: 300;
    opacity: 0.85;
}

.headline-primary .line-2 {
    font-weight: 500;
}

.headline-secondary {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.3;
    color: rgba(200, 190, 220, 0.7);
    margin: 8px 0 0 0;
    letter-spacing: 0.02em;
    animation: fade-up 1s ease-out 0.5s both;
}

/* Editorial Body */
.editorial-body {
    max-width: 520px;
    animation: fade-up 1s ease-out 0.7s both;
}

.lead-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(168, 168, 184, 0.85);
    margin: 0;
}

/* Editorial Actions */
.editorial-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
    animation: fade-up 1s ease-out 0.9s both;
}

.cta-primary {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fafafa;
    text-decoration: none;
    padding: 12px 0;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    transition: color 0.4s ease;
}

.cta-primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(155, 143, 212, 0.4);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s ease, background 0.4s ease;
}

.cta-primary:hover {
    color: #b8a8e8;
}

.cta-primary:hover::before {
    transform: scaleX(1.1);
    background: rgba(184, 168, 232, 0.6);
}

.cta-text {
    letter-spacing: 0.02em;
}

.cta-line {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #b8a8e8, transparent);
    transition: width 0.6s ease;
}

.cta-primary:hover .cta-line {
    width: 120%;
}

.cta-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(168, 168, 184, 0.7);
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 8px 0;
    border-bottom: 1px solid rgba(168, 168, 184, 0.2);
    transition: all 0.4s ease;
}

.cta-secondary:hover {
    color: rgba(250, 250, 250, 0.9);
    border-color: rgba(250, 250, 250, 0.4);
}

/* Editorial Footer */
.editorial-footer {
    margin-top: 24px;
    animation: fade-up 1s ease-out 1.1s both;
}

.disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(106, 106, 122, 0.8);
    letter-spacing: 0.02em;
    margin: 0;
    padding-left: 16px;
    border-left: 1px solid rgba(106, 106, 122, 0.3);
}

/* Editorial Accent Elements */
.editorial-accent {
    position: relative;
    width: 120px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fade-in 1.5s ease-out 0.5s both;
}

.accent-mark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(155, 143, 212, 0.4);
    animation: mark-pulse 4s ease-in-out infinite;
}

.mark-1 { animation-delay: 0s; }
.mark-2 { animation-delay: -2s; }

@keyframes mark-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.3); }
}

.accent-line {
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(155, 143, 212, 0.3) 20%, 
        rgba(155, 143, 212, 0.3) 80%, 
        transparent 100%);
    animation: line-breathe 6s ease-in-out infinite;
}

@keyframes line-breathe {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fade-in 1s ease-out 1.5s both;
    z-index: 10;
}

.scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(168, 168, 184, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, 
        rgba(155, 143, 212, 0.4) 0%, 
        transparent 100%);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.7; transform: scaleY(1.1); }
}

/* Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gradient-primary);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--color-text);
    letter-spacing: -1px;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

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

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

.feature-card {
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 143, 212, 0.5), transparent);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(155, 143, 212, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(155, 143, 212, 0.3);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:nth-child(1) { border-top-left-radius: 40px; }
.feature-card:nth-child(2) { border-top-right-radius: 40px; }
.feature-card:nth-child(4) { border-bottom-left-radius: 40px; }
.feature-card:nth-child(5) { border-bottom-right-radius: 40px; }

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    margin-bottom: 28px;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 8px 24px rgba(155, 143, 212, 0.3);
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(155, 143, 212, 0.4);
}

.feature-title {
    font-size: 1.6rem;
    margin-bottom: 14px;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

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

.how-it-works {
    padding: 140px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(155, 143, 212, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(155, 143, 212, 0.3) 15%, 
        rgba(155, 143, 212, 0.3) 85%, 
        transparent 100%);
    z-index: 0;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glass);
    border: 2px solid rgba(155, 143, 212, 0.2);
    border-radius: 50%;
    margin: 0 auto 28px;
    font-size: 1.8rem;
    color: var(--color-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(155, 143, 212, 0.2);
    transition: var(--transition-bounce);
}

.step:hover .step-icon {
    transform: scale(1.1);
    border-color: rgba(155, 143, 212, 0.4);
    box-shadow: 0 12px 40px rgba(155, 143, 212, 0.3);
}

.step-title {
    font-size: 1.6rem;
    margin-bottom: 14px;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

.step-connector {
    display: none;
}

/* ========================================
   APP SHOWCASE - Cinematic Phone Gallery
   ======================================== */

.app-showcase {
    padding: 140px 0 120px;
    background: linear-gradient(180deg, #0d0d18 0%, #0a0a12 50%, #0d0d18 100%);
    position: relative;
    overflow: hidden;
}

/* Showcase Atmosphere */
.showcase-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.showcase-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(155, 143, 212, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    animation: showcase-breathe 12s ease-in-out infinite;
}

.showcase-ambient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 100%);
    opacity: 0.5;
}

@keyframes showcase-breathe {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

/* Showcase Header */
.showcase-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.showcase-eyebrow {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(155, 143, 212, 0.7);
    margin-bottom: 20px;
}

.showcase-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #fafafa;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.showcase-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(168, 168, 184, 0.8);
    line-height: 1.6;
}

/* Showcase Stage */
.showcase-stage {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

/* Phone Composition */
.phone-composition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    height: 500px;
    perspective: 1200px;
}

.phone-stack {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stack-left {
    z-index: 1;
    transform: translateX(60px) translateZ(-100px) rotateY(15deg);
    animation: float-left 8s ease-in-out infinite;
}

.stack-center {
    z-index: 3;
    transform: translateZ(50px);
    animation: float-center 6s ease-in-out infinite;
}

.stack-right {
    z-index: 2;
    transform: translateX(-60px) translateZ(-50px) rotateY(-12deg);
    animation: float-right 7s ease-in-out infinite;
}

@keyframes float-left {
    0%, 100% { transform: translateX(60px) translateZ(-100px) rotateY(15deg) translateY(0); }
    50% { transform: translateX(60px) translateZ(-100px) rotateY(15deg) translateY(-15px); }
}

@keyframes float-center {
    0%, 100% { transform: translateZ(50px) translateY(0) rotateY(0deg); }
    50% { transform: translateZ(50px) translateY(-20px) rotateY(2deg); }
}

@keyframes float-right {
    0%, 100% { transform: translateX(-60px) translateZ(-50px) rotateY(-12deg) translateY(0); }
    50% { transform: translateX(-60px) translateZ(-50px) rotateY(-12deg) translateY(-12px); }
}

/* Device Styling */
.device {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.device-frame {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(155, 143, 212, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-main .device-frame {
    width: 260px;
    height: 520px;
}

.device-back .device-frame {
    width: 220px;
    height: 440px;
    opacity: 0.85;
    filter: blur(0.5px);
}

.device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.device:hover .device-frame {
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(155, 143, 212, 0.3),
        0 0 60px rgba(155, 143, 212, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.device-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(168, 168, 184, 0.6);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.device:hover .device-label {
    opacity: 1;
    transform: translateY(0);
    color: rgba(155, 143, 212, 0.9);
}

/* Device Glow Effect */
.device-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(155, 143, 212, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.6;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Composition Accent Elements */
.composition-accent {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.accent-orb {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(155, 143, 212, 0.3);
    animation: orb-pulse 3s ease-in-out infinite;
}

.orb-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    bottom: 25%;
    right: 20%;
    animation-delay: -1.5s;
}

@keyframes orb-pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.accent-line-h {
    position: absolute;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 143, 212, 0.2), transparent);
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

/* Showcase Features */
.showcase-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(22, 22, 37, 0.4);
    border: 1px solid rgba(155, 143, 212, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.feature-highlight:hover {
    background: rgba(22, 22, 37, 0.6);
    border-color: rgba(155, 143, 212, 0.25);
    transform: translateY(-2px);
}

.highlight-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(155, 143, 212, 0.6);
    animation: dot-breathe 2s ease-in-out infinite;
}

@keyframes dot-breathe {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.highlight-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(250, 250, 250, 0.8);
    letter-spacing: 0.02em;
}

.pricing {
    padding: 140px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 143, 212, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0 auto 48px;
    display: block;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.pricing-note i {
    color: var(--color-primary);
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 48px 32px;
    position: relative;
    transition: var(--transition-bounce);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(155, 143, 212, 0.5), transparent);
}

.pricing-card.popular {
    border-color: rgba(155, 143, 212, 0.4);
    box-shadow: var(--shadow-glow), 0 20px 60px rgba(155, 143, 212, 0.2);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.popular::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(155, 143, 212, 0.3), rgba(232, 180, 180, 0.2), rgba(155, 143, 212, 0.3));
    border-radius: calc(var(--radius-md) + 1px);
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(155, 143, 212, 0.35);
    box-shadow: var(--shadow-glow), 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(155, 143, 212, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-name {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-amount span {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
    text-transform: lowercase;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(155, 143, 212, 0.08);
}

.pricing-features li:last-child {
    border-bottom: none;
}

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

.reading-list li {
    justify-content: space-between;
    padding: 16px 0;
}

.reading-name {
    color: var(--color-text);
    font-weight: 500;
}

.reading-price {
    font-weight: 600;
    color: var(--color-primary);
    background: var(--gradient-glass);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.faq {
    padding: 140px 0;
    background: var(--color-bg-alt);
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(155, 143, 212, 0.25);
}

.faq-item.active {
    border-color: rgba(155, 143, 212, 0.4);
    box-shadow: 0 8px 32px rgba(155, 143, 212, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(155, 143, 212, 0.05);
}

.faq-question i {
    color: var(--color-primary);
    transition: var(--transition-bounce);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(155, 143, 212, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--gradient-primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 28px 28px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-answer a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
}

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

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-col a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: var(--transition);
}

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

.footer-disclaimer {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    line-height: 1.7;
}

.footer-disclaimer strong {
    color: var(--color-text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.copyright {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.company-info {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

@media (max-width: 1024px) {
    .header {
        top: 12px;
        width: calc(100% - 24px);
    }

    .hero {
        padding: 100px 32px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .editorial-layout {
        max-width: 100%;
    }

    .editorial-accent {
        display: none;
    }

    .headline-primary {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .headline-secondary {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .celestial-body {
        width: 120px;
        height: 120px;
        opacity: 0.35;
    }

    .light-beam {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .phone-composition {
        height: 420px;
    }

    .device-main .device-frame {
        width: 220px;
        height: 440px;
    }

    .device-back .device-frame {
        width: 180px;
        height: 360px;
    }

    .stack-left {
        transform: translateX(40px) translateZ(-80px) rotateY(12deg);
    }

    .stack-right {
        transform: translateX(-40px) translateZ(-40px) rotateY(-10deg);
    }

    .showcase-features {
        gap: 24px;
        flex-wrap: wrap;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

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

    .steps::before {
        display: none;
    }

    .step-number {
        font-size: 4rem;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        border-radius: 24px;
        top: 10px;
    }

    .nav-list {
        display: none;
    }

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

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

    .editorial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .title-divider {
        width: 30px;
    }

    .headline-primary {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .headline-secondary {
        font-size: 1.1rem;
    }

    .lead-paragraph {
        font-size: 0.95rem;
    }

    .editorial-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .scroll-indicator {
        display: none;
    }

    .celestial-body {
        width: 80px;
        height: 80px;
        top: 10%;
    }

    .ambient-glow {
        filter: blur(60px);
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-label::before,
    .section-label::after {
        width: 20px;
    }

    .cta-primary {
        font-size: 0.85rem;
    }

    .cta-secondary {
        font-size: 0.8rem;
    }

    .disclaimer {
        font-size: 0.65rem;
        padding-left: 12px;
    }

    .floating-form {
        display: none;
    }

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

    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        border-radius: var(--radius-md);
    }

    .steps {
        flex-direction: column;
        gap: 40px;
    }

    .step {
        max-width: 100%;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-number {
        top: -20px;
    }

    .app-showcase {
        padding: 100px 0 80px;
    }

    .phone-composition {
        height: 350px;
        perspective: 800px;
    }

    .device-main .device-frame {
        width: 170px;
        height: 340px;
        padding: 8px;
    }

    .device-back .device-frame {
        width: 140px;
        height: 280px;
        padding: 6px;
    }

    .stack-left {
        transform: translateX(20px) translateZ(-50px) rotateY(8deg);
        animation: none;
    }

    .stack-center {
        animation: none;
    }

    .stack-right {
        transform: translateX(-20px) translateZ(-30px) rotateY(-6deg);
        animation: none;
    }

    .device-label {
        display: none;
    }

    .showcase-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .feature-highlight {
        padding: 10px 16px;
    }

    .composition-accent {
        display: none;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-note {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.content-section p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul, .content-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--color-text-muted);
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-section a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--color-primary-light);
}

.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0;
}

.error-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    color: var(--color-primary);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 24px;
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.error-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}
