@charset "UTF-8";

/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
    --primary-color: #0A192F;
    --secondary-color: #112240;
    --accent-color: #00FFFF;
    --neon-color: #BF00FF;
    --text-color: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Poppins', sans-serif;
    --radius-lg: 32px; 
    --radius-md: 24px;
    --radius-full: 50px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-snap-type: y mandatory; }
body { background: var(--primary-color); color: var(--text-color); font-family: var(--font-jp); overflow-x: hidden; line-height: 1.6; cursor: default; }
@media (pointer: fine) { body { cursor: none; } }
a { text-decoration: none; color: inherit; cursor: pointer; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; }

/* =========================================
   2. Custom Cursor
   ========================================= */
.cursor-dot { width: 8px; height: 8px; background-color: var(--accent-color); position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9999; pointer-events: none; box-shadow: 0 0 10px var(--accent-color); mix-blend-mode: screen; }
.cursor-outline { width: 40px; height: 40px; border: 1px solid var(--neon-color); background-color: rgba(191,0,255,0.1); position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9998; pointer-events: none; mix-blend-mode: screen; transition: width 0.2s, height 0.2s, background-color 0.2s; }
body.hovering .cursor-outline { width: 70px; height: 70px; background-color: rgba(0,255,255,0.1); border-color: var(--accent-color); }
body.clicking .cursor-outline { transform: translate(-50%, -50%) scale(0.8); background-color: rgba(255,255,255,0.5); }
@media (hover: none) and (pointer: coarse) { .cursor-dot, .cursor-outline { display: none; } body { cursor: auto; } }

/* =========================================
   3. Utilities & Common
   ========================================= */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.text-accent { color: var(--accent-color); }
.text-red { color: #f87171; }
.text-gradient-logo { background: linear-gradient(to right, #00FFFF, #BF00FF); -webkit-background-clip: text; color: transparent; }
.text-gradient-sub { background: linear-gradient(to right, #a78bfa, #BF00FF); -webkit-background-clip: text; color: transparent; }
.full-screen-section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; scroll-snap-align: start; position: relative; padding: 100px 0; z-index: 10; }
.glass-panel { background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--border-color); border-radius: var(--radius-lg); }
.glow-button { position: relative; overflow: hidden; transition: 0.3s; box-shadow: 0 0 15px rgba(0,255,255,0.3); border-radius: var(--radius-full); }
.glow-button:hover { box-shadow: 0 0 30px rgba(0,255,255,0.6); transform: translateY(-2px); }
.glow-button::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent); transform: rotate(45deg); animation: shine 3s infinite; }
.btn-primary { padding: 16px 40px; font-size: 1.1rem; background: linear-gradient(to right, var(--accent-color), #3b82f6); color: var(--primary-color); font-weight: bold; border-radius: 50px; display: inline-flex; align-items: center; justify-content: center; cursor: none; }
.btn-secondary { padding: 16px 40px; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; font-weight: bold; transition: 0.3s; display: inline-flex; align-items: center; justify-content: center; cursor: none; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* =========================================
   4. Backgrounds
   ========================================= */
.background-container { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-grid { position: absolute; inset: -50%; width: 200%; height: 200%; background-image: linear-gradient(to right, rgba(0,255,255,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; transform: perspective(500px) rotateX(20deg); animation: gridScroll 20s linear infinite; opacity: 0.6; }
@keyframes gridScroll { 0% { transform: perspective(500px) rotateX(20deg) translateY(0); } 100% { transform: perspective(500px) rotateX(20deg) translateY(-60px); } }
.parallax-layer { position: absolute; inset: 0; transition: transform 0.1s ease-out; will-change: transform; }
.bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), rgba(255,255,255,0) 70%); box-shadow: inset 0 0 20px rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); animation: floatBubble 10s ease-in-out infinite alternate; }
.b-1 { width: 300px; height: 300px; top: 10%; left: -5%; } .b-2 { width: 150px; height: 150px; top: 60%; right: 10%; } .b-3 { width: 500px; height: 500px; bottom: -10%; left: 30%; opacity: 0.2; } .b-4 { width: 80px; height: 80px; top: 30%; left: 20%; background: rgba(0,255,255,0.1); filter: blur(20px); } .b-5 { width: 120px; height: 120px; bottom: 30%; right: 30%; background: rgba(191,0,255,0.1); filter: blur(30px); } .b-6 { width: 40px; height: 40px; top: 50%; left: 50%; background: #fff; filter: blur(10px); opacity: 0.5; }
@keyframes floatBubble { 0% { transform: translate(0,0); } 100% { transform: translate(20px,-30px); } }
.bg-glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3; animation: orbFloat 20s infinite alternate; }
.glow-top { top: -20%; left: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, var(--accent-color), transparent 70%); } .glow-bottom { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, var(--neon-color), transparent 70%); }
@keyframes orbFloat { 0% { transform: scale(1); opacity: 0.2; } 100% { transform: scale(1.1); opacity: 0.3; } }
.fog-layer { position: absolute; top: 0; left: 0; width: 200%; height: 100%; background: url('https://images.unsplash.com/photo-1485236715568-ddc5ee6ca227?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') repeat-x; background-size: cover; opacity: 0.03; mix-blend-mode: screen; animation: fogFlow 60s linear infinite; }
.fog-layer.layer-2 { top: 20%; animation-duration: 90s; opacity: 0.02; animation-direction: reverse; }
@keyframes fogFlow { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.particles { position: absolute; inset: 0; } .particle { position: absolute; bottom: -20px; background: white; border-radius: 50%; opacity: 0; animation: particleRise linear infinite; }
.p1 { left: 10%; width: 2px; height: 2px; animation-duration: 15s; } .p2 { left: 30%; width: 4px; height: 4px; background: var(--neon-color); animation-duration: 20s; } .p3 { left: 50%; width: 2px; height: 2px; animation-duration: 12s; } .p4 { left: 70%; width: 3px; height: 3px; background: var(--accent-color); animation-duration: 18s; } .p5 { left: 90%; width: 2px; height: 2px; animation-duration: 25s; }
@keyframes particleRise { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: 0.5; } 100% { transform: translateY(-110vh); opacity: 0; } }
.background-container::after { content: " "; display: block; position: absolute; top: 0; left: 0; bottom: 0; right: 0; background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03)); z-index: 2; background-size: 100% 2px, 3px 100%; pointer-events: none; }

