.la-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0f1a;
}

.la-top-bar {
    background: rgba(0,0,0,0.3);
    height: 30px;
    display: flex;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.la-top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.la-top-bar-org {
    display: flex;
    align-items: center;
    gap: 8px;
}

.la-top-bar-right a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 11px;
    margin-left: 16px;
    transition: color 0.2s;
}

.la-top-bar-right a:hover {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.la-nav {
    background: rgba(10,15,26,0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.la-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
}

.la-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.la-nav-brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
}

.la-nav-brand-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.la-nav-brand-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

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

.la-nav-actions .btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
}

.la-nav-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.la-nav-actions .btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
}

.la-nav-actions .btn-primary:hover {
    background: var(--secondary-light);
}

.la-hero {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.la-hero-bg {
    position: absolute;
    inset: 0;
}

.la-hero-bg-image {
    position: absolute;
    inset: -20px;
    background: url('/images/a_main.jpeg') center center / cover no-repeat;
    animation: la-drift 30s ease-in-out infinite alternate;
}

@keyframes la-drift {
    0% { transform: scale(1.05) translate(0, 0); }
    50% { transform: scale(1.08) translate(-8px, -4px); }
    100% { transform: scale(1.05) translate(4px, 2px); }
}

.la-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(46,125,50,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(25,118,210,0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(8,12,24,0.92) 0%, rgba(10,18,32,0.85) 40%, rgba(15,25,45,0.75) 100%);
}

.la-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.la-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(76,175,80,0.25);
    animation: la-float 20s ease-in-out infinite;
}

.la-particle-1 { width: 200px; height: 200px; top: 10%; right: 15%; filter: blur(60px); animation-duration: 22s; }
.la-particle-2 { width: 150px; height: 150px; bottom: 20%; left: 10%; filter: blur(50px); animation-delay: -5s; animation-duration: 18s; }
.la-particle-3 { width: 100px; height: 100px; top: 60%; right: 40%; filter: blur(40px); background: rgba(25,118,210,0.2); animation-delay: -10s; animation-duration: 25s; }
.la-particle-4 { width: 120px; height: 120px; top: 30%; left: 30%; filter: blur(45px); background: rgba(46,125,50,0.15); animation-delay: -3s; animation-duration: 20s; }
.la-particle-5 { width: 80px; height: 80px; bottom: 30%; right: 25%; filter: blur(35px); background: rgba(255,255,255,0.04); animation-delay: -8s; animation-duration: 24s; }
.la-particle-6 { width: 160px; height: 160px; top: 5%; left: 50%; filter: blur(55px); background: rgba(25,118,210,0.1); animation-delay: -12s; animation-duration: 28s; }
.la-particle-7 { width: 90px; height: 90px; bottom: 10%; left: 45%; filter: blur(38px); background: rgba(76,175,80,0.12); animation-delay: -7s; animation-duration: 19s; }
.la-particle-8 { width: 140px; height: 140px; top: 45%; right: 8%; filter: blur(50px); background: rgba(255,255,255,0.03); animation-delay: -15s; animation-duration: 26s; }

@keyframes la-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -15px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

.la-hero-inner {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 72px;
    width: 100%;
}

.la-hero-text {
    flex: 1;
    min-width: 0;
}

.la-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px 5px 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 28px;
}

.la-hero-badge-tag {
    padding: 2px 10px;
    background: var(--secondary);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.la-hero-title {
    font-size: 50px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.la-hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.la-hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 32px;
}

.la-hero-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.la-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    padding: 0 30px;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 24px rgba(46,125,50,0.35);
}

.la-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(46,125,50,0.5);
    text-decoration: none;
    color: var(--white);
}

.la-btn-primary svg {
    transition: transform 0.25s;
}

.la-btn-primary:hover svg {
    transform: translateX(3px);
}

.la-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 28px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.la-btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
    text-decoration: none;
}

.la-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.la-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.la-hero-stat-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.la-hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

.la-hero-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.08);
}

.la-hero-visual {
    flex-shrink: 0;
    width: 520px;
    position: relative;
}

.la-vis-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05) inset;
}

