/* ==========================================================================
   ANISH SINGH THAKUR DESIGN SYSTEM REPLICA FOR DR. HARMINDER SINGH SANDHU
   ========================================================================== */

:root {
    /* Color Palette */
    --c-accent-red: #BB2215;
    /* Signature Anish Red */
    --c-accent-bright: #F9432D;
    /* Vibrant Highlight Red */
    --c-accent-soft: #FFC3BD;
    /* Soft Tint for Labels */
    --c-accent-hover: #FFDAD6;
    /* Subdued Hover Tint */

    --c-bg-parchment: #F2EFE9;
    /* Signature Warm Cream/Parchment */
    --c-bg-dark-1: #151515;
    /* Deep Obsidian */
    --c-bg-dark-2: #1A1A1A;
    /* Charcoal Black */
    --c-bg-black: #0A0A0A;
    /* Pure Dark Tone */

    --c-text-dark: #111111;
    --c-text-muted-dark: rgba(0, 0, 0, 0.70);
    --c-text-white: #FFFFFF;
    --c-text-dim-white: rgba(255, 255, 255, 0.65);
    --c-text-ghost: rgba(255, 255, 255, 0.28);

    /* Typography */
    --font-krona: 'Krona One', sans-serif;
    --font-syne: 'Syne', 'Clash Display', sans-serif;
    --font-space: 'Space Grotesk', -apple-system, sans-serif;

    /* Card Gradients (Anish Singh Thakur Exact Spec) */
    --gradient-card-dark: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)), linear-gradient(360deg, rgb(48, 3, 3) 0%, rgb(28, 4, 4) 100%);
    --card-shadow-spec: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 16px 25px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--c-bg-black);
    color: var(--c-text-white);
}

body {
    font-family: var(--font-space);
    background-color: var(--c-bg-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Typography Utility Classes */
.font-krona {
    font-family: var(--font-krona);
}

.font-syne {
    font-family: var(--font-syne);
}

.font-space {
    font-family: var(--font-space);
}

.text-accent {
    color: var(--c-accent-red);
}

.dot-accent {
    color: var(--c-accent-red);
}

.text-white {
    color: var(--c-text-white);
}

.text-dark {
    color: var(--c-text-dark);
}

.text-dim {
    color: var(--c-text-dim-white);
}

.text-muted {
    color: var(--c-text-muted-dark);
}

.container-wide {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
}

.container-default {
    width: 100%;
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
}

.text-center {
    text-align: center;
}

/* Section Tops */
.section-top-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0.8rem 0;
}

.section-sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    max-width: 980px;
    margin: 0 auto;
}

.badge-pill {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(187, 34, 21, 0.12);
    border: 1px solid rgba(187, 34, 21, 0.3);
    border-radius: 100px;
    color: var(--c-accent-bright);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.light-pill {
    background: rgba(187, 34, 21, 0.08);
    border-color: rgba(187, 34, 21, 0.25);
    color: var(--c-accent-red);
}

/* ==========================================================================
   FIXED FLOATING NAVBAR & DRAWER (ANISH SIGNATURE)
   ========================================================================== */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.fixed-nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    width: 100%;
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 4vw, 3.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.brand-logo {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    letter-spacing: -0.06em;
    color: var(--c-text-white);
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 0.85;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--c-text-white);
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.nav-contact-btn:hover {
    background-color: var(--c-accent-red);
    border-color: var(--c-accent-red);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(187, 34, 21, 0.35);
}

.menu-circle-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--c-text-white);
    color: #000000;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.menu-circle-btn:hover {
    background-color: var(--c-accent-red);
    color: #FFFFFF;
    transform: scale(1.08);
}

