/* ============================================
   ILLUMINA IT v3 — THE LIVING CODEX
   Animated Ancient × Modern Hero
   Extends styles-v2.css
   ============================================ */
@import url('./styles-v2.css');

/* =========================== HERO V3 — ANIMATED SPECTACLE =========================== */
.hero-v3 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(13, 12, 20, 1) 0%, var(--deep-void) 100%);
}

.hero-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 65% 45%, rgba(212, 168, 83, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 30% 50% at 25% 70%, rgba(0, 229, 255, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 20%, rgba(156, 39, 255, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Canvas layers */
.hero-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

#hero-particles-canvas,
#sacred-geometry-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#sacred-geometry-canvas {
    opacity: 0.12;
}

/* Hero grid layout */
.hero-v3 .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* =========================== LEFT CONTENT =========================== */
.hero-v3-content {
    position: relative;
}

.hero-era-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    border: 1px solid rgba(212, 168, 83, 0.25);
    background: rgba(212, 168, 83, 0.04);
    font-family: var(--font-code);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    animation: chipPulse 4s ease-in-out infinite;
}

.hero-era-chip .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rune-green);
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes chipPulse {

    0%,
    100% {
        border-color: rgba(212, 168, 83, 0.25);
    }

    50% {
        border-color: rgba(0, 229, 255, 0.3);
    }
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px rgba(57, 255, 143, 0.5);
    }

    50% {
        opacity: 0.3;
        box-shadow: none;
    }
}

.hero-v3 h1 {
    font-family: var(--font-ancient);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.hero-v3 h1 .line {
    display: block;
}

.hero-v3 h1 .sub-line {
    display: block;
    font-size: 0.36em;
    font-weight: 400;
    margin-top: 12px;
}

.hero-v3-tagline {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-mid);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 520px;
}

/* Feature chips row */
.hero-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border-gold);
    font-family: var(--font-code);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: var(--transition);
}

.feature-chip svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.feature-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 83, 0.05);
}

.hero-v3-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

/* Stats bar */
.hero-v3-stats {
    display: flex;
    gap: 0;
    border: 1px solid var(--border-gold);
    overflow: hidden;
}

.hero-stat-box {
    flex: 1;
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid var(--border-gold);
    position: relative;
    transition: var(--transition);
}

.hero-stat-box:last-child {
    border-right: none;
}

.hero-stat-box:hover {
    background: rgba(212, 168, 83, 0.04);
}

.hero-stat-box .stat-num {
    font-family: var(--font-ancient);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.hero-stat-box .stat-label {
    font-family: var(--font-code);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

/* =========================== RIGHT — ANIMATED VISUAL =========================== */
.hero-v3-visual {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sacred geometry rings */
.geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 83, 0.08);
}

.geo-ring-1 {
    width: 500px;
    height: 500px;
    animation: ringRotate 60s linear infinite;
}

.geo-ring-2 {
    width: 400px;
    height: 400px;
    animation: ringRotate 45s linear infinite reverse;
    border-style: dashed;
    border-color: rgba(0, 229, 255, 0.06);
}

.geo-ring-3 {
    width: 300px;
    height: 300px;
    animation: ringRotate 30s linear infinite;
    border-style: dotted;
}

.geo-ring-4 {
    width: 200px;
    height: 200px;
    animation: ringRotate 20s linear infinite reverse;
    border-color: rgba(156, 39, 255, 0.08);
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Ring orbital dots */
.geo-ring::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(212, 168, 83, 0.5);
}

.geo-ring-2::after {
    background: var(--glyph-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    width: 4px;
    height: 4px;
    top: -2px;
}

.geo-ring-4::after {
    background: var(--glyph-purple);
    box-shadow: 0 0 10px rgba(156, 39, 255, 0.5);
}

/* Animated Pyramid */
.pyramid-container {
    position: absolute;
    width: 260px;
    height: 260px;
    perspective: 800px;
}

.pyramid-3d {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: pyramidSpin 25s linear infinite;
}

@keyframes pyramidSpin {
    0% {
        transform: rotateY(0deg) rotateX(-15deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(-15deg);
    }
}

.pyramid-face {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 130px solid transparent;
    border-right: 130px solid transparent;
    border-bottom: 220px solid rgba(212, 168, 83, 0.04);
    filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.15));
    transform-origin: bottom center;
}

.pyramid-face::after {
    content: '';
    position: absolute;
    top: 40px;
    left: -100px;
    width: 200px;
    height: 180px;
    border-left: 2px solid rgba(212, 168, 83, 0.2);
    border-right: 2px solid rgba(212, 168, 83, 0.2);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pyramid-face:nth-child(1) {
    transform: rotateY(0deg) translateZ(75px) rotateX(15deg);
}

.pyramid-face:nth-child(2) {
    transform: rotateY(90deg) translateZ(75px) rotateX(15deg);
}

.pyramid-face:nth-child(3) {
    transform: rotateY(180deg) translateZ(75px) rotateX(15deg);
}

.pyramid-face:nth-child(4) {
    transform: rotateY(270deg) translateZ(75px) rotateX(15deg);
}

/* Eye of Horus in center */
.eye-container {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 10;
    animation: eyeFloat 5s ease-in-out infinite;
}

@keyframes eyeFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

.eye-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(212, 168, 83, 0.4));
}

