/* =============================================
   AEITHER BLOCKCHAIN — DARK THEME STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
    --bg-dark: #0b0f1e;
    --bg-mid: #0e1529;
    --bg-alt: #111827;
    --bg-card: #131c30;
    --gold: #c9a227;
    --gold-light: #f0c040;
    --gold-glow: #ffd700;
    --purple: #6c3fc5;
    --purple-light: #9b6dff;
    --blue-accent: #1e3a6e;
    --text-primary: #e8e8f0;
    --text-muted: #8899bb;
    --border-gold: rgba(201, 162, 39, 0.4);
    --border-purple: rgba(108, 63, 197, 0.5);
    --shadow-gold: 0 0 20px rgba(201, 162, 39, 0.35), 0 4px 24px rgba(0, 0, 0, 0.7);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 162, 39, 0.15);
    --shadow-text: 2px 2px 12px rgba(201, 162, 39, 0.6), 0 0 30px rgba(108, 63, 197, 0.4);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
}

body {
    font-family: 'Inter', 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #0b0f1e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c9a227, #6c3fc5);
    border-radius: 4px;
}

/* =============================================
   SCROLL OFFSET FOR FIXED NAVBAR
   ============================================= */
section[id] {
    scroll-margin-top: 75px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(11, 15, 30, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.7), 0 0 40px rgba(201, 162, 39, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 13, 26, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.9), 0 0 60px rgba(201, 162, 39, 0.12);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.7));

}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 6px;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--purple-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 60%;
}

/* Login CTA — desktop variant */
.nav-cta-desktop {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 26px;
    background: linear-gradient(135deg, var(--gold) 0%, #e8b800 50%, var(--gold) 100%);
    color: #0b0f1e;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.45), 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta-desktop:hover {
    background: linear-gradient(135deg, #f0c040, #c9a227, #f0c040);
    box-shadow: 0 0 35px rgba(201, 162, 39, 0.75), 0 6px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* Mobile CTA — hidden on desktop, shown inside dropdown */
.nav-cta-mobile {
    display: none;
}

/* Mobile CTA row — hidden on desktop */
.nav-cta-mobile-row {
    display: none;
}

/* Desktop Register button — outline style */
.nav-cta-register-desktop {
    background: transparent !important;
    color: var(--gold-light) !important;
    border: 2px solid var(--border-gold) !important;
    box-shadow: none !important;
}

.nav-cta-register-desktop:hover {
    background: rgba(201, 162, 39, 0.12) !important;
    border-color: var(--gold-light) !important;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3) !important;
    color: var(--gold-light) !important;
    transform: translateY(-2px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   GLOBAL HELPERS
   ============================================= */
.section-tag {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 5px 14px;
    margin-bottom: 16px;
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.2);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    text-shadow: var(--shadow-text);
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--gold) 0%, #e8b800 100%);
    color: #0a0c1a;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.75), 0 8px 30px rgba(0, 0, 0, 0.6);
}

.btn-outline {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 34px;
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--border-gold);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 var(--gold);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    transform: translateY(-3px);
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--purple-light));
    border-radius: 3px;
    margin: 0 auto 40px;
    box-shadow: 0 0 14px rgba(201, 162, 39, 0.5);
}

/* =============================================
   SECTION 1 — HERO (GRAPHIC SHOWCASE)
   ============================================= */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(11 15 30 / 36%) 0%, rgb(14 21 41 / 69%) 50%, rgb(20 10 40 / 73%) 100%), url(../images/background.jpg) center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(108, 63, 197, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated grid lines */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 63, 197, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 63, 197, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.hero-center {
    flex: 0 0 280px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: stretch;
}

/* Left col — card */
.hero-left-card {
    width: 100%;
    height: 100%;


    padding: 24px 22px 20px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(201, 162, 39, 0.1),
        0 0 50px rgba(201, 162, 39, 0.18),
        0 10px 50px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(201, 162, 39, 0.15);
}

/* Gold corner brackets — top-left & bottom-right */
.hero-left-card::before,
.hero-left-card::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--gold-glow);
    border-style: solid;
    opacity: 0.75;
}
.hero-left-card::before {
    top: -1px; left: -1px;
    border-width: 2px 0 0 2px;
    border-radius: 18px 0 0 0;
}
.hero-left-card::after {
    bottom: -1px; right: -1px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 18px 0;
}

/* Icon + title row */
.hlc-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 0;
}

