:root {
    --bg-dark: #0a0a09;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-gold: #d4af6d;
    --accent-gold-light: #f3dca6;
    --accent-gold-dark: #b89354;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(212, 175, 109, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Base dark gradient */
    background-image: radial-gradient(circle at 50% 0%, #1f1a14 0%, #050505 50%);
}

/* Gold Distorted Touch - Layer 1: Ambient Glows */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background:
        /* Top Right warm distortion */
        radial-gradient(circle at 80% 20%, rgba(212, 175, 109, 0.08), transparent 40%),
        /* Bottom Left subtle touch */
        radial-gradient(circle at 10% 80%, rgba(184, 147, 84, 0.05), transparent 40%);
    filter: blur(60px);
}

/* Gold Distorted Touch - Layer 2: Noise Texture */
body::after {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Subtle noise pattern */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.8;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {

    0%,
    100% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-5%, -10%);
    }

    20% {
        transform: translate(-15%, 5%);
    }

    30% {
        transform: translate(7%, -25%);
    }

    40% {
        transform: translate(-5%, 25%);
    }

    50% {
        transform: translate(-15%, 10%);
    }

    60% {
        transform: translate(15%, 0%);
    }

    70% {
        transform: translate(0%, 15%);
    }

    80% {
        transform: translate(3%, 35%);
    }

    90% {
        transform: translate(-10%, 10%);
    }
}

/* --- Header --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    position: relative;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-gold);
}

.logo-icon {
    font-size: 20px;
    border: 1px solid var(--accent-gold);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--accent-gold);
    border-radius: 4px;
    background: rgba(212, 175, 109, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 109, 0.2);
}

.logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--accent-gold-light);
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-gold);
}

.btn {
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    color: #1a1a1a;
}

.btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 109, 0.3);
}

.btn-white {
    background-color: #ffffff;
    color: #000;
}

.btn-gold-outline {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b88a44 100%);
    color: #1a150e;
    margin-left: 16px;
}


/* --- Hero Section --- */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 60px 60px 20px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

/* Ambient Golden Spotlight */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(212, 175, 109, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    padding-right: 40px;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff 20%, #e2c996 50%, #ffffff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 109, 0.3);
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 400;
}

/* Screen reader only - visually hidden but accessible to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
}

/* --- Laptop Visual --- */
.laptop-container {
    perspective: 1000px;
    width: 100%;
    max-width: 650px;
    margin-top: 20px;
}

.laptop-screen {
    background: #0d0d0d;
    border-radius: 12px 12px 0 0;
    padding: 8px;
    /* Thinner bezel */
    border: 1px solid #333;
    border-bottom: none;
    box-shadow: 0 0 0 1px #000, inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    aspect-ratio: 16/10;
}

.camera-dot {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #444;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}

.laptop-base {
    height: 14px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    width: 120%;
    /* wider than screen */
    margin-left: -10%;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, #2a2a2a, #0d0d0d);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 4px;
    background: #333;
    border-radius: 0 0 4px 4px;
}

/* UI Mockup Details */
.dashboard-ui {
    background-color: #fcfbf9;
    /* Warm off-white */
    /* Slightly warm off-white */
    width: 100%;
    height: 100%;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: #333;
    font-family: var(--font-sans);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 12px;
    color: #666;
}

.dash-card-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.status-verified {
    font-size: 13px;
    font-weight: 600;
    color: #d4af6d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-picker {
    font-size: 11px;
    padding: 4px 8px;
    background: #eee;
    border-radius: 4px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dash-stats-row {
    display: flex;
    gap: 20px;
}

.stat-item {
    flex: 1;
}

.stat-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* Specific styling to match design */
.dash-stats-row .stat-item:nth-child(3) .stat-value {
    /* For money value */
    letter-spacing: -0.5px;
}

.dash-chart-row {
    flex: 1;
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.mini-chart-container {
    flex: 2;
    background: #fff;
    /* Could be inner card */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.chart-wrapper {
    display: flex;
    gap: 8px;
    height: 80px;
    align-items: flex-end;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-size: 8px;
    color: #999;
    padding-bottom: 20px;
    text-align: right;
}

.chart-visual {
    flex: 1;
    position: relative;
    height: 100%;
    border-bottom: 1px solid #eee;
}

.chart-axis-x {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #999;
    margin-top: 4px;
    padding-left: 24px;
    /* Align with chart area */
}

.area-chart path {
    vector-effect: non-scaling-stroke;
}

.dash-side-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-left: 10px;
    border-left: 1px solid #eee;
}

.side-stat .label {
    font-size: 10px;
    color: #666;
}

.side-stat .value {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}


/* --- Glow Separator --- */
/* --- Glow Separator --- */
/* --- Glow Separator --- */
.glow-separator {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 109, 0) 20%, #d4af6d 50%, rgba(212, 175, 109, 0) 80%, transparent 100%);
    opacity: 0.8;
    box-shadow:
        0 0 10px rgba(212, 175, 109, 0.5),
        0 0 20px rgba(212, 175, 109, 0.3),
        0 0 40px rgba(212, 175, 109, 0.2);
    margin: 60px 0 80px;
    position: relative;
    z-index: 10;
}

.glow-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 109, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.glow-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 109, 0.15) 0%, transparent 70%);
    pointer-events: none;
}


/* --- Features Section --- */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 60px;
}

.feature-card {
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    background: rgba(212, 175, 109, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 109, 0.1);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 109, 0.6);
}

.feature-icon {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold-light);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .laptop-container {
        margin: 20px auto;
    }

    .laptop-base {
        width: 100%;
        margin-left: 0;
    }

    .features-section {
        grid-template-columns: 1fr;
    }
}

/* --- Footer --- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 60px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-logo {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- Mobile Responsive Updates --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 24px;
    cursor: pointer;
    margin-left: 16px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--text-primary);
    text-decoration: none;
}

.mobile-cta {
    margin-top: 16px;
    width: 80%;
    text-align: center;
}

@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .nav {
        display: none;
    }

    .desktop-only {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {
        padding: 40px 20px;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .laptop-base {
        width: 100%;
        margin-left: 0;
    }

    .features-section {
        padding: 0 20px;
        gap: 20px;
    }

    .footer {
        padding: 40px 20px;
    }
}

/* --- Contact Page Styles --- */
.contact-section {
    padding: 100px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.contact-title {
    margin-bottom: 20px;
    font-size: 48px;
}

.contact-card {
    margin-top: 40px;
    padding: 40px 60px;
    align-items: center;
    min-width: 400px;
}

.contact-email {
    display: inline-block;
    margin-top: 16px;
    font-size: 24px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-email:hover {
    color: var(--accent-gold-light);
    border-bottom-color: var(--accent-gold);
    transform: translateY(-2px);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-card {
        min-width: 100%;
        padding: 30px;
    }
    
    .contact-email {
        font-size: 20px;
    }
}