/* ==========================================================================
   1. 自定义字体引入 (Starixo & Orbitron)
   ========================================================================== */
@font-face {
    font-family: 'Starixo';
    src: url('../fonts/starixo.woff2') format('woff2'),
         url('../fonts/starixo.woff') format('woff'),
         url('../fonts/starixo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'Orbitron';
    src: url('../fonts/orbitron.woff2') format('woff2'),
         url('../fonts/orbitron.woff') format('woff'),
         url('../fonts/orbitron.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}

/* ==========================================================================
   2. 全局变量与基础设置
   ========================================================================== */
:root {
    --anubis-bg: #000000;
    --anubis-brand: #8DE000; 
    --anubis-text-main: #ffffff;
    --anubis-text-muted: #a0a0a0;
    --anubis-card-bg: linear-gradient(180deg, #181c18 0%, #0a0a0a 100%);
    --anubis-card-border: #222522;
    
    --font-heading: 'Starixo', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --nav-height: 70px;
}

html {
    scroll-behavior: smooth; 
}

body.anubis-body {
    background-color: var(--anubis-bg);
    color: var(--anubis-text-main);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    padding-top: var(--nav-height); 
    overflow-x: hidden;
}

.text-brand {
    color: var(--anubis-brand) !important;
}

.section-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
}
section, footer {
    scroll-margin-top: var(--nav-height); 
}

ul{
	list-style:none;
}

h1, h2, .anubis-hero-title, .anubis-section-title {
    font-family: var(--font-heading) !important;
    font-weight: normal; 
}

p, span, a, li, .card-desc, .anubis-hero-desc, .anubis-subtitle {
    font-family: var(--font-body);
}


/* ==========================================================================
   3. Header & Navigation 
   ========================================================================== */
.anubis-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    transition: all 0.3s ease;
}

.anubis-nav a {
    color: var(--anubis-text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.anubis-nav a:hover,
.anubis-nav a.active {
    color: var(--anubis-brand);
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.anubis-hero-section .container {
    background: url(../img/anubis_hero_img.jpg) center center no-repeat;
    background-size: cover;
}
.anubis-hero-title {
    font-size: 2.8rem;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.anubis-hero-desc {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    max-width: 700px;
}
.anubis-btn-outline {
    border: 1px solid #444;
    color: #fff;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
}
.anubis-btn-primary {
    background-color: var(--anubis-brand);
    color: #000;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    border: none;
	transition: all 0.3s;					 
}
.anubis-btn-primary:hover {
    background-color: #7acc00;
    color: #000;
}
/* ==========================================================================
   5. Features / Compliance / Architecture
   ========================================================================== */
.anubis-section-title { font-size: 2.5rem; line-height: 1.4; }

.anubis-section-title span{
	font-family: var(--font-heading) !important;
}

.anubis-feature-img {
    transform: scale(1.1); 
}

.anubis-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.anubis-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}


.anubis-feature-list .list-icon {
    width: 26px;
    height: 26px;
    margin-right: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.anubis-circles-wrapper {
    display: flex;
    align-items: center;
}

.anubis-circles-img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Compliance Cards Section 
   ========================================================================== */
.anubis-cards-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.anubis-comp-card {
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.anubis-comp-dark {
    width: 32%;
    background: var(--anubis-card-bg);
    border: 1px solid var(--anubis-card-border);
    z-index: 1;
    height: 320px; 
}

.anubis-comp-active {
    width: 36%;
    background-color: var(--anubis-brand);
    color: #000;
    z-index: 2;
    margin: 0 -15px; 
    height: 380px;   
    padding-top: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
	border-bottom-left-radius:0px;
	border-bottom-right-radius:0px;
}
																											

.anubis-comp-card .card-number {
    font-family:'Orbitron'!important;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.anubis-comp-card .card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.anubis-comp-dark .card-title {
    color: var(--anubis-text-main);
}

.anubis-comp-active .card-title {
    color: #000;
}

.anubis-comp-card .card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
	font-weight:500;
}

.anubis-comp-dark .card-desc {
    color: #fff;
}

.anubis-comp-active .card-desc {
    color: #000; 
}

/* ==========================================================================
   Architecture Section 
   ========================================================================== */
.anubis-features-section .container{
	
}
.anubis-subtitle {
    color: var(--anubis-text-muted);
    font-size: 1.1rem;
}

.anubis-arch-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.arch-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.arch-item-active,.arch-item:hover {
    background: linear-gradient(90deg, #111511 0%, #080a08 100%);
    border: 1px solid rgba(141, 224, 0, 0.2);
    box-shadow: inset 0 0 20px rgba(141, 224, 0, 0.05);
}

.arch-arrow {
    width: 14px;
    margin-top: 6px;
    margin-right: 20px;
}

.arch-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--anubis-text-main);
}

.arch-content p {
    color: var(--anubis-text-main);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.anubis-arch-img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Use Cases Section 
   ========================================================================== */
.anubis-usecase-card {
    background: linear-gradient(135deg, #121412 0%, #050505 100%);
    border: 1px solid rgba(141, 224, 0, 0.15);
    border-radius: 16px;
    padding: 35px 40px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anubis-usecase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(141, 224, 0, 0.08);
}

.card-header-flex {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.uc-icon {
    width: 30px;
    height: auto;
    margin-right: 15px;
}

.card-header-flex h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.anubis-usecase-card p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    padding-left: 48px; 
}

/* ==========================================================================
   Metrics Section 
   ========================================================================== */
.anubis-metric-card {
    border-radius: 20px;
    padding: 40px 30px;
    height: 240px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.metric-title {
    font-size: 3rem;
	font-family: 'Orbitron'!important;
    font-weight: bold;
    margin-bottom: 10px;
}

.anubis-metric-card p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.metric-arrow {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 120px;
    height: auto;
}

.metric-green {
    background-color: var(--anubis-brand);
    color: #000;
}

.metric-green .metric-title, 
.metric-green p {
    color: #000;
}

.metric-dark {
    background: linear-gradient(180deg, #1f251f 0%, #0a0a0a 100%);
    border: 1px solid #2a2a2a;
    color: var(--anubis-text-main);
}

.metric-dark .metric-title, 
.metric-dark p {
    color: var(--anubis-text-main);
}

/* ==========================================================================
   Footer Section 
   ========================================================================== */
.anubis-footer {
    background-color: var(--anubis-bg);
    border-top: 1px solid #1a1a1a;
    padding: 80px 0 30px;
}

.footer-logo {
    height: 32px;
}

.footer-slogan {
    color: #fff;
    font-size: 1rem;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
	color:#fff;
	font-weight:700;
}

.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-list li {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.95rem;
}

.social-list li a{
	color:#fff;
	text-decoration:none;
}

.social-list img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    background-color: #fff; 
    border-radius: 4px; 
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    color: #fff;
    font-size: 0.9rem;
}

.anubis-hamburger { background: none; border: none; cursor: pointer; padding: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 1001; position: relative; }
.anubis-hamburger span { display: block; width: 24px; height: 2px; background-color: #fff; transition: 0.3s; }

body.menu-open { overflow: hidden; }
body.menu-open .anubis-hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .anubis-hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .anubis-hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.anubis-mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: rgba(0, 0, 0, 0.95); backdrop-filter: blur(15px);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.4s;
}
body.menu-open .anubis-mobile-menu { opacity: 1; visibility: visible; }
.mobile-nav-links { display: flex; flex-direction: column; text-align: center; gap: 30px; }
.mobile-link { 
    font-family: var(--font-heading) !important; font-size: 1.6rem; color: #fff; 
    text-decoration: none; opacity: 0; transform: translateY(20px); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
body.menu-open .mobile-link { opacity: 1; transform: translateY(0); }

body.menu-open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
body.menu-open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
body.menu-open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
body.menu-open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
body.menu-open .mobile-link:nth-child(5) { transition-delay: 0.3s; }
body.menu-open .mobile-link:nth-child(6) { transition-delay: 0.35s; }



/* ==========================================================================
   8. Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .anubis-hero-title { font-size: 2.2rem; }
    .anubis-section-title { font-size: 1.8rem; }
    .section-spacing { padding: 60px 0; }
    .anubis-cards-container { flex-direction: column; gap: 20px; }
    .anubis-comp-dark, .anubis-comp-active { width: 100%; margin: 0; height: auto; border-radius: 16px; padding: 30px 25px; }
}

@media (max-width: 991px) {
    .section-spacing { padding: 60px 0; }
    .anubis-section-title { font-size: 1.8rem; }
    
    .anubis-circles-img { width: 100%; max-width: 90%; }
    
    .anubis-cards-container { flex-direction: column; gap: 20px; }
    .anubis-comp-dark, .anubis-comp-active { width: 100%; margin: 0; height: auto; border-radius: 16px; padding: 30px 25px; }
    .anubis-comp-active { border-radius: 16px; } 
    .anubis-comp-card .card-number { font-size: 2rem; margin-bottom: 15px; }
    .anubis-comp-card .card-title { font-size: 1.4rem; margin-bottom: 10px; }

    .anubis-subtitle { font-size: 0.95rem; margin-top: 10px !important; }
    .arch-item { padding: 15px; }
    .arch-content h3 { font-size: 1.15rem; }
    .arch-content p { font-size: 0.85rem; }
}

@media (max-width: 767px) {
	.anubis-hero-section .container{
		padding:60px 30px;
		background-image:url(../img/anubis_hero_img_h5.jpg);
	}
	.row>*{
		padding:0px;
	}
    .anubis-header .container { padding-top: 15px !important; padding-bottom: 15px !important; }
    .anubis-hero-title { font-size: 1.8rem; line-height: 1.4; }
	.anubis-hero-title br{display:none;}
    .anubis-hero-desc { font-size: 0.9rem; }
    .anubis-hero-actions { flex-direction: row; justify-content: space-between; }
    .anubis-btn-outline, .anubis-btn-primary { flex: 1; padding: 12px 5px; font-size: 0.85rem; text-align: center; }
	
	.anubis-features-section .anubis-section-title,.anubis-features-section .anubis-feature-list{
		padding:0px 15px;
	}
	.anubis-architecture-section .container{
		padding:0px 30px;
	}
	
	.anubis-usecases-section .container{
		padding:0px 30px;
	}
	
	.anubis-metrics-section .container{
		padding:0px 30px;
	}

    .anubis-metric-card { height: 180px; padding: 25px 15px; }
    .metric-title { font-size: 1.8rem; margin-bottom: 5px; }
    .anubis-metric-card p { font-size: 0.9rem; }
    .metric-arrow { width: 45px; bottom: 15px; right: 15px; }

    .footer-bottom { text-align: left !important; font-size: 0.8rem; }
    .social-list img { width: 28px; height: 28px; }
}