/* ============================================================
   ARVIND IRONS — Global Theme
   wwwroot/css/theme.css
   Import this once via _Layout.cshtml — no per-page styles needed
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
    --steel: #0b1d35;
    --steel-mid: #112d4e;
    --accent: #e8a020;
    --accent2: #c0392b;
    --silver: #b0bec5;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 8px 32px rgba(0,0,0,0.18);
    --nav-h: 68px;
}

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── BASE ── */
html, body {
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(135deg, #0b1d35 0%, #1a3a5c 50%, #0b1d35 100%);
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
}

/* Kill Bootstrap container interference */
.container {
    max-width: 100% !important;
    padding: 0 !important;
    background: transparent;
}

main {
    min-height: calc(100vh - var(--nav-h) - 200px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232,160,32,0.45);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(232,160,32,0);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease both;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.30s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.60s;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: rgba(9, 20, 38, 0.90);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(232,160,32,0.18);
    box-shadow: 0 4px 32px rgba(0,0,0,0.40);
    gap: 0;
}

    /* Grid texture overlay */
    .site-nav::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(0deg, transparent, transparent 9px, rgba(255,255,255,0.018) 10px), repeating-linear-gradient(90deg, transparent, transparent 9px, rgba(255,255,255,0.018) 10px);
        pointer-events: none;
    }

    /* Gold radial glow */
    .site-nav::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 100%;
        background: radial-gradient(ellipse 80% 120% at 50% -20%, rgba(232,160,32,0.08) 0%, transparent 70%);
        pointer-events: none;
    }

/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 36px;
    position: relative;
    z-index: 1;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(232,160,32,0.40);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 30%, #e8a020 70%, #ffffff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    letter-spacing: 0.3px;
}

.brand-sub {
    font-size: 9px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.80;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    flex: 1;
    position: relative;
    z-index: 1;
}

    .nav-links a {
        display: block;
        padding: 7px 13px;
        font-size: 13.5px;
        font-weight: 500;
        color: rgba(255,255,255,0.62);
        text-decoration: none;
        border-radius: 7px;
        transition: color 0.2s, background 0.2s;
        white-space: nowrap;
        letter-spacing: 0.2px;
    }

        .nav-links a:hover {
            color: #fff;
            background: rgba(255,255,255,0.07);
        }

        .nav-links a.active {
            color: var(--accent);
            background: rgba(232,160,32,0.10);
            border: 1px solid rgba(232,160,32,0.20);
        }

    .nav-links .cart-link {
        color: var(--accent);
    }

        .nav-links .cart-link:hover {
            background: rgba(232,160,32,0.10);
        }

/* Auth buttons */
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 16px;
    position: relative;
    z-index: 1;
}

.nav-greeting {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .nav-greeting strong {
        color: var(--accent);
        font-weight: 600;
    }

.btn-nav-outline {
    padding: 7px 18px;
    background: transparent;
    color: rgba(255,255,255,0.72);
    font-size: 13.5px;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.20);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

    .btn-nav-outline:hover {
        border-color: rgba(255,255,255,0.50);
        color: #fff;
    }

.btn-nav-gold {
    padding: 7px 20px;
    background: var(--accent);
    color: #0b1d35;
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    animation: pulse-border 2.5s infinite;
}

    .btn-nav-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(232,160,32,0.45);
        color: #0b1d35;
    }

