/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #C9A84C;
    --gold-dim: #8a6e2f;
    --gold-glow: rgba(201, 168, 76, 0.18);
    --ink: #080808;
    --ink2: #111110;
    --surface: rgba(255, 255, 255, 0.04);
    --glass: rgba(255, 255, 255, 0.06);
    --border: rgba(201, 168, 76, 0.22);
    --muted: rgba(255, 255, 255, 0.38);
    --light: rgba(255, 255, 255, 0.82);
    --white: rgb(255, 255, 255);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: #fff;
    overflow-x: hidden;
    cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}

#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
    width: 6px;
    height: 6px;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--gold);
}

/* ─── NOISE GRAIN OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.032;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.4rem 3rem;
    transition: background 0.4s, border-bottom 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.navbar-brand img {
    height: 62px;
}

.nav-link {
    color: var(--light) !important;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s;
    padding: 0 0 0 2.5rem !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.navbar-toggler {
    border-color: var(--border);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 6rem;
    overflow: hidden;
}

/* .hero-bg {
      position: absolute;
      inset: 0;
      background: url('./videos/transcorp_header.mp4') center/cover no-repeat;
      transform: scale(1.08);
      animation: heroZoom 18s ease-out forwards;
    } */

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(8, 8, 8, 0.55) 0%,
            rgba(8, 8, 8, 0.3) 45%,
            rgba(8, 8, 8, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 11vw, 11rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: #fff;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s ease forwards;
}

.hero-headline .gold {
    color: var(--gold);
}

.hero-headline .outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
    color: transparent;
}

.hero-headline .sparce {
    color: var(--white);
}

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--white);
    max-width: 460px;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.75s ease forwards;
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.95s ease forwards;
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    border-radius: 1px;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary-gold:hover {
    background: #e8c97a;
    transform: translateY(-1px);
    color: #000;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--light);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: #fff;
}

.btn-ghost svg {
    stroke: currentColor;
    fill: none;
    width: 16px;
    height: 16px;
}

/* scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 1.5s ease forwards;
}

.scroll-indicator span {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4
    }

    50% {
        opacity: 1
    }
}

/* ─── STATUS TICKER ─── */
.ticker-wrap {
    background: var(--gold);
    overflow: hidden;
    padding: 0.65rem 0;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    padding: 0 3rem;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ─── CONTACT BAR ─── */
.contact-bar {
    background: var(--ink2);
    border-bottom: 1px solid var(--border);
    padding: 3rem;
}

.contact-label {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 6px;
}

.contact-val {
    font-size: 1.5rem;
    font-weight: 200;
    color: var(--light);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.contact-val:hover {
    color: var(--gold);
}

.contact-sep {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    margin: 0 2rem;
}

/* ─── FEATURES SECTION ─── */
.features {
    position: relative;
    padding: 9rem 0;
    overflow: hidden;
    background: var(--ink2);
}

.features-bg {
    position: absolute;
    inset: 0;
    background: url('./videos/transcorp_header.mp4') center/cover no-repeat;
    opacity: 0.07;
}

.big-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(7rem, 15vw, 14rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 168, 76, 0.15);
    position: absolute;
    top: -2rem;
    right: -1rem;
    pointer-events: none;
    user-select: none;
}

.section-kicker {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.feature-item {
    border-top: 1px solid var(--border);
    padding: 1.8rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: border-color 0.3s;
}

.feature-item:hover {
    border-color: var(--gold);
}

.feature-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--gold-dim);
    min-width: 36px;
    padding-top: 3px;
}

.feature-title {
    font-size: 15px;
    font-weight: 400;
    color: var(--light);
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 13px;
    font-weight: 200;
    color: var(--muted);
    line-height: 1.75;
}

/* ─── GLASS STATS ─── */
.stats-section {
    padding: 6rem 0;
    background: var(--ink);
}

.stat-card {
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 300;
}

/* ─── FORM SECTION ─── */
.form-section {
    position: relative;
    padding: 9rem 0;
    overflow: hidden;
    background: var(--ink2);
}

.form-section-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?w=1600&q=80') center/cover no-repeat;
    opacity: 0.06;
}

.form-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    backdrop-filter: blur(24px);
    padding: 3rem 3rem 3.5rem;
    border-radius: 2px;
    position: relative;
}

.form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.form-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.form-control,
.form-control:focus {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 200;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, background 0.2s;
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit-gold {
    width: 100%;
    background: var(--gold);
    color: #000;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 1rem;
    border-radius: 1px;
    cursor: none;
    transition: background 0.25s, transform 0.2s;
}

.btn-submit-gold:hover {
    background: #e8c97a;
    transform: translateY(-1px);
}

.success-panel {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
}

.success-panel svg {
    width: 52px;
    height: 52px;
    stroke: var(--gold);
    fill: none;
    margin-bottom: 1.5rem;
}

.success-panel h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.success-panel p {
    color: var(--muted);
    font-weight: 200;
    font-size: 14px;
}

/* ─── FOOTER ─── */
footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 3rem;
}

.footer-logo img {
    height: 100px;
    opacity: 1.0;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
}

.footer-links a {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    margin-bottom: 0.4rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-right-label {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.5rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding-bottom: 4rem;
    }

    .contact-bar {
        padding: 2rem 1.5rem;
    }

    footer {
        padding: 2rem 1.5rem;
    }

    .hero-headline {
        font-size: clamp(4rem, 16vw, 6rem);
    }

    body {
        cursor: auto;
    }

    #cursor,
    #cursor-ring {
        display: none;
    }
}