/* =========================================
   5. Navigation
   ========================================= */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: rgba(10,25,47,0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
.header-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.logo-group { display: flex; flex-direction: column; line-height: 1; cursor: none; }
.logo-sub { font-size: 10px; letter-spacing: 0.2em; font-weight: bold; background: linear-gradient(to right, #a78bfa, #BF00FF); -webkit-background-clip: text; color: transparent; }
.logo-main { font-family: var(--font-en); font-size: 1.8rem; letter-spacing: 0.1em; background: linear-gradient(to right, #00FFFF, #BF00FF); -webkit-background-clip: text; color: transparent; }
.nav-links { display: none; gap: 40px; }
.nav-item { font-weight: bold; font-size: 1rem; color: var(--text-muted); transition: 0.3s; cursor: none; }
.nav-item:hover { color: var(--accent-color); }
.btn-contact-small { padding: 10px 28px; border-radius: 50px; border: 1px solid rgba(0,255,255,0.5); color: var(--accent-color); font-size: 0.9rem; font-weight: bold; transition: 0.3s; cursor: none; }
.btn-contact-small:hover { background: var(--accent-color); color: var(--primary-color); }
.hamburger-menu { display: block; border: none; background: none; width: 30px; height: 20px; cursor: none; }
.hamburger-menu span { display: block; height: 2px; background: #fff; width: 100%; margin-bottom: 6px; }
@media(min-width: 1024px) { .nav-links { display: flex; } .hamburger-menu { display: none; } }

/* =========================================
   6. Hero Section
   ========================================= */
.hero-section { overflow: hidden; padding-top: 80px; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-bg .overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--primary-color), rgba(10,25,47,0.4)); }
.hero-grid { display: flex; flex-direction: column; align-items: center; gap: 60px; }
.hero-text { display: flex; flex-direction: column; align-items: center; max-width: 700px; }
.tagline { display: inline-block; padding: 6px 20px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; font-size: 0.8rem; letter-spacing: 0.3em; margin-bottom: 24px; font-family: var(--font-en); }
.main-title { font-size: 5rem; font-family: var(--font-en); line-height: 1.1; margin-bottom: 32px; background: linear-gradient(to right, #00FFFF, #BF00FF); -webkit-background-clip: text; color: transparent; display: flex; flex-direction: column; align-items: center; }
.title-sub { font-size: 1.5rem; display: block; color: var(--text-muted); letter-spacing: 0.2em; margin-bottom: 12px; }
.title-logo { font-family: var(--font-en); font-size: 5rem; font-weight: 300; letter-spacing: 0.1em; background: linear-gradient(to right, #00FFFF, #BF00FF); -webkit-background-clip: text; color: transparent; }
.hero-desc { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 48px; line-height: 1.8; text-align: center; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }
.hero-ui { width: 100%; max-width: 500px; }
.chat-interface { border-radius: 32px; box-shadow: 0 0 50px rgba(0,0,0,0.5); overflow: hidden; position: relative; }
.hologram-border { position: absolute; inset: 0; border: 1px solid rgba(0,255,255,0.2); border-radius: 32px; pointer-events: none; }
.chat-header { background: rgba(255,255,255,0.05); padding: 20px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--border-color); }
.avatar-group { position: relative; width: 48px; height: 48px; }
.avatar img { width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--accent-color); }
.status-dot { position: absolute; bottom: 0; right: 0; width: 12px; height: 12px; background: #22c55e; border-radius: 50%; }
.chat-info { display: flex; flex-direction: column; } .chat-info .name { font-weight: bold; font-size: 1rem; } .chat-info .status { font-size: 0.8rem; color: var(--accent-color); }
.chat-body { height: 400px; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 20px; background: linear-gradient(to bottom, transparent, rgba(10,25,47,0.8)); }
.message { display: flex; gap: 12px; opacity: 0; animation: chatPop 0.5s forwards; }
.message.user { flex-direction: row-reverse; }
.msg-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }
.msg-bubble { padding: 16px; border-radius: 20px; font-size: 1rem; max-width: 80%; line-height: 1.6; }
.message.ai .msg-bubble { background: rgba(255,255,255,0.1); border-top-left-radius: 0; color: #fff; }
.message.user .msg-bubble { background: rgba(0,255,255,0.15); border: 1px solid rgba(0,255,255,0.3); border-top-right-radius: 0; color: #fff; }
.mock-graph { margin-top: 12px; height: 100px; border: 1px dashed rgba(255,255,255,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--text-muted); }
.chat-input { padding: 20px; border-top: 1px solid var(--border-color); display: flex; gap: 12px; }
.input-box { flex: 1; background: rgba(0,0,0,0.3); border-radius: 50px; padding: 12px 24px; font-size: 0.9rem; color: var(--text-muted); border: 1px solid var(--border-color); }
.send-btn { width: 48px; height: 48px; border-radius: 50%; background: rgba(0,255,255,0.2); display: flex; align-items: center; justify-content: center; color: var(--accent-color); cursor: none; }
.delay-1 { animation-delay: 0.5s; } .delay-2 { animation-delay: 1.5s; } .delay-3 { animation-delay: 3.0s; } .delay-4 { animation-delay: 4.5s; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); text-align: center; opacity: 0.7; font-size: 0.8rem; letter-spacing: 0.2em; }
.scroll-indicator .line { width: 1px; height: 60px; background: linear-gradient(to bottom, white, transparent); margin: 10px auto 0; }
@keyframes chatPop { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
.animate-float { animation: float 6s ease-in-out infinite; }
@media (min-width: 1024px) { 
    .hero-grid { flex-direction: row; text-align: left; }
    .hero-text { width: 50%; align-items: flex-start; }
    .main-title { align-items: flex-start; }
    .hero-desc { text-align: left; }
    .hero-buttons { justify-content: flex-start; }
    .hero-ui { width: 50%; margin-left: auto; }
}

/* =========================================
   7. Problem Section
   ========================================= */
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 80px; }
.section-header { text-align: center; max-width: 900px; margin: 0 auto; }
.section-header h2 { font-size: 3rem; margin-bottom: 32px; line-height: 1.3; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }
.problem-card { border-radius: 16px; overflow: hidden; border-top: 1px solid rgba(248, 113, 113, 0.3); transition: 0.3s; height: 100%; cursor: none; }
.problem-card:hover { transform: translateY(-10px); background: rgba(248, 113, 113, 0.05); }
.card-image { height: 250px; position: relative; }
.card-image img { height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
.card-image::after { content: ''; position: absolute; inset: 0; background: rgba(127, 29, 29, 0.4); mix-blend-mode: multiply; }
.problem-card:hover .card-image img { transform: scale(1.1); }
.card-content { padding: 40px; position: relative; }
.icon-circle { position: absolute; top: -30px; right: 30px; width: 60px; height: 60px; background: var(--primary-color); border: 1px solid rgba(248, 113, 113, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; z-index: 10; }
.problem-card h3 { font-size: 1.5rem; margin-bottom: 16px; font-weight: bold; }
.problem-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================
   8. Features Section
   ========================================= */
.features-section { padding: 100px 0; }
.section-header.align-left { text-align: left; margin: 0 0 60px 0; max-width: 800px; }
.section-header.align-left h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.section-header.align-left p { font-size: 1.1rem; color: var(--text-muted); }
.label-badge { display: inline-block; padding: 6px 16px; border: 1px solid rgba(0,255,255,0.3); color: var(--accent-color); font-size: 0.8rem; font-weight: bold; border-radius: 50px; margin-bottom: 24px; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; align-items: start; }
.feature-card { border-radius: 24px; overflow: hidden; transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1); height: 100%; border: 1px solid var(--border-color); display: flex; flex-direction: column; background: rgba(10, 25, 47, 0.5); }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); border-color: var(--accent-color); }
.card-header-neon { padding: 32px; background: linear-gradient(to right, rgba(10,25,47,0.9), rgba(0,0,0,0)); border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 2; }
.card-header-neon.accent h3 { color: var(--accent-color); }
.card-header-neon.neon h3 { color: var(--neon-color); }
.icon-box { font-size: 3rem; margin-bottom: 16px; filter: drop-shadow(0 0 10px currentColor); }
.card-header-neon.accent .icon-box { color: var(--accent-color); }
.card-header-neon.neon .icon-box { color: var(--neon-color); }
.card-header-neon h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; font-family: var(--font-en); letter-spacing: 0.05em; }
.card-header-neon p { font-size: 1rem; color: var(--text-muted); font-weight: bold; }
.card-video-container { width: 100%; height: 200px; position: relative; overflow: hidden; background: #000; border-bottom: 1px solid var(--border-color); }
.card-video-container video { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 0.5s; }
.feature-card:hover .card-video-container video { opacity: 1; transform: scale(1.05); }
.feature-list-card { padding: 32px; flex-grow: 1; background: rgba(255,255,255,0.02); }
.feature-list-card li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.feature-list-card li:last-child { margin-bottom: 0; }
.check-icon { flex-shrink: 0; width: 24px; height: 24px; background: rgba(0,255,255,0.1); color: var(--accent-color); border: 1px solid var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.9rem; margin-top: 4px; }
.check-icon.neon { background: rgba(191,0,255,0.1); color: var(--neon-color); border-color: var(--neon-color); }
.feature-list-card strong { display: block; font-size: 1.1rem; margin-bottom: 6px; color: #fff; }
.feature-list-card small { display: block; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.stats-row-mt { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 600px; margin: 0 auto; }
.stat-box { height: 180px; border-radius: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.3s; border: 1px solid var(--border-color); }
.stat-box:hover { border-color: var(--accent-color); box-shadow: 0 0 30px rgba(0,255,255,0.2); }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } .section-header.align-left h2 { font-size: 3.5rem; } }

/* =========================================
   9. Capabilities Section
   ========================================= */
.capabilities-section { padding: 0; flex-direction: column; background: var(--primary-color); overflow: hidden; justify-content: center; }
.carousel-wrapper { width: 100%; position: relative; margin-top: 60px; }
.carousel-wrapper::before, .carousel-wrapper::after { content: ""; position: absolute; inset-y: 0; width: 150px; z-index: 2; pointer-events: none; }
.carousel-wrapper::before { left: 0; background: linear-gradient(to right, var(--primary-color), transparent); }
.carousel-wrapper::after { right: 0; background: linear-gradient(to left, var(--primary-color), transparent); }
.carousel-track { display: flex; gap: 40px; width: max-content; animation: scrollLeft 60s linear infinite; padding-left: 20px; }
.carousel-track:hover { animation-play-state: paused; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.carousel-group { display: flex; gap: 40px; }
.capability-card { width: 350px; cursor: none; flex-shrink: 0; }
.card-thumb { height: 500px; border-radius: 20px; overflow: hidden; position: relative; margin-bottom: 24px; border: 1px solid var(--border-color); }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.7s; }
.capability-card:hover .card-thumb img { transform: scale(1.1); }
.card-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(10,25,47,0.1); transition: 0.5s; }
.capability-card:hover .card-thumb::after { background: transparent; }
.card-badge { position: absolute; top: 20px; left: 20px; padding: 6px 16px; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; font-size: 0.75rem; font-weight: bold; color: var(--accent-color); font-family: var(--font-en); z-index: 10; }
.card-badge.neon { color: var(--neon-color); }
.card-badge.white { color: white; }
.capability-card h3 { font-size: 1.5rem; line-height: 1.4; margin-bottom: 12px; transition: 0.3s; font-weight: bold; }
.capability-card:hover h3 { color: var(--accent-color); }
.capability-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }
@media (min-width: 1024px) { .capability-card { width: 400px; } .card-thumb { height: 550px; } .capability-card h3 { font-size: 1.6rem; } }

/* =========================================
   4.5 Use Cases Section (New for LLMO)
   ========================================= */
.usecases-section { background: rgba(0,0,0,0.15); }
.usecase-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 60px; }
.usecase-card { padding: 40px; border-radius: 20px; border: 1px solid var(--border-color); transition: 0.3s; background: rgba(255,255,255,0.02); height: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.usecase-card:hover { transform: translateY(-5px); border-color: var(--accent-color); background: rgba(255,255,255,0.05); }
.usecase-icon { font-size: 3rem; margin-bottom: 20px; }
.usecase-card h3 { font-size: 1.5rem; margin-bottom: 12px; font-weight: bold; color: #fff; }
.usecase-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.usecase-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.usecase-tags span { font-size: 0.8rem; padding: 4px 12px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2); color: var(--accent-color); }
@media (min-width: 768px) { .usecase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usecase-grid { grid-template-columns: repeat(4, 1fr); } }

/* =========================================
   10. Future & Impact Section
   ========================================= */
.impact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 80px; margin-bottom: 100px; }
.impact-card { background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); border-radius: 16px; padding: 40px; text-align: center; }
.impact-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.impact-card h3 { font-size: 1rem; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px; }
.impact-number { font-size: 5rem; font-weight: 900; line-height: 1; font-family: var(--font-en); display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.impact-number span { font-size: 2rem; font-weight: bold; }
.impact-number .arrow.down { color: var(--accent-color); } .impact-number .arrow.up { color: var(--neon-color); } .impact-number .small { font-size: 1.2rem; color: var(--text-muted); margin-right: 8px; }
.cta-banner-slim { max-width: 100%; margin: 0 auto; border-radius: 32px; border-bottom: 2px solid rgba(0,255,255,0.5); background: rgba(10,25,47,0.9); backdrop-filter: blur(10px); box-shadow: 0 0 40px rgba(0,255,255,0.1); overflow: hidden; position: relative; }
.banner-inner { padding: 48px 60px; display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center; }
.banner-text h3 { font-size: 2rem; margin-bottom: 12px; }
.banner-text p { font-size: 1.1rem; color: var(--text-muted); }
.banner-actions { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.sub-links { display: flex; gap: 16px; }
.btn-small { padding: 14px 32px; font-size: 1rem; }
.btn-ghost { padding: 12px 32px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; font-size: 0.9rem; font-weight: bold; background: rgba(255,255,255,0.05); transition: 0.3s; cursor: none; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
@media (min-width: 768px) { .impact-grid { grid-template-columns: repeat(3, 1fr); } .banner-inner { flex-direction: row; text-align: left; justify-content: space-between; } .banner-actions { flex-direction: row; } }

/* =========================================
   11. Flow Section
   ========================================= */
.flow-section { background: rgba(0,0,0,0.2); }
.flow-steps { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 80px; position: relative; }
.flow-line { display: none; position: absolute; top: 125px; left: 0; width: 100%; height: 2px; background: linear-gradient(to right, transparent, var(--accent-color), transparent); opacity: 0.3; }
.step-card { background: var(--secondary-color); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; transition: 0.3s; cursor: none; height: 100%; }
.step-card:hover { border-color: rgba(0,255,255,0.5); box-shadow: 0 0 20px rgba(0,255,255,0.1); }
.step-visual { height: 250px; position: relative; }
.step-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.step-num { position: absolute; top: 20px; left: 20px; width: 50px; height: 50px; background: var(--accent-color); color: var(--primary-color); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.5rem; }
.step-num.neon { background: var(--neon-color); color: #fff; }
.step-info { padding: 32px; }
.step-info h3 { font-size: 1.5rem; margin-bottom: 16px; }
.step-info p { font-size: 1rem; color: var(--text-muted); }
@media (min-width: 1024px) { .flow-steps { grid-template-columns: repeat(4, 1fr); gap: 32px; } .flow-line { display: block; } }

/* =========================================
   12. Case Section
   ========================================= */
.case-section { background: var(--primary-color); }
.case-list { display: flex; flex-direction: column; gap: 120px; width: 100%; max-width: 1100px; margin: 0 auto; }
.case-item { display: flex; align-items: center; justify-content: center; position: relative; width: 100%; }
.case-item.reverse { flex-direction: row-reverse; }
.case-img { width: 65%; height: 400px; position: relative; z-index: 1; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); border: 1px solid var(--border-color); }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-out; }
.img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,25,47,0.8), transparent); z-index: 2; pointer-events: none; }
.case-item.reverse .img-overlay { background: linear-gradient(to left, rgba(10,25,47,0.8), transparent); }
.case-item:hover .case-img img { transform: scale(1.1); }
.case-info { width: 45%; padding: 50px; z-index: 3; margin-left: -10%; position: relative; background: rgba(19, 34, 74, 0.9); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.case-item.reverse .case-info { margin-left: 0; margin-right: -10%; }
.accent-line-left { position: absolute; top: 30px; left: 0; width: 6px; height: 100%; max-height: 60px; background: var(--accent-color); border-radius: 0 4px 4px 0; }
.accent-line-right { position: absolute; top: 30px; right: 0; width: 6px; height: 100%; max-height: 60px; background: var(--neon-color); border-radius: 4px 0 0 4px; }
.quote-mark { position: absolute; top: 20px; right: 30px; font-size: 6rem; line-height: 1; color: var(--white); opacity: 0.05; font-family: serif; pointer-events: none; }
.case-item.reverse .quote-mark { right: auto; left: 30px; }
.case-info h3 { font-size: 1.8rem; margin-bottom: 4px; font-weight: bold; letter-spacing: 0.05em; }
.case-info .role { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; display: block; }
.case-info .comment { font-size: 1.05rem; line-height: 1.9; margin-bottom: 32px; color: #fff; }
.user-row { display: flex; align-items: center; gap: 16px; font-size: 0.75rem; font-weight: bold; letter-spacing: 0.1em; color: var(--accent-color); font-family: var(--font-en); }
.user-row img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); }
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 100px; opacity: 0.4; font-family: var(--font-en); font-weight: bold; font-size: 1.2rem; letter-spacing: 0.1em; color: #fff; transition: 0.3s; cursor: default; }
.partners-row:hover { opacity: 0.8; }
@media (max-width: 1024px) {
    .case-list { gap: 60px; }
    .case-item, .case-item.reverse { flex-direction: column; }
    .case-img { width: 100%; height: 250px; }
    .case-info, .case-item.reverse .case-info { width: 90%; margin: -40px 0 0 0; padding: 30px; }
    .case-info h3 { font-size: 1.4rem; }
    .img-overlay { display: none; }
}

/* =========================================
   13. News Section
   ========================================= */
.news-section { background: rgba(0,0,0,0.2); }
.news-wrapper { max-width: 1000px; }
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; border-bottom: 1px solid var(--border-color); padding-bottom: 30px; }
.news-header h2 { font-size: 2.5rem; }
.view-all { font-size: 1rem; font-weight: bold; transition: 0.3s; cursor: none; }
.news-item { display: flex; flex-direction: column; gap: 16px; padding: 32px 0; border-bottom: 1px solid var(--border-color); transition: 0.3s; position: relative; cursor: none; }
.news-item::before { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent-color); transition: 0.3s; }
.news-item:hover::before { width: 100%; }
.news-item:hover { padding-left: 20px; }
.date { font-size: 1rem; }
.tag { font-size: 0.8rem; padding: 4px 12px; }
.news-item h3 { font-size: 1.2rem; }
@media (min-width: 768px) { .news-item { flex-direction: row; align-items: center; } .news-item .arrow { display: block; font-size: 1.5rem; } }

