/* ============================================
   RAM SUBRAMANIAM – PREMIUM DESIGN SYSTEM
   Luxury × Technology × Intelligence
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

/* ── CSS Variables ── */
:root {
    --bg-primary: #060a14;
    --bg-secondary: #0b1121;
    --bg-tertiary: #111a2e;
    --bg-card: rgba(15, 25, 50, 0.6);
    --bg-glass: rgba(15, 25, 50, 0.4);
    --text-primary: #f0f2f8;
    --text-secondary: #a0aec0;
    --text-muted: #6b7a96;
    --accent-gold: #c9a84c;
    --accent-gold-light: #e8d48b;
    --accent-emerald: #34d399;
    --accent-blue: #3b82f6;
    --accent-cyan: #22d3ee;
    --gradient-gold: linear-gradient(135deg, #c9a84c, #e8d48b, #c9a84c);
    --gradient-hero: linear-gradient(135deg, #060a14 0%, #0b1121 40%, #111a2e 100%);
    --gradient-accent: linear-gradient(135deg, #c9a84c 0%, #34d399 100%);
    --glass-border: rgba(201, 168, 76, 0.15);
    --glass-border-hover: rgba(201, 168, 76, 0.35);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(201, 168, 76, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; cursor: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: none; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; cursor: none; }

::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--text-primary);
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-emerald));
    border-radius: 3px;
}

/* ── Custom Cursor ── */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s var(--transition-smooth);
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.2s var(--transition-smooth);
}

.cursor-ring.hovering {
    transform: scale(1.5);
    border-color: var(--accent-gold);
    background: rgba(201, 168, 76, 0.08);
}

/* ── Page Transition Overlay ── */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 100000;
    pointer-events: none;
}
.page-transition .pt-layer {
    position: absolute;
    inset: 0;
    background: var(--bg-primary);
    transform: scaleY(0);
    transform-origin: bottom;
}

/* ── Loader ── */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-gold);
    border-radius: 2px;
    animation: loaderFill 1.2s var(--transition-smooth) forwards;
}
@keyframes loaderFill {
    to { width: 100%; }
}

/* ── PASSCODE GATE ── */
.gate-container {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    overflow: hidden;
}

.gate-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFloat 20s linear infinite;
}
@keyframes gridFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.gate-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.gate-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleDrift 8s infinite;
}
@keyframes particleDrift {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.gate-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem;
}

.gate-vault-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2.5rem;
    position: relative;
}
.gate-vault-icon svg {
    width: 100%;
    height: 100%;
}
.vault-ring {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: vaultDraw 2s var(--transition-smooth) forwards;
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
}
@keyframes vaultDraw {
    to { stroke-dashoffset: 0; }
}
.vault-inner {
    fill: none;
    stroke: rgba(201, 168, 76, 0.3);
    stroke-width: 1;
}
.vault-dot {
    fill: var(--accent-gold);
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.5));
}

.gate-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s var(--transition-smooth) forwards;
}

.gate-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.7s var(--transition-smooth) forwards;
}

.gate-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.9s var(--transition-smooth) forwards;
}

.gate-input-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s var(--transition-smooth) forwards;
}

.gate-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(15, 25, 50, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    letter-spacing: 4px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gate-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.gate-input.error {
    border-color: #ef4444;
    animation: inputShake 0.5s ease;
}

@keyframes inputShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-12px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-8px); }
    80% { transform: translateX(6px); }
}

.gate-enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent-gold) !important;
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s 1.3s var(--transition-smooth) forwards;
}
.gate-enter-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.gate-error-msg {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gate-error-msg.visible {
    opacity: 1;
}

.gate-container.unlocked {
    animation: gateDissolve 1.2s var(--transition-smooth) forwards;
}
@keyframes gateDissolve {
    0% { opacity: 1; filter: blur(0); }
    60% { opacity: 0.5; filter: blur(8px); }
    100% { opacity: 0; filter: blur(20px); visibility: hidden; pointer-events: none; }
}

/* ── NAVIGATION ── */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
}

.nav-main.scrolled {
    background: rgba(6, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 3rem;
    border-bottom: 1px solid var(--glass-border);
}

.nav-brand {
    display: flex;
    flex-direction: column;
}
.nav-brand-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-brand-title {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.4s var(--transition-smooth);
}
.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO SECTION ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(52, 211, 153, 0.05) 0%, transparent 50%),
                var(--gradient-hero);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 620px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}
.hero-tag-line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-heading .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-frame {
    position: relative;
    width: 420px;
    height: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    opacity: 0;
    transform: translateX(40px);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 10, 20, 0.8) 100%);
    pointer-events: none;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.3), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.hero-float-card {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.4rem;
    z-index: 3;
}

.hero-float-card.card-1 {
    bottom: 60px;
    left: -60px;
}
.hero-float-card.card-2 {
    top: 80px;
    right: -40px;
}

.hero-float-card .card-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
}
.hero-float-card .card-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-primary);
}
.btn-primary:hover {
    background: var(--accent-gold-light);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}
.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ── SECTIONS ── */
.section {
    padding: 7rem 4rem;
    position: relative;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}
.section-tag-line {
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 650px;
}