/* Circular globe icon */
.hlc-globe {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2.5px solid var(--gold);
    background: radial-gradient(circle, rgba(8, 14, 40, 1) 55%, rgba(20, 12, 55, 1) 100%);
    box-shadow:
        0 0 20px rgba(201, 162, 39, 0.6),
        0 0 50px rgba(201, 162, 39, 0.2),
        inset 0 0 16px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.hlc-globe img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.8));
}

/* Big heading */
.hero-left-card h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.1;
    color: var(--gold-light);
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.65),
        0 0 50px rgba(201, 162, 39, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Glowing gold horizontal divider */
.hlc-divider {
    width: 100%;
    height: 2px;
    margin: 20px 0 22px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-glow) 50%, var(--gold) 70%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.7), 0 0 30px rgba(201, 162, 39, 0.4);
    position: relative;
}

/* Description text */
.hlc-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #d0d8ef;
    line-height: 2;
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

/* Bottom ornament */
.hlc-ornament {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hlc-orn-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.6), transparent);
}

.hlc-orn-diamond {
    color: var(--gold-glow);
    font-size: 0.85rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    flex-shrink: 0;
}

/* Old hero-left badge/h1/p — keep for safety if reused */
.hero-left .badge {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 16px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    color: var(--gold);
    box-shadow: 0 0 14px rgba(201, 162, 39, 0.25);
    margin-bottom: 22px;
}

.hero-left h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
        font-size: 36px;
    line-height: 1.1;
    text-shadow: var(--shadow-text);
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 60%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.stat-box {
    background: rgba(19, 28, 48, 0.8);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.stat-box .stat-val {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--gold-light);
    text-shadow: 0 0 14px rgba(201, 162, 39, 0.7);
}

.stat-box .stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Hero center coin */
/* coin-wrap styles */
.coin-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.coin-img {

    border-radius: 50%;
    object-fit: contain;
    animation: floatCoin 4s ease-in-out infinite;
}
@keyframes floatCoin {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.glow-ring {
    position: absolute;
    width: 300px;
    height: 60px;
    bottom: -10px;
   

    filter: blur(8px);
}

.hero-tagline {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.8);
}

/* Hero right */
.hero-right .why-box {
    width: 100%;
    height: 100%;
   
    padding: 24px 22px 20px;
    box-shadow:
        0 0 0 1px rgba(201, 162, 39, 0.12),
        0 0 40px rgba(201, 162, 39, 0.2),
        0 8px 40px rgba(0, 0, 0, 0.75),
        inset 0 1px 0 rgba(201, 162, 39, 0.18);
    position: relative;
}

/* Gold corner accents */
.hero-right .why-box::before,
.hero-right .why-box::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--gold-glow);
    border-style: solid;
    opacity: 0.7;
}
.hero-right .why-box::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
    border-radius: 16px 0 0 0;
}
.hero-right .why-box::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 16px 0;
}

.hero-right .why-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.22em;
    color: var(--gold-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 18px rgba(255, 215, 0, 0.7), 0 0 40px rgba(201, 162, 39, 0.4);
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.why-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.18);
    transition: var(--transition);
}

.why-item:hover {
    padding-left: 4px;
}

.why-item:last-child {
    border-bottom: none;
}

.why-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(108, 63, 197, 0.2);
    border: 1px solid var(--border-purple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(108, 63, 197, 0.3);
}

.why-item h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3px;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.why-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Circular gold icon images inside why-box */
.coin-imgss {
    width: 56px !important;
    height: 56px !important;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: radial-gradient(circle, rgba(10, 16, 40, 1) 60%, rgba(25, 18, 60, 1) 100%);
    box-shadow:
        0 0 14px rgba(201, 162, 39, 0.55),
        0 0 30px rgba(201, 162, 39, 0.2),
        inset 0 0 10px rgba(0, 0, 0, 0.6);
    padding: 6px;
    object-fit: contain;
    transition: var(--transition);
}

/* Feature strip */
.hero-features {
    max-width: 1280px;
    margin: 48px auto 0;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.feat-card {
    background: linear-gradient(135deg, rgba(14, 20, 42, 0.95) 0%, rgba(18, 26, 52, 0.95) 100%);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,39,0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 24px rgba(201,162,39,0.15);
}

.feat-card:hover::before {
    opacity: 1;
}

/* Small circular icon */
.feat-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 162, 39, 0.5);
    background: radial-gradient(circle, rgba(10,16,40,1) 55%, rgba(20,12,55,1) 100%);
    box-shadow: 0 0 12px rgba(201,162,39,0.35), inset 0 0 8px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.feat-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(201,162,39,0.6));
}

