:root {
    --font-inter: 'Inter', sans-serif;
    --font-space: 'Space Grotesk', sans-serif;
}

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

body {
    font-family: var(--font-inter);
}

.pageWrapper {
    min-height: 100vh;
    background-color: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
    position: relative;
    z-index: 1; /* Establish stacking context */
}

/* Replicating the scaled, brightened background from the reference */
.pageWrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* Only cover the hero/dashboard area, ending before the dark statement section */
    height: 120vh; 
    background-image: url("https://res.cloudinary.com/djxbxhgat/image/upload/v1785142156/BG_m1typg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(1.25);
    transform: scale(1.05);
    /* Optional: add the rounded bottom corners they used */
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
}
  
/* iPhone style Navbar Notch */
.navbarContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
    padding: 0 1rem;
}
  
.navbar {
    background-color: #0a0a0a;
    width: 100%;
    max-width: 1400px;
    height: 80px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
  
.navLogo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}
  
.navLogoIcon {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
}
  
.navLinks {
    display: flex;
    gap: 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}
  
.navLinks a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s;
}

.navLinks a:hover {
    color: white;
}
  
.navActions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.navSignIn {
    color: white;
    text-decoration: none;
}
  
.btnPrimary {
    background: white;
    color: #0a0a0a;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    border-radius: 999px;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    font-size: 0.95rem;
    transition: opacity 0.2s;
    cursor: pointer;
}
  
.btnPrimary:hover {
    opacity: 0.9;
}
  
.btnIcon {
    background: #a3e635;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
}
  
.hero {
    padding: 12rem 1rem 6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
  
.pill {
    background: white;
    border: 1px solid #e4e4e7;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
  
.pillDot {
    color: #a3e635;
    font-size: 1.2rem;
    line-height: 1;
}
  
.heroTitle {
    font-family: var(--font-space);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
    max-width: 900px;
}
  
.heroTitleHighlight {
    color: #a3e635;
    font-style: italic;
}
  
.heroSubtitle {
    font-size: 1.125rem;
    color: #52525b;
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
  
.btnDark {
    background: #0a0a0a;
    color: white;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: inherit;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
  
.btnDarkIcon {
    background: #a3e635;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
}
  
.dashboardSection {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
  
.dashboardMockup {
    background: #111;
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid #333;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    gap: 1.5rem;
    color: white;
    overflow: hidden;
}
  
.dashSidebar {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
  
.dashLogo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}
  
.dashMenu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
  
.dashMenuItem {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}
  
.dashMenuItem.active {
    color: #a3e635;
}
  
.dashMain {
    flex-grow: 1;
}
  
.dashHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
  
.dashGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
  
.dashCard {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.25rem;
}
  
.dashCardTitle {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.5rem;
}
  
.dashCardValue {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
  
.dashCardTrend {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
  
.trendUp { color: #a3e635; }
.trendDown { color: #fb7185; }
  
.dashCardDesc {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.25rem;
}
  
.dashChart {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    height: 250px;
    position: relative;
}
  
.chartTabs {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}
  
.chartTab {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    color: #888;
    border: 1px solid #333;
    cursor: pointer;
}
  
.chartTab.active {
    color: #a3e635;
    border-color: #a3e635;
}
  
.bentoSection {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
}
  
.bentoCard {
    border-radius: 32px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
  
.bentoTall {
    grid-row: span 2;
    background: #a3e635;
    color: #0a0a0a;
}
  
.bentoDark {
    background: #1d2b16; /* Deep dark green */
    color: white;
}
  
.bentoSmall {
    background: #2a3a1f;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
  
.bentoLime {
    background: #bef264;
    color: #0a0a0a;
}
  
.bentoTitle {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: var(--font-space);
}
  
.bentoDesc {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 2rem;
}
  
/* Responsive */
@media (max-width: 1024px) {
    .dashGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bentoSection {
        grid-template-columns: 1fr;
    }
}
  
@media (max-width: 768px) {
    .heroTitle {
        font-size: 2.5rem;
    }
    .dashSidebar {
        display: none;
    }
    .dashGrid {
        grid-template-columns: 1fr;
    }
    .navLinks {
        display: none;
    }
}

/* Logo Ticker */
.logoTicker {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0 2rem 0;
    margin-top: -4rem; /* pull up into hero */
    z-index: 5;
    position: relative;
}

.logoTrack {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
    font-family: var(--font-space);
}

.logoItem {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    opacity: 0.9;
}

/* Statement Section */
.statementSection {
    background-color: #0d0d12; /* Very dark gray, almost black */
    padding: 8rem 2rem 6rem 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 6;
}

.statementText {
    font-family: var(--font-inter);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.4;
    color: white;
    max-width: 950px;
    text-align: left;
    letter-spacing: -0.01em;
}

.textFade {
    opacity: 0.3;
}