/* Slide-in Drawer Overlay & Box */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-drawer {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: min(360px, 90vw);
    height: auto;
    max-height: 92vh;
    background: #000000;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
    z-index: 120;
    padding: 2rem 2.2rem 2.5rem;
    display: flex;
    flex-direction: column;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drawer.active {
    transform: translateX(0);
}

.drawer-close-wrapper {
    display: flex;
    justify-content: flex-end;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.drawer-close-btn:hover {
    color: #FFFFFF;
}

.drawer-brand {
    font-size: 1.6rem;
    color: var(--c-accent-bright);
    letter-spacing: -0.06em;
    margin: 0.5rem 0 1.5rem;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.drawer-link {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.35;
    color: var(--c-text-ghost);
    transition: color 0.3s ease, transform 0.3s ease;
}

.drawer-link:hover {
    color: var(--c-accent-hover);
    transform: translateX(4px);
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.2rem;
}

.drawer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.soc-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.soc-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.soc-link:hover {
    background: rgba(187, 34, 21, 0.25);
    border-color: var(--c-accent-bright);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(187, 34, 21, 0.3);
}

.soc-link:hover svg {
    transform: scale(1.12);
}

.drawer-cta-btn {
    background: #FFFFFF;
    color: #000000;
    border-radius: 100px;
    padding: 0.8rem 1.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.drawer-cta-btn:hover {
    background-color: var(--c-accent-red);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==========================================================================
   1. HERO SECTION (ANISH SIGNATURE LOOK)
   ========================================================================== */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    background-color: var(--c-bg-black);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 3s ease-out;
}

.hero-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.85) 0%,
            rgba(10, 10, 10, 0.35) 3%,
            rgba(10, 10, 10, 0.15) 51%);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 4vw, 3.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-left-block {
    max-width: 935px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-role-label {
    color: var(--c-accent-soft);
    font-size: clamp(0.95rem, 1.4vw, 1.25rem);
    letter-spacing: -0.02em;
    font-weight: 500;
}

.hero-main-title {
    font-size: clamp(2.8rem, 6.2vw, 5.2rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
    color: var(--c-text-white);
    font-weight: 400;
}

.hero-official-designation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.hero-official-designation strong {
    color: #FFFFFF;
}

.hero-official-designation .sep {
    opacity: 0.3;
}

.hero-right-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
    text-align: right;
}

.hero-vnav-link {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.3;
    color: var(--c-text-ghost);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-vnav-link:hover {
    color: var(--c-accent-hover);
    transform: translateX(-8px);
}

/* ==========================================================================
   2. ABOUT / STATEMENT & STATS BAR (#F2EFE9 PARCHMENT)
   ========================================================================== */
.about-stats-section {
    background-color: var(--c-bg-parchment);
    color: var(--c-text-dark);
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 6vw, 6rem);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-accreditations-line {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-top: 0.4rem;
    max-width: 865px;
}

.statement-container {
    max-width: 1250px;
    margin: 0 auto 4rem;
    text-align: left;
}

.main-editorial-statement {
    font-size: clamp(1.4rem, 2.4vw, 2.3rem);
    line-height: 1.35;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: var(--c-text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.editorial-body-p {
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    color: var(--c-text-muted-dark);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: center;
}

.editorial-lead-quote {
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    margin-top: 1.5rem;
}

.link-highlight {
    color: var(--c-accent-red);
    text-decoration: none;
    transition: opacity 0.2s ease;
    padding: 0 0.2rem;
}

.link-highlight:hover {
    text-decoration: underline;
}

.stats-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2.5rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-col {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-number {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--c-text-dark);
}

.stat-label {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--c-text-muted-dark);
    letter-spacing: -0.03em;
    text-align: left;
    max-width: 180px;
    line-height: 1.2;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   3. THE JOURNEY: EXPANDABLE ACCORDION CARDS (ANISH SIGNATURE)
   ========================================================================== */
.journey-section {
    background-color: var(--c-bg-dark-2);
    padding: clamp(5rem, 8vw, 8rem) 0;
    position: relative;
    overflow-x: clip;
}

.lead-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.accordion-cards-container {
    width: 100%;
    max-width: 1580px;
    margin: 3.5rem auto 0;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pinch-zoom;
    scrollbar-width: none;
}

.accordion-cards-container::-webkit-scrollbar {
    display: none;
}

/* Mobile Carousel Navigation Controls */
.carousel-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.c-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.c-nav-btn:hover {
    background: var(--c-accent-red);
    border-color: var(--c-accent-red);
    transform: scale(1.08);
}

.c-dots {
    display: flex;
    gap: 0.5rem;
}

.c-dot {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.4rem 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-space);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.c-dot.active,
.c-dot:hover {
    background: var(--c-accent-red);
    border-color: var(--c-accent-red);
    color: #FFFFFF;
}

.expand-card {
    position: relative;
    height: 540px;
    width: 260px;
    min-width: 260px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(180deg, #222222 0%, #111111 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem 1.8rem;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), flex 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    flex-shrink: 0;
    touch-action: pan-x pinch-zoom;
}

.expand-card.active-card {
    width: 480px;
    min-width: 480px;
    border-color: var(--c-accent-red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.card-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.card-content-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.card-tag {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    color: var(--c-accent-soft);
}

.card-heading {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.card-expanded-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.45s ease, margin-top 0.45s ease;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.expand-card.active-card .card-expanded-body {
    max-height: 250px;
    opacity: 1;
    margin-top: 0.6rem;
}

/* ==========================================================================
   4. PRICE-BASED TRADING RESEARCH SECTION (DARK #121212)
   ========================================================================== */
.trading-feature-section {
    background-color: var(--c-bg-dark-1);
    padding: clamp(5rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trading-split-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.feature-title {
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 1rem 0 1.5rem;
}

.core-quote-callout {
    padding: 1.4rem 1.6rem;
    background: rgba(187, 34, 21, 0.08);
    border-left: 3px solid var(--c-accent-red);
    border-radius: 4px;
    margin-bottom: 1.8rem;
}

.quote-text {
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.quote-author {
    font-size: 0.78rem;
    color: var(--c-accent-bright);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-body-text {
    font-size: 1rem;
    color: var(--c-text-dim-white);
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

/* Collapsible Read More Component */
.read-more-wrapper {
    position: relative;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    overflow: hidden;
}

.read-more-wrapper.collapsed {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.read-more-wrapper.expanded {
    max-height: 1200px;
    opacity: 1;
    margin-top: 0.5rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(187, 34, 21, 0.12);
    color: var(--c-accent-bright);
    border: 1px solid rgba(187, 34, 21, 0.35);
    border-radius: 100px;
    padding: 0.65rem 1.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--c-accent-red);
    border-color: var(--c-accent-red);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(187, 34, 21, 0.35);
}

.read-more-btn .btn-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more-btn.is-expanded .btn-icon {
    transform: rotate(180deg);
}

/* Tech comparison box */
.gradient-tech-box {
    background: var(--gradient-card-dark);
    border-radius: 22px;
    box-shadow: var(--card-shadow-spec);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.tech-box-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: var(--c-accent-soft);
    letter-spacing: 0.1em;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot-indicator {
    width: 8px;
    height: 8px;
    background: var(--c-accent-bright);
    border-radius: 50%;
}

.tech-box-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.active-tech-item {
    background: rgba(187, 34, 21, 0.12);
    border: 1px solid rgba(187, 34, 21, 0.35);
}

.t-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.t-val {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.8);
}

.tech-box-divider {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-accent-bright);
}

.tech-box-footer {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* ==========================================================================
   5. VENTURES & ACADEMY (ANISH CARD GRID WITH RED HOVER)
   ========================================================================== */
.ventures-section {
    background-color: var(--c-bg-dark-1);
    padding: clamp(5rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.anish-card {
    background: var(--gradient-card-dark);
    border-radius: 22px;
    box-shadow: var(--card-shadow-spec);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.anish-card:hover {
    border-color: var(--c-accent-red);
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px var(--c-accent-red), 0 20px 30px rgba(0, 0, 0, 0.6);
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-icon-badge {
    font-family: var(--font-krona);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.arrow-indicator {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
}

.anish-card:hover .arrow-indicator {
    transform: translate(3px, -3px);
    color: var(--c-accent-bright);
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Card Read More Styles */
.card-read-more-wrapper {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.card-read-more-wrapper.collapsed {
    max-height: 0;
    opacity: 0;
}

.card-read-more-wrapper.expanded {
    max-height: 600px;
    opacity: 1;
}

.card-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: none;
    color: var(--c-accent-bright);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.8rem;
    padding: 0.3rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.card-read-more-btn:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.card-read-more-btn .btn-icon {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.card-read-more-btn.is-expanded .btn-icon {
    transform: rotate(180deg);
}

.highlight-anish-card {
    border-color: rgba(187, 34, 21, 0.3);
}

/* ==========================================================================
   6. DOCUMENTED IMPACT (WARM PARCHMENT #F2EFE9)
   ========================================================================== */
.impact-section {
    background-color: var(--c-bg-parchment);
    color: var(--c-text-dark);
    padding: clamp(5rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.currency-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.curr-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.curr-card:hover {
    transform: translateY(-3px);
}

.curr-tag {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--c-text-muted-dark);
    font-weight: 700;
}

.curr-amount {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    color: var(--c-text-dark);
}

.curr-type {
    font-size: 0.84rem;
    color: var(--c-text-muted-dark);
}

.highlight-curr-card {
    background: #FFFDF9;
    border-color: rgba(187, 34, 21, 0.25);
}

.legal-doc-box {
    background: #FFFFFF;
    border-left: 4px solid var(--c-accent-red);
    border-radius: 8px;
    padding: 1.5rem 1.8rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.legal-doc-text {
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--c-text-muted-dark);
}

.manifesto-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
}

.manifesto-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.manifesto-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}

.impact-section .manifesto-card .manifesto-title {
    color: var(--c-text-dark) !important;
}

.impact-section .manifesto-card .manifesto-body {
    color: var(--c-text-muted-dark);
}

/* ==========================================================================
   7. CORE CREED & VALUES (DARK #1A1A1A)
   ========================================================================== */
.values-section {
    background-color: var(--c-bg-dark-2);
    padding: clamp(5rem, 8vw, 8rem) 0;
}

.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1080px;
    margin: 0 auto;
}

.pillar-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pillar-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--c-accent-red);
    transform: translateX(8px);
}

.p-num {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: -0.05em;
}

.p-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.p-content p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.highlight-pillar {
    background: rgba(187, 34, 21, 0.08);
    border-color: rgba(187, 34, 21, 0.3);
}

/* ==========================================================================
   8. CONNECT SECTION (DARK #121212)
   ========================================================================== */
.connect-section {
    background-color: var(--c-bg-black);
    padding: clamp(5rem, 8vw, 8rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.connect-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
}

.connect-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 1rem 0 1.2rem;
}

.connect-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.connect-info-pills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.c-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.c-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-accent-bright);
    font-weight: 600;
}

.c-val {
    font-size: 1rem;
    color: #FFFFFF;
}

.anish-form {
    background: var(--gradient-card-dark);
    border-radius: 22px;
    box-shadow: var(--card-shadow-spec);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.input-field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
}

.input-field input,
.input-field select,
.input-field textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    color: #FFFFFF;
    font-family: var(--font-space);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field select option {
    background-color: #111;
    color: #fff;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    outline: none;
    border-color: var(--c-accent-red);
    box-shadow: 0 0 15px rgba(187, 34, 21, 0.3);
}

.submit-anish-btn {
    background-color: var(--c-accent-red);
    color: #FFFFFF;
    border: none;
    border-radius: 100px;
    padding: 1.1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-anish-btn:hover {
    background-color: var(--c-accent-bright);
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER (ANISH STYLE)
   ========================================================================== */
.anish-footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0 3rem;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-size: 1.8rem;
    color: #FFFFFF;
    letter-spacing: -0.06em;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--c-accent-bright);
}

.footer-legal-notice {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    text-align: justify;
}

.footer-bottom-copy {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE SYSTEM
   ========================================================================== */
.mobile-only {
    display: none;
}

.swipe-hint {
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--c-accent-soft);
    margin-top: 1rem;
    opacity: 0.8;
}

.swipe-arrow {
    animation: swipeRight 1.5s ease-in-out infinite;
}

@keyframes swipeRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@media (max-width: 1024px) {
    .trading-split-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ventures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .currency-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .connect-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hidden-mobile {
        display: none !important;
    }
}

/* Tablet / Tab Screen Only */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-fullscreen {
        height: 79vh;
    }

    .hero-bg {
        background-position: center center;
    }
}

@media (max-width: 767px) {
    .mobile-only {
        display: inline-flex;
    }

    /* Fixed Top Navbar on Mobile */
    .fixed-nav {
        padding: 0.8rem 0;
    }

    .fixed-nav.scrolled {
        padding: 0.7rem 0;
    }

    .brand-logo {
        font-size: 1.45rem;
    }

    .nav-contact-btn {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }

    .menu-circle-btn {
        width: 40px;
        height: 40px;
    }

    .menu-circle-btn svg {
        width: 18px;
        height: 12px;
    }

    /* Full-screen Slide-in Drawer on Mobile */
    .nav-drawer {
        top: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        padding: 1.5rem 1.5rem 2rem;
        justify-content: space-between;
    }

    .drawer-brand {
        font-size: 1.4rem;
        margin: 0.2rem 0 1rem;
    }

    .drawer-link {
        font-size: 1.4rem;
        padding: 0.4rem 0;
    }

    .drawer-cta-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Hero Section on Mobile */
    .hero-fullscreen {
        height: 100vh;
        height: 100svh;
        min-height: 560px;
        padding: 0;
        align-items: flex-end;
    }

    .hero-bg {
        background-position: 68% 20%;
    }

    .hero-dark-overlay {
        background: linear-gradient(to top,
                rgba(10, 10, 10, 0.98) 0%,
                rgba(10, 10, 10, 0.88) 4%,
                rgba(10, 10, 10, 0.4) 7%,
                rgba(10, 10, 10, 0.2) 100%);
    }

    .hero-inner {
        padding: 0 1.2rem 2.8rem;
    }

    .hero-left-block {
        gap: 0.8rem;
    }

    .hero-role-label {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .hero-main-title {
        font-size: clamp(2.3rem, 11vw, 3.4rem);
        line-height: 0.95;
    }

    .hero-official-designation {
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    /* About Section & Stats Grid on Mobile */
    .about-stats-section {
        padding: 4rem 0 3rem;
    }

    .statement-container {
        margin-bottom: 2.5rem;
    }

    .main-editorial-statement {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        line-height: 1.4;
    }

    .stats-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
        padding: 1.5rem 0 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .stat-divider {
        display: none;
    }

    .stat-col {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: rgba(0, 0, 0, 0.035);
        padding: 1.2rem 0.6rem;
        border-radius: 14px;
        gap: 0.4rem;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.78rem;
        text-align: center;
        max-width: none;
        line-height: 1.25;
    }

    /* The Journey Expandable Cards on Mobile */
    .journey-section {
        padding: 4rem 0;
    }

    .accordion-cards-container {
        margin-top: 2rem;
        padding: 0 1.2rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.8rem;
    }

    .expand-card,
    .expand-card.active-card {
        width: 82vw;
        min-width: 82vw;
        height: 440px;
        padding: 1.8rem 1.4rem;
        border-radius: 20px;
        scroll-snap-align: center;
    }

    .card-heading {
        font-size: 1.25rem;
    }

    .card-expanded-body {
        max-height: 220px;
        opacity: 1;
        margin-top: 0.4rem;
        font-size: 0.84rem;
    }

    /* Price-Based Trading on Mobile */
    .trading-feature-section {
        padding: 4rem 0;
    }

    .feature-title {
        font-size: clamp(2rem, 8.5vw, 2.8rem);
    }

    .gradient-tech-box {
        padding: 1.5rem 1.2rem;
        border-radius: 18px;
    }

    /* Ventures Grid on Mobile */
    .ventures-section {
        padding: 4rem 0;
    }

    .ventures-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .anish-card {
        padding: 1.8rem 1.4rem;
        border-radius: 18px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    /* Documented Impact on Mobile */
    .impact-section {
        padding: 4rem 0;
    }

    .currency-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .curr-card {
        padding: 1.2rem 1rem;
        border-radius: 14px;
    }

    .curr-tag {
        font-size: 0.65rem;
    }

    .curr-amount {
        font-size: 1.35rem;
    }

    .curr-type {
        font-size: 0.72rem;
    }

    .legal-doc-box {
        padding: 1.2rem 1.2rem;
        margin-bottom: 1.8rem;
    }

    .legal-doc-text {
        font-size: 0.86rem;
    }

    .manifesto-card {
        padding: 1.6rem 1.2rem;
        border-radius: 16px;
    }

    .manifesto-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .manifesto-body {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    /* Values Pillars on Mobile */
    .values-section {
        padding: 4rem 0;
    }

    .pillar-row {
        flex-direction: row;
        align-items: flex-start;
        padding: 1.2rem 1.2rem;
        gap: 1rem;
        border-radius: 14px;
    }

    .p-num {
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .p-content h4 {
        font-size: 1.05rem;
    }

    .p-content p {
        font-size: 0.84rem;
    }

    /* Connect Section on Mobile */
    .connect-section {
        padding: 4rem 0;
    }

    .connect-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .anish-form {
        padding: 1.6rem 1.2rem;
        border-radius: 18px;
    }

    .input-field label {
        font-size: 0.72rem;
    }

    .input-field input,
    .input-field select,
    .input-field textarea {
        font-size: 16px;
        /* Prevents auto-zoom in Safari iOS */
        padding: 0.8rem 0.9rem;
    }

    .submit-anish-btn {
        padding: 0.95rem;
        font-size: 0.95rem;
    }

    /* Footer on Mobile */
    .anish-footer {
        padding: 3rem 0 2rem;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .footer-links {
        gap: 1rem 1.4rem;
    }

    .footer-socials {
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .currency-cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-main-title {
        font-size: 2rem;
    }
}