/* BullRun Traders — Part 1: Variables, Reset, Layout, Header, Hero */
:root {
    --bg-primary: #03060D;
    --bg-secondary: #071323;
    --bg-card: #0a1628;
    --bg-card-hover: #0f1d35;
    --blue: #009DFF;
    --blue-light: #00B7FF;
    --blue-dark: #003B8F;
    --gold: #D4AF37;
    --gold-light: #F5C542;
    --text-primary: #F4F7FA;
    --text-secondary: #BFC7D5;
    --text-muted: #8892a4;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 30px rgba(0, 0, 0, .5);
    --transition: all .3s ease;
    --glow-blue: 0 0 20px rgba(0, 157, 255, .3);
    --glow-gold: 0 0 20px rgba(212, 175, 55, .3)
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden
}

p {
    text-align: justify
}

body.menu-open {
    overflow: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: var(--transition)
}

a:hover {
    color: var(--blue-light)
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.container-narrow {
    max-width: 800px
}

.text-gold {
    color: var(--gold)
}

.text-blue {
    color: var(--blue)
}

.section {
    padding: 100px 0;
    position: relative
}

.section:nth-child(even) {
    background: var(--bg-secondary)
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px
}

.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 50px;
    background: rgba(212, 175, 55, .06)
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center
}

.section-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: .85rem;
    margin-top: 30px;
    font-style: italic
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    border-color: var(--gold);
    box-shadow: var(--glow-gold)
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, .5);
    color: #000
}

.btn-outline-blue {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue)
}

.btn-outline-blue:hover {
    background: var(--blue);
    color: #fff;
    box-shadow: var(--glow-blue);
    transform: translateY(-2px)
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem
}

.btn-sm {
    padding: 10px 20px;
    font-size: .8rem
}

.btn-full {
    width: 100%;
    justify-content: center
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(3, 6, 13, .6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(3, 6, 13, .95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.site-header.header-hidden {
    transform: translateY(-100%)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary)
}

.logo-img {
    height: 70px !important;
    width: auto
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px
}

.logo-text strong {
    color: var(--gold)
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px
}

.nav-link {
    color: var(--text-secondary);
    font-size: .85rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap
}

.nav-link:hover,
.nav-link:focus {
    color: var(--blue)
}

.header-cta {
    display: none;
    font-size: .8rem;
    padding: 10px 22px
}

@media(min-width:1100px) {
    .header-cta {
        display: inline-flex
    }
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

@media(min-width:1100px) {
    .mobile-toggle {
        display: none
    }
}

@media(max-width:1099px) {
    .primary-nav {
        display: none
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 6, 13, .98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition)
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible
}

.mobile-nav {
    text-align: center
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px
}

.mobile-nav-list .nav-link {
    font-size: 1.2rem;
    padding: 12px 20px;
    display: block
}

.mobile-cta {
    margin-top: 10px
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #03060D 0%, #071323 40%, #0a1a35 100%);
    overflow: hidden
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 6, 13, .9) 0%, rgba(7, 19, 35, .6) 50%, rgba(3, 6, 13, .8) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px)
}

.hero-glow-left {
    width: 400px;
    height: 400px;
    background: rgba(0, 157, 255, .12);
    top: 20%;
    left: -100px
}

.hero-glow-right {
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, .1);
    bottom: 10%;
    right: -80px
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px
}

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

.hero-content {
    text-align: left
}

.hero-badge {
    margin-bottom: 24px
}

.badge-text {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold)
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px
}

.hero-copy {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 36px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

/* Hero Logo Circle */
.hero-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-logo-circle {
    width: clamp(280px, 28vw, 420px);
    height: clamp(280px, 28vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 22, 40, .95) 0%, rgba(3, 6, 13, .98) 70%);
    border: 1px solid rgba(0, 157, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 60px rgba(0, 157, 255, .08), 0 0 120px rgba(0, 0, 0, .5), inset 0 0 60px rgba(0, 157, 255, .04)
}

.hero-logo-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(0, 157, 255, .15) 25%, transparent 50%, rgba(212, 175, 55, .1) 75%, transparent 100%);
    z-index: -1;
    animation: logoRingRotate 12s linear infinite
}

@keyframes logoRingRotate {
    to {
        transform: rotate(360deg)
    }
}

.hero-logo-img {
    width: 65%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 157, 255, .2))
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px
    }

    .hero-content {
        text-align: center
    }

    .hero-copy {
        margin-left: auto;
        margin-right: auto;
        text-align: center
    }

    .hero-buttons {
        justify-content: center
    }

    .hero-logo-circle {
        width: 260px;
        height: 260px
    }
}

@media(max-width:480px) {
    .hero-logo-circle {
        width: 200px;
        height: 200px
    }

    .hero-title {
        font-size: 2.5rem
    }
}