/* Text content */
.feat-body {
    flex: 1;
    min-width: 0;
}

.feat-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    text-shadow: 0 0 8px rgba(201,162,39,0.4);
    margin-bottom: 4px;
    white-space: nowrap;
}

.feat-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* =============================================
   SECTION 2 — ABOUT
   ============================================= */
.about {
    padding: 110px 0 120px;
    background: linear-gradient(180deg, rgba(11, 15, 30, 1) 0%, rgba(14, 21, 41, 1) 50%, rgba(17, 24, 39, 1) 100%);
    background-image: url(../images/background.png);
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 85% 50%, rgba(108, 63, 197, 0.14) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Subtle grid overlay */
.about::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 63, 197, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 63, 197, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ---- Image side ---- */
.about-img-wrap {
    position: relative;
    padding-bottom: 28px;
    padding-right: 28px;
}

/* Decorative corner frame */
.about-img-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  
    border-radius: 18px;
    z-index: 0;
}

.about-img-wrap img {
    width: 100%;
    border-radius: 16px;
   

    position: relative;
    z-index: 1;
    display: block;
}

.about-img-wrap .img-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    z-index: 2;
    background: linear-gradient(135deg, #0e1529 0%, #1a1040 100%);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    padding: 16px 22px;
    box-shadow:
        0 0 24px rgba(201, 162, 39, 0.45),
        0 8px 30px rgba(0, 0, 0, 0.7);
    text-align: center;
    min-width: 90px;
}

.img-badge .big {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.9rem;
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.8);
    line-height: 1;
}

.img-badge .sm {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 5px;
}

/* ---- Text side ---- */
.about-text {
    display: flex;
    flex-direction: column;
}

.about-text .section-subtitle {
    margin-bottom: 28px;
    max-width: 100%;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.apoint {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 18px;
    background: rgba(14, 21, 41, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.apoint:hover {
    border-left-color: var(--purple-light);
    background: rgba(19, 28, 48, 0.95);
    transform: translateX(6px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5), 0 0 16px rgba(108, 63, 197, 0.15);
}

.apoint-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
    width: 36px;
    height: 36px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.2);
}

.apoint h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--gold-light);
    text-shadow: 0 0 8px rgba(201, 162, 39, 0.4);
    margin-bottom: 4px;
}

.apoint p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.about-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 8px;
}

.num-box {
    background: rgba(14, 21, 41, 0.9);
    border: 1px solid var(--border-purple);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(108, 63, 197, 0.1);
    transition: var(--transition);
}

.num-box:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.2), 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.num-box .val {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--gold-light);
    text-shadow: 0 0 16px rgba(201, 162, 39, 0.6);
    line-height: 1;
}

.num-box .lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
}

.hybrid {

    padding: 110px 0 120px;
    background: linear-gradient(180deg, rgba(11, 15, 30, 1) 0%, rgba(14, 21, 41, 1) 50%, rgba(17, 24, 39, 1) 100%);
    background-image: url(../images/background.png);
    position: relative;
    overflow: hidden;
    background-size: cover;
}

/* =============================================
   SECTION 3 — BLOCKCHAIN
   ============================================= */
.blockchain {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(1 4 16 / 58%) 0%, rgb(4 14 42 / 69%) 50%, rgb(12 2 32 / 73%) 100%), url(../images/background.jpg) center / cover no-repeat;
    position: relative;
    background-size: cover;
}



.blockchain::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 20% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.bc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.bc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.bc-visual {
    position: relative;
}

.bc-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(108, 63, 197, 0.3), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bc-chain-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.chain-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 30px;
}

.chain-step:last-child {
    padding-bottom: 0;
}

.step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.step-dot {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    color: #0b0f1e;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.step-connector {
    width: 2px;
    flex: 1;
    min-height: 30px;
    background: linear-gradient(180deg, var(--gold), var(--purple));
    opacity: 0.4;
    margin-top: 6px;
}

.chain-step:last-child .step-connector {
    display: none;
}

.step-content {
    padding-top: 4px;
}