.btn-nav-danger {
    padding: 7px 18px;
    background: transparent;
    color: #e74c3c;
    font-size: 13.5px;
    font-weight: 600;
    border: 1.5px solid rgba(231,76,60,0.40);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

    .btn-nav-danger:hover {
        background: rgba(231,76,60,0.10);
        color: #e74c3c;
    }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: rgba(255,255,255,0.70);
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

@media (max-width: 960px) {
    .site-nav {
        padding: 0 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(9,20,38,0.97);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(232,160,32,0.15);
        padding: 14px 20px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        z-index: 999;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            width: 100%;
            font-size: 15px;
            padding: 11px 14px;
        }

    .nav-right {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        background: rgba(9,20,38,0.97);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(232,160,32,0.10);
        padding: 12px 20px 18px;
        flex-direction: column;
        gap: 8px;
        z-index: 998;
    }

        .nav-right.open {
            display: flex;
        }

            .nav-right.open .btn-nav-gold,
            .nav-right.open .btn-nav-outline,
            .nav-right.open .btn-nav-danger {
                width: 100%;
                text-align: center;
                padding: 11px;
            }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 52px 48px 28px;
    background: rgba(6,14,28,0.75);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(232,160,32,0.18);
}

    .site-footer::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.025) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.025) 40px);
        pointer-events: none;
    }

    .site-footer::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

.footer-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 30%, #e8a020 70%, #ffffff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    margin-bottom: 12px;
}

.footer-brand-desc {
    font-size: 13.5px;
    color: var(--silver);
    line-height: 1.68;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

    .footer-social:hover {
        background: rgba(232,160,32,0.12);
        border-color: rgba(232,160,32,0.35);
        transform: translateY(-2px);
    }

.footer-col-title {
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .footer-col-links a {
        font-size: 13.5px;
        color: rgba(255,255,255,0.48);
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
        display: inline-block;
    }

        .footer-col-links a:hover {
            color: #fff;
            padding-left: 5px;
        }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.28);
}

    .footer-copy a {
        color: var(--accent);
        text-decoration: none;
    }

        .footer-copy a:hover {
            text-decoration: underline;
        }

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-badge {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(232,160,32,0.08);
    border: 1px solid rgba(232,160,32,0.22);
    color: rgba(232,160,32,0.75);
    letter-spacing: 0.5px;
}

/* ============================================================
   SHARED PAGE COMPONENTS
   ============================================================ */

/* Page body wrapper */
.page-body {
    padding: 0 40px 72px;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
}

/* Glass card */
.glass {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
}

/* Hero section — used on Index, Blog, News, RND */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 40px 60px;
    text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,160,32,0.12) 0%, transparent 70%), linear-gradient(180deg, #0a1628 0%, transparent 100%);
}

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px);
        pointer-events: none;
    }

/* Hero badge */
.hero-badge {
    display: inline-block;
    padding: 5px 18px;
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    animation: fadeUp 0.6s ease both;
}

/* Hero title — shimmer gradient */
.hero-title {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 30%, #e8a020 70%, #ffffff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeUp 0.7s ease both, shimmer 4s linear infinite;
}

/* Hero subtitle */
.hero-sub {
    margin-top: 16px;
    font-size: 17px;
    color: var(--silver);
    font-weight: 300;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    animation: fadeUp 0.8s ease 0.2s both;
}

/* Hero divider */
.hero-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 22px auto 0;
}

/* Hero CTA row */
.hero-cta-row {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.35s both;
}

/* Section header */
.section-header {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 32px;
}

    .section-header .eyebrow {
        font-size: 11px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 6px;
    }

    .section-header h2 {
        font-size: clamp(24px, 3.5vw, 36px);
        line-height: 1.1;
    }

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(232,160,32,0.5), transparent);
    margin-bottom: 10px;
}

/* Eyebrow label standalone */
.eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

/* Stats bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
    padding: 28px 24px;
    text-align: center;
    background: rgba(11,29,53,0.60);
    backdrop-filter: blur(10px);
    transition: background 0.3s;
}

    .stat-item:hover {
        background: rgba(232,160,32,0.08);
    }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 6px;
}

/* Tag pills */
.tag {
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(232,160,32,0.12);
    border: 1px solid rgba(232,160,32,0.30);
    color: var(--accent);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Info list */
.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .info-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        color: rgba(255,255,255,0.85);
        line-height: 1.55;
    }

        .info-list li .icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(232,160,32,0.15);
            border: 1px solid rgba(232,160,32,0.30);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            flex-shrink: 0;
            margin-top: 2px;
        }