/* =========================================
   13.5 Pricing Section
   ========================================= */
.pricing-section { background: rgba(0,0,0,0.1); }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 60px; align-items: center; }
.pricing-card { padding: 40px 32px; border-radius: 20px; display: flex; flex-direction: column; height: 100%; position: relative; transition: 0.3s; border: 1px solid var(--border-color); }
.pricing-card:hover { transform: translateY(-10px); border-color: var(--accent-color); box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1); }
.pricing-card.featured { background: linear-gradient(145deg, rgba(10, 25, 47, 0.9), rgba(0, 255, 255, 0.05)); border: 1px solid var(--accent-color); transform: scale(1.05); z-index: 2; }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-color); color: var(--primary-color); padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: bold; letter-spacing: 0.1em; box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); }
.plan-header { margin-bottom: 24px; text-align: center; }
.plan-header h3 { font-size: 1.5rem; font-weight: 900; letter-spacing: 0.1em; margin-bottom: 8px; font-family: var(--font-en); }
.plan-header .desc { font-size: 0.85rem; color: var(--text-muted); }
.plan-price { text-align: center; margin-bottom: 32px; font-family: var(--font-en); color: #fff; }
.plan-price .currency { font-size: 1.2rem; vertical-align: top; margin-right: 4px; }
.plan-price .amount { font-size: 3.5rem; font-weight: bold; line-height: 1; }
.plan-price .period { font-size: 0.9rem; color: var(--text-muted); }
.plan-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.plan-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; color: var(--text-color); }
.plan-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.plan-features .check { color: var(--accent-color); font-weight: bold; font-size: 1.1rem; }
.full-width { width: 100%; text-align: center; }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin-left: auto; margin-right: auto; } }