.la-vis-image {
    position: absolute;
    inset: 0;
    background: url('/images/a_main.jpeg') center center / cover no-repeat;
}

.la-vis-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,15,26,0.2) 0%, rgba(10,15,26,0.4) 100%);
}

.la-vis-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(46,125,50,0.12) 0%, transparent 70%);
    z-index: -1;
    animation: la-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes la-glow-pulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

.la-vis-hud-tl, .la-vis-hud-tr, .la-vis-hud-bl, .la-vis-hud-br {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: rgba(76,175,80,0.5);
    border-style: solid;
    border-width: 0;
    z-index: 3;
}

.la-vis-hud-tl { top: 10px; left: 10px; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 3px; }
.la-vis-hud-tr { top: 10px; right: 10px; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 3px; }
.la-vis-hud-bl { bottom: 10px; left: 10px; border-bottom-width: 2px; border-left-width: 2px; border-bottom-left-radius: 3px; }
.la-vis-hud-br { bottom: 10px; right: 10px; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 3px; }

.la-vis-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    z-index: 4;
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.la-vis-dot span {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    animation: la-ring 3s ease-in-out infinite;
}

@keyframes la-ring {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(2.2); opacity: 0; }
}

.la-vis-dot-1 { top: 25%; left: 20%; box-shadow: 0 0 10px rgba(25,118,210,0.6); }
.la-vis-dot-1 span { border-color: #64B5F6; }
.la-vis-dot-2 { top: 40%; left: 55%; box-shadow: 0 0 10px rgba(245,124,0,0.6); }
.la-vis-dot-2 span { border-color: #FFB74D; animation-delay: 0.6s; }
.la-vis-dot-3 { top: 65%; left: 35%; box-shadow: 0 0 10px rgba(76,175,80,0.6); }
.la-vis-dot-3 span { border-color: #81C784; animation-delay: 1.2s; }
.la-vis-dot-4 { top: 30%; left: 75%; box-shadow: 0 0 10px rgba(156,39,176,0.5); }
.la-vis-dot-4 span { border-color: #CE93D8; animation-delay: 1.8s; }
.la-vis-dot-5 { top: 72%; left: 60%; box-shadow: 0 0 10px rgba(200,168,78,0.5); }
.la-vis-dot-5 span { border-color: #D4B85C; animation-delay: 0.9s; }

.la-vis-coord {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 4;
}

.la-vis-status {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 10px;
    color: rgba(76,175,80,0.9);
    font-weight: 700;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 4;
}

.la-vis-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4CAF50;
    animation: la-blink 2s ease-in-out infinite;
}

@keyframes la-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.la-hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.la-hero-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.la-hero-partners {
    display: flex;
    align-items: center;
    gap: 10px;
}

.la-partners-label {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.la-partner-chip {
    padding: 3px 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

.la-hero-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
}

.la-anim {
    opacity: 0;
    transform: translateY(16px);
    animation: la-fade-up 0.6s ease-out forwards;
}

.la-anim-d0 { animation-delay: 0.1s; }
.la-anim-d1 { animation-delay: 0.2s; }
.la-anim-d2 { animation-delay: 0.35s; }
.la-anim-d3 { animation-delay: 0.5s; }
.la-anim-d4 { animation-delay: 0.65s; }

@keyframes la-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1200px) {
    .la-hero-visual { width: 420px; }
    .la-hero-title { font-size: 42px; }
    .la-hero-inner { gap: 48px; }
}

@media (max-width: 960px) {
    .la-hero-inner {
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        text-align: center;
    }
    .la-hero-visual { width: 380px; }
    .la-hero-title { font-size: 36px; }
    .la-hero-buttons { justify-content: center; }
    .la-hero-stats { justify-content: center; }
    .la-hero-desc br { display: none; }
}

@media (max-width: 640px) {
    .la-top-bar-inner, .la-nav-inner, .la-hero-inner, .la-hero-bottom-inner { padding-left: 20px; padding-right: 20px; }
    .la-hero-visual { width: 100%; }
    .la-hero-title { font-size: 30px; letter-spacing: -1px; }
    .la-hero-stats { gap: 16px; flex-wrap: wrap; }
    .la-nav-brand-sub { display: none; }
}