.step-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    text-shadow: 0 0 8px rgba(201, 162, 39, 0.4);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.bc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bc-card {
    background: rgba(19, 28, 48, 0.9);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.bc-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-light);
    box-shadow: 0 0 50px rgba(201, 162, 39, 0.3), 0 16px 50px rgba(0, 0, 0, 0.7);
}

.bc-card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(108, 63, 197, 0.2));
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 16px rgba(201, 162, 39, 0.3);
}

.bc-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.4);
    margin-bottom: 10px;
}

.bc-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.bc-card .tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.72rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(108, 63, 197, 0.2);
    border: 1px solid var(--border-purple);
    color: var(--purple-light);
}

/* =============================================
   SECTION 4 — DEFI
   ============================================= */
.defi {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(38 50 93 / 30%) 0%, rgb(18 10 35 / 45%) 60%, rgb(14 21 41 / 58%) 100%), url(../images/background.jpg) center / cover no-repeat;
    position: relative;
    background-size: cover;
}

.defi::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 40%, rgba(108, 63, 197, 0.16) 0%, transparent 65%);
    pointer-events: none;
}

.defi-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.defi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 60px;
}

.defi-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.defi-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(19, 28, 48, 0.85);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(108, 63, 197, 0.1);
    transition: var(--transition);
}

.defi-card:hover {
    border-color: var(--purple-light);
    transform: translateX(8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(108, 63, 197, 0.25);
}

.defi-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(108, 63, 197, 0.25), rgba(201, 162, 39, 0.15));
    border: 1px solid var(--border-purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 0 14px rgba(108, 63, 197, 0.4);
}

.defi-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    text-shadow: 0 0 8px rgba(201, 162, 39, 0.4);
    margin-bottom: 6px;
}

.defi-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.defi-visual {
    position: relative;
}

.defi-visual img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 16px;
    display: block;
}

.defi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.dst {
    background: rgba(19, 28, 48, 0.9);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.dst .dval {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--gold-light);
    text-shadow: 0 0 12px rgba(201, 162, 39, 0.6);
}

.dst .dlbl {
    font-size: 0.73rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.defi-protocols {
    margin-top: 32px;
}

.defi-protocols h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.protocol-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.proto-tag {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 6px;
    background: rgba(108, 63, 197, 0.15);
    border: 1px solid var(--border-purple);
    color: var(--purple-light);
    transition: var(--transition);
}

.proto-tag:hover {
    background: rgba(108, 63, 197, 0.3);
    box-shadow: 0 0 14px rgba(108, 63, 197, 0.4);
}

/* =============================================
   SECTION 5 — ROADMAP
   ============================================= */
.roadmap {
    padding: 110px 0 120px;
    background: linear-gradient(180deg, rgb(8 12 26 / 40%) 0%, rgb(10 16 34 / 35%) 40%, rgba(12, 8, 28, 0.80) 70%, rgba(8, 12, 26, 0.88) 100%), url(../images/backgroundimages/background3.jpg) center / cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}
/* Radial glow blobs */
.roadmap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 50% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 65%, rgba(108, 63, 197, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 85% 80%, rgba(108, 63, 197, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle dot-grid texture */
.roadmap::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201, 162, 39, 0.09) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.rm-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* Timeline */
.timeline {
    position: relative;
    margin-top: 70px;
    padding: 0;
}

/* Center vertical spine */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
        transparent 0%,
        var(--gold) 8%,
        var(--purple) 50%,
        var(--gold) 92%,
        transparent 100%);
    box-shadow: 0 0 18px rgba(201, 162, 39, 0.35), 0 0 40px rgba(108, 63, 197, 0.15);
    z-index: 0;
}

.tl-item {
    display: grid;
    grid-template-columns: 1fr 88px 1fr;
    align-items: flex-start;
    position: relative;
    margin-bottom: 48px;
}

/* Odd items: content left, dot center, spacer right */
.tl-item .tl-content {
    grid-column: 1;
    grid-row: 1;
}
.tl-item .tl-connector {
    grid-column: 2;
    grid-row: 1;
}
.tl-item .tl-spacer,
.tl-item .tl-spacer-end {
    grid-column: 3;
    grid-row: 1;
}

/* Even items: spacer left, dot center, content right */
.tl-item.even .tl-spacer,
.tl-item.even .tl-spacer-end {
    grid-column: 1;
    grid-row: 1;
}
.tl-item.even .tl-connector {
    grid-column: 2;
    grid-row: 1;
}
.tl-item.even .tl-content {
    grid-column: 3;
    grid-row: 1;
}

