/* ----------------------------------------------------
   NINSHU - Modern Web Concept CSS Design System
   ---------------------------------------------------- */

:root {
    --bg-dark: #0B0B14;
    --bg-card: rgba(22, 22, 38, 0.7);
    --bg-card-hover: rgba(30, 30, 52, 0.85);
    
    --primary: #7C4DFF;
    --primary-glow: rgba(124, 77, 255, 0.4);
    --accent-blue: #00E5FF;
    --accent-green: #00E676;
    --accent-gold: #FFD700;
    --accent-orange: #FF9100;
    
    --text-main: #F1F1F8;
    --text-muted: #9E9EB2;
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-glow: rgba(124, 77, 255, 0.3);
    
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Glow Blobs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.25) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    left: 20%;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.18) 0%, rgba(0,0,0,0) 70%);
    top: 40%;
    right: -100px;
}

.glow-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, rgba(0,0,0,0) 70%);
    top: 70%;
    left: -150px;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, #A88BEB 0%, #F8CEEC 50%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 11, 20, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px 0;
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.badge-beta {
    font-size: 10px;
    font-weight: 700;
    background: rgba(124, 77, 255, 0.2);
    color: var(--primary);
    border: 1px solid var(--border-glass-glow);
    padding: 2px 8px;
    border-radius: 12px;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #5B2C6F);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 77, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border-glass);
}

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

.btn-glass {
    background: rgba(124, 77, 255, 0.1);
    color: #fff;
    border: 1px solid var(--border-glass-glow);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(124, 77, 255, 0.2);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 16px;
}

/* Hero Section */
.hero-section {
    padding: 160px 24px 80px;
    max-width: 1240px;
    margin: 0 auto;
}

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

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(124, 77, 255, 0.12);
    border: 1px solid var(--border-glass-glow);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #C3B1E1;
    margin-bottom: 24px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background-color: var(--border-glass);
}

/* Hero Visual Graphic */
.hero-visual {
    position: relative;
}

.visual-card-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-glass);
}

.hero-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    background: rgba(18, 18, 32, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass-glow);
    padding: 12px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 4s ease-in-out infinite;
}

.card-top {
    top: 20px;
    left: 20px;
}

.card-bottom {
    bottom: 25px;
    right: 20px;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.card-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 230, 118, 0.2);
    color: var(--accent-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-info strong {
    font-size: 13px;
}

.card-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.card-avatar-aura.jesus-aura {
    width: 36px;
    height: 36px;
    background: radial-gradient(circle, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 0 15px var(--accent-gold);
}

.tag-jesus {
    color: var(--accent-gold) !important;
    font-weight: 700;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Features Grid */
.features-section {
    padding: 100px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 32px 24px;
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-glow);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.icon-violet { background: rgba(124, 77, 255, 0.15); color: var(--primary); }
.icon-emerald { background: rgba(0, 230, 118, 0.15); color: var(--accent-green); }
.icon-amber { background: rgba(255, 215, 0, 0.15); color: var(--accent-gold); }
.icon-cyan { background: rgba(0, 229, 255, 0.15); color: var(--accent-blue); }

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Map Simulator Section */
.map-demo-section {
    padding: 100px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.map-simulator-box {
    display: grid;
    grid-template-columns: 360px 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border-glass-glow);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.sim-sidebar {
    padding: 28px;
    border-right: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sim-control-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.radius-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-radius {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    padding: 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-radius:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-radius.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.sim-posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

.count-badge {
    background: var(--primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.sim-posts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 280px;
    overflow-y: auto;
}

.sim-post-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;

}

.sim-post-item strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.sim-post-item span {
    font-size: 11px;
    color: var(--text-muted);
}

/* Sim Map Viewport */
.sim-map-viewport {
    position: relative;
    background: #0E0E1B;
    min-height: 480px;
    overflow: hidden;
}

.sim-map-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}

.user-pulse-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.user-dot {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 0 15px var(--primary);
}

.pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    left: -14px;
    top: -14px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.sim-radius-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed var(--primary);
    background: rgba(124, 77, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.5s ease;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    transition: all 0.3s;
}

.map-pin-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.pin-purple { background: var(--primary); }
.pin-green { background: var(--accent-green); }
.pin-orange { background: var(--accent-orange); }

.sim-map-legend {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(11, 11, 20, 0.85);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    display: flex;
    gap: 16px;
    font-size: 12px;
}

.text-purple { color: var(--primary); }
.text-green { color: var(--accent-green); }
.text-orange { color: var(--accent-orange); }

/* Aura Showcase Section */
.aura-showcase-section {
    padding: 100px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.aura-demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass-glow);
    border-radius: 28px;
    padding: 48px;
    align-items: center;
}

.aura-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aura-preview-box {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aura-avatar {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    z-index: 2;
}

.aura-ring-layer {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    transition: all 0.5s;
}

/* Aura Glow Presets */
.aura-ring-novice {
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.aura-ring-helper {
    border: 3px solid var(--accent-blue);
    box-shadow: 0 0 25px var(--accent-blue);
    animation: rotateAura 6s linear infinite;
}

.aura-ring-master {
    border: 4px solid var(--primary);
    box-shadow: 0 0 35px var(--primary);
    animation: rotateAura 4s linear infinite;
}

.aura-ring-jesus {
    border: 5px solid var(--accent-gold);
    box-shadow: 0 0 45px var(--accent-gold), inset 0 0 20px var(--accent-orange);
    animation: rotateAura 2s linear infinite, pulseGlow 1.5s ease-in-out infinite alternate;
}

@keyframes rotateAura {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.aura-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.aura-info p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 380px;
    margin-bottom: 20px;
}

.aura-badge-list {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.badge-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.aura-level-selector {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.level-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    color: var(--text-main);
}

.level-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.level-card.active {
    background: rgba(124, 77, 255, 0.12);
    border-color: var(--border-glass-glow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.level-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.level-novice { background: rgba(255, 255, 255, 0.1); color: #aaa; }
.level-helper { background: rgba(0, 229, 255, 0.15); color: var(--accent-blue); }
.level-master { background: rgba(124, 77, 255, 0.15); color: var(--primary); }
.level-jesus { background: rgba(255, 215, 0, 0.2); color: var(--accent-gold); }

.level-details strong {
    display: block;
    font-size: 15px;
}

.level-details span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Flow Steps Section */
.flow-section {
    padding: 100px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.flow-step {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 28px 20px;
    border-radius: 20px;
    flex: 1;
    position: relative;
}

.flow-step.highlight {
    border-color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.04);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.flow-step.highlight .step-number {
    color: var(--accent-gold);
}

.step-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.flow-arrow {
    color: var(--text-muted);
    font-size: 18px;
}

/* CTA Download Section */
.cta-section {
    padding: 80px 24px 120px;
    max-width: 1240px;
    margin: 0 auto;
}

.cta-card {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.2) 0%, rgba(0, 229, 255, 0.1) 100%);
    border: 1px solid var(--border-glass-glow);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 540px;
    margin: 0 auto 36px;
}

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

.btn-store {
    background: #000;
    color: #fff;
    border: 1px solid var(--border-glass);
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 16px;
    cursor: pointer;

}

.btn-store:hover {
    background: #151522;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 60px 24px 30px;
    background: rgba(8, 8, 14, 0.9);
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-group h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

.link-group a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
}

.link-group a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .map-simulator-box { grid-template-columns: 1fr; }
    .aura-demo-container { grid-template-columns: 1fr; }
    .flow-steps { flex-direction: column; }
    .flow-arrow { transform: rotate(90deg); }
}