/* =========================================
   13.5 FAQ Section
   ========================================= */
.faq-section { background: rgba(0,0,0,0.2); }
.faq-container { max-width: 900px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid var(--border-color); margin-bottom: 24px; }
.faq-question { width: 100%; padding: 24px; background: rgba(255,255,255,0.02); border: none; border-radius: 12px; text-align: left; font-size: 1.1rem; font-weight: bold; color: #fff; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.3s; }
.faq-question:hover { background: rgba(255,255,255,0.05); color: var(--accent-color); }
.faq-question .icon { font-size: 1.5rem; transition: 0.3s; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); color: var(--neon-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 24px; font-size: 1rem; color: var(--text-muted); line-height: 1.8; border-left: 2px solid var(--neon-color); margin: 0 0 24px 12px; }

/* =========================================
   13.7 Scenarios Section (Replaces Glossary)
   ========================================= */
.scenario-section { padding: 100px 0; background: linear-gradient(to bottom, var(--primary-color), rgba(0,0,0,0.3)); }
.scenario-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
.scenario-card { border-radius: 24px; overflow: hidden; border: 1px solid var(--border-color); background: rgba(10, 25, 47, 0.5); transition: 0.3s; }
.scenario-card:hover { transform: translateY(-5px); border-color: var(--accent-color); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); }
.scenario-visual { position: relative; height: 300px; overflow: hidden; }
.scenario-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.scenario-card:hover .scenario-visual img { transform: scale(1.05); }
.scenario-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent 80%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.scenario-num { font-family: var(--font-en); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--accent-color); font-weight: bold; margin-bottom: 8px; text-shadow: 0 0 10px rgba(0,255,255,0.5); }
.scenario-overlay h3 { font-size: 1.6rem; font-weight: bold; color: #fff; line-height: 1.3; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.scenario-text { padding: 32px; }
.scenario-text h4 { font-size: 1rem; color: var(--text-muted); border-left: 3px solid var(--neon-color); padding-left: 12px; margin-bottom: 16px; font-weight: bold; }
.scenario-text p { font-size: 1rem; line-height: 1.8; color: #e2e8f0; }
@media (min-width: 1024px) { .scenario-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } .scenario-visual { height: 250px; } .scenario-overlay h3 { font-size: 1.4rem; } }

/* =========================================
   14. Footer (Cyber HUD Style)
   ========================================= */
.site-footer { background: #050f1e; position: relative; overflow: hidden; scroll-snap-align: start; scroll-snap-stop: always; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; border-top: 1px solid var(--border-color); }
.footer-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 15vw; font-weight: 900; font-family: var(--font-en); color: rgba(255, 255, 255, 0.02); pointer-events: none; white-space: nowrap; z-index: 0; }
.footer-deco-line { position: absolute; top: 0; left: 20%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(0, 255, 255, 0.1), transparent); }
.footer-deco-circle { position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; border: 1px solid rgba(0, 255, 255, 0.05); border-radius: 50%; animation: spin 60s linear infinite; }
.footer-container { height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding-top: 60px; padding-bottom: 40px; }
.footer-main { display: flex; flex-direction: column; gap: 60px; }
.footer-logo { display: flex; flex-direction: column; margin-bottom: 24px; }
.footer-logo .logo-sub { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--accent-color); font-weight: bold; }
.footer-logo .logo-main { font-size: 2rem; font-family: var(--font-en); font-weight: bold; color: #fff; letter-spacing: 0.05em; }
.system-status { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px; background: rgba(0, 255, 255, 0.05); border: 1px solid rgba(0, 255, 255, 0.2); border-radius: 4px; font-family: var(--font-en); font-size: 0.75rem; color: var(--accent-color); margin-bottom: 16px; }
.status-light { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 5px #22c55e; animation: pulse 2s infinite; }
.version { opacity: 0.5; margin-left: 8px; }
.company-name { font-size: 0.9rem; color: var(--text-muted); }
.footer-nav-matrix { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.nav-cell { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--border-color); background: rgba(255, 255, 255, 0.02); transition: 0.3s; text-decoration: none; }
.nav-cell:hover { background: rgba(0, 255, 255, 0.1); border-color: var(--accent-color); transform: translateX(5px); }
.nav-cell .cell-num { font-family: var(--font-en); font-size: 0.8rem; color: var(--accent-color); opacity: 0.5; }
.nav-cell .cell-label { font-family: var(--font-en); font-weight: bold; font-size: 1rem; color: #fff; letter-spacing: 0.1em; }
.nav-cell.active { border-color: var(--accent-color); background: rgba(0, 255, 255, 0.05); }
.footer-action { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.action-msg { font-family: var(--font-en); font-size: 1.2rem; color: var(--text-muted); }
.btn-large { padding: 20px 60px; font-size: 1.2rem; width: 100%; max-width: 300px; }
.social-links { display: flex; gap: 16px; }
.social-icon { width: 40px; height: 40px; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-weight: bold; font-size: 0.9rem; color: var(--text-muted); transition: 0.3s; }
.social-icon:hover { border-color: var(--accent-color); color: var(--accent-color); box-shadow: 0 0 10px rgba(0,255,255,0.3); }
.footer-bar { margin-top: 60px; padding-top: 20px; border-top: 1px solid var(--border-color); display: flex; flex-direction: column; gap: 20px; align-items: center; font-size: 0.75rem; color: var(--text-muted); }
.barcode { font-family: monospace; letter-spacing: 2px; opacity: 0.5; }
.legal-links { display: flex; gap: 24px; }
.legal-links a:hover { color: var(--accent-color); text-decoration: underline; }
@media (min-width: 1024px) { .footer-main { flex-direction: row; justify-content: space-between; align-items: flex-start; } .footer-info { width: 25%; } .footer-nav-matrix { grid-template-columns: repeat(3, 1fr); width: 45%; } .footer-action { width: 25%; align-items: flex-end; text-align: right; } .footer-bar { flex-direction: row; justify-content: space-between; } .barcode { order: 2; } }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

/* =========================================
   15. Philosophy Section
   ========================================= */
#philosophy { overflow: hidden; position: relative; background: radial-gradient(circle at 70% 50%, rgba(10, 25, 47, 0.8), var(--primary-color) 70%); }
#philosophy .philo-layout { display: flex; flex-direction: column-reverse; gap: 60px; align-items: center; justify-content: center; min-height: 100vh; padding: 100px 0; }
#philosophy .philo-text { width: 100%; position: relative; z-index: 10; }
#philosophy .philo-label { font-family: var(--font-en); font-size: 1rem; letter-spacing: 0.3em; font-weight: bold; opacity: 0.8; display: flex; align-items: center; gap: 20px; margin-bottom: 30px; color: var(--accent-color); }
#philosophy .philo-label .line { width: 60px; height: 1px; background: var(--accent-color); }
#philosophy .philo-text h2 { font-size: 3rem; line-height: 1.1; margin-bottom: 50px; font-weight: 900; letter-spacing: -0.05em; }
#philosophy .philo-body p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; line-height: 2; position: relative; }
#philosophy .num-bg { position: relative; }
#philosophy .num-bg::before { content: attr(data-num); position: absolute; left: -40px; top: -30px; font-size: 8rem; color: rgba(255,255,255,0.03); font-weight: 900; font-family: var(--font-en); z-index: -1; line-height: 1; }
#philosophy .highlight-box { padding: 40px; border-left: 6px solid var(--accent-color); background: linear-gradient(to right, rgba(0,255,255,0.05), transparent); margin: 50px 0; font-size: 1.5rem; font-weight: bold; color: #fff; letter-spacing: 0.05em; }
#philosophy .closing-msg { font-size: 1.8rem; font-weight: bold; margin-top: 60px; display: block; }
#philosophy .philo-visual { width: 100%; height: 500px; display: flex; align-items: center; justify-content: center; position: relative; }
#philosophy .soul-core { width: 400px; height: 400px; display: flex; align-items: center; justify-content: center; position: relative; animation: float 8s infinite ease-in-out; }
#philosophy .soul-glow { position: absolute; width: 100%; height: 100%; background: var(--accent-color); filter: blur(120px); opacity: 0.4; border-radius: 50%; }
#philosophy .soul-icon { font-size: 8rem; z-index: 10; filter: drop-shadow(0 0 20px rgba(255,255,255,0.5)); }
#philosophy .orbit-ring { position: absolute; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; }
#philosophy .ring-1 { width: 600px; height: 600px; animation: spin 60s linear infinite; border-color: rgba(0,255,255,0.1); }
#philosophy .ring-2 { width: 900px; height: 900px; border-color: rgba(191,0,255,0.1); animation: spin 80s linear reverse infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }
@media (min-width: 1024px) { #philosophy .philo-layout { flex-direction: row; gap: 80px; } #philosophy .philo-text { width: 55%; } #philosophy .philo-text h2 { font-size: 5rem; margin-bottom: 60px; } #philosophy .philo-visual { width: 45%; height: 800px; } #philosophy .soul-core { transform: scale(1.2); } }

/* =========================================
   6.5 Developer Voice Section (New for Authority)
   ========================================= */
.developer-section { background: rgba(0,0,0,0.1); }
.dev-layout { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.dev-visual { position: relative; width: 100%; max-width: 400px; }
.dev-img { width: 100%; border-radius: 20px; filter: grayscale(100%); border: 1px solid var(--border-color); transition: 0.3s; }
.dev-visual:hover .dev-img { filter: grayscale(0%); }
.dev-badge { position: absolute; bottom: -20px; right: -20px; background: var(--secondary-color); border: 1px solid var(--accent-color); padding: 10px 24px; color: var(--accent-color); font-weight: bold; font-family: var(--font-en); letter-spacing: 0.1em; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.dev-content { width: 100%; max-width: 700px; }
.dev-title { font-size: 2rem; line-height: 1.4; margin-bottom: 32px; background: linear-gradient(to right, #fff, var(--text-muted)); -webkit-background-clip: text; color: transparent; }
.dev-text { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }
.dev-profile { display: flex; flex-direction: column; border-left: 4px solid var(--neon-color); padding-left: 20px; }
.dev-profile strong { font-size: 1.2rem; font-family: var(--font-en); }
.dev-profile span { font-size: 0.9rem; color: var(--text-muted); }
@media (min-width: 1024px) { .dev-layout { flex-direction: row; gap: 80px; justify-content: center; } .dev-visual { width: 40%; } .dev-content { width: 50%; } }

/* =========================================
   16. Modal Styles
   ========================================= */
.modal-overlay { position: fixed; inset: 0; z-index: 10000; background: rgba(10, 25, 47, 0.9); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-container { width: 90%; max-width: 800px; max-height: 90vh; overflow-y: auto; background: #0A192F; border: 1px solid var(--accent-color); border-radius: 20px; box-shadow: 0 0 50px rgba(0, 255, 255, 0.2); transform: scale(0.9) translateY(20px); transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; }
.modal-overlay.open .modal-container { transform: scale(1) translateY(0); }
.modal-close-btn { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: #fff; font-size: 1.5rem; cursor: pointer; transition: 0.3s; z-index: 10; }
.modal-close-btn:hover { background: var(--red-500, #ef4444); transform: rotate(90deg); }
.modal-header { background: linear-gradient(to right, rgba(0,255,255,0.1), transparent); padding: 40px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; gap: 20px; }
.modal-icon { font-size: 3rem; }
.modal-header h2 { font-size: 2rem; color: #fff; margin: 0; }
.modal-body { padding: 40px; }
.modal-body img { width: 100%; height: 300px; object-fit: cover; border-radius: 12px; margin-bottom: 30px; border: 1px solid var(--border-color); }
.modal-body p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; }
.modal-features-list li { margin-bottom: 12px; padding-left: 20px; position: relative; color: #fff; }
.modal-features-list li::before { content: '>'; position: absolute; left: 0; color: var(--accent-color); font-weight: bold; }