/* =============================================================
   HERO SECTION — AWWWARDS ASYMMETRIC SPLIT LAYOUT
============================================================= */

/* ---- Marquee strip ---- */
.hero-marquee-strip {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    background: rgba(255, 94, 0, 0.06);
    /* Soft gradient bottom edge instead of sharp border line */
    box-shadow: 0 1px 0 0 rgba(255, 94, 0, 0.08),
                inset 0 -1px 8px rgba(255, 94, 0, 0.04);
    overflow: hidden;
    padding: 0.6rem 0;
    z-index: 2;
}
.marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--text-muted);
}
.marquee-dot {
    color: var(--brand-primary) !important;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---- Hero section base ---- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    position: relative;
    /* Nav is a sidebar (left), not top bar — only need space for marquee strip (~36px) */
    padding-top: 36px;
    overflow: hidden;
}

/* ---- Split layout ---- */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

/* ============================================================
   HERO LEFT — Text
============================================================ */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    display: block;
}

/* Status badge */
.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 94, 0, 0.08);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    margin-bottom: 1.5rem;
    width: fit-content;
}
.status-dot {
    width: 8px; height: 8px;
    background: #00e676;
    border-radius: 50%;
    animation: statusPulse 2s ease infinite;
}
@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
    50%       { box-shadow: 0 0 0 5px rgba(0, 230, 118, 0); }
}
.status-text {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Hero display name */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero-title-line {
    display: block;
    color: var(--text-main);
}
.hero-title-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--brand-primary);
}

/* Cormorant italic tagline */
.hero-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--text-accent);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

/* ---- Stat counters ---- */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
/* Number + suffix on same line */
.stat-value {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1;
    color: var(--text-main);
}
.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--brand-primary);
    line-height: 1;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* ---- Social Links ---- */
.hero-bottom-bar { width: 100%; }
.social-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.social-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--brand-gradient);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-link:hover { color: var(--text-main); }
.social-link:hover::after { width: 100%; }

.highlight-link {
    color: var(--brand-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    background: var(--bg-dark);
    box-shadow: var(--neu-shadow);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.highlight-link::after { display: none; }
.highlight-link:hover {
    box-shadow: var(--neu-shadow-inset);
    border-color: rgba(255, 94, 0, 0.3);
    color: var(--brand-secondary);
}

/* ============================================================
   HERO RIGHT — Image Frame
============================================================ */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
}

/* (E) Offset decorative frame #1 — orange */
.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    top: 14px;
    right: -14px;
    border: 1.5px solid rgba(255, 94, 0, 0.38);
    border-radius: 28px;
    z-index: 0;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

/* (E) Offset decorative frame #2 — gold, further out */
.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    top: 24px;
    right: -24px;
    border: 1px solid rgba(255, 184, 0, 0.13);
    border-radius: 34px;
    z-index: 0;
    pointer-events: none;
}

.hero-image-frame:hover::before {
    border-color: rgba(255, 94, 0, 0.6);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    border: none;
    z-index: 1;

    /* (B) Elliptical gradient fade — photo melts into the dark bg */
    -webkit-mask-image: radial-gradient(
        ellipse 94% 90% at 50% 38%,
        black 38%,
        rgba(0,0,0,0.75) 62%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse 94% 90% at 50% 38%,
        black 38%,
        rgba(0,0,0,0.75) 62%,
        transparent 100%
    );
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(30%) contrast(1.08);
    transition: filter 0.6s ease;
    display: block;
}
.hero-image-wrapper:hover .hero-photo {
    filter: grayscale(0%) contrast(1.05);
}

/* Gradient glow blob */
.hero-glow {
    position: absolute;
    bottom: -20%; right: -20%;
    width: 70%; height: 70%;
    background: var(--brand-gradient);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    z-index: 0;
    animation: pulseGlow 5s infinite alternate ease-in-out;
    pointer-events: none;
}
@keyframes pulseGlow {
    0%   { opacity: 0.15; transform: scale(1); }
    100% { opacity: 0.3;  transform: scale(1.12); }
}

/* Floating info cards */
.hero-float-card {
    position: absolute;
    background: rgba(10, 10, 14, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 3;
    min-width: 160px;
}
.top-card  { top: 12%;  left: -30%; }
.bottom-card { bottom: 12%; right: -22%; }
.float-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-primary);
}
.float-value {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-main);
    text-align: center;
}

/* ---- Scroll Down indicator ---- */
.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
}
.scroll-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--brand-primary), transparent);
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1);   opacity: 0.6; }
    50%       { transform: scaleY(1.3); opacity: 1;   }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 1rem;
        text-align: center;
    }
    .hero-right { order: -1; max-width: 340px; margin: 0 auto; }
    .hero-image-frame { max-width: 300px; }
    .top-card  { left: -5%; top: 5%; }
    .bottom-card { right: -5%; }
    .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
    .hero-stats { justify-content: center; gap: 1.5rem; }
    .hero-buttons { justify-content: center; }
}
@media (max-width: 600px) {
    .hero-float-card { 
        transform: scale(0.85); 
        padding: 0.8rem;
    }
    .top-card { left: -10%; top: -2%; }
    .bottom-card { right: -10%; bottom: -5%; }
    .hero-stats { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .social-links { gap: 1.2rem; justify-content: center; }
}