/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    opacity: 0;
    transition: var(--transition)
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 157, 255, .2);
    box-shadow: var(--glow-blue)
}

.feature-card:hover::before {
    opacity: 1
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 157, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--blue);
    transition: var(--transition)
}

.feature-card:hover .feature-icon {
    background: rgba(0, 157, 255, .2);
    box-shadow: var(--glow-blue)
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase
}

.feature-card p {
    color: var(--text-secondary);
    font-size: .92rem;
    line-height: 1.7;
    text-align: center
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition)
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 157, 255, .2);
    box-shadow: var(--glow-blue)
}

.stat-card-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px
}

.stat-card-label {
    color: var(--text-secondary);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px
}

/* --- Ticker Grid --- */
.ticker-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px
}

.ticker-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 24px 32px;
    text-align: center;
    min-width: 140px;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.ticker-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transition: var(--transition)
}

.ticker-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 157, 255, .3);
    box-shadow: var(--glow-blue)
}

.ticker-card:hover::after {
    transform: scaleX(1)
}

.ticker-symbol {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 2px
}

.ticker-name {
    display: block;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px
}

/* --- Derivatives --- */
.derivatives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.derivatives-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 20px
}

.derivatives-card {
    position: relative
}

.deriv-card-inner {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, .08)
}

.deriv-card-icon {
    color: var(--gold);
    margin-bottom: 20px
}

.deriv-card-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center
}

@media(max-width:768px) {
    .derivatives-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 16px
}

.about-disclaimer {
    font-size: .85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--glow-gold)
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--gold)
}

.profile-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
    color: var(--gold)
}

.profile-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase
}

.profile-titles {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.profile-titles li {
    color: var(--text-secondary);
    font-size: .9rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.profile-titles li:last-child {
    border: none;
    color: var(--blue);
    font-weight: 600
}

@media(max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

/* --- Checklist --- */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 700px;
    margin: 0 auto
}

.check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 18px 24px;
    transition: var(--transition)
}

.check-item:hover {
    border-color: rgba(0, 157, 255, .2);
    transform: translateX(4px)
}

.check-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 157, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue)
}

.check-item span {
    font-size: .95rem;
    color: var(--text-secondary)
}

/* --- Pricing --- */
.pricing-card-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, .2), 0 0 100px rgba(0, 157, 255, .1);
    transform: scale(1.05);
    z-index: 1
}

@media(max-width: 991px) {
    .pricing-card.featured {
        transform: none
    }

    .pricing-card-wrap {
        max-width: 500px
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(212, 175, 55, .12), 0 0 100px rgba(0, 157, 255, .06);
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

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

.pricing-card-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: #000;
    font-size: .7rem;
    font-weight: 800;
    padding: 6px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px
}

.pricing-plan {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(212, 175, 55, .2);
    text-align: center;
    line-height: 1.2
}

.pricing-subtext {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-bottom: 28px;
    line-height: 1.6;
    font-style: italic
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
    padding: 0 10px
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.4
}

.pricing-features li svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px
}

.pricing-features li:last-child {
    border: none
}

/* --- Brand --- */
.brand-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto
}

.brand-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 16px
}

.brand-notice {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px
}

/* --- Risk --- */
.risk-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.risk-box {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 30px
}

.risk-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 40px
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: var(--gold)
}

.contact-info-card ul {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contact-info-card li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-size: .95rem
}

.contact-info-card li svg {
    color: var(--blue);
    flex-shrink: 0
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 40px
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.required {
    color: var(--gold)
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: .95rem;
    transition: var(--transition);
    outline: none
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 12px rgba(0, 157, 255, .15)
}

.form-group textarea {
    resize: vertical;
    min-height: 100px
}

.contact-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: .9rem;
    text-align: center;
    display: none
}

.contact-status.success {
    display: block;
    background: rgba(0, 157, 255, .1);
    color: var(--blue);
    border: 1px solid rgba(0, 157, 255, .3)
}

.contact-status.error {
    display: block;
    background: rgba(255, 80, 80, .1);
    color: #ff5050;
    border: 1px solid rgba(255, 80, 80, .3)
}

@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 60px 0 30px
}

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

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    margin-bottom: 12px
}

.footer-brand .logo-img {
    height: 32px
}

.footer-tagline {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 16px
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition)
}

.social-link:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px)
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px
}

.footer-menu li {
    margin-bottom: 8px
}

.footer-menu a {
    color: var(--text-muted);
    font-size: .9rem;
    transition: var(--transition)
}

.footer-menu a:hover {
    color: var(--blue)
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: .85rem
}

.footer-risk {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.footer-risk p {
    color: var(--text-muted);
    font-size: .8rem;
    font-style: italic;
    text-align: inherit
}

.footer-bottom {
    text-align: center;
    padding-top: 20px
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: .8rem;
    margin-bottom: 4px;
    text-align: inherit
}

.footer-trademark {
    font-size: .75rem;
    color: var(--text-muted);
    opacity: .7
}

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left
    }

    .footer-socials {
        justify-content: flex-start
    }
}