/* ── GLASS CARDS ── */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* ── METRICS / COUNTERS ── */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}
.metric-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── CONTENT GRID ── */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-grid-asymmetric {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

/* ── IMAGE CONTAINERS ── */
.image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 10, 20, 0.85) 100%);
    pointer-events: none;
}

.image-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 2;
}

.image-caption h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.image-caption p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── TIMELINE ── */
.timeline {
    position: relative;
    padding-left: 3rem;
}

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

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    opacity: 0;
    transform: translateX(-20px);
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background: var(--bg-primary);
    transform: translateX(-6px);
}

.timeline-date {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── BLOCKQUOTE ── */
.quote-block {
    position: relative;
    padding: 3rem 3rem 3rem 4rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--accent-gold);
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(201, 168, 76, 0.2);
    line-height: 1;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-author {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* ── INFOGRAPHIC BARS ── */
.infographic-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-bar-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.info-bar-value {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.info-bar-track {
    width: 100%;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
}

.info-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--gradient-gold);
    width: 0;
    transition: width 1.5s var(--transition-smooth);
}

/* ── FEATURED CARD ── */
.featured-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.featured-card-image {
    min-height: 400px;
    position: relative;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.featured-card-content {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── CONTACT FORM ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-textarea {
    padding: 1rem 1.25rem;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ── FOOTER ── */
.footer {
    padding: 4rem 4rem 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(6, 10, 20, 0.9);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.footer-brand {
    max-width: 350px;
}
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}
.footer-brand-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-nav {
    display: flex;
    gap: 3rem;
}

.footer-nav-column h4 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-nav-column a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}
.footer-nav-column a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.footer-social-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-credits {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-credits a {
    color: var(--accent-gold);
    transition: color 0.3s ease;
}
.footer-credits a:hover {
    color: var(--accent-gold-light);
}

.footer-contact-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}
.footer-contact-info a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.footer-contact-info a:hover {
    color: var(--accent-gold);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ── PARTICLE CANVAS BG ── */
.bg-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.12;
    animation: orbFloat 15s infinite ease-in-out;
}
.floating-orb.orb-gold {
    background: var(--accent-gold);
}
.floating-orb.orb-emerald {
    background: var(--accent-emerald);
}
.floating-orb.orb-blue {
    background: var(--accent-blue);
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ── PAGE-SPECIFIC: ABOUT ── */
.about-hero-image {
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* ── INSIGHTS / MEDIA CARDS ── */
.insight-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.insight-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.insight-card-image {
    height: 220px;
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}
.insight-card:hover .insight-card-image img {
    transform: scale(1.08);
}

.insight-card-body {
    padding: 1.5rem;
}

.insight-tag {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.insight-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.insight-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.insight-link {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s ease;
}
.insight-link:hover {
    gap: 0.8rem;
}

/* ── CONTACT INFO CARDS ── */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    border-color: var(--glass-border-hover);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.contact-detail-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ── DATA VIS / NETWORK ── */
.data-node {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.data-node:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}
.data-node-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* ── DIVIDER ── */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 0;
}

/* ── fadeInUp Keyframe ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════ */

@media (max-width: 1200px) {
    .hero-content { gap: 3rem; padding: 0 3rem; }
    .hero-image-frame { width: 360px; height: 450px; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(6, 10, 20, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 9998;
    }
    .nav-links.mobile-open .nav-link {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { max-width: 100%; margin: 0 auto; }
    .hero-description { margin: 0 auto 2rem; }
    .hero-cta-group { justify-content: center; }
    .hero-image-wrapper { justify-content: center; margin-top: 2rem; }
    .hero-image-frame { width: 340px; height: 420px; }
    .hero-float-card.card-1 { left: 0; bottom: 40px; }
    .hero-float-card.card-2 { right: 0; }
    .content-grid-2,
    .content-grid-asymmetric { grid-template-columns: 1fr; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-card-content { padding: 2rem; }
    .footer-top { flex-direction: column; }
    .footer-nav { gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-contact-info { text-align: center; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 1.5rem; }
    .nav-main { padding: 1rem 1.5rem; }
    .nav-main.scrolled { padding: 0.7rem 1.5rem; }
    .hero { min-height: auto; padding: 8rem 0 4rem; }
    .hero-content { padding: 0 1.5rem; }
    .hero-heading { font-size: 2.2rem; }
    .hero-image-frame { width: 280px; height: 350px; }
    .hero-float-card { display: none; }
    .metrics-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .metric-value { font-size: 2rem; }
    .content-grid { grid-template-columns: 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer { padding: 3rem 1.5rem 1.5rem; }
    .footer-nav { flex-direction: column; gap: 1.5rem; }
    .section-title { font-size: 1.8rem; }
    .quote-block { padding: 2rem; }
    .quote-text { font-size: 1.05rem; }
    .cursor-dot, .cursor-ring { display: none; }
    body { cursor: auto; }
    a, button, input, textarea, select { cursor: auto; }
}

@media (max-width: 480px) {
    .hero-heading { font-size: 1.8rem; }
    .hero-description { font-size: 0.95rem; }
    .section-title { font-size: 1.5rem; }
    .hero-image-frame { width: 240px; height: 300px; }
    .metrics-grid { grid-template-columns: 1fr; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.7rem; }
    .gate-title { font-size: 1.5rem; }
    .gate-input { letter-spacing: 2px; padding: 0.8rem 1rem; }
}