.tl-spacer,
.tl-spacer-end {
    min-height: 1px;
}

.tl-content {
    background: linear-gradient(135deg, rgba(14, 21, 41, 0.95) 0%, rgba(19, 28, 48, 0.95) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 162, 39, 0.08);
    transition: var(--transition);
    position: relative;
}

/* Top accent line */
.tl-content::before {
    content: '';
    position: absolute;
    top: 0; left: 16px; right: 16px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.tl-content:hover::before {
    opacity: 1;
}

.tl-content:hover {
    border-color: rgba(201, 162, 39, 0.55);
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.2), 0 16px 50px rgba(0, 0, 0, 0.65);
    transform: translateY(-3px);
}

.tl-connector {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 26px;
    position: relative;
    z-index: 1;
}

.tl-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-glow);
    box-shadow: 0 0 14px var(--gold-glow), 0 0 32px rgba(201, 162, 39, 0.4);
    border: 3px solid #0b0f1e;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

/* Pulse ring on dot */
.tl-dot::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 0; }
}

.tl-content .phase {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
    margin-bottom: 6px;
}

.tl-content .period {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    letter-spacing: 0.06em;
}

.tl-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-shadow: 0 0 12px rgba(201, 162, 39, 0.25);
    margin-bottom: 14px;
    line-height: 1.3;
}

.tl-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tl-content ul li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.65;
}

.tl-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.tl-item.done .tl-content {
    border-color: rgba(201, 162, 39, 0.45);
    background: linear-gradient(135deg, rgba(14, 21, 41, 0.9) 0%, rgba(22, 30, 50, 0.9) 100%);
}

.tl-item.done .tl-dot {
    background: var(--gold);
}

.tl-item.active .tl-content {
    border-color: var(--purple-light);
    box-shadow: 0 0 30px rgba(108, 63, 197, 0.3), var(--shadow-card);
}

.tl-item.active .tl-dot {
    background: var(--purple-light);
    box-shadow: 0 0 20px var(--purple-light);
}

.status-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.status-done {
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold);
}

.status-active {
    background: rgba(108, 63, 197, 0.2);
    border: 1px solid var(--border-purple);
    color: var(--purple-light);
}

.status-upcoming {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* =============================================
   SECTION 6 — FAQs
   ============================================= */
.faqs {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(15 20 38 / 65%) 0%, rgb(20 14 42 / 86%) 100%), url(../images/background.jpg) center / cover no-repeat;
    position: relative;
    overflow: hidden;
    background-size: cover;
}


.faqs::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 30% 60%, rgba(108, 63, 197, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 50px;
}

.faq-item {
    background: rgba(19, 28, 48, 0.9);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.2), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
}

.faq-q-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    text-shadow: 1px 1px 8px rgba(201, 162, 39, 0.3);
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: rgba(201, 162, 39, 0.2);
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 26px;
    max-height: 0;
    overflow: hidden;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease;
    display: block;
}

.faq-item.open .faq-a {
    max-height: 600px;
    opacity: 1;
    padding: 18px 26px 24px;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

/* =============================================
   SECTION 7 — FOOTER
   ============================================= */
.footer {
    background: #070b17;
    border-top: 1px solid var(--border-gold);
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.8), 0 -1px 0 rgba(201, 162, 39, 0.15);
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 32px 50px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .logo-wrap img {
    width: 160px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(19, 28, 48, 0.9);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.social-link:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--gold-light);
    box-shadow: 0 0 16px rgba(201, 162, 39, 0.4);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.4);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 6px;
    text-shadow: 0 0 8px rgba(201, 162, 39, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 39, 0.12);
    padding: 22px 32px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom .legal {
    display: flex;
    gap: 20px;
}

.footer-bottom .legal a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-bottom .legal a:hover {
    color: var(--gold-light);
}