.eye-pulse-ring {
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 50%;
    animation: eyePulseRing 3s ease-out infinite;
}

.eye-pulse-ring:nth-child(2) {
    animation-delay: 1s;
}

.eye-pulse-ring:nth-child(3) {
    animation-delay: 2s;
}

@keyframes eyePulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Floating rune orbits */
.floating-rune {
    position: absolute;
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.4;
    text-shadow: 0 0 8px rgba(212, 168, 83, 0.3);
    animation: runeOrbit linear infinite;
}

@keyframes runeOrbit {
    0% {
        transform: rotate(0deg) translateX(var(--orbit-r)) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(var(--orbit-r)) rotate(-360deg);
    }
}

/* Circuit lines radiating */
.circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.3), transparent);
    transform-origin: left center;
    animation: circuitPulse 3s ease-in-out infinite;
}

@keyframes circuitPulse {

    0%,
    100% {
        opacity: 0.15;
        width: 80px;
    }

    50% {
        opacity: 0.5;
        width: 140px;
    }
}

/* Floating tech tags */
.float-tag {
    position: absolute;
    padding: 6px 14px;
    border: 1px solid var(--border-gold);
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(8px);
    font-family: var(--font-code);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-mid);
    animation: tagFloat 6s ease-in-out infinite;
    white-space: nowrap;
    z-index: 8;
}

.float-tag::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
}

.float-tag.gold::before {
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
}

.float-tag.cyan::before {
    background: var(--glyph-cyan);
    box-shadow: 0 0 6px var(--glyph-cyan);
}

.float-tag.purple::before {
    background: var(--glyph-purple);
    box-shadow: 0 0 6px var(--glyph-purple);
}

@keyframes tagFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Stone texture overlay on visual */
.visual-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, var(--deep-void) 100%);
    pointer-events: none;
    z-index: 6;
}

/* =========================== ANIMATED SECTION IMAGES =========================== */
/* About section: animated border glow */
.origin-image-wrapper {
    position: relative;
    overflow: hidden;
}

.origin-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, var(--gold), var(--glyph-cyan), var(--glyph-purple), var(--gold));
    z-index: -1;
    animation: borderSpin 8s linear infinite;
    opacity: 0.4;
}

@keyframes borderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.origin-image-wrapper img {
    position: relative;
    z-index: 1;
}

/* Parallax shimmer on images */
.shimmer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(212, 168, 83, 0.08) 45%, transparent 50%);
    background-size: 300% 100%;
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

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

    100% {
        background-position: -200% 0;
    }
}

/* =========================== RESPONSIVE OVERRIDES =========================== */