/* Gold top-line accent (cards) */
.card-accent-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

/* CTA Banner */
.cta-banner {
    margin-top: 64px;
    border-radius: 20px;
    padding: 56px 48px;
    text-align: center;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,160,32,0.12) 0%, transparent 70%), rgba(255,255,255,0.04);
    border: 1px solid rgba(232,160,32,0.18);
    position: relative;
    overflow: hidden;
}

    .cta-banner h2 {
        font-size: clamp(26px, 4vw, 42px);
        margin-bottom: 12px;
    }

    .cta-banner p {
        color: var(--silver);
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
    padding: 13px 32px;
    background: var(--accent);
    color: #0b1d35;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse-border 2.5s infinite;
    font-family: 'DM Sans', sans-serif;
    margin: 4px;
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232,160,32,0.4);
        color: #0b1d35;
    }

.btn-outline-gold {
    padding: 13px 32px;
    background: transparent;
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    border: 1.5px solid var(--accent);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
    font-family: 'DM Sans', sans-serif;
    margin: 4px;
}

    .btn-outline-gold:hover {
        background: var(--accent);
        color: #0b1d35;
    }

/* ============================================================
   FORM FIELDS (Login, Registration, AddBlog)
   ============================================================ */
.form-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    padding: 48px 40px 40px;
    overflow: hidden;
    animation: fadeUp 0.8s ease both;
}

    .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    .form-card::after {
        content: '';
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(232,160,32,0.07) 0%, transparent 70%);
        pointer-events: none;
    }

.form-group {
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

    .form-group label {
        display: block;
        font-size: 11px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--silver);
        margin-bottom: 9px;
        font-weight: 600;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 13px 16px;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: var(--radius);
        color: #fff;
        font-size: 15px;
        font-family: 'DM Sans', sans-serif;
        outline: none;
        transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
        resize: vertical;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            background: rgba(232,160,32,0.06);
            box-shadow: 0 0 0 3px rgba(232,160,32,0.10);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.28);
        }

.char-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-top: 6px;
    display: block;
}

.validation-error {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: #0b1d35;
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    letter-spacing: 0.5px;
    margin-top: 6px;
    position: relative;
    z-index: 1;
    animation: pulse-border 2.5s infinite;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232,160,32,0.45);
    }

/* Auth page wrapper */
.auth-page {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,160,32,0.10) 0%, transparent 70%), linear-gradient(180deg, #0a1628 0%, transparent 100%);
}

    .auth-page::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px);
        pointer-events: none;
    }

.auth-brand {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.brand-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--accent), #c0392b);
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(232,160,32,0.35);
}

.auth-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 30%, #e8a020 70%, #ffffff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    margin-bottom: 6px;
}

.auth-sub {
    font-size: 14px;
    color: var(--silver);
    font-weight: 300;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    position: relative;
    z-index: 1;
}

    .auth-divider::before,
    .auth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,0.08);
    }

    .auth-divider span {
        font-size: 12px;
        color: rgba(255,255,255,0.28);
        letter-spacing: 1px;
    }

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: var(--silver);
    position: relative;
    z-index: 1;
}

    .auth-footer a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 600;
    }

        .auth-footer a:hover {
            text-decoration: underline;
        }

.auth-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.auth-tag {
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(232,160,32,0.10);
    border: 1px solid rgba(232,160,32,0.28);
    color: var(--accent);
}