/* =============================================
   PARTICLES / FLOATING DOTS
   ============================================= */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.8), transparent);
    animation: floatParticle linear infinite;
    opacity: 0;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100%) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width:1024px) {
    /* Hero: hide right col, keep left + center */
    .hero-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        flex: 1 1 55%;
    }

    .hero-center {
        flex: 0 0 240px;
        width: 240px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 32px;
    }

    .about-img-wrap {
        padding-bottom: 20px;
        padding-right: 20px;
        max-width: 560px;
        margin: 0 auto;
    }

    .bc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bc-cards {
        grid-template-columns: 1fr 1fr;
    }

    .defi-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width:768px) {

    /* --- Navbar --- */
    .nav-container {
        padding: 0 20px;
    }

    .nav-logo img {
        width: 150px;
    }

    .nav-links,
    .nav-cta-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
    /* Hamburger → X animation */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Full-width slide-down mobile menu */
    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 13, 26, 0.99);
        backdrop-filter: blur(20px);
        padding: 16px 24px 28px;
        border-bottom: 1px solid var(--border-gold);
        gap: 2px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        animation: slideDown 0.25s ease forwards;
        z-index: 999;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Regular nav links inside mobile menu */
    .nav-links.open > a {
        width: 100%;
        max-width: 340px;
        text-align: center;
        padding: 13px 20px;
        font-size: 0.95rem;
        letter-spacing: 0.12em;
        border-radius: 8px;
        border-bottom: 1px solid rgba(201, 162, 39, 0.08);
        color: var(--text-primary);
        transition: var(--transition);
    }

    .nav-links.open > a:hover {
        color: var(--gold-light);
        background: rgba(201, 162, 39, 0.07);
    }

    /* Mobile CTA — visible only inside open dropdown, at the bottom */
    .nav-links.open .nav-cta-mobile-row {
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-top: 16px;
        width: 100%;
        max-width: 340px;
    }

    .nav-links.open .nav-cta-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        padding: 14px 16px;
        background: linear-gradient(135deg, var(--gold) 0%, #e8b800 50%, var(--gold) 100%);
        color: #0b0f1e !important;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        border-radius: 8px;
        border-bottom: none !important;
        box-shadow: 0 0 24px rgba(201, 162, 39, 0.5), 0 4px 16px rgba(0, 0, 0, 0.5);
        transition: var(--transition);
        white-space: nowrap;
    }

    /* Register button — outline style to differentiate */
    .nav-links.open .nav-cta-mobile-register {
        background: transparent;
        color: var(--gold-light) !important;
        border: 2px solid var(--border-gold) !important;
        box-shadow: 0 0 14px rgba(201, 162, 39, 0.2), 0 4px 16px rgba(0, 0, 0, 0.5);
    }

    .nav-links.open .nav-cta-mobile:hover {
        background: linear-gradient(135deg, #f0c040, #c9a227, #f0c040);
        box-shadow: 0 0 36px rgba(201, 162, 39, 0.7), 0 6px 20px rgba(0, 0, 0, 0.5);
        transform: translateY(-2px);
        color: #0b0f1e !important;
    }

    .nav-links.open .nav-cta-mobile-register:hover {
        background: rgba(201, 162, 39, 0.15);
        border-color: var(--gold-light) !important;
        color: var(--gold-light) !important;
        box-shadow: 0 0 24px rgba(201, 162, 39, 0.35);
    }

    /* --- Hero --- */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 24px;
    }

    .hero-left,
    .hero-right {
        flex: 1 1 100%;
        width: 100%;
    }

    .hero-center {
        display: none;
    }

    .hero-features {
        padding: 0 20px;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 32px;
    }

    /* Hero left card responsive */
    .hlc-top {
        gap: 12px;
    }

    .hlc-globe {
        width: 62px;
        height: 62px;
    }

    .hero-left-card h1 {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .hlc-desc {
        font-size: 0.95rem;
    }

    /* --- Sections padding --- */
    .about,
    .blockchain,
    .hybrid,
    .capabilities,
    .defi,
    .roadmap,
    .faqs {
        padding: 70px 0;
    }

    .about-container,
    .bc-container,
    .defi-container,
    .rm-container,
    .faq-container,
    .cap-container {
        padding: 0 20px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    /* --- Blockchain cards --- */
    .bc-cards {
        grid-template-columns: 1fr;
    }

    /* --- Timeline mobile --- */
    .timeline::before {
        left: 20px;
    }

    .tl-item,
    .tl-item.even {
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto;
    }

    .tl-item .tl-connector,
    .tl-item.even .tl-connector {
        grid-column: 1;
        grid-row: 1;
        padding-top: 24px;
        justify-content: center;
    }

    .tl-item .tl-content,
    .tl-item.even .tl-content {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
    }

    .tl-item .tl-spacer,
    .tl-item .tl-spacer-end,
    .tl-item.even .tl-spacer,
    .tl-item.even .tl-spacer-end {
        display: none;
    }

    .tl-dot {
        position: static;
    }

    /* --- Footer --- */
    .footer-main {
        grid-template-columns: 1fr;
        padding: 48px 20px 36px;
    }

    .footer-bottom {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom .legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width:480px) {
    .hero-features {
        grid-template-columns: 1fr;
    }

    .feat-card {
        flex-direction: row;
        align-items: center;
    }

    .about-numbers {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .num-box .val {
        font-size: 1.1rem;
    }

    .num-box {
        padding: 12px 8px;
    }

    .defi-stats {
        grid-template-columns: 1fr 1fr;
    }

    .defi-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .faq-q {
        padding: 18px 16px;
    }

    .faq-q-text {
        font-size: 0.88rem;
    }

    .faq-item.open .faq-a {
        padding: 14px 16px 20px;
    }

    .tl-content {
        padding: 18px 16px;
    }

    .bc-card {
        padding: 20px 16px;
    }

    .nav-logo img {
        width: 130px;
    }
}

/* Active nav link */
.nav-links a.active:not(.nav-cta-mobile) {
    color: var(--gold-light);
}

.nav-links a.active:not(.nav-cta-mobile)::after {
    width: 60%;
}

/* Ensure mobile CTA never gets the underline pseudo-element */
.nav-links a.nav-cta-mobile::after {
    display: none !important;
}



/* coin-imgss now defined in the Hero Right section above */

/* .coin-imgs now handled by .feat-icon-wrap img */
.coin-imgs {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon {
    text-align: -webkit-center;
}

/* =============================================
   SECTION 3B — CORE CAPABILITIES
   ============================================= */
.capabilities {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(0 14 66 / 93%) 0%, rgb(0 12 44 / 75%) 50%, rgb(13 0 38 / 73%) 100%), url(../images/backgroundimages/background2.jpg) center / cover no-repeat;
    background-size: cover;
}


.cap-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* 5 per row on large, 3 on mid, 2 on mobile */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 8px;
}

/* Individual card */
.cap-card {
    background: linear-gradient(145deg, rgba(14, 21, 41, 0.95) 0%, rgba(18, 26, 52, 0.98) 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    padding: 28px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    box-shadow:
        0 6px 28px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(201, 162, 39, 0.07),
        inset 0 1px 0 rgba(201, 162, 39, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation-delay: var(--delay, 0s);
}

/* Top glow line */
.cap-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--purple-light), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Bottom purple accent */
.cap-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 63, 197, 0.4), transparent);
}