/* ——— TABLET (1024px) ——— */
@media (max-width: 1024px) {
    .hero-v3 .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-v3-visual {
        height: 360px;
        margin-top: 30px;
    }

    .hero-v3-tagline {
        margin: 0 auto 24px;
    }

    .hero-v3-actions {
        justify-content: center;
    }

    .hero-v3-stats {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-feature-chips {
        justify-content: center;
    }

    .geo-ring-1 {
        width: 340px;
        height: 340px;
    }

    .geo-ring-2 {
        width: 270px;
        height: 270px;
    }

    .geo-ring-3 {
        width: 200px;
        height: 200px;
    }

    .geo-ring-4 {
        width: 140px;
        height: 140px;
    }

    .pyramid-container {
        width: 180px;
        height: 180px;
    }

    .float-tag {
        display: none;
    }
}

/* ——— MOBILE (768px) ——— */
@media (max-width: 768px) {

    /* ---- NAVBAR MOBILE FIX ---- */
    .navbar-v2 {
        padding: 10px 0;
    }

    .navbar-v2.scrolled {
        padding: 8px 0;
    }

    .nav-brand-v2 {
        gap: 10px;
    }

    .nav-brand-v2 .brand-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .nav-brand-v2 .brand-name {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hamburger-v2 {
        display: flex !important;
        z-index: 9992;
    }

    .nav-menu-v2 {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #050508 !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 9991;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .nav-menu-v2.open {
        transform: translateX(0);
    }

    .nav-menu-v2 a {
        font-size: 1rem;
        padding: 14px 28px;
    }

    /* ---- HERO V3 MOBILE ---- */
    .hero-v3 {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-v3 h1 {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        letter-spacing: 1px;
    }

    .hero-v3 h1 .sub-line {
        font-size: 0.42em;
        margin-top: 8px;
    }

    .hero-era-chip {
        font-size: 0.55rem;
        letter-spacing: 3px;
        padding: 5px 12px;
        margin-bottom: 18px;
    }

    .hero-v3-tagline {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    /* Feature chips: compact layout */
    .hero-feature-chips {
        gap: 6px;
        margin-bottom: 20px;
    }

    .feature-chip {
        padding: 5px 10px;
        font-size: 0.52rem;
        letter-spacing: 1px;
        gap: 5px;
    }

    .feature-chip svg {
        width: 11px;
        height: 11px;
    }

    /* Buttons */
    .hero-v3-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-v3-actions .btn-ancient,
    .hero-v3-actions .btn-rune {
        text-align: center;
        justify-content: center;
        font-size: 0.75rem;
        padding: 14px 20px;
    }

    /* Stats: 2×2 grid */
    .hero-v3-stats {
        flex-wrap: wrap;
    }

    .hero-stat-box {
        flex: 1 1 48%;
        padding: 14px 10px;
        border-bottom: 1px solid var(--border-gold);
    }

    .hero-stat-box .stat-num {
        font-size: 1.4rem;
    }

    .hero-stat-box .stat-label {
        font-size: 0.5rem;
        letter-spacing: 2px;
    }

    /* Animated visual: compact */
    .hero-v3-visual {
        height: 280px;
        margin-top: 28px;
    }

    .geo-ring-1 {
        width: 260px;
        height: 260px;
    }

    .geo-ring-2 {
        width: 200px;
        height: 200px;
    }

    .geo-ring-3 {
        width: 150px;
        height: 150px;
    }

    .geo-ring-4 {
        width: 100px;
        height: 100px;
    }

    .pyramid-container {
        width: 130px;
        height: 130px;
    }

    .pyramid-face {
        border-left-width: 65px;
        border-right-width: 65px;
        border-bottom-width: 110px;
    }

    .pyramid-face::after {
        top: 20px;
        left: -50px;
        width: 100px;
        height: 90px;
    }

    .pyramid-face:nth-child(1) {
        transform: rotateY(0deg) translateZ(38px) rotateX(15deg);
    }

    .pyramid-face:nth-child(2) {
        transform: rotateY(90deg) translateZ(38px) rotateX(15deg);
    }

    .pyramid-face:nth-child(3) {
        transform: rotateY(180deg) translateZ(38px) rotateX(15deg);
    }

    .pyramid-face:nth-child(4) {
        transform: rotateY(270deg) translateZ(38px) rotateX(15deg);
    }

    .eye-container {
        width: 70px;
        height: 70px;
    }

    .floating-rune {
        font-size: 0.9rem;
    }

    .circuit-line {
        display: none;
    }

    /* ---- SECTION SPACING ---- */
    .section {
        padding: 60px 0;
    }

    .section-heading {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .section-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 4px;
    }

    .section-divider {
        padding: 20px 0;
        font-size: 0.85rem;
    }

    /* ---- SERVICE CARDS ---- */
    .tablets-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tablet-card {
        padding: 28px 20px;
    }

    .tablet-card h3 {
        font-size: 1.1rem;
    }

    .tablet-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    /* ---- WISDOM PILLARS ---- */
    .wisdom-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .wisdom-pillar {
        padding: 24px 16px;
    }

    .wisdom-pillar h3 {
        font-size: 0.95rem;
    }

    .wisdom-pillar p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* ---- ARCHIVES ---- */
    .archives-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .archive-card {
        aspect-ratio: 16/9;
    }

    .archive-bg {
        font-size: 2.5rem;
    }

    /* Always show overlay on mobile (no hover on touch) */
    .archive-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(5, 5, 8, 0.9) 0%, rgba(5, 5, 8, 0.3) 60%, transparent 100%);
        padding: 20px;
    }

    .archive-overlay h3 {
        font-size: 1rem;
    }

    .archive-overlay p {
        font-size: 0.8rem;
    }

    .archive-filters {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }

    .archive-filter {
        font-size: 0.6rem;
        padding: 6px 12px;
    }

    /* ---- PROCESS / RITUAL ---- */
    .ritual-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ritual-steps::before {
        display: none;
    }

    .ritual-step h3 {
        font-size: 1rem;
    }

    .ritual-step p {
        font-size: 0.85rem;
    }

    /* ---- PRICING ---- */
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offering-card {
        padding: 30px 20px;
    }

    .offering-price {
        font-size: 2rem;
    }

    .offering-features li {
        font-size: 0.82rem;
    }

    /* ---- COUNCIL / TEAM ---- */
    .council-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .elder-card {
        padding: 24px 14px;
    }

    .elder-avatar {
        width: 56px;
        height: 56px;
        font-size: 0.9rem;
    }

    /* ---- TESTIMONIALS ---- */
    .scrolls-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .scroll-text {
        font-size: 0.9rem;
    }

    /* ---- CTA ---- */
    .summoning-box {
        padding: 40px 20px;
    }

    .summoning-box h2 {
        font-size: 1.5rem;
    }

    .summoning-actions {
        flex-direction: column;
        gap: 10px;
    }

    .summoning-actions .btn-ancient,
    .summoning-actions .btn-rune {
        text-align: center;
        justify-content: center;
    }

    /* ---- CONTACT ---- */
    .oracle-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .oracle-item {
        padding: 18px 16px;
    }

    .oracle-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .form-row-v2 {
        grid-template-columns: 1fr;
    }

    /* ---- ORIGIN / ABOUT ---- */
    .origin-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .origin-image {
        max-height: 300px;
        object-fit: cover;
    }

    .origin-floating-artifact {
        right: 10px;
        bottom: -15px;
        padding: 14px 18px;
    }

    .origin-floating-artifact .big-num {
        font-size: 1.4rem;
    }

    .origin-pillars {
        gap: 10px;
    }

    .pillar-item {
        font-size: 0.82rem;
    }

    /* ---- FOOTER ---- */
    .footer-v2-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-v2-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 0.7rem;
    }

    /* ---- GLYPH BAR ---- */
    .glyph-bar {
        padding: 14px 0;
    }

    .glyph-item {
        font-size: 0.7rem;
    }
}

/* ——— EXTRA SMALL (480px) ——— */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-v3 h1 {
        font-size: clamp(1.5rem, 9vw, 2.2rem);
    }

    .hero-v3 h1 .sub-line {
        font-size: 0.5em;
    }

    .hero-v3-tagline {
        font-size: 0.85rem;
    }

    /* Feature chips: scrollable row */
    .hero-feature-chips {
        gap: 5px;
    }

    .feature-chip {
        padding: 4px 8px;
        font-size: 0.48rem;
        letter-spacing: 1px;
    }

    /* Animated visual: even more compact */
    .hero-v3-visual {
        height: 220px;
        margin-top: 20px;
    }

    .geo-ring-1 {
        width: 200px;
        height: 200px;
    }

    .geo-ring-2 {
        width: 155px;
        height: 155px;
    }

    .geo-ring-3 {
        width: 115px;
        height: 115px;
    }

    .geo-ring-4 {
        width: 80px;
        height: 80px;
    }

    .pyramid-container {
        width: 100px;
        height: 100px;
    }

    .pyramid-face {
        border-left-width: 50px;
        border-right-width: 50px;
        border-bottom-width: 85px;
    }

    .pyramid-face::after {
        display: none;
    }

    .pyramid-face:nth-child(1) {
        transform: rotateY(0deg) translateZ(28px) rotateX(15deg);
    }

    .pyramid-face:nth-child(2) {
        transform: rotateY(90deg) translateZ(28px) rotateX(15deg);
    }

    .pyramid-face:nth-child(3) {
        transform: rotateY(180deg) translateZ(28px) rotateX(15deg);
    }

    .pyramid-face:nth-child(4) {
        transform: rotateY(270deg) translateZ(28px) rotateX(15deg);
    }

    .eye-container {
        width: 55px;
        height: 55px;
    }

    .floating-rune {
        display: none;
    }

    .section {
        padding: 48px 0;
    }

    .section-heading {
        font-size: clamp(1.2rem, 6vw, 1.7rem);
    }

    /* Wisdom pillars: single col on tiny */
    .wisdom-grid {
        grid-template-columns: 1fr;
    }

    /* Council: single col on tiny */
    .council-grid {
        grid-template-columns: 1fr;
    }

    /* Stats compact */
    .hero-stat-box {
        padding: 10px 8px;
    }

    .hero-stat-box .stat-num {
        font-size: 1.2rem;
    }

    .hero-stat-box .stat-label {
        font-size: 0.45rem;
        letter-spacing: 1.5px;
    }
}

.nav-brand-v2 .brand-icon {
    width: 50px;

    align-items: self-end;

    font-size: 2.7rem;


    color: #c3c3c3;
    background: none;
}