/* Perks row (Registration) */
.perks-row {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 26px;
    padding: 16px 18px;
    background: rgba(232,160,32,0.06);
    border: 1px solid rgba(232,160,32,0.18);
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.perk-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(232,160,32,0.15);
    border: 1px solid rgba(232,160,32,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

    .blog-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .blog-card:hover {
        transform: translateY(-6px);
        border-color: rgba(232,160,32,0.30);
        box-shadow: 0 16px 40px rgba(0,0,0,0.28);
    }

        .blog-card:hover::before {
            opacity: 1;
        }

.blog-number {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(232,160,32,0.60);
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.25;
    color: #fff;
}

.blog-content {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-wrap: wrap;
    gap: 8px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #0b1d35;
    flex-shrink: 0;
}

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

.author-email {
    font-size: 12.5px;
    color: rgba(255,255,255,0.72);
}

.blog-date {
    font-size: 11px;
    color: rgba(255,255,255,0.38);
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

    .news-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: var(--accent);
        opacity: 0;
        transition: opacity 0.25s;
    }

    .news-item:hover {
        transform: translateX(6px);
        border-color: rgba(232,160,32,0.28);
        box-shadow: 0 8px 32px rgba(0,0,0,0.26);
    }

        .news-item:hover::before {
            opacity: 1;
        }

.news-index {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: rgba(232,160,32,0.22);
    line-height: 1;
    flex-shrink: 0;
    min-width: 38px;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.news-item:hover .news-title {
    color: var(--accent);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.news-date {
    font-size: 12px;
    color: var(--silver);
}

.news-badge {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 11px;
    border-radius: 100px;
    background: rgba(232,160,32,0.10);
    border: 1px solid rgba(232,160,32,0.26);
    color: var(--accent);
    font-weight: 600;
}

.news-arrow {
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s;
}

.news-item:hover .news-arrow {
    opacity: 1;
    transform: translateX(0);
}

.news-ticker {
    background: rgba(232,160,32,0.07);
    border: 1px solid rgba(232,160,32,0.20);
    border-radius: var(--radius);
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    font-size: 13px;
}

.ticker-label {
    background: var(--accent);
    color: #0b1d35;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    flex-shrink: 0;
}

.ticker-text {
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================================
   RND PAGE
   ============================================================ */
.rnd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.rnd-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(22px);
    transition: border-color 0.25s, box-shadow 0.25s;
}

    .rnd-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, box-shadow 0.25s;
    }

    .rnd-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .rnd-card:hover {
        transform: translateY(-6px) !important;
        border-color: rgba(232,160,32,0.30);
        box-shadow: 0 16px 40px rgba(0,0,0,0.28);
    }

        .rnd-card:hover::before {
            opacity: 1;
        }

.card-icon {
    font-size: 36px;
    line-height: 1;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: #fff;
    line-height: 1.2;
}

.card-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

    .card-points li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-size: 13.5px;
        color: rgba(255,255,255,0.68);
        line-height: 1.5;
    }

        .card-points li::before {
            content: '▸';
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 1px;
        }

.card-goal {
    display: inline-block;
    margin-top: 4px;
    padding: 6px 14px;
    background: rgba(232,160,32,0.10);
    border: 1px solid rgba(232,160,32,0.22);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.3px;
}

.focus-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px 24px;
    background: rgba(232,160,32,0.06);
    border: 1px solid rgba(232,160,32,0.16);
    border-radius: var(--radius);
}

.focus-tag {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(232,160,32,0.12);
    border: 1px solid rgba(232,160,32,0.30);
    color: var(--accent);
    transition: background 0.2s, transform 0.2s;
    cursor: default;
}

    .focus-tag:hover {
        background: rgba(232,160,32,0.22);
        transform: translateY(-2px);
    }

/* ============================================================
   PRODUCT / VIEW_DETAILS PAGE
   ============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(0,0,0,0.35);
        border-color: rgba(232,160,32,0.30);
    }

.product-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.product-card:hover .product-img img {
    transform: scale(1.07);
}

.product-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,29,53,0.50) 0%, transparent 55%);
}

.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

.product-brand {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

.product-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    flex: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--accent);
}

.btn-view {
    padding: 8px 20px;
    background: var(--accent);
    color: #0b1d35;
    font-weight: 700;
    font-size: 13px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn-view:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(232,160,32,0.35);
        color: #0b1d35;
    }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 90px 20px;
    color: var(--silver);
}

.empty-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.empty-state p {
    font-size: 15px;
    margin-bottom: 24px;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--silver);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

    .back-link:hover {
        color: var(--accent);
    }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--silver);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

    .breadcrumb a {
        color: var(--silver);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--accent);
        }

    .breadcrumb .sep {
        color: rgba(255,255,255,0.20);
    }

    .breadcrumb .current {
        color: rgba(255,255,255,0.55);
    }

/* Info panels */
.info-panel {
    padding: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s;
}

    .info-panel:hover {
        border-color: rgba(232,160,32,0.25);
    }

    .info-panel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(232,160,32,0.4), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .info-panel:hover::before {
        opacity: 1;
    }

    .info-panel h4 {
        font-size: 17px;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .info-panel ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .info-panel li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: rgba(255,255,255,0.68);
        line-height: 1.55;
    }

        .info-panel li .ic {
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 1px;
        }

/* ============================================================
   INDEX PAGE — INDUSTRY SPLIT SECTION
   ============================================================ */
.industry-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

@media (max-width: 760px) {
    .industry-split {
        grid-template-columns: 1fr;
    }
}

.industry-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

    .industry-img-wrap img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .industry-img-wrap:hover img {
        transform: scale(1.04);
    }

.industry-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,29,53,0.6) 0%, transparent 60%);
}