.cap-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.55);
    box-shadow:
        0 14px 48px rgba(0, 0, 0, 0.65),
        0 0 32px rgba(201, 162, 39, 0.18),
        0 0 0 1px rgba(201, 162, 39, 0.2);
}

.cap-card:hover::before {
    opacity: 1;
}

/* Icon circle */
.cap-icon-wrap {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 39, 0.45);
    background: radial-gradient(circle, rgba(8, 14, 40, 1) 50%, rgba(20, 12, 55, 1) 100%);
    box-shadow:
        0 0 20px rgba(201, 162, 39, 0.35),
        0 0 44px rgba(201, 162, 39, 0.12),
        inset 0 0 14px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: var(--transition);
}

.cap-card:hover .cap-icon-wrap {
    border-color: var(--gold);
    box-shadow:
        0 0 28px rgba(201, 162, 39, 0.65),
        0 0 60px rgba(201, 162, 39, 0.2),
        inset 0 0 14px rgba(0, 0, 0, 0.6);
    transform: scale(1.08);
}

.cap-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.7));
}

/* Card title */
.cap-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.4);
    margin: 0;
    line-height: 1.3;
}

/* Card description */
.cap-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Tag badge */
.cap-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(108, 63, 197, 0.18);
    border: 1px solid var(--border-purple);
    color: var(--purple-light);
    white-space: nowrap;
    transition: var(--transition);
}

.cap-card:hover .cap-tag {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--border-gold);
    color: var(--gold-light);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .cap-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .cap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .cap-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

       .cap-icon-wrap {
        width: 200px;
        height: 200px;
        padding: 10px;
        border: 2px solid rgb(201 162 39 / 0%);
        box-shadow: 0px 0px;
    }

    .cap-card {
        padding: 20px 14px 16px;
    }
}

@media (max-width: 380px) {
    .cap-grid {
        grid-template-columns: 1fr;
    }
}