/* --- Blog --- */
.section-blog {
    padding-top: 120px
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition)
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-blue)
}

.blog-card-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.blog-card-body {
    padding: 24px
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 10px
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 10px
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none
}

.blog-card-title a:hover {
    color: var(--blue)
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-bottom: 16px
}

.no-posts {
    text-align: center;
    padding: 60px 0
}

.no-posts h2 {
    color: var(--text-muted);
    margin-bottom: 10px
}

.pagination {
    margin-top: 50px;
    text-align: center
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px
}

.pagination .page-numbers {
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, .1)
}

.pagination .current {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

/* --- Page & Single --- */
.section-page,
.section-single {
    padding-top: 120px
}

.page-title,
.single-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2
}

.single-meta {
    display: flex;
    gap: 16px;
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 16px
}

.single-thumbnail {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden
}

.single-thumbnail img {
    width: 100%
}

.entry-content {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--text-primary);
    font-family: var(--font-display);
    margin: 32px 0 16px
}

.entry-content p {
    margin-bottom: 16px
}

.entry-content a {
    color: var(--blue);
    text-decoration: underline
}

.entry-content ul,
.entry-content ol {
    margin: 16px 0;
    padding-left: 24px
}

.entry-content li {
    margin-bottom: 8px
}

.entry-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(212, 175, 55, .05);
    border-radius: 0 8px 8px 0
}

.entry-content img {
    border-radius: var(--radius);
    margin: 24px 0
}

.single-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.single-tags {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 20px
}

.single-tags a {
    color: var(--blue)
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
    color: var(--text-secondary);
    font-size: .9rem
}

.post-navigation .nav-title {
    display: block;
    color: var(--blue);
    font-weight: 600;
    margin-top: 4px
}

.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

[data-animate="fade-down"] {
    transform: translateY(-30px)
}

[data-animate="fade-right"] {
    transform: translateX(-30px)
}

[data-animate="fade-left"] {
    transform: translateX(30px)
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0)
}

/* --- Responsive --- */
@media(max-width:480px) {
    .section {
        padding: 60px 0
    }

    .section-title {
        font-size: 1.5rem
    }

    .hero-stats {
        flex-direction: column;
        gap: 0
    }

    .hero-stat-divider {
        width: 60%;
        height: 1px;
        margin: 0 auto
    }

    .pricing-card {
        padding: 32px 20px
    }

    .pricing-price {
        font-size: 2rem
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: .9rem
    }

    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr
    }
}

/* --- Page Hero --- */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #03060D 0%, #071323 40%, #0a1a35 100%);
    text-align: center;
    overflow: hidden
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(0, 157, 255, .08) 0%, transparent 60%);
    pointer-events: none
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: 2px
}

.page-hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center
}

/* --- Story Section --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.story-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 16px
}

.story-stats-stack {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.story-stat-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition)
}

.story-stat-item:hover {
    border-color: rgba(0, 157, 255, .2);
    transform: translateX(6px)
}

.story-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    min-width: 90px
}

.story-stat-text {
    color: var(--text-secondary);
    font-size: .9rem
}

.story-disclaimer {
    font-size: .8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
    text-align: center
}

@media(max-width:768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

/* --- Philosophy Grid --- */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px
}

.philosophy-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    opacity: 0;
    transition: var(--transition)
}

.philosophy-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, .2);
    box-shadow: var(--glow-gold)
}

.philosophy-card:hover::before {
    opacity: 1
}

.philosophy-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212, 175, 55, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--gold)
}

.philosophy-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase
}

.philosophy-card p {
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.7
}

/* --- Steps Grid --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px
}

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 157, 255, .2);
    box-shadow: var(--glow-blue)
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue);
    opacity: .3;
    margin-bottom: 12px;
    line-height: 1
}

.step-card:hover .step-number {
    opacity: 1
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase
}

.step-card p {
    color: var(--text-secondary);
    font-size: .88rem;
    line-height: 1.7
}

/* --- Founder Section --- */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center
}

.founder-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--glow-gold)
}

.founder-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--gold)
}

.founder-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
    color: var(--gold)
}

.founder-badge-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 20px;
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 50px;
    margin-top: 12px
}

.founder-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 16px
}

.founder-credentials {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.founder-credentials li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: .95rem
}

.founder-credentials li svg {
    color: var(--gold);
    flex-shrink: 0
}

.founder-disclaimer {
    font-size: .85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px
}

@media(max-width:768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(212, 175, 55, .08)
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue))
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px
}

.cta-banner p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 28px;
    text-align: center
}

/* --- Contact Page Extras --- */
.contact-info-desc {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 20px
}

.contact-hours-card {
    margin-top: 20px
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px
}