.industry-text {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* ============================================================
   INDEX PAGE — CHART SECTION
   ============================================================ */
.chart-section {
    margin-top: 56px;
}

.chart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .chart-grid {
        grid-template-columns: 1fr;
    }
}

.chart-card {
    padding: 28px;
}

    .chart-card h4 {
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--silver);
        margin-bottom: 20px;
        font-family: 'DM Sans', sans-serif;
    }

canvas {
    max-width: 100%;
}

.mini-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mini-stat-card {
    padding: 20px 22px;
    border-left: 3px solid var(--accent);
}

    .mini-stat-card.red {
        border-color: #c0392b;
    }

    .mini-stat-card.blue {
        border-color: #3498db;
    }

    .mini-stat-card .val {
        font-family: 'Playfair Display', serif;
        font-size: 30px;
        color: var(--accent);
        font-weight: 700;
        line-height: 1;
    }

    .mini-stat-card.red .val {
        color: #c0392b;
    }

    .mini-stat-card.blue .val {
        color: #3498db;
    }

    .mini-stat-card .lbl {
        font-size: 13px;
        color: var(--silver);
        margin-top: 4px;
    }

/* ============================================================
   INDEX PAGE — KEY PLAYERS SECTION
   ============================================================ */
.players-section {
    margin-top: 56px;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.player-card {
    padding: 28px 20px;
    text-align: center;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
    cursor: default;
}

    .player-card:hover {
        transform: translateY(-6px);
        border-color: rgba(232,160,32,0.40);
        background: rgba(232,160,32,0.06);
    }

.player-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.player-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 6px;
}

.player-desc {
    font-size: 13px;
    color: var(--silver);
    line-height: 1.5;
}

.player-share {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(232,160,32,0.15);
    color: var(--accent);
    border: 1px solid rgba(232,160,32,0.30);
}

/* ============================================================
   INDEX PAGE — TIMELINE / MILESTONES
   ============================================================ */
.timeline-section {
    margin-top: 56px;
    margin-bottom: 80px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
    padding: 32px 40px;
}

@media (max-width: 760px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
}

.timeline {
    position: relative;
    margin-top: 32px;
    padding-left: 32px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--accent), transparent);
    }

.tl-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 24px;
}

.tl-dot {
    position: absolute;
    left: -39px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--steel);
    box-shadow: 0 0 0 3px rgba(232,160,32,0.25);
}

.tl-year {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.tl-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 4px;
}

.tl-desc {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.55;
}

/* ============================================================
   INDEX PAGE — PRODUCTS SECTION
   ============================================================ */
.products-section {
    margin-top: 56px;
}


/* Alias — .divider works the same as .hero-divider */
.divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 22px auto 0;
}
